diff --git a/.denov b/.denov index 3e540681..d52647a8 100644 --- a/.denov +++ b/.denov @@ -1 +1 @@ -v1.28.3 +v1.29.1 diff --git a/connection.ts b/connection.ts index 83533bde..70403a1e 100644 --- a/connection.ts +++ b/connection.ts @@ -3,10 +3,8 @@ import type { RedisReply, RedisValue } from "./protocol/mod.ts"; import type { Backoff } from "./backoff.ts"; import { exponentialBackoff } from "./backoff.ts"; import { ErrorReplyError, isRetriableError } from "./errors.ts"; -import { - BufReader, - BufWriter, -} from "./vendor/https/deno.land/std/io/buffer.ts"; +import { BufReader } from "./vendor/https/deno.land/std/io/buf_reader.ts"; +import { BufWriter } from "./vendor/https/deno.land/std/io/buf_writer.ts"; import { delay } from "./vendor/https/deno.land/std/async/delay.ts"; type Closer = Deno.Closer; diff --git a/modules-lock.json b/modules-lock.json index bffe2d40..8e5ff8a1 100644 --- a/modules-lock.json +++ b/modules-lock.json @@ -1,14 +1,16 @@ { "https://deno.land/std": { - "version": "@0.167.0", + "version": "@0.168.0", "modules": [ "/async/deferred.ts", "/async/delay.ts", "/node/path.ts", "/testing/asserts.ts", "/testing/bdd.ts", - "/io/buffer.ts", - "/streams/conversion.ts" + "/io/buf_reader.ts", + "/io/buf_writer.ts", + "/streams/read_all.ts", + "/streams/write_all.ts" ] }, "https://cdn.skypack.dev/lodash-es": { diff --git a/modules.json b/modules.json index bffe2d40..8e5ff8a1 100644 --- a/modules.json +++ b/modules.json @@ -1,14 +1,16 @@ { "https://deno.land/std": { - "version": "@0.167.0", + "version": "@0.168.0", "modules": [ "/async/deferred.ts", "/async/delay.ts", "/node/path.ts", "/testing/asserts.ts", "/testing/bdd.ts", - "/io/buffer.ts", - "/streams/conversion.ts" + "/io/buf_reader.ts", + "/io/buf_writer.ts", + "/streams/read_all.ts", + "/streams/write_all.ts" ] }, "https://cdn.skypack.dev/lodash-es": { diff --git a/protocol/command.ts b/protocol/command.ts index 2d0a2533..01d90683 100644 --- a/protocol/command.ts +++ b/protocol/command.ts @@ -1,7 +1,5 @@ -import { - BufReader, - BufWriter, -} from "../vendor/https/deno.land/std/io/buffer.ts"; +import { BufReader } from "../vendor/https/deno.land/std/io/buf_reader.ts"; +import { BufWriter } from "../vendor/https/deno.land/std/io/buf_writer.ts"; import { readReply } from "./reply.ts"; import { ErrorReplyError } from "../errors.ts"; import { encoder } from "./_util.ts"; diff --git a/protocol/reply.ts b/protocol/reply.ts index 5f752459..2dcd262e 100644 --- a/protocol/reply.ts +++ b/protocol/reply.ts @@ -1,4 +1,4 @@ -import { BufReader } from "../vendor/https/deno.land/std/io/buffer.ts"; +import { BufReader } from "../vendor/https/deno.land/std/io/buf_reader.ts"; import type * as types from "./types.ts"; import { EOFError, ErrorReplyError, InvalidStateError } from "../errors.ts"; import { decoder, encoder } from "./_util.ts"; diff --git a/tests/cluster/test_util.ts b/tests/cluster/test_util.ts index 3a150193..66301e10 100644 --- a/tests/cluster/test_util.ts +++ b/tests/cluster/test_util.ts @@ -1,6 +1,6 @@ import { nextPort, startRedis, stopRedis } from "../test_util.ts"; import type { TestServer } from "../test_util.ts"; -import { readAll } from "../../vendor/https/deno.land/std/streams/conversion.ts"; +import { readAll } from "../../vendor/https/deno.land/std/streams/read_all.ts"; import { delay } from "../../vendor/https/deno.land/std/async/delay.ts"; export interface TestCluster { diff --git a/tools/make_mod.ts b/tools/make_mod.ts index b448c24f..dfb928ef 100755 --- a/tools/make_mod.ts +++ b/tools/make_mod.ts @@ -1,9 +1,7 @@ #!/usr/bin/env deno run --allow-read --allow-write --allow-run -import { - readAll, - writeAll, -} from "../vendor/https/deno.land/std/streams/conversion.ts"; +import { readAll } from "../vendor/https/deno.land/std/streams/read_all.ts"; +import { writeAll } from "../vendor/https/deno.land/std/streams/write_all.ts"; const encoder = new TextEncoder(); const decoder = new TextDecoder(); diff --git a/vendor/https/deno.land/std/async/deferred.ts b/vendor/https/deno.land/std/async/deferred.ts index ce14b39c..2b9ef476 100644 --- a/vendor/https/deno.land/std/async/deferred.ts +++ b/vendor/https/deno.land/std/async/deferred.ts @@ -1 +1 @@ -export * from "https://deno.land/std@0.167.0/async/deferred.ts"; +export * from "https://deno.land/std@0.168.0/async/deferred.ts"; diff --git a/vendor/https/deno.land/std/async/delay.ts b/vendor/https/deno.land/std/async/delay.ts index 9fafb1ce..06c4744a 100644 --- a/vendor/https/deno.land/std/async/delay.ts +++ b/vendor/https/deno.land/std/async/delay.ts @@ -1 +1 @@ -export * from "https://deno.land/std@0.167.0/async/delay.ts"; +export * from "https://deno.land/std@0.168.0/async/delay.ts"; diff --git a/vendor/https/deno.land/std/io/buf_reader.ts b/vendor/https/deno.land/std/io/buf_reader.ts new file mode 100644 index 00000000..d21572c1 --- /dev/null +++ b/vendor/https/deno.land/std/io/buf_reader.ts @@ -0,0 +1 @@ +export * from "https://deno.land/std@0.168.0/io/buf_reader.ts"; diff --git a/vendor/https/deno.land/std/io/buf_writer.ts b/vendor/https/deno.land/std/io/buf_writer.ts new file mode 100644 index 00000000..37daed90 --- /dev/null +++ b/vendor/https/deno.land/std/io/buf_writer.ts @@ -0,0 +1 @@ +export * from "https://deno.land/std@0.168.0/io/buf_writer.ts"; diff --git a/vendor/https/deno.land/std/io/buffer.ts b/vendor/https/deno.land/std/io/buffer.ts deleted file mode 100644 index 52dd34dd..00000000 --- a/vendor/https/deno.land/std/io/buffer.ts +++ /dev/null @@ -1 +0,0 @@ -export * from "https://deno.land/std@0.167.0/io/buffer.ts"; diff --git a/vendor/https/deno.land/std/node/path.ts b/vendor/https/deno.land/std/node/path.ts index 74af9855..7e6c52d7 100644 --- a/vendor/https/deno.land/std/node/path.ts +++ b/vendor/https/deno.land/std/node/path.ts @@ -1,3 +1,3 @@ -export * from "https://deno.land/std@0.167.0/node/path.ts"; -import { default as dew } from "https://deno.land/std@0.167.0/node/path.ts"; +export * from "https://deno.land/std@0.168.0/node/path.ts"; +import { default as dew } from "https://deno.land/std@0.168.0/node/path.ts"; export default dew; diff --git a/vendor/https/deno.land/std/streams/conversion.ts b/vendor/https/deno.land/std/streams/conversion.ts deleted file mode 100644 index 009fc559..00000000 --- a/vendor/https/deno.land/std/streams/conversion.ts +++ /dev/null @@ -1 +0,0 @@ -export * from "https://deno.land/std@0.167.0/streams/conversion.ts"; diff --git a/vendor/https/deno.land/std/streams/read_all.ts b/vendor/https/deno.land/std/streams/read_all.ts new file mode 100644 index 00000000..738e5c03 --- /dev/null +++ b/vendor/https/deno.land/std/streams/read_all.ts @@ -0,0 +1 @@ +export * from "https://deno.land/std@0.168.0/streams/read_all.ts"; diff --git a/vendor/https/deno.land/std/streams/write_all.ts b/vendor/https/deno.land/std/streams/write_all.ts new file mode 100644 index 00000000..3ddbd0c1 --- /dev/null +++ b/vendor/https/deno.land/std/streams/write_all.ts @@ -0,0 +1 @@ +export * from "https://deno.land/std@0.168.0/streams/write_all.ts"; diff --git a/vendor/https/deno.land/std/testing/asserts.ts b/vendor/https/deno.land/std/testing/asserts.ts index 0fbdb8af..117e2441 100644 --- a/vendor/https/deno.land/std/testing/asserts.ts +++ b/vendor/https/deno.land/std/testing/asserts.ts @@ -1 +1 @@ -export * from "https://deno.land/std@0.167.0/testing/asserts.ts"; +export * from "https://deno.land/std@0.168.0/testing/asserts.ts"; diff --git a/vendor/https/deno.land/std/testing/bdd.ts b/vendor/https/deno.land/std/testing/bdd.ts index 7388160b..df42324b 100644 --- a/vendor/https/deno.land/std/testing/bdd.ts +++ b/vendor/https/deno.land/std/testing/bdd.ts @@ -1 +1 @@ -export * from "https://deno.land/std@0.167.0/testing/bdd.ts"; +export * from "https://deno.land/std@0.168.0/testing/bdd.ts";