Skip to content

Commit 1708ce7

Browse files
authored
chore(sdk): release KFP SDK 2.10.0 (kubeflow#11364)
* chore(sdk): release KFP SDK 2.10.0 Signed-off-by: Chen Sun <[email protected]> * fix: version check regex in test Signed-off-by: Chen Sun <[email protected]> --------- Signed-off-by: Chen Sun <[email protected]>
1 parent 8d018af commit 1708ce7

File tree

4 files changed

+27
-5
lines changed

4 files changed

+27
-5
lines changed

docs/versions.json

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

sdk/RELEASE.md

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,32 @@
11
# Current Version (in development)
22

3+
## Features
4+
5+
## Breaking changes
6+
7+
## Deprecations
8+
9+
## Bug fixes and other changes
10+
11+
## Documentation updates
12+
13+
# 2.10.0
14+
315
## Features
416
* Support dynamic machine type parameters in pipeline task setters. [\#11097](https://github.com/kubeflow/pipelines/pull/11097)
517
* Add a new `use_venv` field to the component decorator, enabling the component to run inside a virtual environment. [\#11326](https://github.com/kubeflow/pipelines/pull/11326)
18+
* Add PipelineConfig to DSL to re-implement pipeline-level config [\#11112](https://github.com/kubeflow/pipelines/pull/11112)
19+
* Allow disabling default caching via a CLI flag and env var [\#11222](https://github.com/kubeflow/pipelines/pull/11222)
620

721
## Breaking changes
22+
* Deprecate the metrics artifact auto-populating feature. [\#11362](https://github.com/kubeflow/pipelines/pull/11362)
823

924
## Deprecations
10-
* Deprecate the metrics artifact auto-populating feature. [\#11362](https://github.com/kubeflow/pipelines/pull/11362)
25+
* Set Python 3.9 as the Minimum Supported Version [\#11159](https://github.com/kubeflow/pipelines/pull/11159)
1126

1227
## Bug fixes and other changes
28+
* Fix invalid escape sequences [\#11147](https://github.com/kubeflow/pipelines/pull/11147)
29+
* Fix nested pipeline returns. [\#11196](https://github.com/kubeflow/pipelines/pull/11196)
1330

1431
## Documentation updates
1532

sdk/python/kfp/__init__.py

Lines changed: 1 addition & 1 deletion
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.9.0'
19+
__version__ = '2.10.0'
2020

2121
import sys
2222
import warnings

sdk/python/kfp/cli/cli_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ def setUp(self):
139139
def test_version(self):
140140
result = self.invoke(args=['--version'])
141141
self.assertEqual(result.exit_code, 0)
142-
matches = re.match(r'^kfp \d\.\d\.\d.*', result.output)
142+
matches = re.match(r'^kfp \d+\.\d+\.\d+.*', result.output)
143143
self.assertTrue(matches)
144144

145145

0 commit comments

Comments
 (0)