@@ -30,8 +30,18 @@ When running locally (with `kubectl` set up), you probably just to add `--allow-
30
30
For a container being deployed onto a cluster, there's more flags to provide instead;
31
31
see ` /x/kubernetes_client ` for more information.
32
32
33
+ NOTE: Although the APIs all accept an ` AbortSignal ` ,
34
+ Deno's ` fetch() ` function does not yet support ` AbortSignal ` and
35
+ cancelling API calls is thus not well-supported at this time.
36
+
33
37
## Changelog
34
38
39
+ * ` v0.3.1 ` on ` 2021-05-09 ` :
40
+ * Updating ` /x/kubernetes_client ` API contract to ` v0.2.4 ` .
41
+ * Includes 'builtin' APIs generated from K8s ` v1.21.0 ` .
42
+ * ` get ` functions no longer accept ` export ` or ` exact ` .
43
+ * ` cert-manager ` and ` external-dns ` CRDs have been updated from the latest releases.
44
+
35
45
* ` v0.3.0 ` on ` 2021-02-28 ` :
36
46
* Updating ` /x/kubernetes_client ` API contract to ` v0.2.0 ` .
37
47
* Breaking change!
@@ -42,6 +52,7 @@ see `/x/kubernetes_client` for more information.
42
52
* Now handles v1.Status error payloads when processing any response body.
43
53
* Added shebang and execute bit to every script in ` examples/ ` .
44
54
* Optimized redundencies out of cert-manager structures (half the file size now)
55
+
45
56
* ` v0.2.0 ` on ` 2020-12-29 ` :
46
57
* Includes 'builtin' APIs generated from K8s ` v1.20 ` .
47
58
* Patching and deletion is more stable; mistype error messages are vastly improved.
@@ -63,6 +74,6 @@ see `/x/kubernetes_client` for more information.
63
74
* [x] PATCH requests
64
75
* [ ] Solidify Quantity, Duration, etc
65
76
* [x] Reconcile deletion response kinds (might still be fallout)
66
- * [ ] Story for generating API clients directly from CRD specifications
77
+ * [x ] Story for generating API clients directly from CRD specifications
67
78
* [ ] Story for generating the whole API surface of a specific cluster
68
79
* [x] Move Reflector implementation upstream to ` /x/kubernetes_client `
0 commit comments