Skip to content

Commit 2b5d114

Browse files
committed
update sqlite library
1 parent 4a9a9e7 commit 2b5d114

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

src/json.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { decode, encode } from 'https://deno.land/std@0.170.0/encoding/base64.ts';
1+
import { decode, encode } from 'https://deno.land/std@0.176.0/encoding/base64.ts';
22

33
const serializableClasses: {
44
classRef: new () => any;

src/orm.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
import { Database as SqliteDatabase, DatabaseOpenOptions } from 'https://deno.land/x/sqlite3@0.6.1/mod.ts';
1+
import { Database as SqliteDatabase, DatabaseOpenOptions } from 'https://deno.land/x/sqlite3@0.7.3/mod.ts';
22
import { buildAggregateQuery, buildAlterQuery, buildCountWhereQuery, buildDeleteQuery, buildInsertQuery, buildModelFromData, buildSelectQuery, buildTableQuery, buildUpdateQuery, isProvidedTypeValid } from './builder.ts';
33
import { DBInvalidData, DBInvalidTable, DBModelNotFound, DBNotFound } from './errors.ts';
44
import { dejsonify, jsonify } from './json.ts';
55
import { prettyPrintDiff } from './util.ts';
6-
import { basename, join } from 'https://deno.land/std@0.170.0/path/mod.ts';
6+
import { basename, join } from 'https://deno.land/std@0.176.0/path/mod.ts';
77

88
interface OrmOptions {
99
/**

0 commit comments

Comments
 (0)