Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
uki00a authored Dec 19, 2022
1 parent 95b7715 commit d7e23e3
Show file tree
Hide file tree
Showing 19 changed files with 29 additions and 29 deletions.
2 changes: 1 addition & 1 deletion .denov
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v1.28.3
v1.29.1
6 changes: 2 additions & 4 deletions connection.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down
8 changes: 5 additions & 3 deletions modules-lock.json
Original file line number Diff line number Diff line change
@@ -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": {
Expand Down
8 changes: 5 additions & 3 deletions modules.json
Original file line number Diff line number Diff line change
@@ -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": {
Expand Down
6 changes: 2 additions & 4 deletions protocol/command.ts
Original file line number Diff line number Diff line change
@@ -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";
Expand Down
2 changes: 1 addition & 1 deletion protocol/reply.ts
Original file line number Diff line number Diff line change
@@ -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";
Expand Down
2 changes: 1 addition & 1 deletion tests/cluster/test_util.ts
Original file line number Diff line number Diff line change
@@ -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 {
Expand Down
6 changes: 2 additions & 4 deletions tools/make_mod.ts
Original file line number Diff line number Diff line change
@@ -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();
Expand Down
2 changes: 1 addition & 1 deletion vendor/https/deno.land/std/async/deferred.ts
Original file line number Diff line number Diff line change
@@ -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";
2 changes: 1 addition & 1 deletion vendor/https/deno.land/std/async/delay.ts
Original file line number Diff line number Diff line change
@@ -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";
1 change: 1 addition & 0 deletions vendor/https/deno.land/std/io/buf_reader.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export * from "https://deno.land/[email protected]/io/buf_reader.ts";
1 change: 1 addition & 0 deletions vendor/https/deno.land/std/io/buf_writer.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export * from "https://deno.land/[email protected]/io/buf_writer.ts";
1 change: 0 additions & 1 deletion vendor/https/deno.land/std/io/buffer.ts

This file was deleted.

4 changes: 2 additions & 2 deletions vendor/https/deno.land/std/node/path.ts
Original file line number Diff line number Diff line change
@@ -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;
1 change: 0 additions & 1 deletion vendor/https/deno.land/std/streams/conversion.ts

This file was deleted.

1 change: 1 addition & 0 deletions vendor/https/deno.land/std/streams/read_all.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export * from "https://deno.land/[email protected]/streams/read_all.ts";
1 change: 1 addition & 0 deletions vendor/https/deno.land/std/streams/write_all.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export * from "https://deno.land/[email protected]/streams/write_all.ts";
2 changes: 1 addition & 1 deletion vendor/https/deno.land/std/testing/asserts.ts
Original file line number Diff line number Diff line change
@@ -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";
2 changes: 1 addition & 1 deletion vendor/https/deno.land/std/testing/bdd.ts
Original file line number Diff line number Diff line change
@@ -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";

0 comments on commit d7e23e3

Please sign in to comment.