From 8a0871fe8b9c8c9237a8b439977344dbd87cd440 Mon Sep 17 00:00:00 2001 From: Daniel Lamando Date: Sat, 12 Aug 2023 08:48:53 +0200 Subject: [PATCH] Update to /x/kubernetes_client@v0.6.0 --- README.md | 2 +- generation/deps.ts | 2 +- lib/README.md | 5 ++++- lib/client.ts | 2 +- lib/common.ts | 6 +++--- 5 files changed, 10 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 1eca03b..0c88c5b 100644 --- a/README.md +++ b/README.md @@ -61,4 +61,4 @@ will be generated as one unit and possibly stored in S3 or similar, and the path In any case, the actual API client that works with authentication/transport will be served authoratatively from a normal deno repo: -* https://deno.land/x/kubernetes_client@v0.5.0/mod.ts +* https://deno.land/x/kubernetes_client@v0.6.0/mod.ts diff --git a/generation/deps.ts b/generation/deps.ts index 3207839..a126ac5 100644 --- a/generation/deps.ts +++ b/generation/deps.ts @@ -1,4 +1,4 @@ export * as path from "https://deno.land/std@0.177.0/path/mod.ts"; export * as YAML from "https://deno.land/std@0.177.0/encoding/yaml.ts"; -export type { ApiKind, JSONValue } from "https://deno.land/x/kubernetes_client@v0.5.0/mod.ts"; +export type { ApiKind, JSONValue } from "https://deno.land/x/kubernetes_client@v0.6.0/mod.ts"; diff --git a/lib/README.md b/lib/README.md index 1025543..d5dc24c 100644 --- a/lib/README.md +++ b/lib/README.md @@ -14,7 +14,7 @@ Here's a basic request, listing all Pods in the `default` namespace. It uses the `autoDetectClient()` entrypoint which returns the first usable client. ```ts -import { autoDetectClient } from 'https://deno.land/x/kubernetes_client@v0.5.0/mod.ts'; +import { autoDetectClient } from 'https://deno.land/x/kubernetes_client@v0.6.0/mod.ts'; import { CoreV1Api } from 'https://deno.land/x/kubernetes_apis/builtin/core@v1/mod.ts'; const kubernetes = await autoDetectClient(); @@ -32,6 +32,9 @@ see `/x/kubernetes_client` for more information. ## Changelog +* `v0.5.0` on `2023-08-??`: + * Updating `/x/kubernetes_client` API contract to `v0.6.0`. + * `v0.4.0` on `2023-02-10`: * Updating `/x/kubernetes_client` API contract to `v0.5.0`. * Breaking change: The return type of delete functions has been widened to a union. diff --git a/lib/client.ts b/lib/client.ts index b246a98..541a486 100644 --- a/lib/client.ts +++ b/lib/client.ts @@ -2,4 +2,4 @@ // kubernetes_apis itself only depends on specific files, // so this is provided an optional utility (as opposed to deps.ts) -export * from "https://deno.land/x/kubernetes_client@v0.5.0/mod.ts"; +export * from "https://deno.land/x/kubernetes_client@v0.6.0/mod.ts"; diff --git a/lib/common.ts b/lib/common.ts index 4e980b9..e832d74 100644 --- a/lib/common.ts +++ b/lib/common.ts @@ -7,12 +7,12 @@ import { ApiKind, JSONObject, JSONValue, RequestOptions, -} from "https://deno.land/x/kubernetes_client@v0.5.0/lib/contract.ts"; +} from "https://deno.land/x/kubernetes_client@v0.6.0/lib/contract.ts"; -export * from "https://deno.land/x/kubernetes_client@v0.5.0/lib/contract.ts"; +export * from "https://deno.land/x/kubernetes_client@v0.6.0/lib/contract.ts"; export { WatchEventTransformer -} from "https://deno.land/x/kubernetes_client@v0.5.0/lib/stream-transformers.ts"; +} from "https://deno.land/x/kubernetes_client@v0.6.0/lib/stream-transformers.ts"; // Helpers used to validate/transform structures from or for the wire // And some other stuff :)