Skip to content

Commit 7ebcb21

Browse files
authored
chore: bump dependencies (#289)
* bump dependencies * update test deps * update redis
1 parent 68789af commit 7ebcb21

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

deps.ts

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
export { EventEmitter } from 'https://deno.land/x/event@1.0.0/mod.ts'
2-
export { decompress_with as unzlib } from 'https://unpkg.com/@evan/wasm@0.0.50/target/zlib/deno.js'
2+
export { decompress_with as unzlib } from 'https://unpkg.com/@evan/wasm@0.0.93/target/zlib/deno.js'
33
export { fetchAuto } from 'https://deno.land/x/fetchbase64@1.0.0/mod.ts'
4-
export { walk } from 'https://deno.land/std@0.95.0/fs/walk.ts'
5-
export { join } from 'https://deno.land/std@0.95.0/path/mod.ts'
6-
export { Mixin } from 'https://esm.sh/ts-mixer@5.4.0'
4+
export { walk } from 'https://deno.land/std@0.121.0/fs/walk.ts'
5+
export { join } from 'https://deno.land/std@0.121.0/path/mod.ts'
6+
export { Mixin } from 'https://esm.sh/ts-mixer@6.0.0'

src/cache/redis.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import {
55
Redis,
66
RedisConnectOptions,
77
RedisValue
8-
} from 'https://deno.land/x/redis@v0.25.0/mod.ts'
8+
} from 'https://deno.land/x/redis@v0.25.1/mod.ts'
99

1010
/** Redis Cache Adapter for using Redis as a cache-provider. */
1111
export class RedisCacheAdapter implements ICacheAdapter {

test/deps.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
export * from 'https://deno.land/std@0.95.0/testing/asserts.ts'
2-
export * from 'https://deno.land/std@0.95.0/http/server.ts'
1+
export * from 'https://deno.land/std@0.121.0/testing/asserts.ts'
2+
export * from 'https://deno.land/std@0.121.0/http/server.ts'

0 commit comments

Comments
 (0)