Skip to content

Commit 89beaa4

Browse files
vkarampuditfx-copybara
authored andcommitted
TFX 1.15.0 Release
PiperOrigin-RevId: 628111679
1 parent 01a4b3d commit 89beaa4

File tree

5 files changed

+37
-16
lines changed

5 files changed

+37
-16
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,8 @@ but other *untested* combinations may also work.
6262

6363
tfx | Python | apache-beam[gcp] | ml-metadata | pyarrow | tensorflow | tensorflow-data-validation | tensorflow-metadata | tensorflow-model-analysis | tensorflow-serving-api | tensorflow-transform | tfx-bsl
6464
------------------------------------------------------------------------- | -------------------- | ---------------- | ----------- | ------- | ----------------- | -------------------------- | ------------------- | ------------------------- | ---------------------- | -------------------- | -------
65-
[GitHub master](https://github.com/tensorflow/tfx/blob/master/RELEASE.md) | >=3.9,<3.11 | 2.47.0 | 1.14.0 | 10.0.0 | nightly (2.x) | 1.14.0 | 1.14.0 | 0.45.0 | 2.9.0 | 1.14.0 | 1.14.0
65+
[GitHub master](https://github.com/tensorflow/tfx/blob/master/RELEASE.md) | >=3.9,<3.11 | 2.47.0 | 1.15.0 | 10.0.0 | nightly (2.x) | 1.15.1 | 1.15.0 | 0.46.0 | 2.15.1 | 1.15.0 | 1.15.1
66+
[1.15.0](https://github.com/tensorflow/tfx/blob/v1.15.0/RELEASE.md) | >=3.9,<3.11 | 2.47.0 | 1.15.0 | 10.0.0 | 2.15 | 1.15.1 | 1.15.0 | 0.46.0 | 2.15.1 | 1.15.0 | 1.15.1
6667
[1.14.0](https://github.com/tensorflow/tfx/blob/v1.14.0/RELEASE.md) | >=3.8,<3.11 | 2.47.0 | 1.14.0 | 10.0.0 | 2.13 | 1.14.0 | 1.14.0 | 0.45.0 | 2.9.0 | 1.14.0 | 1.14.0
6768
[1.13.0](https://github.com/tensorflow/tfx/blob/v1.13.0/RELEASE.md) | >=3.8,<3.10 | 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
6869
[1.12.0](https://github.com/tensorflow/tfx/blob/v1.12.0/RELEASE.md) | >=3.7,<3.10 | 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

RELEASE.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,24 @@
22

33
## Major Features and Improvements
44

5+
## Breaking Changes
6+
7+
### For Pipeline Authors
8+
9+
### For Component Authors
10+
11+
## Deprecations
12+
13+
## Bug Fixes and Other Changes
14+
15+
## Dependency Updates
16+
17+
## Documentation Updates
18+
19+
# Version 1.15.0
20+
21+
## Major Features and Improvements
22+
523
* Dropped python 3.8 support.
624
* Extend GetPipelineRunExecutions, GetPipelineRunArtifacts APIs to support
725
filtering by execution create_time, type.
@@ -63,6 +81,8 @@
6381

6482
## Deprecations
6583

84+
* Deprecated python 3.8
85+
6686
## Bug Fixes and Other Changes
6787

6888
* Fixed a synchronization bug in google_cloud_ai_platform tuner.

tfx/dependencies.py

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -55,9 +55,9 @@ def make_pipeline_sdk_required_install_packages():
5555
'ml-metadata'
5656
+ select_constraint(
5757
# LINT.IfChange
58-
default='>=1.14.0,<1.15.0',
58+
default='>=1.15.0,<1.16.0',
5959
# LINT.ThenChange(tfx/workspace.bzl)
60-
nightly='>=1.15.0.dev',
60+
nightly='>=1.16.0.dev',
6161
git_master='@git+https://github.com/google/ml-metadata@master',
6262
),
6363
'packaging>=22',
@@ -105,29 +105,29 @@ def make_required_install_packages():
105105
'tensorflow-hub>=0.15.0,<0.16',
106106
'tensorflow-data-validation'
107107
+ select_constraint(
108-
default='>=1.14.0,<1.15.0',
109-
nightly='>=1.15.0.dev',
108+
default='>=1.15.1,<1.16.0',
109+
nightly='>=1.16.0.dev',
110110
git_master=(
111111
'@git+https://github.com/tensorflow/data-validation@master'
112112
),
113113
),
114114
'tensorflow-model-analysis'
115115
+ select_constraint(
116-
default='>=0.45.0,<0.46.0',
117-
nightly='>=0.46.0.dev',
116+
default='>=0.46.0,<0.47.0',
117+
nightly='>=0.47.0.dev',
118118
git_master='@git+https://github.com/tensorflow/model-analysis@master',
119119
),
120120
'tensorflow-serving-api>=2.15,<2.16',
121121
'tensorflow-transform'
122122
+ select_constraint(
123-
default='>=1.14.0,<1.15.0',
124-
nightly='>=1.15.0.dev',
123+
default='>=1.15.0,<1.16.0',
124+
nightly='>=1.16.0.dev',
125125
git_master='@git+https://github.com/tensorflow/transform@master',
126126
),
127127
'tfx-bsl'
128128
+ select_constraint(
129-
default='>=1.14.0,<1.15.0',
130-
nightly='>=1.15.0.dev',
129+
default='>=1.15.1,<1.16.0',
130+
nightly='>=1.16.0.dev',
131131
git_master='@git+https://github.com/tensorflow/tfx-bsl@master',
132132
),
133133
]
@@ -192,8 +192,8 @@ def make_extra_packages_tf_ranking():
192192
return [
193193
'tensorflow-ranking>=0.5,<0.6',
194194
'struct2tensor' + select_constraint(
195-
default='>=0.45,<0.46',
196-
nightly='>=0.46.0.dev',
195+
default='>=0.46.0,<0.47.0',
196+
nightly='>=0.47.0.dev',
197197
git_master='@git+https://github.com/google/struct2tensor@master'),
198198
]
199199

tfx/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@
1414
"""Contains the version string of TFX."""
1515

1616
# Note that setup.py uses this version.
17-
__version__ = '1.15.0.dev'
17+
__version__ = '1.16.0.dev'

tfx/workspace.bzl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ def tfx_workspace():
7979
name = "com_github_google_ml_metadata",
8080
repo = "google/ml-metadata",
8181
# LINT.IfChange
82-
tag = "v1.14.0",
82+
tag = "v1.15.0",
8383
# LINT.ThenChange(//tfx/dependencies.py)
8484
)
8585

@@ -89,6 +89,6 @@ def tfx_workspace():
8989
repo = "tensorflow/metadata",
9090
# LINT.IfChange
9191
# Keep in sync with TFDV version (TFDV requires TFMD).
92-
tag = "v1.14.0",
92+
tag = "v1.15.0",
9393
# LINT.ThenChange(//tfx/dependencies.py)
9494
)

0 commit comments

Comments
 (0)