-
Notifications
You must be signed in to change notification settings - Fork 130
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update dex, sqlite, mysql, mongodb, postgres deps
dex: update to the version that uses [email protected], instead of the latest version of jspm-core, which could be dangerous when jspm-core pushes the latest braking code. aghussb/dex#3 sqlite: update to v3.1.3, it contains braking changes so this PR fixes them too. mysql: minor upgrade to v2.10.1 (from v2.10.0) mongodb: update to v0.28.0, because the old version is not compatible with the latest deno. postgres: update to v0.14.2 and fix update postgres-connectors, because the old version is not compatible with the latest deno. The changes are tested on deno v1.16.2.
- Loading branch information
Zhomart Mukhamejanov
committed
Nov 21, 2021
1 parent
b7cd235
commit 1e63d85
Showing
7 changed files
with
33 additions
and
45 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,4 +12,5 @@ design/*.sketch | |
examples/ | ||
.deno_plugins | ||
.nova/* | ||
tsconfig.json | ||
tsconfig.json | ||
.env |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,21 @@ | ||
export * as ConsoleColor from "https://deno.land/x/[email protected]/mod.ts"; | ||
|
||
// NOTE(eveningkid): this has not be versioned because the Github releases are not up-to-date. | ||
// Only master is valid at the moment. Seems safe for now since there is no commits being added | ||
export { default as SQLQueryBuilder } from "https://raw.githubusercontent.com/aghussb/dex/master/mod.ts"; | ||
// NOTE: these changes fixes #303. | ||
export { default as SQLQueryBuilder } from "https://raw.githubusercontent.com/Zhomart/dex/c452c40b365e73265a25c18cb7adf5d35c1dbb8b/mod-dyn.ts"; | ||
|
||
export { camelCase, snakeCase } from "https://deno.land/x/[email protected]/mod.ts"; | ||
|
||
export { | ||
Client as MySQLClient, | ||
configLogger as configMySQLLogger, | ||
Connection as MySQLConnection, | ||
} from "https://deno.land/x/[email protected].0/mod.ts"; | ||
export type { LoggerConfig } from "https://deno.land/x/[email protected].0/mod.ts"; | ||
} from "https://deno.land/x/[email protected].1/mod.ts"; | ||
export type { LoggerConfig } from "https://deno.land/x/[email protected].1/mod.ts"; | ||
|
||
export { Client as PostgresClient } from "https://deno.land/x/postgres@v0.11.2/mod.ts"; | ||
export { Client as PostgresClient } from "https://deno.land/x/postgres@v0.14.2/mod.ts"; | ||
|
||
export { DB as SQLiteClient } from "https://deno.land/x/sqlite@v2.3.1/mod.ts"; | ||
export { DB as SQLiteClient } from "https://deno.land/x/sqlite@v3.1.3/mod.ts"; | ||
|
||
// NOTE(eveningkid): upgrading to 0.24.0 would raise an issue asking for the --unstable flag. | ||
// This would be asked to anyone using denodb, not only mongodb users. | ||
// Should wait on a version that isn't using any unstable API | ||
export { MongoClient as MongoDBClient, Bson } from "https://deno.land/x/[email protected]/mod.ts"; | ||
export type { ConnectOptions as MongoDBClientOptions } from "https://deno.land/x/[email protected]/mod.ts"; | ||
export type { Database as MongoDBDatabase } from "https://deno.land/x/[email protected]/src/database.ts"; | ||
export { MongoClient as MongoDBClient, Bson } from "https://deno.land/x/[email protected]/mod.ts"; | ||
export type { ConnectOptions as MongoDBClientOptions } from "https://deno.land/x/[email protected]/mod.ts"; | ||
export type { Database as MongoDBDatabase } from "https://deno.land/x/[email protected]/src/database.ts"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
export { assertEquals } from "https://deno.land/std@0.56.0/testing/asserts.ts"; | ||
export { assertEquals } from "https://deno.land/std@0.115.1/testing/asserts.ts"; |