Skip to content

Commit

Permalink
TFX 0.29.0 Release
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 366086833
  • Loading branch information
dhruvesh09 authored and tfx-copybara committed Mar 31, 2021
1 parent 40cc38e commit fcb3765
Show file tree
Hide file tree
Showing 5 changed files with 43 additions and 16 deletions.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,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.28.0 | 0.28.0 | 2.0.0 | nightly (1.x/2.x) | 0.28.0 | 0.28.0 | 0.28.0 | 2.4.0 | 0.28.0 | 0.28.1
[GitHub master](https://github.com/tensorflow/tfx/blob/master/RELEASE.md) | 2.28.0 | 0.29.0 | 2.0.0 | nightly (1.x/2.x) | 0.29.0 | 0.29.0 | 0.29.0 | 2.4.0 | 0.29.0 | 0.29.0
0.29.0 | 2.28.0 | 0.29.0 | 2.0.0 | 1.15.0 / 2.4.0 | 0.29.0 | 0.29.0 | 0.29.0 | 2.4.0 | 0.29.0 | 0.29.0
0.28.0 | 2.28.0 | 0.28.0 | 2.0.0 | 1.15.0 / 2.4.0 | 0.28.0 | 0.28.0 | 0.28.0 | 2.4.0 | 0.28.0 | 0.28.1
0.27.0 | 2.27.0 | 0.27.0 | 2.0.0 | 1.15.0 / 2.4.0 | 0.27.0 | 0.27.0 | 0.27.0 | 2.4.0 | 0.27.0 | 0.27.0
0.26.0 | 2.25.0 | 0.26.0 | 0.17.0 | 1.15.0 / 2.3.0 | 0.26.0 | 0.26.0 | 0.26.0 | 2.3.0 | 0.26.0 | 0.26.0
Expand Down
26 changes: 26 additions & 0 deletions RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,22 @@

## Major Features and Improvements

## Breaking Changes

### For Pipeline Authors

### For Component Authors

## Deprecations

## Bug Fixes and Other Changes

## Documentation Updates

# Version 0.29.0

## Major Features and Improvements

* Added a simple query based driver that supports Span spec and static_range.
* Added e2e rolling window example/test for Span Resolver.
* Performance improvement in Transform by avoiding excess encodings and
Expand Down Expand Up @@ -38,6 +54,8 @@

### For Component Authors

* N/A

## Deprecations

* Deprecated input/output compatibility aliases for Transform and
Expand All @@ -48,9 +66,17 @@
* The `tfx_version` custom property of output artifacts is now set by the
default publisher to the TFX SDK version.
* Depends on `absl-py>=0.9,<0.13`.
* Depends on `kfp-pipeline-spec>=0.1.7,<0.2`.
* Depends on `ml-metadata>=0.29.0,<0.30.0`.
* Depends on `packaging>=20,<21`.
* Depends on `struct2tensor>=0.29.0,<0.30.0`.
* Depends on `tensorflow-data-validation>=0.29.0,<0.30.0`.
* Depends on `tensorflow-model-analysis>=0.29.0,<0.30.0`.
* Depends on `tensorflow-transform>=0.29.0,<0.30.0`.
* Depends on `tfx-bsl>=0.29.0,<0.30.0`.

## Documentation Updates

* Simplified Apache Spark and Flink example deployment scripts by using Beam's
SparkRunner and FlinkRunner classes.
* Upgraded example Apache Flink deployment to Flink 1.12.1.
Expand Down
26 changes: 13 additions & 13 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,<0.13',
'ml-metadata' + select_constraint(
# LINT.IfChange
default='>=0.28,<0.29',
default='>=0.29,<0.30',
# LINT.ThenChange(tfx/workspace.bzl)
nightly='>=0.29.0.dev',
nightly='>=0.30.0.dev',
git_master='@git+https://github.com/google/ml-metadata@master'),
'packaging>=20,<21',
'protobuf>=3.12.2,<4',
Expand Down Expand Up @@ -90,23 +90,23 @@ def make_required_install_packages():
# TODO(b/159488890): remove user module-only dependency.
'tensorflow-cloud>=0.1,<0.2',
'tensorflow-data-validation' + select_constraint(
default='>=0.28,<0.29',
nightly='>=0.29.0.dev',
default='>=0.29,<0.30',
nightly='>=0.30.0.dev',
git_master='@git+https://github.com/tensorflow/data-validation@master'
),
'tensorflow-model-analysis' + select_constraint(
default='>=0.28,<0.29',
nightly='>=0.29.0.dev',
default='>=0.29,<0.30',
nightly='>=0.30.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.*,<3',
'tensorflow-transform' + select_constraint(
default='>=0.28,<0.29',
nightly='>=0.29.0.dev',
default='>=0.29,<0.30',
nightly='>=0.30.0.dev',
git_master='@git+https://github.com/tensorflow/transform@master'),
'tfx-bsl' + select_constraint(
default='>=0.28.1,<0.29',
nightly='>=0.29.0.dev',
default='>=0.29,<0.30',
nightly='>=0.30.0.dev',
git_master='@git+https://github.com/tensorflow/tfx-bsl@master'),
]

Expand All @@ -118,7 +118,7 @@ def make_extra_packages_test():
return [
'apache-airflow[mysql]>=1.10.14,<3',
'kfp>=1.1.0,<2',
'kfp-pipeline-spec>=0.1.6,<0.2',
'kfp-pipeline-spec>=0.1.7,<0.2',
'pytest>=5,<6',
# TODO(b/182848576): Delete pinned sqlalchemy after apache-airflow 2.0.2
# or later.(github.com/apache/airflow/issues/14811)
Expand All @@ -132,7 +132,7 @@ def make_extra_packages_test():
def make_extra_packages_docker_image():
# Packages needed for tfx docker image.
return [
'kfp-pipeline-spec>=0.1.6,<0.2',
'kfp-pipeline-spec>=0.1.7,<0.2',
'mmh>=2.2,<3',
'python-snappy>=0.5,<0.6',
]
Expand Down Expand Up @@ -162,7 +162,7 @@ def make_extra_packages_examples():
'tflite-support>=0.1.0a1,<0.1.1',
# Required for tfx/examples/ranking
'tensorflow-ranking>=0.3.3,<0.4',
'struct2tensor>=0.28,<0.29',
'struct2tensor>=0.29,<0.30',
# Required for tfx/examples/penguin/experimental
# LINT.IfChange
'scikit-learn>=0.23,<0.24',
Expand Down
2 changes: 1 addition & 1 deletion tfx/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@
"""Contains the version string of TFX."""

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

0 comments on commit fcb3765

Please sign in to comment.