Skip to content

Commit

Permalink
Update std to /[email protected] (#10)
Browse files Browse the repository at this point in the history
* Update std to /[email protected]

* Update Deno versions in CI

* Prepare release notes for v0.4.0
  • Loading branch information
danopia authored May 21, 2022
1 parent 35a7671 commit b95eb96
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 5 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/deno-ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,11 @@ jobs:
strategy:
matrix:
deno-version:
- v1.11
- v1.14
- v1.15
- v1.16
- v1.18
- v1.20
- v1.22
- canary
fail-fast: false # run each branch to completion

Expand Down
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,10 @@ Check out `lib/contract.ts` to see the type/API contract.

## Changelog

* `v0.4.0` on `2022-05-21`:
Updated deps to `/[email protected]`.
Now requires Deno v1.14 or later to pass typecheck.

* `v0.3.2` on `2021-11-28`:
Fix another regression on modern Deno, related to client certificates.
Or more exactly the lack thereof when running in-cluster.
Expand Down
4 changes: 2 additions & 2 deletions lib/kubeconfig.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
* be relative to the file they were originally found in
*/

import { join } from "https://deno.land/std@0.105.0/path/mod.ts";
import * as YAML from "https://deno.land/std@0.105.0/encoding/yaml.ts";
import { join } from "https://deno.land/std@0.140.0/path/mod.ts";
import * as YAML from "https://deno.land/std@0.140.0/encoding/yaml.ts";

export class KubeConfig {
constructor(
Expand Down
2 changes: 1 addition & 1 deletion transports/via-kubectl-raw.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import {
readableStreamFromReader,
} from "https://deno.land/std@0.105.0/io/streams.ts";
} from "https://deno.land/std@0.140.0/streams/conversion.ts";

import { RestClient, RequestOptions, JSONValue } from '../lib/contract.ts';
import {
Expand Down

0 comments on commit b95eb96

Please sign in to comment.