Skip to content
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/sdk/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.14.6/",
"title": "2.14.6",
"version": "https://kubeflow-pipelines.readthedocs.io/en/sdk-2.15.0/",
"title": "2.15.0",
"aliases": [
"stable",
"latest"
]
},
{
"version": "https://kubeflow-pipelines.readthedocs.io/en/sdk-2.14.6/",
"title": "2.14.6",
"aliases": []
},
{
"version": "https://kubeflow-pipelines.readthedocs.io/en/sdk-2.14.5/",
"title": "2.14.5",
Expand Down
9 changes: 8 additions & 1 deletion kubernetes_platform/python/docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -138,12 +138,19 @@ def decorator(func):
'version_dropdown':
True,
'version_info': [
{
'version':
'https://kfp-kubernetes.readthedocs.io/en/kfp-kubernetes-2.15.0/',
'title':
'2.15.0',
'aliases': ['stable'],
},
{
'version':
'https://kfp-kubernetes.readthedocs.io/en/kfp-kubernetes-2.14.6/',
'title':
'2.14.6',
'aliases': ['stable'],
'aliases': [],
},
{
'version':
Expand Down
19 changes: 19 additions & 0 deletions sdk/RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,34 @@

## Features

## Breaking changes

## Deprecations

## Bug fixes and other changes

## Documentation updates

# 2.15.0

## Features

* Allow sharing utility functions across components via the `additional_funcs` argument to the `component` decorator;
functions are embedded into the generated component code before the main function (#12178).
* feat(backend, sdk): Add custom_path field to RuntimeArtifact (#12248)
* feat(sdk): Add notebook components and embedded artifacts support (#12294)
* feat(sdk): add compile-time validation for workspace size

## Breaking changes

## Deprecations

## Bug fixes and other changes

* fix(sdk): Add support for list and dict parameter type hints (#12410)
* fix(CI/SDK): Fix tests for pipelines with optional input parameters and an SDK syntax error (#12420)
* chore: update py image refs to 3.11 (#12383)

## Documentation updates

# 2.14.6
Expand Down
Loading