From c9d25301765a5e530542c5e3e521d539980d7ef3 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 28 May 2024 01:24:07 +0000 Subject: [PATCH] deno: update imports --- deno.json | 8 ++++---- engine/schema/schemeable.bench.ts | 4 ++-- hypervisor/hypervisor.ts | 2 +- live.gen.ts | 2 +- runtime/caches/fileSystem.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.lib.ts | 6 +++--- scripts/upgrade.ts | 8 ++++---- utils/invoke.ts | 2 +- 15 files changed, 28 insertions(+), 28 deletions(-) diff --git a/deno.json b/deno.json index 9aa2bd4fe..55fbe0527 100644 --- a/deno.json +++ b/deno.json @@ -31,10 +31,10 @@ }, "imports": { "preact-render-to-string": "https://esm.sh/*preact-render-to-string@6.2.0?pin=102", - "preact/": "https://esm.sh/preact@10.16.0/", - "preact": "https://esm.sh/preact@10.16.0?pin=102", - "partytown/": "https://deno.land/x/partytown@0.3.0/", - "std/": "https://deno.land/std@0.203.0/", + "preact/": "https://esm.sh/preact@10.22.0/", + "preact": "https://esm.sh/preact@10.22.0?pin=102", + "partytown/": "https://deno.land/x/partytown@0.4.8/", + "std/": "https://deno.land/std@0.224.0/", "$fresh/": "https://denopkg.com/denoland/fresh@1.6.5/", "deco/": "./" }, diff --git a/engine/schema/schemeable.bench.ts b/engine/schema/schemeable.bench.ts index b7e8ad39f..bf6e8f3b0 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, type 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.68.1/engine/schema/transform.ts"; +import { denoDoc } from "https://denopkg.com/deco-cx/deco@1.68.1/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/hypervisor/hypervisor.ts b/hypervisor/hypervisor.ts index 686cb9ee0..57dcfb249 100644 --- a/hypervisor/hypervisor.ts +++ b/hypervisor/hypervisor.ts @@ -1,7 +1,7 @@ import { type ServerSentEventMessage, ServerSentEventStream, -} from "https://deno.land/std@0.208.0/http/server_sent_event_stream.ts"; +} from "https://deno.land/std@0.224.0/http/server_sent_event_stream.ts"; import fjp from "npm:fast-json-patch@3.1.1"; import { debounce } from "std/async/debounce.ts"; import * as colors from "std/fmt/colors.ts"; diff --git a/live.gen.ts b/live.gen.ts index eae4a973b..fbf9840ba 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.68.1/live.gen.ts"; diff --git a/runtime/caches/fileSystem.ts b/runtime/caches/fileSystem.ts index 8805fe295..f4d44390d 100644 --- a/runtime/caches/fileSystem.ts +++ b/runtime/caches/fileSystem.ts @@ -7,7 +7,7 @@ import { withCacheNamespace, } from "./common.ts"; import { existsSync } from "std/fs/mod.ts"; -import { LRUCache } from "https://esm.sh/lru-cache@10.2.0"; +import { LRUCache } from "https://esm.sh/lru-cache@10.2.2"; import { numToUint8Array, uint8ArrayToNum } from "../utils.ts"; const FILE_SYSTEM_CACHE_DIRECTORY = diff --git a/runtime/caches/redis.ts b/runtime/caches/redis.ts index 0698de5c7..fdccecddf 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.31.3/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..d2d020966 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.583.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 53fac9e37..c4a2f6d99 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.224.0/path/mod.ts"; import { lookup, REGISTRIES, diff --git a/scripts/apps/watcher.ts b/scripts/apps/watcher.ts index cedf87548..8bbaa4eb3 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.224.0/path/mod.ts"; +import { mergeReadableStreams } from "https://deno.land/std@0.224.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 4d8c997c2..3bb164099 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.224.0/fmt/colors.ts"; import * as semver from "https://deno.land/x/semver@v1.4.1/mod.ts"; import type { Endpoints } from "https://esm.sh/v135/@octokit/types@9.0.0"; diff --git a/scripts/init.ts b/scripts/init.ts index 5498ccde1..42db41835 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.224.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.224.0/fs/mod.ts"; +import { join } from "https://deno.land/std@0.224.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.44/index.js"; import { getDecofileJSONFromDecofile } from "../engine/decofile/json.ts"; import { init as initApp } from "./apps/init.ts"; diff --git a/scripts/release.ts b/scripts/release.ts index 6cdbc56b8..036805c3c 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.lib.ts b/scripts/update.lib.ts index a60751ca8..52855c0b8 100644 --- a/scripts/update.lib.ts +++ b/scripts/update.lib.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.224.0/flags/mod.ts"; +import * as colors from "https://deno.land/std@0.224.0/fmt/colors.ts"; +import { join } from "https://deno.land/std@0.224.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 148999de0..fb48c449a 100644 --- a/scripts/upgrade.ts +++ b/scripts/upgrade.ts @@ -3,19 +3,19 @@ import { brightRed, brightYellow, gray, -} from "https://deno.land/std@0.204.0/fmt/colors.ts"; +} from "https://deno.land/std@0.224.0/fmt/colors.ts"; import { ensureFile, exists, walk, -} 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.224.0/fs/mod.ts"; +import { join } from "https://deno.land/std@0.224.0/path/mod.ts"; import * as semver from "https://deno.land/x/semver@v1.4.1/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"; // deno-lint-ignore verbatim-module-syntax diff --git a/utils/invoke.ts b/utils/invoke.ts index 5b834fae1..d3a745f4a 100644 --- a/utils/invoke.ts +++ b/utils/invoke.ts @@ -7,7 +7,7 @@ export { isStreamProps } from "../clients/withManifest.ts"; import { type ServerSentEventMessage, ServerSentEventStream, -} from "https://deno.land/std@0.208.0/http/server_sent_event_stream.ts"; +} from "https://deno.land/std@0.224.0/http/server_sent_event_stream.ts"; export const isEventStreamResponse = ( invokeResponse: unknown | AsyncIterableIterator,