Skip to content

Commit 62ed60e

Browse files
deno: update imports
1 parent 41a5ee9 commit 62ed60e

File tree

12 files changed

+22
-22
lines changed

12 files changed

+22
-22
lines changed

engine/schema/schemeable.bench.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ import { dirname, join } from "std/path/mod.ts";
99
import {
1010
findSchemeableFromNode,
1111
Schemeable as _Schemeable,
12-
} from "https://denopkg.com/deco-cx/deco@1.26.0/engine/schema/transform.ts";
13-
import { denoDoc } from "https://denopkg.com/deco-cx/deco@1.26.0/engine/schema/utils.ts";
12+
} from "https://denopkg.com/deco-cx/deco@1.60.27/engine/schema/transform.ts";
13+
import { denoDoc } from "https://denopkg.com/deco-cx/deco@1.60.27/engine/schema/utils.ts";
1414
import { fromFileUrl, toFileUrl } from "std/path/mod.ts";
1515
import { ImportMapBuilder } from "../importmap/builder.ts";
1616
import { parsePath } from "./parser.ts";

live.gen.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export type { Manifest } from "https://denopkg.com/deco-cx/deco@1.50.3/live.gen.ts";
1+
export type { Manifest } from "https://denopkg.com/deco-cx/deco@1.60.27/live.gen.ts";

runtime/caches/redis.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { Redis } from "https://deno.land/x/upstash_redis@v1.22.1/mod.ts";
1+
import { Redis } from "https://deno.land/x/upstash_redis@v1.29.0/mod.ts";
22

33
import { logger, tracer } from "../../observability/otel/config.ts";
44
import {

runtime/caches/s3.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import {
99
NoSuchKey,
1010
PutObjectCommand,
1111
S3Client,
12-
} from "https://esm.sh/@aws-sdk/client-s3@3.513.0";
12+
} from "https://esm.sh/@aws-sdk/client-s3@3.556.0";
1313
import { Context } from "../../deco.ts";
1414
import { ValueType } from "../../deps.ts";
1515
import { logger, tracer } from "../../observability/otel/config.ts";

scripts/apps/init.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { join } from "https://deno.land/std@0.190.0/path/mod.ts";
1+
import { join } from "https://deno.land/std@0.223.0/path/mod.ts";
22
import {
33
lookup,
44
REGISTRIES,

scripts/apps/watcher.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import { join } from "https://deno.land/std@0.201.0/path/mod.ts";
2-
import { mergeReadableStreams } from "https://deno.land/std@0.201.0/streams/merge_readable_streams.ts";
1+
import { join } from "https://deno.land/std@0.223.0/path/mod.ts";
2+
import { mergeReadableStreams } from "https://deno.land/std@0.223.0/streams/merge_readable_streams.ts";
33

44
const runModule = (module: string, ...args: string[]): Deno.Command => {
55
return new Deno.Command(Deno.execPath(), {

scripts/changelog.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { Octokit } from "https://cdn.skypack.dev/@octokit/[email protected]";
2-
import { blue, bold } from "https://deno.land/std@0.181.0/fmt/colors.ts";
2+
import { blue, bold } from "https://deno.land/std@0.223.0/fmt/colors.ts";
33
import * as semver from "https://deno.land/x/[email protected]/mod.ts";
44
import { Endpoints } from "https://esm.sh/v135/@octokit/[email protected]";
55

scripts/init.ts

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
import * as colors from "https://deno.land/std@0.204.0/fmt/colors.ts";
1+
import * as colors from "https://deno.land/std@0.223.0/fmt/colors.ts";
22
import {
33
ensureDir,
44
ensureFile,
55
exists,
6-
} from "https://deno.land/std@0.204.0/fs/mod.ts";
7-
import { join } from "https://deno.land/std@0.204.0/path/mod.ts";
6+
} from "https://deno.land/std@0.223.0/fs/mod.ts";
7+
import { join } from "https://deno.land/std@0.223.0/path/mod.ts";
88
import {
99
Input,
1010
prompt,
@@ -14,7 +14,7 @@ import {
1414
import {
1515
BlobReader,
1616
ZipReader,
17-
} from "https://deno.land/x/[email protected].30/index.js";
17+
} from "https://deno.land/x/[email protected].41/index.js";
1818
import { getReleaseJSONFromRelease } from "../engine/releases/json.ts";
1919
import { init as initApp } from "./apps/init.ts";
2020

scripts/release.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { Select } from "https://deno.land/x/[email protected].5/prompt/mod.ts";
1+
import { Select } from "https://deno.land/x/[email protected].7/prompt/mod.ts";
22
import { join } from "std/path/mod.ts";
33
import { format, increment, parse } from "std/semver/mod.ts";
44
import { stringifyForWrite } from "../utils/json.ts";

scripts/update.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
import { parse } from "https://deno.land/std@0.204.0/flags/mod.ts";
2-
import * as colors from "https://deno.land/std@0.204.0/fmt/colors.ts";
3-
import { join } from "https://deno.land/std@0.204.0/path/mod.ts";
1+
import { parse } from "https://deno.land/std@0.223.0/flags/mod.ts";
2+
import * as colors from "https://deno.land/std@0.223.0/fmt/colors.ts";
3+
import { join } from "https://deno.land/std@0.223.0/path/mod.ts";
44
import * as semver from "https://deno.land/x/[email protected]/mod.ts";
55
import {
66
lookup,

scripts/upgrade.ts

+4-4
Original file line numberDiff line numberDiff line change
@@ -3,18 +3,18 @@ import {
33
brightRed,
44
brightYellow,
55
gray,
6-
} from "https://deno.land/std@0.190.0/fmt/colors.ts";
6+
} from "https://deno.land/std@0.223.0/fmt/colors.ts";
77
import {
88
ensureFile,
99
exists,
1010
walk,
11-
} from "https://deno.land/std@0.190.0/fs/mod.ts";
12-
import { join } from "https://deno.land/std@0.190.0/path/mod.ts";
11+
} from "https://deno.land/std@0.223.0/fs/mod.ts";
12+
import { join } from "https://deno.land/std@0.223.0/path/mod.ts";
1313
import {
1414
lookup,
1515
REGISTRIES,
1616
} from "https://denopkg.com/hayd/[email protected]/registry.ts";
17-
import * as diff from "https://esm.sh/diff@5.1.0";
17+
import * as diff from "https://esm.sh/diff@5.2.0";
1818
import { format } from "../utils/formatter.ts";
1919
import { exec } from "./utils.ts";
2020

utils/invoke.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ export { isStreamProps } from "../clients/withManifest.ts";
77
import {
88
ServerSentEventMessage,
99
ServerSentEventStream,
10-
} from "https://deno.land/std@0.208.0/http/server_sent_event_stream.ts";
10+
} from "https://deno.land/std@0.223.0/http/server_sent_event_stream.ts";
1111

1212
export const isEventStreamResponse = (
1313
invokeResponse: unknown | AsyncIterableIterator<unknown>,

0 commit comments

Comments
 (0)