Skip to content

Commit b4622cd

Browse files
committed
TFDV 1.17.0 Release
PiperOrigin-RevId: 769185980
1 parent fc03f17 commit b4622cd

File tree

6 files changed

+43
-10
lines changed

6 files changed

+43
-10
lines changed

.bazelversion

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
6.5.0

README.md

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

173173
tensorflow-data-validation | apache-beam[gcp] | pyarrow | tensorflow | tensorflow-metadata | tensorflow-transform | tfx-bsl
174174
------------------------------------------------------------------------------------- | ---------------- | ------- | ----------------- | ------------------- | -------------------- | -------
175-
[GitHub master](https://github.com/tensorflow/data-validation/blob/master/RELEASE.md) | 2.59.0 | 10.0.1 | nightly (2.x) | 1.16.1 | n/a | 1.16.1
175+
[GitHub master](https://github.com/tensorflow/data-validation/blob/master/RELEASE.md) | 2.65.0 | 10.0.1 | nightly (2.x) | 1.17.1 | n/a | 1.17.1
176+
[1.17.0](https://github.com/tensorflow/data-validation/blob/v1.17.0/RELEASE.md) | 2.65.0 | 10.0.1 | 2.17 | 1.17.1 | n/a | 1.17.1
176177
[1.16.1](https://github.com/tensorflow/data-validation/blob/v1.16.1/RELEASE.md) | 2.59.0 | 10.0.1 | 2.16 | 1.16.1 | n/a | 1.16.1
177178
[1.16.0](https://github.com/tensorflow/data-validation/blob/v1.16.0/RELEASE.md) | 2.59.0 | 10.0.1 | 2.16 | 1.16.0 | n/a | 1.16.0
178179
[1.15.1](https://github.com/tensorflow/data-validation/blob/v1.15.1/RELEASE.md) | 2.47.0 | 10.0.0 | 2.15 | 1.15.0 | n/a | 1.15.1

RELEASE.md

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,36 @@
1212

1313
## Deprecation
1414

15+
# Version 1.17.0
16+
17+
## Major Features and Improvements
18+
19+
* N/A
20+
21+
## Bug Fixes and Other Changes
22+
23+
* Depends on
24+
`protobuf>=4.25.2,<6.0.0` for Python 3.11 and on `protobuf>=4.21.6,<6.0.0`
25+
for 3.9 and 3.10.
26+
* Updated Bazel build rules
27+
* Bumped the minimum bazel version required to build tfdv to 6.5.0.
28+
* Depends on `tensorflow>=2.17,<2.18`.
29+
* Updating ZetaSQL to v2024.11.1 and related dependencies.
30+
* Update GCC version to gcc-10.
31+
* macOS wheel publishing is temporarily paused due to missing ARM64 support.
32+
33+
## Known Issues
34+
35+
* N/A
36+
37+
## Breaking Changes
38+
39+
* N/A
40+
41+
## Deprecation
42+
43+
* N/A
44+
1545
# Version 1.16.1
1646

1747
## Major Features and Improvements

g3doc/install.md

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

176176
tensorflow-data-validation | apache-beam[gcp] | pyarrow | tensorflow | tensorflow-metadata | tensorflow-transform | tfx-bsl
177177
------------------------------------------------------------------------------------- | ---------------- | ------- | ----------------- | ------------------- | -------------------- | -------
178-
[GitHub master](https://github.com/tensorflow/data-validation/blob/master/RELEASE.md) | 2.59.0 | 10.0.1 | nightly (1.x/2.x) | 1.16.1 | n/a | 1.16.1
178+
[GitHub master](https://github.com/tensorflow/data-validation/blob/master/RELEASE.md) | 2.65.0 | 10.0.1 | nightly (1.x/2.x) | 1.17.1 | n/a | 1.17.1
179+
[1.17.0](https://github.com/tensorflow/data-validation/blob/v1.17.0/RELEASE.md) | 2.65.0 | 10.0.1 | 2.17 | 1.17.1 | n/a | 1.17.1
179180
[1.16.1](https://github.com/tensorflow/data-validation/blob/v1.16.1/RELEASE.md) | 2.59.0 | 10.0.1 | 2.16 | 1.16.1 | n/a | 1.16.1
180181
[1.16.0](https://github.com/tensorflow/data-validation/blob/v1.16.0/RELEASE.md) | 2.59.0 | 10.0.1 | 2.16 | 1.16.0 | n/a | 1.16.0
181182
[1.15.1](https://github.com/tensorflow/data-validation/blob/v1.15.1/RELEASE.md) | 2.47.0 | 10.0.0 | 2.15 | 1.15.0 | n/a | 1.15.1

setup.py

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -176,28 +176,28 @@ def select_constraint(default, nightly=None, git_master=None):
176176
install_requires=[
177177
'absl-py>=0.9,<2.0.0',
178178
'apache-beam[gcp]>=2.53,<3;python_version>="3.11"',
179-
'apache-beam[gcp]>=2.47,<3;python_version<"3.11"',
179+
'apache-beam[gcp]>=2.50,<2.51;python_version<"3.11"',
180180
# TODO(b/139941423): Consider using multi-processing provided by
181181
# Beam's DirectRunner.
182182
'joblib>=1.2.0', # Dependency for multi-processing.
183183
'numpy>=1.22.0',
184184
'pandas>=1.0,<2',
185-
'protobuf>=4.25.2,<6;python_version>="3.11"',
186-
'protobuf>=3.20.3,<5;python_version<"3.11"',
185+
'protobuf>=4.25.2,<6.0.0;python_version>="3.11"',
186+
'protobuf>=4.21.6,<6.0.0;python_version<"3.11"',
187187
'pyarrow>=10,<11',
188188
'pyfarmhash>=0.2.2,<0.4',
189189
'six>=1.12,<2',
190190
'tensorflow>=2.17,<2.18',
191191
'tensorflow-metadata'
192192
+ select_constraint(
193-
default='>=1.16.1,<1.17',
194-
nightly='>=1.17.0.dev',
193+
default='>=1.17.1,<1.18',
194+
nightly='>=1.18.0.dev',
195195
git_master='@git+https://github.com/tensorflow/metadata@master',
196196
),
197197
'tfx-bsl'
198198
+ select_constraint(
199-
default='>=1.16.1,<1.17',
200-
nightly='>=1.17.0.dev',
199+
default='>=1.17.1,<1.18',
200+
nightly='>=1.18.0.dev',
201201
git_master='@git+https://github.com/tensorflow/tfx-bsl@master',
202202
),
203203
],

tensorflow_data_validation/version.py

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

1717
# Note that setup.py uses this version.
18-
__version__ = '1.17.0.dev'
18+
__version__ = '1.18.0.dev'

0 commit comments

Comments
 (0)