Skip to content

Commit

Permalink
TFX 1.13.0 Release
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 524385931
  • Loading branch information
rtg0795 authored and tfx-copybara committed Apr 14, 2023
1 parent 3873946 commit 7f24234
Show file tree
Hide file tree
Showing 5 changed files with 45 additions and 16 deletions.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,8 @@ but other *untested* combinations may also work.

tfx | apache-beam[gcp] | ml-metadata | pyarrow | tensorflow | tensorflow-data-validation | tensorflow-metadata | tensorflow-model-analysis | tensorflow-serving-api | tensorflow-transform | tfx-bsl
------------------------------------------------------------------------- | ---------------- | ----------- | ------- | ----------------- | -------------------------- | ------------------- | ------------------------- | ---------------------- | -------------------- | -------
[GitHub master](https://github.com/tensorflow/tfx/blob/master/RELEASE.md) | 2.40.0 | 1.12.0 | 6.0.0 | nightly (2.x) | 1.12.0 | 1.12.0 | 0.43.0 | 2.9.0 | 1.12.0 | 1.12.0
[GitHub master](https://github.com/tensorflow/tfx/blob/master/RELEASE.md) | 2.40.0 | 1.13.1 | 6.0.0 | nightly (2.x) | 1.13.0 | 1.13.1 | 0.44.0 | 2.9.0 | 1.13.0 | 1.13.0
[1.13.0](https://github.com/tensorflow/tfx/blob/v1.13.0/RELEASE.md) | 2.40.0 | 1.13.1 | 6.0.0 | 2.12 | 1.13.0 | 1.13.1 | 0.44.0 | 2.9.0 | 1.13.0 | 1.13.0
[1.12.0](https://github.com/tensorflow/tfx/blob/v1.12.0/RELEASE.md) | 2.40.0 | 1.12.0 | 6.0.0 | 2.11 | 1.12.0 | 1.12.0 | 0.43.0 | 2.9.0 | 1.12.0 | 1.12.0
[1.11.0](https://github.com/tensorflow/tfx/blob/v1.11.0/RELEASE.md) | 2.40.0 | 1.11.0 | 6.0.0 | 1.15.5 / 2.10.0 | 1.11.0 | 1.11.0 | 0.42.0 | 2.9.0 | 1.11.0 | 1.11.0
[1.10.0](https://github.com/tensorflow/tfx/blob/v1.10.0/RELEASE.md) | 2.40.0 | 1.10.0 | 6.0.0 | 1.15.5 / 2.9.0 | 1.10.0 | 1.10.0 | 0.41.0 | 2.9.0 | 1.10.0 | 1.10.0
Expand Down
30 changes: 29 additions & 1 deletion RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,24 @@

## Major Features and Improvements

## Breaking Changes

### For Pipeline Authors

### For Component Authors

## Deprecations

## Bug Fixes and Other Changes

## Dependency Updates

## Documentation Updates

# Version 1.13.0

## Major Features and Improvements

* Supported setting the container image at a component level for Kubeflow V2
Dag Runner.

Expand All @@ -25,8 +43,12 @@

### For Component Authors

* N/A

## Deprecations

* Deprecate python 3.7 support

## Bug Fixes and Other Changes

* Support to task type "workerpool1" of CLUSTER_SPEC in Vertex AI training's
Expand All @@ -37,8 +59,14 @@
| Package Name | Version Constraints | Previously (in `v1.12.0`) | Comments |
| -- | -- | -- | -- |
| `click` | `>=7,<9` | `>=7,<8` | |
| `protobuf` | `>=3.13,<4` | `>=3.20.3,<5` | |
| `ml-metadata` | `~=1.13.1` | `~=1.12.0` | Synced release train |
| `protobuf` | `>=3.13,<4` | `>=3.20.3,<5` | To support TF 2.12|
| `struct2tensor` | `~=0.44.0` | `~=0.43.0` | Synced release train |
| `tensorflow` | `~=2.12.0` | `>=1.15.5,<2` or `~=2.11.0` | |
| `tensorflow-data-validation` | `~=1.13.0` | `~=1.12.0` | Synced release train |
| `tensorflow-model-analysis` | `~=0.44.0` | `~=0.43.0` | Synced release train |
| `tensorflow-transform` | `~=1.13.0` | `~=1.12.0` | Synced release train |
| `tfx-bsl` | `~=1.13.0` | `~=1.12.0` | Synced release train |

## Documentation Updates

Expand Down
24 changes: 12 additions & 12 deletions tfx/dependencies.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,9 +54,9 @@ def make_pipeline_sdk_required_install_packages():
'absl-py>=0.9,<2.0.0',
'ml-metadata' + select_constraint(
# LINT.IfChange
default='>=1.12.0,<1.13.0',
default='>=1.13.1,<1.14.0',
# LINT.ThenChange(tfx/workspace.bzl)
nightly='>=1.12.0.dev',
nightly='>=1.14.0.dev',
git_master='@git+https://github.com/google/ml-metadata@master'),
'packaging>=20,<21',
'portpicker>=1.3.1,<2',
Expand Down Expand Up @@ -102,22 +102,22 @@ def make_required_install_packages():
# pylint: enable=line-too-long
'tensorflow-hub>=0.9.0,<0.13',
'tensorflow-data-validation' + select_constraint(
default='>=1.12.0,<1.13.0',
nightly='>=1.13.0.dev',
default='>=1.13.0,<1.14.0',
nightly='>=1.14.0.dev',
git_master='@git+https://github.com/tensorflow/data-validation@master'
),
'tensorflow-model-analysis' + select_constraint(
default='>=0.43.0,<0.44.0',
nightly='>=0.44.0.dev',
default='>=0.44.0,<0.45.0',
nightly='>=0.45.0.dev',
git_master='@git+https://github.com/tensorflow/model-analysis@master'),
'tensorflow-serving-api>=1.15,!=2.0.*,!=2.1.*,!=2.2.*,!=2.3.*,!=2.4.*,!=2.5.*,!=2.6.*,!=2.7.*,!=2.8.*,<3',
'tensorflow-transform' + select_constraint(
default='>=1.12.0,<1.13.0',
nightly='>=1.13.0.dev',
default='>=1.13.0,<1.14.0',
nightly='>=1.14.0.dev',
git_master='@git+https://github.com/tensorflow/transform@master'),
'tfx-bsl' + select_constraint(
default='>=1.12.0,<1.13.0',
nightly='>=1.13.0.dev',
default='>=1.13.0,<1.14.0',
nightly='>=1.14.0.dev',
git_master='@git+https://github.com/tensorflow/tfx-bsl@master'),
]

Expand Down Expand Up @@ -178,8 +178,8 @@ def make_extra_packages_tf_ranking():
return [
'tensorflow-ranking>=0.5,<0.6',
'struct2tensor' + select_constraint(
default='>=0.43,<0.44',
nightly='>=0.44.0.dev',
default='>=0.44,<0.45',
nightly='>=0.45.0.dev',
git_master='@git+https://github.com/google/struct2tensor@master'),
]

Expand Down
2 changes: 1 addition & 1 deletion tfx/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@
"""Contains the version string of TFX."""

# Note that setup.py uses this version.
__version__ = '1.13.0.dev'
__version__ = '1.14.0.dev'
2 changes: 1 addition & 1 deletion tfx/workspace.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ def tfx_workspace():
name = "com_github_google_ml_metadata",
repo = "google/ml-metadata",
# LINT.IfChange
tag = "v1.12.0",
tag = "v1.13.0",
# LINT.ThenChange(//tfx/dependencies.py)
)

Expand Down

0 comments on commit 7f24234

Please sign in to comment.