Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

deps: [email protected], [email protected] #422

Merged
merged 5 commits into from
Feb 10, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .denov
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v1.39.2
v1.40.4
4 changes: 2 additions & 2 deletions modules-lock.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
{
"https://deno.land/std": {
"version": "@0.211.0",
"version": "@0.215.0",
"modules": [
"/assert/mod.ts",
"/async/delay.ts",
"/bytes/concat.ts",
"/testing/bdd.ts",
"/io/buf_reader.ts",
"/io/buf_writer.ts",
"/streams/read_all.ts",
"/io/read_all.ts",
"/streams/reader_from_stream_reader.ts"
]
},
Expand Down
4 changes: 2 additions & 2 deletions modules.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
{
"https://deno.land/std": {
"version": "@0.211.0",
"version": "@0.215.0",
"modules": [
"/assert/mod.ts",
"/async/delay.ts",
"/bytes/concat.ts",
"/testing/bdd.ts",
"/io/buf_reader.ts",
"/io/buf_writer.ts",
"/streams/read_all.ts",
"/io/read_all.ts",
"/streams/reader_from_stream_reader.ts"
]
},
Expand Down
2 changes: 1 addition & 1 deletion tests/cluster/test_util.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import {
stopRedis,
} from "../test_util.ts";
import type { TestServer } from "../test_util.ts";
import { readAll } from "../../vendor/https/deno.land/std/streams/read_all.ts";
import { readAll } from "../../vendor/https/deno.land/std/io/read_all.ts";
import { readerFromStreamReader } from "../../vendor/https/deno.land/std/streams/reader_from_stream_reader.ts";
import { delay } from "../../vendor/https/deno.land/std/async/delay.ts";

Expand Down
4 changes: 0 additions & 4 deletions tests/commands/connection.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ import {
assert,
assertEquals,
assertExists,
assertNotEquals,
} from "../../vendor/https/deno.land/std/assert/mod.ts";
import {
afterAll,
Expand Down Expand Up @@ -101,14 +100,11 @@ export function connectionTests(
describe("createLazyClient", () => {
it("returns the lazily connected client", async () => {
const opts = getOpts();
const resources = Deno.resources();
const client = createLazyClient(opts);
assert(!client.isConnected);
assertEquals(resources, Deno.resources());
try {
await client.get("foo");
assert(client.isConnected);
assertNotEquals(resources, Deno.resources());
} finally {
client.close();
}
Expand Down
2 changes: 1 addition & 1 deletion tools/make_mod.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env deno run --allow-read --allow-write --allow-run

import { readAll } from "../vendor/https/deno.land/std/streams/read_all.ts";
import { readAll } from "../vendor/https/deno.land/std/io/read_all.ts";
import { readerFromStreamReader } from "../vendor/https/deno.land/std/streams/reader_from_stream_reader.ts";

const encoder = new TextEncoder();
Expand Down
2 changes: 1 addition & 1 deletion vendor/https/deno.land/std/assert/mod.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export * from "https://deno.land/std@0.211.0/assert/mod.ts";
export * from "https://deno.land/std@0.215.0/assert/mod.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.211.0/async/delay.ts";
export * from "https://deno.land/std@0.215.0/async/delay.ts";
2 changes: 1 addition & 1 deletion vendor/https/deno.land/std/bytes/concat.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export * from "https://deno.land/std@0.211.0/bytes/concat.ts";
export * from "https://deno.land/std@0.215.0/bytes/concat.ts";
2 changes: 1 addition & 1 deletion vendor/https/deno.land/std/io/buf_reader.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export * from "https://deno.land/std@0.211.0/io/buf_reader.ts";
export * from "https://deno.land/std@0.215.0/io/buf_reader.ts";
2 changes: 1 addition & 1 deletion vendor/https/deno.land/std/io/buf_writer.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export * from "https://deno.land/std@0.211.0/io/buf_writer.ts";
export * from "https://deno.land/std@0.215.0/io/buf_writer.ts";
1 change: 1 addition & 0 deletions vendor/https/deno.land/std/io/read_all.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export * from "https://deno.land/[email protected]/io/read_all.ts";
1 change: 0 additions & 1 deletion vendor/https/deno.land/std/streams/read_all.ts

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1 +1 @@
export * from "https://deno.land/std@0.211.0/streams/reader_from_stream_reader.ts";
export * from "https://deno.land/std@0.215.0/streams/reader_from_stream_reader.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.211.0/testing/bdd.ts";
export * from "https://deno.land/std@0.215.0/testing/bdd.ts";
Loading