Skip to content

Commit

Permalink
Merge pull request #2176 from yliaog/automated-release-of-29.0.0-upst…
Browse files Browse the repository at this point in the history
…ream-release-29.0-1704736422

Automated release of 29.0.0 upstream release 29.0 1704736422
  • Loading branch information
k8s-ci-robot committed Jan 8, 2024
2 parents e5abf14 + fa3f28b commit 01b1642
Show file tree
Hide file tree
Showing 13 changed files with 252 additions and 47 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
# v29.0.0

Kubernetes API Version: v1.29.0

### Bug or Regression
- Fix UTF-8 failures in Watch (#2100, @davidopic)
- Fix upper version boundary of urllib3, since other dependencies don't support urllib3 in version 2 (#2105, @jsaalfeld)

# v29.0.0b1

Kubernetes API Version: v1.29.0
Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,8 @@ between client-python versions.
| 27.0 | Kubernetes main repo, 1.27 branch ||
| 28.0 Alpha/Beta | Kubernetes main repo, 1.28 branch ||
| 28.0 | Kubernetes main repo, 1.28 branch ||
| 29.0 Alpha/Beta | Kubernetes main repo, 1.29 branch ||
| 29.0 Alpha/Beta | Kubernetes main repo, 1.29 branch ||
| 29.0 | Kubernetes main repo, 1.29 branch ||

> See [here](#homogenizing-the-kubernetes-python-client-versions) for an explanation of why there is no v13-v16 release.
Expand Down
2 changes: 1 addition & 1 deletion kubernetes/.openapi-generator/swagger.json.sha256
Original file line number Diff line number Diff line change
@@ -1 +1 @@
749f53eabd362146730f1ed07cc567e4c11a7f56ccac8d5287d068f2d88c3e2f
7e85be0997bfa9f4f3df6283191ccaaf3e97d6d3a7b265677595b771ec0e46f8
2 changes: 1 addition & 1 deletion kubernetes/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ No description provided (generated by Openapi Generator https://github.com/opena
This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:

- API version: release-1.29
- Package version: 29.0.0b1
- Package version: 29.0.0
- Build package: org.openapitools.codegen.languages.PythonClientCodegen

## Requirements.
Expand Down
2 changes: 1 addition & 1 deletion kubernetes/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

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

from . import client
from . import config
Expand Down
2 changes: 1 addition & 1 deletion kubernetes/client/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

from __future__ import absolute_import

__version__ = "29.0.0b1"
__version__ = "29.0.0"

# import apis into sdk package
from kubernetes.client.api.well_known_api import WellKnownApi
Expand Down
86 changes: 78 additions & 8 deletions kubernetes/client/api/custom_objects_api.py

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion kubernetes/client/api_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ def __init__(self, configuration=None, header_name=None, header_value=None,
self.default_headers[header_name] = header_value
self.cookie = cookie
# Set default User-Agent.
self.user_agent = 'OpenAPI-Generator/29.0.0b1/python'
self.user_agent = 'OpenAPI-Generator/29.0.0/python'
self.client_side_validation = configuration.client_side_validation

def __enter__(self):
Expand Down
2 changes: 1 addition & 1 deletion kubernetes/client/configuration.py
Original file line number Diff line number Diff line change
Expand Up @@ -354,7 +354,7 @@ def to_debug_report(self):
"OS: {env}\n"\
"Python Version: {pyversion}\n"\
"Version of the API: release-1.29\n"\
"SDK Package Version: 29.0.0b1".\
"SDK Package Version: 29.0.0".\
format(env=sys.platform, pyversion=sys.version)

def get_host_settings(self):
Expand Down
84 changes: 56 additions & 28 deletions kubernetes/docs/CustomObjectsApi.md

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions scripts/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,13 @@
KUBERNETES_BRANCH = "release-1.29"

# client version for packaging and releasing.
CLIENT_VERSION = "29.0.0b1"
CLIENT_VERSION = "29.0.0"

# Name of the release package
PACKAGE_NAME = "kubernetes"

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


# If called directly, return the constant value given
Expand Down
98 changes: 98 additions & 0 deletions scripts/swagger.json

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@

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

# To install the library, run the following
#
Expand Down

0 comments on commit 01b1642

Please sign in to comment.