File tree Expand file tree Collapse file tree 4 files changed +8
-17
lines changed Expand file tree Collapse file tree 4 files changed +8
-17
lines changed Original file line number Diff line number Diff line change @@ -97,6 +97,7 @@ other *untested* combinations may also work.
97
97
tensorflow-transform | apache-beam[ gcp] | pyarrow | tensorflow | tensorflow-metadata | tfx-bsl |
98
98
------------------------------------------------------------------------------- | -----------------| --------|-------------------|---------------------|---------|
99
99
[ GitHub master] ( https://github.com/tensorflow/transform/blob/master/RELEASE.md ) | 2.29.0 | 2.0.0 | nightly (1.x/2.x) | 1.1.0 | 1.1.0 |
100
+ [ 1.1.1] ( https://github.com/tensorflow/transform/blob/v1.1.1/RELEASE.md ) | 2.29.0 | 2.0.0 | 1.15.2 / 2.5 | 1.1.0 | 1.1.1 |
100
101
[ 1.1.0] ( https://github.com/tensorflow/transform/blob/v1.1.0/RELEASE.md ) | 2.29.0 | 2.0.0 | 1.15.2 / 2.5 | 1.1.0 | 1.1.0 |
101
102
[ 1.0.0] ( https://github.com/tensorflow/transform/blob/v1.0.0/RELEASE.md ) | 2.29.0 | 2.0.0 | 1.15 / 2.5 | 1.0.0 | 1.0.0 |
102
103
[ 0.30.0] ( https://github.com/tensorflow/transform/blob/v0.30.0/RELEASE.md ) | 2.28.0 | 2.0.0 | 1.15 / 2.4 | 0.30.0 | 0.30.0 |
Original file line number Diff line number Diff line change 1
- # Version 1.1.0
1
+ # Version 1.1.1
2
2
3
3
## Major Features and Improvements
4
4
5
- * Improved resource usage for ` tft.vocabulary ` when ` top_k ` is set by removing
6
- stages performing repetitive sorting.
5
+ * N/A
7
6
8
7
## Bug Fixes and Other Changes
9
8
10
- * Support invoking Keras models inside the ` preprocessing_fn ` using
11
- ` tft.make_and_track_object ` when ` force_tf_compat_v1=False ` with TF2
12
- behaviors enabled.
13
- * Fix an issue when computing the metadata for a function with automatic
14
- control dependencies added where dependencies on inputs which should not be
15
- evaluated was being retained.
16
- * Census TFT example: wrapped table initialization with a tf.init_scope() in
17
- order to avoid reinitializing the table for each batch of data.
18
- * Stopped depending on ` six ` .
19
- * Depends on ` protobuf>=3.13,<4 ` .
20
- * Depends on ` tensorflow-metadata>=1.1.0,<1.2.0 ` .
21
- * Depends on ` tfx-bsl>=1.1.0,<1.2.0 ` .
9
+ * Depends on ` google-cloud-bigquery>=1.28.0,<2.21 ` .
10
+ * Depends on ` tfx-bsl>=1.1.1,<1.2.0 ` .
22
11
23
12
## Breaking Changes
24
13
Original file line number Diff line number Diff line change @@ -44,6 +44,7 @@ def _make_required_install_packages():
44
44
return [
45
45
'absl-py>=0.9,<0.13' ,
46
46
'apache-beam[gcp]>=2.29,<3' ,
47
+ 'google-cloud-bigquery>=1.28.0,<2.21' ,
47
48
'numpy>=1.16,<1.20' ,
48
49
'protobuf>=3.13,<4' ,
49
50
'pyarrow>=1,<3' ,
@@ -55,7 +56,7 @@ def _make_required_install_packages():
55
56
nightly = '>=1.2.0.dev' ,
56
57
git_master = '@git+https://github.com/tensorflow/metadata@master' ),
57
58
'tfx-bsl' + select_constraint (
58
- default = '>=1.1.0 ,<1.2.0' ,
59
+ default = '>=1.1.1 ,<1.2.0' ,
59
60
nightly = '>=1.2.0.dev' ,
60
61
git_master = '@git+https://github.com/tensorflow/tfx-bsl@master' ),
61
62
]
Original file line number Diff line number Diff line change 14
14
"""Contains the version string of TF.Transform."""
15
15
16
16
# Note that setup.py uses this version.
17
- __version__ = '1.1.0 '
17
+ __version__ = '1.1.1 '
You can’t perform that action at this time.
0 commit comments