Skip to content

Commit 01b1642

Browse files
authored
Merge pull request #2176 from yliaog/automated-release-of-29.0.0-upstream-release-29.0-1704736422
Automated release of 29.0.0 upstream release 29.0 1704736422
2 parents e5abf14 + fa3f28b commit 01b1642

13 files changed

+252
-47
lines changed

CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
# v29.0.0
2+
3+
Kubernetes API Version: v1.29.0
4+
5+
### Bug or Regression
6+
- Fix UTF-8 failures in Watch (#2100, @davidopic)
7+
- Fix upper version boundary of urllib3, since other dependencies don't support urllib3 in version 2 (#2105, @jsaalfeld)
8+
19
# v29.0.0b1
210

311
Kubernetes API Version: v1.29.0

README.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,8 @@ between client-python versions.
159159
| 27.0 | Kubernetes main repo, 1.27 branch ||
160160
| 28.0 Alpha/Beta | Kubernetes main repo, 1.28 branch ||
161161
| 28.0 | Kubernetes main repo, 1.28 branch ||
162-
| 29.0 Alpha/Beta | Kubernetes main repo, 1.29 branch ||
162+
| 29.0 Alpha/Beta | Kubernetes main repo, 1.29 branch ||
163+
| 29.0 | Kubernetes main repo, 1.29 branch ||
163164

164165
> See [here](#homogenizing-the-kubernetes-python-client-versions) for an explanation of why there is no v13-v16 release.
165166
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
749f53eabd362146730f1ed07cc567e4c11a7f56ccac8d5287d068f2d88c3e2f
1+
7e85be0997bfa9f4f3df6283191ccaaf3e97d6d3a7b265677595b771ec0e46f8

kubernetes/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ No description provided (generated by Openapi Generator https://github.com/opena
44
This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
55

66
- API version: release-1.29
7-
- Package version: 29.0.0b1
7+
- Package version: 29.0.0
88
- Build package: org.openapitools.codegen.languages.PythonClientCodegen
99

1010
## Requirements.

kubernetes/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
__project__ = 'kubernetes'
1616
# The version is auto-updated. Please do not edit.
17-
__version__ = "29.0.0b1"
17+
__version__ = "29.0.0"
1818

1919
from . import client
2020
from . import config

kubernetes/client/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
from __future__ import absolute_import
1616

17-
__version__ = "29.0.0b1"
17+
__version__ = "29.0.0"
1818

1919
# import apis into sdk package
2020
from kubernetes.client.api.well_known_api import WellKnownApi

kubernetes/client/api/custom_objects_api.py

+78-8
Large diffs are not rendered by default.

kubernetes/client/api_client.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ def __init__(self, configuration=None, header_name=None, header_value=None,
7878
self.default_headers[header_name] = header_value
7979
self.cookie = cookie
8080
# Set default User-Agent.
81-
self.user_agent = 'OpenAPI-Generator/29.0.0b1/python'
81+
self.user_agent = 'OpenAPI-Generator/29.0.0/python'
8282
self.client_side_validation = configuration.client_side_validation
8383

8484
def __enter__(self):

kubernetes/client/configuration.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -354,7 +354,7 @@ def to_debug_report(self):
354354
"OS: {env}\n"\
355355
"Python Version: {pyversion}\n"\
356356
"Version of the API: release-1.29\n"\
357-
"SDK Package Version: 29.0.0b1".\
357+
"SDK Package Version: 29.0.0".\
358358
format(env=sys.platform, pyversion=sys.version)
359359

360360
def get_host_settings(self):

kubernetes/docs/CustomObjectsApi.md

+56-28
Large diffs are not rendered by default.

scripts/constants.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,13 @@
1818
KUBERNETES_BRANCH = "release-1.29"
1919

2020
# client version for packaging and releasing.
21-
CLIENT_VERSION = "29.0.0b1"
21+
CLIENT_VERSION = "29.0.0"
2222

2323
# Name of the release package
2424
PACKAGE_NAME = "kubernetes"
2525

2626
# Stage of development, mainly used in setup.py's classifiers.
27-
DEVELOPMENT_STATUS = "4 - Beta"
27+
DEVELOPMENT_STATUS = "5 - Production/Stable"
2828

2929

3030
# If called directly, return the constant value given

scripts/swagger.json

+98
Large diffs are not rendered by default.

setup.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@
1616

1717
# Do not edit these constants. They will be updated automatically
1818
# by scripts/update-client.sh.
19-
CLIENT_VERSION = "29.0.0b1"
19+
CLIENT_VERSION = "29.0.0"
2020
PACKAGE_NAME = "kubernetes"
21-
DEVELOPMENT_STATUS = "4 - Beta"
21+
DEVELOPMENT_STATUS = "5 - Production/Stable"
2222

2323
# To install the library, run the following
2424
#

0 commit comments

Comments
 (0)