Skip to content

Commit

Permalink
chore(sdk): release KFP SDK 2.4.0 (#10167)
Browse files Browse the repository at this point in the history
  • Loading branch information
connor-mccarthy authored Oct 27, 2023
1 parent 58ce09e commit f250700
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 3 deletions.
9 changes: 8 additions & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -132,12 +132,19 @@
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':
Expand Down
15 changes: 14 additions & 1 deletion sdk/RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion sdk/python/kfp/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit f250700

Please sign in to comment.