From 085e1e1c20401f7a2f5878756ed4c65c3b6ffb1c Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 11 Apr 2024 01:23:07 +0000 Subject: [PATCH] deno: update imports --- engine/schema/schemeable.bench.ts | 4 ++-- live.gen.ts | 2 +- runtime/caches/redis.ts | 2 +- runtime/caches/s3.ts | 2 +- scripts/apps/init.ts | 2 +- scripts/apps/watcher.ts | 4 ++-- scripts/changelog.ts | 2 +- scripts/init.ts | 8 ++++---- scripts/release.ts | 2 +- scripts/update.ts | 6 +++--- scripts/upgrade.ts | 8 ++++---- utils/invoke.ts | 2 +- 12 files changed, 22 insertions(+), 22 deletions(-) diff --git a/engine/schema/schemeable.bench.ts b/engine/schema/schemeable.bench.ts index 58998a01a..f67d4eb68 100644 --- a/engine/schema/schemeable.bench.ts +++ b/engine/schema/schemeable.bench.ts @@ -9,8 +9,8 @@ import { dirname, join } from "std/path/mod.ts"; import { findSchemeableFromNode, Schemeable as _Schemeable, -} from "https://denopkg.com/deco-cx/deco@1.26.0/engine/schema/transform.ts"; -import { denoDoc } from "https://denopkg.com/deco-cx/deco@1.26.0/engine/schema/utils.ts"; +} from "https://denopkg.com/deco-cx/deco@1.60.25/engine/schema/transform.ts"; +import { denoDoc } from "https://denopkg.com/deco-cx/deco@1.60.25/engine/schema/utils.ts"; import { fromFileUrl, toFileUrl } from "std/path/mod.ts"; import { ImportMapBuilder } from "../importmap/builder.ts"; import { parsePath } from "./parser.ts"; diff --git a/live.gen.ts b/live.gen.ts index eae4a973b..3539d31f8 100644 --- a/live.gen.ts +++ b/live.gen.ts @@ -1 +1 @@ -export type { Manifest } from "https://denopkg.com/deco-cx/deco@1.50.3/live.gen.ts"; +export type { Manifest } from "https://denopkg.com/deco-cx/deco@1.60.25/live.gen.ts"; diff --git a/runtime/caches/redis.ts b/runtime/caches/redis.ts index 0698de5c7..38ccf7c74 100644 --- a/runtime/caches/redis.ts +++ b/runtime/caches/redis.ts @@ -1,4 +1,4 @@ -import { Redis } from "https://deno.land/x/upstash_redis@v1.22.1/mod.ts"; +import { Redis } from "https://deno.land/x/upstash_redis@v1.29.0/mod.ts"; import { logger, tracer } from "../../observability/otel/config.ts"; import { diff --git a/runtime/caches/s3.ts b/runtime/caches/s3.ts index 5e4ae9051..2bc1b4e26 100644 --- a/runtime/caches/s3.ts +++ b/runtime/caches/s3.ts @@ -9,7 +9,7 @@ import { NoSuchKey, PutObjectCommand, S3Client, -} from "https://esm.sh/@aws-sdk/client-s3@3.513.0"; +} from "https://esm.sh/@aws-sdk/client-s3@3.552.0"; import { Context } from "../../deco.ts"; import { ValueType } from "../../deps.ts"; import { logger, tracer } from "../../observability/otel/config.ts"; diff --git a/scripts/apps/init.ts b/scripts/apps/init.ts index 9797ba76a..93e52096d 100644 --- a/scripts/apps/init.ts +++ b/scripts/apps/init.ts @@ -1,4 +1,4 @@ -import { join } from "https://deno.land/std@0.190.0/path/mod.ts"; +import { join } from "https://deno.land/std@0.221.0/path/mod.ts"; import { lookup, REGISTRIES, diff --git a/scripts/apps/watcher.ts b/scripts/apps/watcher.ts index cedf87548..3c33eee39 100644 --- a/scripts/apps/watcher.ts +++ b/scripts/apps/watcher.ts @@ -1,5 +1,5 @@ -import { join } from "https://deno.land/std@0.201.0/path/mod.ts"; -import { mergeReadableStreams } from "https://deno.land/std@0.201.0/streams/merge_readable_streams.ts"; +import { join } from "https://deno.land/std@0.221.0/path/mod.ts"; +import { mergeReadableStreams } from "https://deno.land/std@0.221.0/streams/merge_readable_streams.ts"; const runModule = (module: string, ...args: string[]): Deno.Command => { return new Deno.Command(Deno.execPath(), { diff --git a/scripts/changelog.ts b/scripts/changelog.ts index 484b98aad..6c219b972 100644 --- a/scripts/changelog.ts +++ b/scripts/changelog.ts @@ -1,5 +1,5 @@ import { Octokit } from "https://cdn.skypack.dev/@octokit/rest@19.0.4"; -import { blue, bold } from "https://deno.land/std@0.181.0/fmt/colors.ts"; +import { blue, bold } from "https://deno.land/std@0.221.0/fmt/colors.ts"; import * as semver from "https://deno.land/x/semver@v1.4.1/mod.ts"; import { Endpoints } from "https://esm.sh/v135/@octokit/types@9.0.0"; diff --git a/scripts/init.ts b/scripts/init.ts index c139366a2..bee02dd90 100644 --- a/scripts/init.ts +++ b/scripts/init.ts @@ -1,10 +1,10 @@ -import * as colors from "https://deno.land/std@0.204.0/fmt/colors.ts"; +import * as colors from "https://deno.land/std@0.221.0/fmt/colors.ts"; import { ensureDir, ensureFile, exists, -} from "https://deno.land/std@0.204.0/fs/mod.ts"; -import { join } from "https://deno.land/std@0.204.0/path/mod.ts"; +} from "https://deno.land/std@0.221.0/fs/mod.ts"; +import { join } from "https://deno.land/std@0.221.0/path/mod.ts"; import { Input, prompt, @@ -14,7 +14,7 @@ import { import { BlobReader, ZipReader, -} from "https://deno.land/x/zipjs@v2.7.30/index.js"; +} from "https://deno.land/x/zipjs@v2.7.41/index.js"; import { getReleaseJSONFromRelease } from "../engine/releases/json.ts"; import { init as initApp } from "./apps/init.ts"; diff --git a/scripts/release.ts b/scripts/release.ts index c08087d5d..22db8450e 100644 --- a/scripts/release.ts +++ b/scripts/release.ts @@ -1,4 +1,4 @@ -import { Select } from "https://deno.land/x/cliffy@v0.25.5/prompt/mod.ts"; +import { Select } from "https://deno.land/x/cliffy@v0.25.7/prompt/mod.ts"; import { join } from "std/path/mod.ts"; import { format, increment, parse } from "std/semver/mod.ts"; import { stringifyForWrite } from "../utils/json.ts"; diff --git a/scripts/update.ts b/scripts/update.ts index 29b4ba1aa..1e8619df8 100644 --- a/scripts/update.ts +++ b/scripts/update.ts @@ -1,6 +1,6 @@ -import { parse } from "https://deno.land/std@0.204.0/flags/mod.ts"; -import * as colors from "https://deno.land/std@0.204.0/fmt/colors.ts"; -import { join } from "https://deno.land/std@0.204.0/path/mod.ts"; +import { parse } from "https://deno.land/std@0.221.0/flags/mod.ts"; +import * as colors from "https://deno.land/std@0.221.0/fmt/colors.ts"; +import { join } from "https://deno.land/std@0.221.0/path/mod.ts"; import * as semver from "https://deno.land/x/semver@v1.4.1/mod.ts"; import { lookup, diff --git a/scripts/upgrade.ts b/scripts/upgrade.ts index 124b5a37e..b76496fb1 100644 --- a/scripts/upgrade.ts +++ b/scripts/upgrade.ts @@ -3,18 +3,18 @@ import { brightRed, brightYellow, gray, -} from "https://deno.land/std@0.190.0/fmt/colors.ts"; +} from "https://deno.land/std@0.221.0/fmt/colors.ts"; import { ensureFile, exists, walk, -} from "https://deno.land/std@0.190.0/fs/mod.ts"; -import { join } from "https://deno.land/std@0.190.0/path/mod.ts"; +} from "https://deno.land/std@0.221.0/fs/mod.ts"; +import { join } from "https://deno.land/std@0.221.0/path/mod.ts"; import { lookup, REGISTRIES, } from "https://denopkg.com/hayd/deno-udd@0.8.2/registry.ts"; -import * as diff from "https://esm.sh/diff@5.1.0"; +import * as diff from "https://esm.sh/diff@5.2.0"; import { format } from "../utils/formatter.ts"; import { exec } from "./utils.ts"; diff --git a/utils/invoke.ts b/utils/invoke.ts index f3806203d..663fbad8a 100644 --- a/utils/invoke.ts +++ b/utils/invoke.ts @@ -7,7 +7,7 @@ export { isStreamProps } from "../clients/withManifest.ts"; import { ServerSentEventMessage, ServerSentEventStream, -} from "https://deno.land/std@0.208.0/http/server_sent_event_stream.ts"; +} from "https://deno.land/std@0.221.0/http/server_sent_event_stream.ts"; export const isEventStreamResponse = ( invokeResponse: unknown | AsyncIterableIterator,