File tree 5 files changed +34
-9
lines changed
kubernetes_platform/python
5 files changed +34
-9
lines changed Original file line number Diff line number Diff line change 1
1
[
2
2
{
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 " ,
5
5
"aliases" : [
6
6
" stable" ,
7
7
" latest"
8
8
]
9
+ },
10
+ {
11
+ "version" : " https://kubeflow-pipelines.readthedocs.io/en/sdk-2.12.2/" ,
12
+ "title" : " 2.12.2" ,
13
+ "aliases" : []
9
14
},
10
15
{
11
16
"version" : " https://kubeflow-pipelines.readthedocs.io/en/sdk-2.12.1/" ,
Original file line number Diff line number Diff line change @@ -138,12 +138,19 @@ def decorator(func):
138
138
'version_dropdown' :
139
139
True ,
140
140
'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
+ },
141
148
{
142
149
'version' :
143
150
'https://kfp-kubernetes.readthedocs.io/en/kfp-kubernetes-1.4.0/' ,
144
151
'title' :
145
152
'1.4.0' ,
146
- 'aliases' : ['stable' ],
153
+ 'aliases' : [],
147
154
},
148
155
{
149
156
'version' :
Original file line number Diff line number Diff line change 12
12
# See the License for the specific language governing permissions and
13
13
# limitations under the License.
14
14
15
- __version__ = '1.4 .0'
15
+ __version__ = '1.5 .0'
16
16
17
17
__all__ = [
18
18
'add_ephemeral_volume' ,
Original file line number Diff line number Diff line change 2
2
3
3
## Features
4
4
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
+
5
17
* 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 )
6
23
7
24
## Breaking changes
8
25
12
29
13
30
* Depends on ` google-cloud-storage>=2.2.1,<4 ` [ \# 11735] ( https://github.com/kubeflow/pipelines/pull/11735 )
14
31
15
- ## Documentation updates
16
-
17
32
# 2.12.2
18
33
19
34
## Features
24
39
25
40
## Bug fixes and other changes
26
41
27
- * fix(sdk): Add SDK support for setting resource limits on older KFP versions (#11839 )
28
-
29
42
# 2.12.1
30
43
31
44
## Features
Original file line number Diff line number Diff line change 16
16
# https://packaging.python.org/guides/packaging-namespace-packages/#pkgutil-style-namespace-packages
17
17
__path__ = __import__ ('pkgutil' ).extend_path (__path__ , __name__ )
18
18
19
- __version__ = '2.12.2 '
19
+ __version__ = '2.13.0 '
20
20
21
21
import sys
22
22
import warnings
You can’t perform that action at this time.
0 commit comments