From cffc683f2b1df4655af422d9ffcc4fd9d5f1c748 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 18 Sep 2024 21:27:52 +0900 Subject: [PATCH] deno: update imports (#88) Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- spec/validate-body-decorator.test.ts | 2 +- src/deps.ts | 16 ++++++++-------- src/deps_test.ts | 8 ++++---- 3 files changed, 13 insertions(+), 13 deletions(-) diff --git a/spec/validate-body-decorator.test.ts b/spec/validate-body-decorator.test.ts index 5e079c1c..7fc7f575 100644 --- a/spec/validate-body-decorator.test.ts +++ b/spec/validate-body-decorator.test.ts @@ -1,7 +1,7 @@ import { assertEquals, assertExists, -} from 'https://deno.land/std@0.223.0/testing/asserts.ts'; +} from 'https://deno.land/std@0.224.0/testing/asserts.ts'; import { DanetApplication } from '../src/mod.ts'; import { Module } from '../src/module/mod.ts'; import { Body, Controller, Get, Post } from '../src/router/controller/mod.ts'; diff --git a/src/deps.ts b/src/deps.ts index d30181d7..d24f6dd3 100644 --- a/src/deps.ts +++ b/src/deps.ts @@ -3,7 +3,7 @@ export { red, white, yellow, -} from 'https://deno.land/std@0.223.0/fmt/colors.ts'; +} from 'https://deno.land/std@0.224.0/fmt/colors.ts'; export { Reflect } from 'https://deno.land/x/deno_reflect@v0.2.1/mod.ts'; export { validateObject } from '../validation.ts'; export { @@ -11,14 +11,14 @@ export { Hono as Application, type MiddlewareHandler, type Next, -} from 'https://deno.land/x/hono@v4.2.6/mod.ts'; -export { type HandlerInterface } from 'https://deno.land/x/hono@v4.2.6/types.ts'; -export { HonoRequest } from 'https://deno.land/x/hono@v4.2.6/request.ts'; -export { getPath } from 'https://deno.land/x/hono@v4.2.6/utils/url.ts'; +} from 'https://deno.land/x/hono@v4.3.11/mod.ts'; +export { type HandlerInterface } from 'https://deno.land/x/hono@v4.3.11/types.ts'; +export { HonoRequest } from 'https://deno.land/x/hono@v4.3.11/request.ts'; +export { getPath } from 'https://deno.land/x/hono@v4.3.11/utils/url.ts'; export { RegExpRouter, SmartRouter, TrieRouter, -} from 'https://deno.land/x/hono@v4.2.6/mod.ts'; -export { SSEStreamingApi, streamSSE } from 'https://deno.land/x/hono@v4.2.6/helper.ts'; -export { cors } from 'https://deno.land/x/hono@v4.2.6/middleware.ts' \ No newline at end of file +} from 'https://deno.land/x/hono@v4.3.11/mod.ts'; +export { SSEStreamingApi, streamSSE } from 'https://deno.land/x/hono@v4.3.11/helper.ts'; +export { cors } from 'https://deno.land/x/hono@v4.3.11/middleware.ts' \ No newline at end of file diff --git a/src/deps_test.ts b/src/deps_test.ts index 3b454ed3..186fceb7 100644 --- a/src/deps_test.ts +++ b/src/deps_test.ts @@ -3,8 +3,8 @@ export { assertSpyCallArg, assertSpyCalls, spy, -} from 'https://deno.land/std@0.223.0/testing/mock.ts'; -export { FakeTime } from 'https://deno.land/std@0.223.0/testing/time.ts'; +} from 'https://deno.land/std@0.224.0/testing/mock.ts'; +export { FakeTime } from 'https://deno.land/std@0.224.0/testing/time.ts'; export { assertEquals, assertInstanceOf, @@ -12,8 +12,8 @@ export { assertObjectMatch, assertRejects, assertThrows, -} from 'https://deno.land/std@0.223.0/testing/asserts.ts'; -export * as path from 'https://deno.land/std@0.223.0/path/mod.ts'; +} from 'https://deno.land/std@0.224.0/testing/asserts.ts'; +export * as path from 'https://deno.land/std@0.224.0/path/mod.ts'; export { CookieStore, Session as OakSession,