diff --git a/args.ts b/args.ts index 39ed3c0..6a720ef 100644 --- a/args.ts +++ b/args.ts @@ -6,11 +6,11 @@ * @license MIT */ -import * as flags from 'https://deno.land/std@0.61.0/flags/mod.ts' +import * as flags from 'https://deno.land/std@0.92.0/flags/mod.ts' import { parse, JSON_SCHEMA, -} from 'https://deno.land/std@0.61.0/encoding/yaml.ts' +} from 'https://deno.land/std@0.92.0/encoding/yaml.ts' /** * If the value is '-' stdin is read and returned. diff --git a/dedent.test.ts b/dedent.test.ts index 41f52d1..17d16eb 100644 --- a/dedent.test.ts +++ b/dedent.test.ts @@ -1,4 +1,4 @@ -import { assertEquals } from 'https://deno.land/std@0.61.0/testing/asserts.ts' +import { assertEquals } from 'https://deno.land/std@0.92.0/testing/asserts.ts' import { dedent } from './dedent.ts' const it = Deno.test diff --git a/doc-gen.ts b/doc-gen.ts index 8576676..4327d1a 100644 --- a/doc-gen.ts +++ b/doc-gen.ts @@ -6,7 +6,7 @@ * @license MIT */ -import * as fs from 'https://deno.land/std@0.61.0/fs/mod.ts' +import * as fs from 'https://deno.land/std@0.92.0/fs/mod.ts' const jsDocStartRe = /^\/\*\*/ const jsDocMidRe = /^\s+\*\s/ diff --git a/emittery.test.ts b/emittery.test.ts index 0a7495c..ca09517 100644 --- a/emittery.test.ts +++ b/emittery.test.ts @@ -1,8 +1,8 @@ -import { assertEquals } from 'https://deno.land/std@0.61.0/testing/asserts.ts' +import { assertEquals } from 'https://deno.land/std@0.92.0/testing/asserts.ts' import { delay as wait, delay, -} from 'https://deno.land/std@0.61.0/async/delay.ts' +} from 'https://deno.land/std@0.92.0/async/delay.ts' import { Emittery } from './emittery.ts' const emitter = new Emittery() diff --git a/http-signature/verify.test.ts b/http-signature/verify.test.ts index 175affc..4c1304d 100644 --- a/http-signature/verify.test.ts +++ b/http-signature/verify.test.ts @@ -1,4 +1,4 @@ -import { assertEquals } from 'https://deno.land/std@0.61.0/testing/asserts.ts' +import { assertEquals } from 'https://deno.land/std@0.92.0/testing/asserts.ts' const it = Deno.test import * as httpsig from './verify.ts' diff --git a/http-signature/verify.ts b/http-signature/verify.ts index 80a0047..87e6503 100644 --- a/http-signature/verify.ts +++ b/http-signature/verify.ts @@ -7,8 +7,8 @@ * @license MIT */ -import { HmacSha256 } from 'https://deno.land/std@0.61.0/hash/sha256.ts' -import { encode } from 'https://deno.land/std@0.61.0/encoding/base64.ts' +import { HmacSha256 } from 'https://deno.land/std@0.92.0/hash/sha256.ts' +import { encode } from 'https://deno.land/std@0.92.0/encoding/base64.ts' ///// interface parseOptions { diff --git a/kite/docker/server.ts b/kite/docker/server.ts index 1a126ff..be8e110 100644 --- a/kite/docker/server.ts +++ b/kite/docker/server.ts @@ -1,8 +1,8 @@ -import { serve } from 'https://deno.land/std@0.61.0/http/server.ts' -import * as YAML from 'https://deno.land/std@0.61.0/encoding/yaml.ts' -import { ensureDir } from 'https://deno.land/std@0.61.0/fs/mod.ts' +import { serve } from 'https://deno.land/std@0.92.0/http/server.ts' +import * as YAML from 'https://deno.land/std@0.92.0/encoding/yaml.ts' +import { ensureDir } from 'https://deno.land/std@0.92.0/fs/mod.ts' import * as httpsig from 'https://x.kite.run/lib/http-signature/verify.ts' -import { Sha256 } from 'https://deno.land/std@0.61.0/hash/sha256.ts' +import { Sha256 } from 'https://deno.land/std@0.92.0/hash/sha256.ts' const PORT = 8080 const EVAL_DIR = '/tmp/deno-eval' diff --git a/kite/extended-string.ts b/kite/extended-string.ts index 7b352ab..b5e007b 100644 --- a/kite/extended-string.ts +++ b/kite/extended-string.ts @@ -13,7 +13,7 @@ import { sha1 } from 'https://deno.land/x/sha1@v1.0.3/mod.ts' import titleCase from 'https://deno.land/x/case@v2.0.0/titleCase.ts' import { sha256 } from 'https://deno.land/x/sha256@v1.0.2/mod.ts' -import * as base32 from 'https://deno.land/std@0.61.0/encoding/base32.ts' +import * as base32 from 'https://deno.land/std@0.92.0/encoding/base32.ts' const RE = /^{{.*}}$/ diff --git a/kite/filter-terraform.ts b/kite/filter-terraform.ts index 80b6b6d..b7086db 100644 --- a/kite/filter-terraform.ts +++ b/kite/filter-terraform.ts @@ -6,7 +6,7 @@ * @license MIT */ -import { readLines } from 'https://deno.land/std@0.61.0/io/bufio.ts' +import { readLines } from 'https://deno.land/std@0.92.0/io/bufio.ts' // Filter Sensitive values. Regex based on // https://github.com/cloudposse/tfmask/blob/7a4a942248c665b6a5c66f9c288fabe97550f43d/main.go diff --git a/kite/template-cli.test.ts b/kite/template-cli.test.ts index f0e28f9..9af86f3 100644 --- a/kite/template-cli.test.ts +++ b/kite/template-cli.test.ts @@ -1,4 +1,4 @@ -import { assertEquals } from 'https://deno.land/std@0.61.0/testing/asserts.ts' +import { assertEquals } from 'https://deno.land/std@0.92.0/testing/asserts.ts' const it = Deno.test import { canonicalizeOptions, CliFlags } from './template-cli.ts' import { TemplateConfig } from './template.ts' diff --git a/kite/template-cli.ts b/kite/template-cli.ts index f65c3b1..72d7af3 100644 --- a/kite/template-cli.ts +++ b/kite/template-cli.ts @@ -16,7 +16,7 @@ import template, { } from './template.ts' import { getArgsObject } from '../args.ts' import { merge } from '../merge.ts' -import * as YAML from 'https://deno.land/std@0.61.0/encoding/yaml.ts' +import * as YAML from 'https://deno.land/std@0.92.0/encoding/yaml.ts' const helpText = `\ Kite™️ Template Tool by Brandon Kalinowski @brandonkal diff --git a/kite/template.test.ts b/kite/template.test.ts index a13535a..c7e5390 100644 --- a/kite/template.test.ts +++ b/kite/template.test.ts @@ -1,4 +1,4 @@ -import { assertEquals } from 'https://deno.land/std@0.61.0/testing/asserts.ts' +import { assertEquals } from 'https://deno.land/std@0.92.0/testing/asserts.ts' const it = Deno.test import { TemplateConfig, getConfigFromYaml } from './template.ts' import { dedent } from '../dedent.ts' diff --git a/kite/template.ts b/kite/template.ts index d8c5340..e89a47d 100644 --- a/kite/template.ts +++ b/kite/template.ts @@ -6,13 +6,13 @@ * @license MIT */ -import * as fs from 'https://deno.land/std@0.61.0/fs/mod.ts' -import * as path from 'https://deno.land/std@0.61.0/path/mod.ts' +import * as fs from 'https://deno.land/std@0.92.0/fs/mod.ts' +import * as path from 'https://deno.land/std@0.92.0/path/mod.ts' import { sha1 } from 'https://deno.land/x/sha1@v1.0.3/mod.ts' import titleCase from 'https://deno.land/x/case@v2.0.0/titleCase.ts' import { sha256 } from 'https://deno.land/x/sha256@v1.0.2/mod.ts' -import * as YAML from 'https://deno.land/std@0.61.0/encoding/yaml.ts' -import * as base32 from 'https://deno.land/std@0.61.0/encoding/base32.ts' +import * as YAML from 'https://deno.land/std@0.92.0/encoding/yaml.ts' +import * as base32 from 'https://deno.land/std@0.92.0/encoding/base32.ts' import * as k8s from 'https://x.kite.run/lib/kubernetes.ts' import { dotProp, jsonItem, visitAll, withTimeout, homedir } from '../utils.ts' diff --git a/kubernetes.ts b/kubernetes.ts index f7dd6df..66f9ade 100644 --- a/kubernetes.ts +++ b/kubernetes.ts @@ -8,7 +8,7 @@ import { parseAll, JSON_SCHEMA, -} from 'https://deno.land/std@0.61.0/encoding/yaml.ts' +} from 'https://deno.land/std@0.92.0/encoding/yaml.ts' import * as kite from './kite.ts' import { meta } from './kubernetes/gen/types.ts' diff --git a/merge.ts b/merge.ts index e2c43b5..142afdf 100644 --- a/merge.ts +++ b/merge.ts @@ -190,7 +190,7 @@ function arrayMergeWithKey>( * **Example**: * * ```js - * importee { merge, deep, deepWithKey } from '@jkcfg/std@0.61.0/merge'; + * importee { merge, deep, deepWithKey } from '@jkcfg/std@0.92.0/merge'; * * const pod = { * spec: { diff --git a/npm/@brandonkal/deno-quokka/README.md b/npm/@brandonkal/deno-quokka/README.md index d7f95db..188c78a 100644 --- a/npm/@brandonkal/deno-quokka/README.md +++ b/npm/@brandonkal/deno-quokka/README.md @@ -5,7 +5,7 @@ It does this by injecting a mock Deno global module into your instrumented TypeS It should be used in combination with `babel-plugin-deno` which rewrites imports to use the cache directory. -![Deno Quokka example with std@0.61.0/yaml](https://user-images.githubusercontent.com/4714862/72419175-2f72ad00-3774-11ea-950a-a20936b7fb95.png) +![Deno Quokka example with std@0.92.0/yaml](https://user-images.githubusercontent.com/4714862/72419175-2f72ad00-3774-11ea-950a-a20936b7fb95.png) ## Config diff --git a/npm/babel-plugin-deno/README.md b/npm/babel-plugin-deno/README.md index 9c71dae..59352a2 100644 --- a/npm/babel-plugin-deno/README.md +++ b/npm/babel-plugin-deno/README.md @@ -4,7 +4,7 @@ This npm module rewrites imports to use the cache directory. It can be used in combination with `@brandonkal/deno-quokka` for an interactive REPL for some Deno-flavored TypeScript code. -![Deno Quokka example with std@0.61.0/yaml](https://user-images.githubusercontent.com/4714862/72419175-2f72ad00-3774-11ea-950a-a20936b7fb95.png) +![Deno Quokka example with std@0.92.0/yaml](https://user-images.githubusercontent.com/4714862/72419175-2f72ad00-3774-11ea-950a-a20936b7fb95.png) ## License diff --git a/npm/babel-plugin-deno/index.js b/npm/babel-plugin-deno/index.js index 4343099..be9944d 100644 --- a/npm/babel-plugin-deno/index.js +++ b/npm/babel-plugin-deno/index.js @@ -102,7 +102,7 @@ function convertRemoteToLocalCache(moduleName) { } const denoDir = getDenoDir() - // "https://deno.land/std@0.61.0/log/mod" to "$DENO_DIR/deps/https/deno.land/std@0.61.0/log/mod" (no ".ts" because stripped) + // "https://deno.land/std@0.92.0/log/mod" to "$DENO_DIR/deps/https/deno.land/std@0.92.0/log/mod" (no ".ts" because stripped) const name = path.resolve(denoDir, 'deps', moduleName.replace('://', '/')) const redirectedName = fallbackHeader(name) diff --git a/retry.ts b/retry.ts index 6a6f1fa..b68c5c3 100644 --- a/retry.ts +++ b/retry.ts @@ -5,7 +5,7 @@ * @license MIT */ -import { delay as wait } from 'https://deno.land/std@0.61.0/async/delay.ts' +import { delay as wait } from 'https://deno.land/std@0.92.0/async/delay.ts' /** * Retry an async function until it does not throw an exception. diff --git a/testutils.ts b/testutils.ts index 5ed08d7..71b12c2 100644 --- a/testutils.ts +++ b/testutils.ts @@ -15,7 +15,7 @@ export function describe(desc: string, fn: Function) { console.log(desc) fn() } -export { fail } from 'https://deno.land/std/testing/asserts.ts' +export { fail } from 'https://deno.land/std@0.92.0/testing/asserts.ts' export const it = Deno.test export { expect } from 'https://raw.githubusercontent.com/brandonkal/expect/b457497332ba2197835f4eacef3e95dac569ee8d/expect.ts' import * as m from 'https://raw.githubusercontent.com/brandonkal/expect/b457497332ba2197835f4eacef3e95dac569ee8d/mock.ts' diff --git a/yaml-tag.ts b/yaml-tag.ts index 1c450fa..bbb0915 100644 --- a/yaml-tag.ts +++ b/yaml-tag.ts @@ -9,9 +9,9 @@ * @license MIT */ -import * as YAML from 'https://deno.land/std@0.61.0/encoding/yaml.ts' -import { Type } from 'https://deno.land/std@0.61.0/encoding/_yaml/type.ts' -import { Schema } from 'https://deno.land/std@0.61.0/encoding/_yaml/schema.ts' +import * as YAML from 'https://deno.land/std@0.92.0/encoding/yaml.ts' +import { Type } from 'https://deno.land/std@0.92.0/encoding/_yaml/type.ts' +import { Schema } from 'https://deno.land/std@0.92.0/encoding/_yaml/schema.ts' import { execDedent } from './dedent.ts' import { stripUndefined } from './utils.ts' diff --git a/yaml.test.ts b/yaml.test.ts index 6a32544..2532c66 100644 --- a/yaml.test.ts +++ b/yaml.test.ts @@ -1,4 +1,4 @@ -import { assertEquals } from 'https://deno.land/std@0.61.0/testing/asserts.ts' +import { assertEquals } from 'https://deno.land/std@0.92.0/testing/asserts.ts' const it = Deno.test import { dedent } from './dedent.ts'