Skip to content

Commit d09897a

Browse files
authored
upgrade: bump deno to v1.3.2 and std to v0.67.0 (#115)
1 parent e58115c commit d09897a

File tree

14 files changed

+18
-14
lines changed

14 files changed

+18
-14
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
- uses: actions/checkout@master
3232
- uses: denolib/setup-deno@master
3333
with:
34-
deno-version: 1.3.0
34+
deno-version: 1.3.2
3535
- name: Check cli.ts
3636
run: |
3737
deno run -A ./cli.ts version

dem.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
{
44
"protocol": "https",
55
"path": "deno.land/std",
6-
"version": "0.65.0",
6+
"version": "0.67.0",
77
"files": [
88
"/async/deferred.ts",
99
"/encoding/utf8.ts",

src/entity-manager/MongoEntityManager.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,10 @@ export class MongoEntityManager extends EntityManager {
7777
/**
7878
* Gets query runner used to execute queries.
7979
*/
80+
// FIXME After upgrading Deno from v1.3.0 to v.1.3.2, compilation fails with the following error:
81+
// `error: TS2611 [ERROR]: 'queryRunner' is defined as a property in class 'EntityManager', but is overridden here in 'MongoEntityManager' as an accessor.`
82+
// This is probably due to the update of TypeScript to v4.
83+
// @ts-ignore
8084
get queryRunner(): MongoQueryRunner {
8185
return (this.connection.driver as MongoDriver).queryRunner!;
8286
}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export * from "https://deno.land/std@0.65.0/async/deferred.ts";
1+
export * from "https://deno.land/std@0.67.0/async/deferred.ts";
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export * from "https://deno.land/std@0.65.0/encoding/utf8.ts";
1+
export * from "https://deno.land/std@0.67.0/encoding/utf8.ts";
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export * from "https://deno.land/std@0.65.0/encoding/yaml.ts";
1+
export * from "https://deno.land/std@0.67.0/encoding/yaml.ts";
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export * from "https://deno.land/std@0.65.0/fmt/colors.ts";
1+
export * from "https://deno.land/std@0.67.0/fmt/colors.ts";
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export * from "https://deno.land/std@0.65.0/fs/empty_dir.ts";
1+
export * from "https://deno.land/std@0.67.0/fs/empty_dir.ts";
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export * from "https://deno.land/std@0.65.0/fs/ensure_dir.ts";
1+
export * from "https://deno.land/std@0.67.0/fs/ensure_dir.ts";
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export * from "https://deno.land/std@0.65.0/fs/exists.ts";
1+
export * from "https://deno.land/std@0.67.0/fs/exists.ts";

0 commit comments

Comments
 (0)