Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(sdk): release kfp sdk 2.11.0 #11451

Merged
merged 1 commit into from
Dec 9, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions docs/versions.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,17 @@
[
{
"version": "https://kubeflow-pipelines.readthedocs.io/en/sdk-2.10.1/",
"title": "2.10.1",
"version": "https://kubeflow-pipelines.readthedocs.io/en/sdk-2.11.0/",
"title": "2.11.0",
"aliases": [
"stable",
"latest"
]
},
{
"version": "https://kubeflow-pipelines.readthedocs.io/en/sdk-2.10.1/",
"title": "2.10.1",
"aliases": []
},
{
"version": "https://kubeflow-pipelines.readthedocs.io/en/sdk-2.10.0/",
"title": "2.10.0",
Expand Down
15 changes: 14 additions & 1 deletion sdk/RELEASE.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,20 @@
# Current Version (in development)

## Features

## Breaking changes

## Deprecations

## Bug fixes and other changes

## Documentation updates

# 2.11.0

## Features
* Expose `--existing-token` flag in `kfp` CLI to allow users to provide an existing token for authentication. [\#11400](https://github.com/kubeflow/pipelines/pull/11400)
* Add the ability to parameterize container images for tasks within pipelines
* Add the ability to parameterize container images for tasks within pipelines [\#11404](https://github.com/kubeflow/pipelines/pull/11404)

## Breaking changes

Expand All @@ -11,6 +23,7 @@
## Bug fixes and other changes
* Add error handling for image build/push failures in KFP SDK. [\#11164](https://github.com/kubeflow/pipelines/pull/11356)
* Backport fixes in kubeflow/pipelines#11075. [\#11392])(https://github.com/kubeflow/pipelines/pull/11392)
* Depends on `kfp-pipeline-spec==0.6.0`. [\#11447](https://github.com/kubeflow/pipelines/pull/11447)

## Documentation updates

Expand Down
2 changes: 1 addition & 1 deletion sdk/python/kfp/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
# https://packaging.python.org/guides/packaging-namespace-packages/#pkgutil-style-namespace-packages
__path__ = __import__('pkgutil').extend_path(__path__, __name__)

__version__ = '2.10.1'
__version__ = '2.11.0'

import sys
import warnings
Expand Down
Loading