Skip to content

Commit d287403

Browse files
committed
chore(sdk): release KFP SDK 2.9.0
Signed-off-by: Chen Sun <[email protected]>
1 parent dfd4cc1 commit d287403

File tree

3 files changed

+26
-3
lines changed

3 files changed

+26
-3
lines changed

docs/versions.json

+7-2
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,17 @@
11
[
22
{
3-
"version": "https://kubeflow-pipelines.readthedocs.io/en/sdk-2.8.0/",
4-
"title": "2.8.0",
3+
"version": "https://kubeflow-pipelines.readthedocs.io/en/sdk-2.9.0/",
4+
"title": "2.9.0",
55
"aliases": [
66
"stable",
77
"latest"
88
]
99
},
10+
{
11+
"version": "https://kubeflow-pipelines.readthedocs.io/en/sdk-2.8.0/",
12+
"title": "2.8.0",
13+
"aliases": []
14+
},
1015
{
1116
"version": "https://kubeflow-pipelines.readthedocs.io/en/sdk-2.7.0/",
1217
"title": "2.7.0",

sdk/RELEASE.md

+18
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,24 @@
1010

1111
## Documentation updates
1212

13+
# 2.9.0
14+
15+
## Features
16+
* Kfp support for pip trusted host [#11151](https://github.com/kubeflow/pipelines/pull/11151)
17+
18+
## Breaking changes
19+
20+
* Pin kfp-pipeline-spec==0.4.0, kfp-server-api>=2.1.0,<2.4.0 [#11192](https://github.com/kubeflow/pipelines/pull/11192)
21+
22+
## Deprecations
23+
24+
## Bug fixes and other changes
25+
26+
* Loosening kubernetes dependency constraint [#11079](https://github.com/kubeflow/pipelines/pull/11079)
27+
* Throw 'exit_task cannot depend on any other tasks.' error when an ExitHandler has a parameter dependent on other task [#11005](https://github.com/kubeflow/pipelines/pull/11005)
28+
29+
## Documentation updates
30+
1331
# 2.8.0
1432

1533
## Features

sdk/python/kfp/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
# https://packaging.python.org/guides/packaging-namespace-packages/#pkgutil-style-namespace-packages
1717
__path__ = __import__('pkgutil').extend_path(__path__, __name__)
1818

19-
__version__ = '2.8.0'
19+
__version__ = '2.9.0'
2020

2121
import sys
2222
import warnings

0 commit comments

Comments
 (0)