Skip to content

Commit 6d53ddc

Browse files
authored
Merge pull request #538 from brendandburns/version
Get ready for the 0.13.0 release.
2 parents 2dac326 + 890d1c4 commit 6d53ddc

File tree

3 files changed

+29
-2
lines changed

3 files changed

+29
-2
lines changed

README.md

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,33 @@ const k8sApi = kc.makeApiClient(k8s.CoreV1Api);
103103

104104
There are several more examples in the [examples](https://github.com/kubernetes-client/javascript/tree/master/examples) directory.
105105

106+
# Compatability
107+
108+
Prior to the `0.13.0` release, release versions did not track Kubernetes versions. Starting with the `0.13.0`
109+
release, we will increment the minor version whenever we update the minor Kubernetes API version
110+
(e.g. `1.19.x`) that this library is generated from.
111+
112+
Generally speaking newer clients will work with older Kubernetes, but compatability isn't 100% guaranteed.
113+
114+
| client version | older versions | 1.18 | 1.19 |
115+
|----------------|----------------|------|------|
116+
| 0.12.3 | - || x |
117+
| 0.13.0 | - | + ||
118+
119+
Key:
120+
121+
* `` Exactly the same features / API objects in both javascript-client and the Kubernetes
122+
version.
123+
* `+` javascript-client has features or api objects that may not be present in the
124+
Kubernetes cluster, but everything they have in common will work.
125+
* `-` The Kubernetes cluster has features the javascript-client library can't use
126+
(additional API objects, etc).
127+
* `x` The Kubernetes cluster has no guarantees to support the API client of
128+
this version, as it only promises _n_-2 version support. It is not tested,
129+
and operations using API versions that have been deprecated and removed in
130+
later server versions won't function correctly.
131+
132+
106133
# Development
107134

108135
All dependencies of this project are expressed in its

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@kubernetes/client-node",
3-
"version": "0.12.4",
3+
"version": "0.13.0",
44
"description": "NodeJS client for kubernetes",
55
"repository": {
66
"type": "git",

0 commit comments

Comments
 (0)