Skip to content

Commit 4b157be

Browse files
HumairAKCollinHowland
authored andcommitted
carry over release 2.14.6 (#12358)
* chore: release 2.14.6 (#12355) * chore: add publish package workflow (#12344) Signed-off-by: Humair Khan <[email protected]> (cherry picked from commit 08ff96b) * chore: regenerate files for ver upgrade (#12341) Signed-off-by: Humair Khan <[email protected]> (cherry picked from commit f689e86) * chore: update versioning policy (#12342) Signed-off-by: Humair Khan <[email protected]> (cherry picked from commit d0e85fa) * chore: remove pin on protobuf 6 ver (#12345) * remove pin on protobuf 6 ver Signed-off-by: Humair Khan <[email protected]> * use requirements.in for kfp-k8s and spec Signed-off-by: Humair Khan <[email protected]> --------- Signed-off-by: Humair Khan <[email protected]> (cherry picked from commit 06e6a44) * test for kfp-server-api codegen in ci Signed-off-by: Humair Khan <[email protected]> (cherry picked from commit b23aac8) * chore: Release 2.14.6 Signed-off-by: Humair Khan <[email protected]> * build wheels from sdist Signed-off-by: Humair Khan <[email protected]> * revert click version change Pin click on 8.1.8. Due to compatibility issues, cli tests fail on click>8.1.8 in Python >= 3.13. Signed-off-by: Humair Khan <[email protected]> --------- Signed-off-by: Humair Khan <[email protected]> * revert click version change Pin click on 8.1.8. Due to compatibility issues, cli tests fail on click>8.1.8 in Python >= 3.13. Signed-off-by: Humair Khan <[email protected]> * update requirements Signed-off-by: Humair Khan <[email protected]> * update golden files due to sdk version change Signed-off-by: Humair Khan <[email protected]> --------- Signed-off-by: Humair Khan <[email protected]> Signed-off-by: CollinHowland <[email protected]>
1 parent a05a0e0 commit 4b157be

File tree

33 files changed

+89
-70
lines changed

33 files changed

+89
-70
lines changed

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.14.5
1+
2.14.6

api/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ python: python fetch-protos
4747
sh -c 'cd /go/src/github.com/kubeflow/pipelines/api/v2alpha1/python && \
4848
python3 -m pip install --user --break-system-packages -r requirements.txt && \
4949
python3 generate_proto.py && \
50-
python3 setup.py sdist bdist_wheel --dist-dir ./dist'
50+
python3 setup.py sdist && pip wheel --no-deps dist/*.tar.gz -w dist'
5151

5252
# Build and locally install Python package using editable mode for development.
5353
.PHONY: python-dev

api/v2alpha1/python/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
from typing import List
1818

1919
NAME = 'kfp-pipeline-spec'
20-
VERSION = '2.14.3'
20+
VERSION = '2.14.6'
2121

2222
def get_requirements(requirements_file: str) -> List[str]:
2323
"""Read requirements from requirements.in."""

backend/api/v1beta1/python_http_client/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ This file contains REST API specification for Kubeflow Pipelines. The file is au
33

44
This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
55

6-
- API version: 2.14.5
7-
- Package version: 2.14.5
6+
- API version: 2.14.6
7+
- Package version: 2.14.6
88
- Build package: org.openapitools.codegen.languages.PythonClientCodegen
99
For more information, please visit [https://www.google.com](https://www.google.com)
1010

backend/api/v1beta1/python_http_client/kfp_server_api/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
from __future__ import absolute_import
1616

17-
__version__ = "2.14.5"
17+
__version__ = "2.14.6"
1818

1919
# import apis into sdk package
2020
from kfp_server_api.api.experiment_service_api import ExperimentServiceApi

backend/api/v1beta1/python_http_client/kfp_server_api/api_client.py

Lines changed: 1 addition & 1 deletion
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/2.14.5/python'
81+
self.user_agent = 'OpenAPI-Generator/2.14.6/python'
8282
self.client_side_validation = configuration.client_side_validation
8383

8484
def __enter__(self):

backend/api/v1beta1/python_http_client/kfp_server_api/configuration.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -351,8 +351,8 @@ def to_debug_report(self):
351351
return "Python SDK Debug Report:\n"\
352352
"OS: {env}\n"\
353353
"Python Version: {pyversion}\n"\
354-
"Version of the API: 2.14.5\n"\
355-
"SDK Package Version: 2.14.5".\
354+
"Version of the API: 2.14.6\n"\
355+
"SDK Package Version: 2.14.6".\
356356
format(env=sys.platform, pyversion=sys.version)
357357

358358
def get_host_settings(self):

backend/api/v1beta1/python_http_client/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
from setuptools import setup, find_packages # noqa: H301
1414

1515
NAME = "kfp-server-api"
16-
VERSION = "2.14.5"
16+
VERSION = "2.14.6"
1717
# To install the library, run the following
1818
#
1919
# python setup.py install

backend/api/v1beta1/swagger/kfp_api_single_file.swagger.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"swagger": "2.0",
33
"info": {
44
"title": "Kubeflow Pipelines API",
5-
"version": "2.14.5",
5+
"version": "2.14.6",
66
"description": "This file contains REST API specification for Kubeflow Pipelines. The file is autogenerated from the swagger definition.",
77
"contact": {
88
"name": "google",

backend/api/v2beta1/python_http_client/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ This file contains REST API specification for Kubeflow Pipelines. The file is au
33

44
This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
55

6-
- API version: 2.14.5
7-
- Package version: 2.14.5
6+
- API version: 2.14.6
7+
- Package version: 2.14.6
88
- Build package: org.openapitools.codegen.languages.PythonClientCodegen
99
For more information, please visit [https://www.google.com](https://www.google.com)
1010

0 commit comments

Comments
 (0)