Skip to content

Commit fe51dfd

Browse files
authored
chore(sdk): kfp and kfp-kubernetes 2.13 & 1.5 (#11870)
Signed-off-by: Humair Khan <[email protected]>
1 parent 64e8264 commit fe51dfd

File tree

5 files changed

+34
-9
lines changed

5 files changed

+34
-9
lines changed

docs/versions.json

+7-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,16 @@
11
[
22
{
3-
"version": "https://kubeflow-pipelines.readthedocs.io/en/sdk-2.12.2/",
4-
"title": "2.12.2",
3+
"version": "https://kubeflow-pipelines.readthedocs.io/en/sdk-2.13.0/",
4+
"title": "2.13.0",
55
"aliases": [
66
"stable",
77
"latest"
88
]
9+
},
10+
{
11+
"version": "https://kubeflow-pipelines.readthedocs.io/en/sdk-2.12.2/",
12+
"title": "2.12.2",
13+
"aliases": []
914
},
1015
{
1116
"version": "https://kubeflow-pipelines.readthedocs.io/en/sdk-2.12.1/",

kubernetes_platform/python/docs/conf.py

+8-1
Original file line numberDiff line numberDiff line change
@@ -138,12 +138,19 @@ def decorator(func):
138138
'version_dropdown':
139139
True,
140140
'version_info': [
141+
{
142+
'version':
143+
'https://kfp-kubernetes.readthedocs.io/en/kfp-kubernetes-1.5.0/',
144+
'title':
145+
'1.5.0',
146+
'aliases': ['stable'],
147+
},
141148
{
142149
'version':
143150
'https://kfp-kubernetes.readthedocs.io/en/kfp-kubernetes-1.4.0/',
144151
'title':
145152
'1.4.0',
146-
'aliases': ['stable'],
153+
'aliases': [],
147154
},
148155
{
149156
'version':

kubernetes_platform/python/kfp/kubernetes/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
__version__ = '1.4.0'
15+
__version__ = '1.5.0'
1616

1717
__all__ = [
1818
'add_ephemeral_volume',

sdk/RELEASE.md

+17-4
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,24 @@
22

33
## Features
44

5+
## Breaking changes
6+
7+
## Deprecations
8+
9+
## Bug fixes and other changes
10+
11+
## Documentation updates
12+
13+
# 2.13.0
14+
15+
## Features
16+
517
* feat(sdk): add upload pipeline and upload pipeline version from pipeline function (#11804)
18+
* fix(sdk): Add SDK support for setting resource limits on older KFP versions (#11839)
19+
* docs: mention that set_container_image works with dynamic images (#11795)
20+
* fix(local): warn about oci:// not supported too (#11794)
21+
* bug(backend,sdk): Use a valid path separator for Modelcar imports (#11767)
22+
* fix(sdk): avoid conflicting component names in DAG when reusing pipelines (#11071)
623

724
## Breaking changes
825

@@ -12,8 +29,6 @@
1229

1330
* Depends on `google-cloud-storage>=2.2.1,<4` [\#11735](https://github.com/kubeflow/pipelines/pull/11735)
1431

15-
## Documentation updates
16-
1732
# 2.12.2
1833

1934
## Features
@@ -24,8 +39,6 @@
2439

2540
## Bug fixes and other changes
2641

27-
* fix(sdk): Add SDK support for setting resource limits on older KFP versions (#11839)
28-
2942
# 2.12.1
3043

3144
## 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.12.2'
19+
__version__ = '2.13.0'
2020

2121
import sys
2222
import warnings

0 commit comments

Comments
 (0)