chore(sdk): release KFP SDK 2.4.0 (#10167)

This commit is contained in:
Connor McCarthy 2023-10-27 12:04:10 -05:00 committed by GitHub
parent 58ce09e07d
commit f250700e4d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 23 additions and 3 deletions

View File

@ -132,12 +132,19 @@ html_theme_options = {
True,
'version_info': [
# need to use the sdk- prefix to avoid conflict with the BE's GitHub release tags
{
'version':
'https://kubeflow-pipelines.readthedocs.io/en/sdk-2.4.0/',
'title':
'2.4.0',
'aliases': ['stable'],
},
{
'version':
'https://kubeflow-pipelines.readthedocs.io/en/sdk-2.3.0/',
'title':
'2.3.0',
'aliases': ['stable'],
'aliases': [],
},
{
'version':

View File

@ -3,21 +3,34 @@
## Features
## Breaking changes
## Deprecations
## Bug fixes and other changes
## Documentation updates
# 2.4.0
## Features
* Add support for a Pythonic artifact authoring style [\#9932](https://github.com/kubeflow/pipelines/pull/9932)
* Support collecting outputs from conditional branches using `dsl.OneOf` [\#10067](https://github.com/kubeflow/pipelines/pull/10067)
## Breaking changes
## Deprecations
* Add notice of Python 3.7 support removal on April 23, 2024 [\#10139](https://github.com/kubeflow/pipelines/pull/10139)
## Bug fixes and other changes
* Fix type on `dsl.ParallelFor` sub-DAG output when a `dsl.Collected` is used. Non-functional fix. [\#10069](https://github.com/kubeflow/pipelines/pull/10069)
* Fix bug when `dsl.importer` argument is provided by a `dsl.ParallelFor` loop variable. [\#10116](https://github.com/kubeflow/pipelines/pull/10116)
* Fix client authentication in notebook and iPython environments [\#10094](https://github.com/kubeflow/pipelines/pull/10094)
## Documentation updates
# 2.3.0
## Features
* Support `PipelineTaskFinalStatus` in tasks that use `.ignore_upstream_failure()` [\#10010](https://github.com/kubeflow/pipelines/pull/10010)
* Add support for a Pythonic artifact authoring style [\#9932](https://github.com/kubeflow/pipelines/pull/9932)
## Breaking changes

View File

@ -16,7 +16,7 @@
# https://packaging.python.org/guides/packaging-namespace-packages/#pkgutil-style-namespace-packages
__path__ = __import__('pkgutil').extend_path(__path__, __name__)
__version__ = '2.3.0'
__version__ = '2.4.0'
import sys
import warnings