8000 Merge pull request #1051 from palnabarun/release-11.0-master-update · kubernetes-client/python@dc29295 · GitHub
[go: up one dir, main page]

Skip to content

Commit dc29295

Browse files
authored
Merge pull request #1051 from palnabarun/release-11.0-master-update
Update README and CHANGELOG for 11.0.0 stable release
2 parents f493272 + d5d2a6a commit dc29295

File tree

2 files changed

+14
-7
lines changed

2 files changed

+14
-7
lines changed

CHANGELOG.md

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# v11.0.0
2+
3+
**Deprecation Notice**
4+
v11.0.0 of the client follows the Kubernetes [deprecation policy](https://github.com/kubernetes/community/blob/master/contributors/design-proposals/release/versioning.md#supported-releases-and-component-skew) and will
5+
be deprecated as and when Kubernetes version v1.15 gets deprecated.
6+
17
# v11.0.0b2
28
**Bug Fix:**
39
- Fix a fatal bug in package setup [kubernetes-client/python#1011](https://github.com/kubernetes-client/python/pull/1011)
@@ -270,7 +276,7 @@
270276
- Restricting the websocket-client to <=0.40 #299
271277

272278
# v3.0.0a1
273-
- Update client to kubernetes 1.7
279+
- Update client to kubernetes 1.7
274280
- Support ThirdPartyResources (TPR) and CustomResourceDefinitions (CRD). Note that TPR is deprecated in kubernetes #251 #201
275281
- Better dependency management #136
276282
- Add support for python3.6 #244
@@ -325,7 +331,7 @@
325331

326332
# v1.0.0a3
327333

328-
- Add context switch to kube config loader #46
334+
- Add context switch to kube config loader #46
329335
- Add default kube config location #64
330336
- Add suport for accessing multiple clusters #7
331337
- Bugfix: Python client does not resolve relative paths in kubeconfig #68

README.md

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -114,12 +114,13 @@ between client-python versions.
114114
| 7.0 Alpha/Beta | Kubernetes main repo, 1.11 branch ||
115115
| 7.0 | Kubernetes main repo, 1.11 branch ||
116116
| 8.0 Alpha/Beta | Kubernetes main repo, 1.12 branch ||
117-
| 8.0 | Kubernetes main repo, 1.12 branch | |
117+
| 8.0 | Kubernetes main repo, 1.12 branch | |
118118
| 9.0 Alpha/Beta | Kubernetes main repo, 1.13 branch ||
119119
| 9.0 | Kubernetes main repo, 1.13 branch ||
120120
| 10.0 Alpha/Beta | Kubernetes main repo, 1.14 branch ||
121121
| 10.0 | Kubernetes main repo, 1.14 branch ||
122-
| 11.0 Alpha/Beta | Kubernetes main repo, 1.15 branch ||
122+
| 11.0 Alpha/Beta | Kubernetes main repo, 1.15 branch ||
123+
| 11.0 | Kubernetes main repo, 1.15 branch ||
123124

124125
Key:
125126

@@ -169,8 +170,8 @@ Specifically check `ipaddress` and `urllib3` package versions to make sure they
169170
Starting from 4.0 release, we do not support directly calling exec or attach calls. you should use stream module to call them. so instead
170171
of `resp = api.connect_get_namespaced_pod_exec(name, ...` you should call `resp = stream(api.connect_get_namespaced_pod_exec, name, ...`.
171172

172-
Using Stream will overwrite the requests protocol in _core_v1_api.CoreV1Api()_
173-
This will cause a failure in non-exec/attach calls. If you reuse your api client object, you will need to
173+
Using Stream will overwrite the requests protocol in _core_v1_api.CoreV1Api()_
174+
This will cause a failure in non-exec/attach calls. If you reuse your api client object, you will need to
174175
recreate it between api calls that use _stream_ and other api calls.
175-
176+
176177
See more at [exec example](examples/pod_exec.py).

0 commit comments

Comments
 (0)
0