Skip to content

Commit b4f910c

Browse files
tf-transform-teamtfx-copybara
authored andcommitted
Release TF Transform 1.17.0
PiperOrigin-RevId: 769329902
1 parent 1e8c81a commit b4f910c

File tree

5 files changed

+34
-10
lines changed

5 files changed

+34
-10
lines changed

README.md

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

9595
tensorflow-transform | apache-beam[gcp] | pyarrow | tensorflow | tensorflow-metadata | tfx-bsl |
9696
------------------------------------------------------------------------------- | -----------------| --------|-------------------|---------------------|---------|
97-
[GitHub master](https://github.com/tensorflow/transform/blob/master/RELEASE.md) | 2.60.0 | 10.0.1 | nightly (2.x) | 1.16.1 | 1.16.1 |
97+
[GitHub master](https://github.com/tensorflow/transform/blob/master/RELEASE.md) | 2.65.0 | 10.0.1 | nightly (2.x) | 1.17.1 | 1.17.1 |
98+
[1.17.0](https://github.com/tensorflow/transform/blob/v1.17.0/RELEASE.md) | 2.65.0 | 10.0.1 | 2.17 | 1.17.1 | 1.17.1 |
9899
[1.16.0](https://github.com/tensorflow/transform/blob/v1.16.0/RELEASE.md) | 2.60.0 | 10.0.1 | 2.16 | 1.16.1 | 1.16.1 |
99100
[1.15.0](https://github.com/tensorflow/transform/blob/v1.15.0/RELEASE.md) | 2.47.0 | 10.0.0 | 2.15 | 1.15.0 | 1.15.1 |
100101
[1.14.0](https://github.com/tensorflow/transform/blob/v1.14.0/RELEASE.md) | 2.47.0 | 10.0.0 | 2.13 | 1.14.0 | 1.14.0 |

RELEASE.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,28 @@
1010

1111
## Deprecations
1212

13+
# Version 1.17.0
14+
15+
## Major Features and Improvements
16+
17+
* N/A
18+
19+
## Bug Fixes and Other Changes
20+
21+
* Depends on `tensorflow 2.17`
22+
* Depends on `protobuf>=4.25.2,<6.0.0` for Python 3.11 and on `protobuf>4.21.6,<6.0.0` for 3.9 and 3.10.
23+
* Depends on `apache-beam[gcp]>=2.53.0,<3` for Python 3.11 and on
24+
`apache-beam[gcp]>=2.50.0,<2.51.0` for 3.9 and 3.10.
25+
* macOS wheel publishing is temporarily paused due to missing ARM64 support.
26+
27+
## Breaking Changes
28+
29+
* N/A
30+
31+
## Deprecations
32+
33+
* N/A
34+
1335
# Version 1.16.0
1436

1537
## Major Features and Improvements

docs/install.md

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

9494
tensorflow-transform | apache-beam[gcp] | pyarrow | tensorflow | tensorflow-metadata | tfx-bsl
9595
------------------------------------------------------------------------------- | ---------------- | ------- | ----------------- | ------------------- | -------
96-
[GitHub master](https://github.com/tensorflow/transform/blob/master/RELEASE.md) | 2.60.0 | 10.0.1 | nightly (2.x) | 1.16.1 | 1.16.1
96+
[GitHub master](https://github.com/tensorflow/transform/blob/master/RELEASE.md) | 2.65.0 | 10.0.1 | nightly (2.x) | 1.17.1 | 1.17.1
97+
[1.17.0](https://github.com/tensorflow/transform/blob/v1.17.0/RELEASE.md) | 2.65.0 | 10.0.1 | 2.17 | 1.17.1 | 1.17.1
9798
[1.16.0](https://github.com/tensorflow/transform/blob/v1.16.0/RELEASE.md) | 2.60.0 | 10.0.1 | 2.16 | 1.16.1 | 1.16.1
9899
[1.15.0](https://github.com/tensorflow/transform/blob/v1.15.0/RELEASE.md) | 2.47.0 | 10.0.0 | 2.15 | 1.15.0 | 1.15.1
99100
[1.14.0](https://github.com/tensorflow/transform/blob/v1.14.0/RELEASE.md) | 2.47.0 | 10.0.0 | 2.13 | 1.14.0 | 1.14.0

setup.py

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -44,24 +44,24 @@ def _make_required_install_packages():
4444
return [
4545
'absl-py>=0.9,<2.0.0',
4646
'apache-beam[gcp]>=2.53,<3;python_version>="3.11"',
47-
'apache-beam[gcp]>=2.47,<3;python_version<"3.11"',
47+
'apache-beam[gcp]>=2.50,<2.51;python_version<"3.11"',
4848
'numpy>=1.22.0',
49-
'protobuf>=4.25.2,<6;python_version>="3.11"',
50-
'protobuf>=3.20.3,<5;python_version<"3.11"',
49+
'protobuf>=4.25.2,<6.0.0;python_version>="3.11"',
50+
'protobuf>=4.21.6,<6.0.0;python_version<"3.11"',
5151
'pyarrow>=10,<11',
5252
'pydot>=1.2,<2',
5353
'tensorflow>=2.17,<2.18',
5454
'tensorflow-metadata'
5555
+ select_constraint(
56-
default='>=1.16.1,<1.17.0',
57-
nightly='>=1.17.0.dev',
56+
default='>=1.17.1,<1.18.0',
57+
nightly='>=1.18.0.dev',
5858
git_master='@git+https://github.com/tensorflow/metadata@master',
5959
),
6060
'tf_keras>=2',
6161
'tfx-bsl'
6262
+ select_constraint(
63-
default='>=1.16.1,<1.17.0',
64-
nightly='>=1.17.0.dev',
63+
default='>=1.17.1,<1.18.0',
64+
nightly='>=1.18.0.dev',
6565
git_master='@git+https://github.com/tensorflow/tfx-bsl@master',
6666
),
6767
]

tensorflow_transform/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 TF.Transform."""
1515

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

0 commit comments

Comments
 (0)