-
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.
Merge pull request #307 from Zhomart/update-deps
Update dex, sqlite, mysql, mongodb, postgres deps for compatibility with the latest deno v1.16.2
- Loading branch information
Showing
8 changed files
with
39 additions
and
47 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,22 @@ | ||
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: Migrate to the official https://github.com/aghussb/dex when it's updated to the | ||
// latest deno version. | ||
export { default as SQLQueryBuilder } from "https://raw.githubusercontent.com/Zhomart/dex/930253915093e1e08d48ec0409b4aee800d8bd0c/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"; |
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