Skip to content

Commit

Permalink
Merge pull request #292 from eveningkid/upgrade-mysql-2.10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
eveningkid authored Aug 21, 2021
2 parents 18a6073 + 005182e commit b7cd235
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions deps.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,16 @@ export {
Client as MySQLClient,
configLogger as configMySQLLogger,
Connection as MySQLConnection,
} from "https://deno.land/x/mysql@v2.8.0/mod.ts";
export type { LoggerConfig } from "https://deno.land/x/mysql@v2.8.0/mod.ts";
} from "https://deno.land/x/mysql@v2.10.0/mod.ts";
export type { LoggerConfig } from "https://deno.land/x/mysql@v2.10.0/mod.ts";

export { Client as PostgresClient } from "https://deno.land/x/[email protected]/mod.ts";

export { DB as SQLiteClient } from "https://deno.land/x/[email protected]/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";

0 comments on commit b7cd235

Please sign in to comment.