diff --git a/deps.ts b/deps.ts index cc489b27c..cff47ea13 100644 --- a/deps.ts +++ b/deps.ts @@ -2,7 +2,7 @@ const decoder = new TextDecoder(); const encoder = new TextEncoder(); export { decoder, encoder }; -import { STATUS_TEXT as StdStatusText } from "https://deno.land/std@0.175.0/http/http_status.ts"; +import { STATUS_TEXT as StdStatusText } from "https://deno.land/std@0.201.0/http/http_status.ts"; export const STATUS_TEXT = new Map( Object.entries(StdStatusText), ); @@ -11,11 +11,11 @@ export { deleteCookie, getCookies, setCookie, -} from "https://deno.land/std@0.175.0/http/cookie.ts"; +} from "https://deno.land/std@0.201.0/http/cookie.ts"; -export type { Cookie } from "https://deno.land/std@0.175.0/http/cookie.ts"; +export type { Cookie } from "https://deno.land/std@0.201.0/http/cookie.ts"; export { Server as StdServer, -} from "https://deno.land/std@0.175.0/http/server.ts"; -export type { ConnInfo } from "https://deno.land/std@0.175.0/http/server.ts"; +} from "https://deno.land/std@0.201.0/http/server.ts"; +export type { ConnInfo } from "https://deno.land/std@0.201.0/http/server.ts"; diff --git a/src/services/csrf/deps.ts b/src/services/csrf/deps.ts index a50dd9e38..93779d920 100644 --- a/src/services/csrf/deps.ts +++ b/src/services/csrf/deps.ts @@ -1,2 +1,2 @@ -export { createHash } from "https://deno.land/std@0.158.0/hash/mod.ts"; -export { v4 } from "https://deno.land/std@0.158.0/uuid/mod.ts"; +export { createHash } from "https://deno.land/std@0.201.0/hash/mod.ts"; +export { v4 } from "https://deno.land/std@0.201.0/uuid/mod.ts"; diff --git a/src/services/etag/deps.ts b/src/services/etag/deps.ts index a89121cdd..b846d7ea1 100644 --- a/src/services/etag/deps.ts +++ b/src/services/etag/deps.ts @@ -1 +1 @@ -export { createHash } from "https://deno.land/std@0.175.0/node/crypto.ts"; +export { createHash } from "https://deno.land/std@0.201.0/node/crypto.ts"; diff --git a/src/services/graphql/deps.ts b/src/services/graphql/deps.ts index b94512fa6..2e384f0cc 100644 --- a/src/services/graphql/deps.ts +++ b/src/services/graphql/deps.ts @@ -1,7 +1,7 @@ export * as Drash from "../../../mod.ts"; export * as GraphQL from "https://cdn.skypack.dev/graphql@15.5.0?dts"; // TODO ENSURE DMM UPDATES THIS -export { renderPlaygroundPage } from "https://deno.land/x/gql@1.1.2/graphiql/render.ts"; +export { renderPlaygroundPage } from "https://deno.land/x/gql@1.2.4/graphiql/render.ts"; export type { ExecutionResult, } from "https://cdn.skypack.dev/graphql@15.5.0?dts"; // TODO ENSURE DMM UPDATES THIS diff --git a/tests/deps.ts b/tests/deps.ts index bb7f20dae..df35a3046 100644 --- a/tests/deps.ts +++ b/tests/deps.ts @@ -1,13 +1,13 @@ export * as Drash from "../mod.ts"; -export * as path from "https://deno.land/std@0.175.0/path/mod.ts"; +export * as path from "https://deno.land/std@0.201.0/path/mod.ts"; export * as TestHelpers from "./test_helpers.ts"; export { assert, assertEquals, assertNotEquals, -} from "https://deno.land/std@0.175.0/testing/asserts.ts"; +} from "https://deno.land/std@0.201.0/testing/asserts.ts"; -export { green, red } from "https://deno.land/std@0.175.0/fmt/colors.ts"; -export { delay } from "https://deno.land/std@0.175.0/async/delay.ts"; +export { green, red } from "https://deno.land/std@0.201.0/fmt/colors.ts"; +export { delay } from "https://deno.land/std@0.201.0/async/delay.ts"; -export { deferred } from "https://deno.land/std@0.175.0/async/deferred.ts"; +export { deferred } from "https://deno.land/std@0.201.0/async/deferred.ts";