Skip to content

Commit

Permalink
Update release notes
Browse files Browse the repository at this point in the history
  • Loading branch information
danopia committed Sep 18, 2024
1 parent 13b380f commit ddf7fb1
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 8 deletions.
7 changes: 6 additions & 1 deletion lib/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

Generated, typed interfaces to make every possible Kubernetes API request and work with richer data structures.

Actual request transports implemented in `/x/kubernetes_client`.
The actual request transports are implemented in `/x/kubernetes_client`.

## Usage

Expand All @@ -32,6 +32,11 @@ see `/x/kubernetes_client` for more information.

## Changelog

* `v0.5.1` on `2024-09-18`:
* Updating `/x/kubernetes_client` API contract to `v0.7.3`.
* Add [JSR publication](https://jsr.io/@cloudydeno/kubernetes-apis) of the module.
* Exposed API surface has been adjusted to satisfy JSR "slow types" checks. Shouldn't affect most code.

* `v0.5.0` on `2023-08-19`:
* Updating `/x/kubernetes_client` API contract to `v0.7.0`.
* Actually implement PodExec, PodAttach, PodPortForward APIs with a new tunnel implementation.
Expand Down
8 changes: 4 additions & 4 deletions lib/deps.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
// kubernetes_apis itself only depends on specific files,
// so this is provided an optional utility

export * from "https://deno.land/x/[email protected].0/mod.ts";
export * as tunnelBeta from "https://deno.land/x/[email protected].0/tunnel-beta/via-websocket.ts";
export * from "https://deno.land/x/[email protected].3/mod.ts";
export * as tunnelBeta from "https://deno.land/x/[email protected].3/tunnel-beta/via-websocket.ts";

export * from "https://deno.land/x/[email protected].0/lib/contract.ts";
export * from "https://deno.land/x/[email protected].3/lib/contract.ts";
export {
WatchEventTransformer,
} from "https://deno.land/x/[email protected].0/lib/stream-transformers.ts";
} from "https://deno.land/x/[email protected].3/lib/stream-transformers.ts";
6 changes: 3 additions & 3 deletions lib/jsr.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,8 @@
{
"name": "@cloudydeno/kubernetes-apis",
"version": "0.6.0",
"version": "0.5.1",
"exports": {

"./argoproj.io/v1alpha1": "./argo-cd/argoproj.io@v1alpha1/mod.ts",

"./admissionregistration.k8s.io/v1": "./builtin/admissionregistration.k8s.io@v1/mod.ts",
"./admissionregistration.k8s.io/v1alpha1": "./builtin/admissionregistration.k8s.io@v1alpha1/mod.ts",
"./admissionregistration.k8s.io/v1beta1": "./builtin/admissionregistration.k8s.io@v1beta1/mod.ts",
Expand Down Expand Up @@ -37,6 +35,8 @@
"./scheduling.k8s.io/v1": "./builtin/scheduling.k8s.io@v1/mod.ts",
"./storage.k8s.io/v1": "./builtin/storage.k8s.io@v1/mod.ts",

"./argoproj.io/v1alpha1": "./argo-cd/argoproj.io@v1alpha1/mod.ts",

"./acme.cert-manager.io/v1": "./cert-manager/acme.cert-manager.io@v1/mod.ts",
"./cert-manager.io/v1": "./cert-manager/cert-manager.io@v1/mod.ts",

Expand Down

0 comments on commit ddf7fb1

Please sign in to comment.