File tree Expand file tree Collapse file tree 5 files changed +12
-23
lines changed Expand file tree Collapse file tree 5 files changed +12
-23
lines changed Original file line number Diff line number Diff line change @@ -61,7 +61,8 @@ other *untested* combinations may also work.
61
61
62
62
tensorflow-transform | apache-beam[ gcp] | tensorflow | tensorflow-metadata | tfx-bsl |
63
63
------------------------------------------------------------------------------- | -----------------| ------------------|---------------------|---------|
64
- [ GitHub master] ( https://github.com/tensorflow/transform/blob/master/RELEASE.md ) | 2.23.0 | nightly (1.x/2.x) | 0.24.0 | 0.24.0 |
64
+ [ GitHub master] ( https://github.com/tensorflow/transform/blob/master/RELEASE.md ) | 2.24.0 | nightly (1.x/2.x) | 0.24.0 | 0.24.1 |
65
+ [ 0.24.1] ( https://github.com/tensorflow/transform/blob/v0.24.1/RELEASE.md ) | 2.24.0 | 1.15 / 2.3 | 0.24.0 | 0.24.1 |
65
66
[ 0.24.0] ( https://github.com/tensorflow/transform/blob/v0.24.0/RELEASE.md ) | 2.23.0 | 1.15 / 2.3 | 0.24.0 | 0.24.0 |
66
67
[ 0.23.0] ( https://github.com/tensorflow/transform/blob/v0.23.0/RELEASE.md ) | 2.23.0 | 1.15 / 2.3 | 0.23.0 | 0.23.0 |
67
68
[ 0.22.0] ( https://github.com/tensorflow/transform/blob/v0.22.0/RELEASE.md ) | 2.20.0 | 1.15 / 2.2 | 0.22.0 | 0.22.0 |
Original file line number Diff line number Diff line change 1
- # Version 0.24.0
1
+ # Version 0.24.1
2
2
3
3
## Major Features and Improvements
4
4
5
- * Added native TF 2 implementation of Transform's Beam APIs -
6
- ` tft.AnalyzeDataset ` , ` tft.AnalyzeDatasetWithCache ` ,
7
- ` tft.AnalyzeAndTransformDataset ` and ` tft.TransformDataset ` . The default
8
- behavior will continue to use Tensorflow's compat.v1 APIs. This can be
9
- overriden by setting ` tft.Context.force_tf_compat_v1=False ` . The default
10
- behavior for TF 2 users will be switched to the new native implementation in
11
- a future release.
5
+ * N/A
12
6
13
7
## Bug Fixes and Other Changes
14
8
15
- * Added a small fanout to analyzers' ` CombineGlobally ` for improved
16
- performance.
17
- * Depends on ` absl-py>=0.9,<0.11 ` .
18
- * Depends on ` protobuf>=3.9.2,<4 ` .
19
- * Depends on ` tensorflow-metadata>=0.24,<0.25 ` .
20
- * Depends on ` tfx-bsl>=0.24,<0.25 ` .
9
+ * Depends on ` apache-beam[gcp]>=2.24,<3 ` .
10
+ * Depends on ` tfx-bsl>=0.24.1,<0.25 ` .
21
11
22
12
## Breaking changes
23
13
24
14
* N/A
25
15
26
16
## Deprecations
27
17
28
- * Deprecating Py3.5 support.
29
- * Parameter ` use_tfxio ` in the initializer of ` Context ` is deprecated. TFT
30
- Beam APIs now accepts both "instance dicts" and "TFXIO" input formats.
31
- Setting it will have no effect and it will be removed in the next version.
18
+ * N/A
Original file line number Diff line number Diff line change @@ -58,7 +58,8 @@ other *untested* combinations may also work.
58
58
59
59
tensorflow-transform | apache-beam[ gcp] | tensorflow | tensorflow-metadata | tfx-bsl
60
60
------------------------------------------------------------------------------- | ---------------- | ----------------- | ------------------- | -------
61
- [ GitHub master] ( https://github.com/tensorflow/transform/blob/master/RELEASE.md ) | 2.23.0 | nightly (1.x/2.x) | 0.24.0 | 0.24.0
61
+ [ GitHub master] ( https://github.com/tensorflow/transform/blob/master/RELEASE.md ) | 2.24.0 | nightly (1.x/2.x) | 0.24.0 | 0.24.1
62
+ [ 0.24.1] ( https://github.com/tensorflow/transform/blob/v0.24.1/RELEASE.md ) | 2.24.0 | 1.15 / 2.3 | 0.24.0 | 0.24.1
62
63
[ 0.24.0] ( https://github.com/tensorflow/transform/blob/v0.24.0/RELEASE.md ) | 2.23.0 | 1.15 / 2.3 | 0.24.0 | 0.24.0
63
64
[ 0.23.0] ( https://github.com/tensorflow/transform/blob/v0.23.0/RELEASE.md ) | 2.23.0 | 1.15 / 2.3 | 0.23.0 | 0.23.0
64
65
[ 0.22.0] ( https://github.com/tensorflow/transform/blob/v0.22.0/RELEASE.md ) | 2.20.0 | 1.15 / 2.2 | 0.22.0 | 0.22.0
Original file line number Diff line number Diff line change @@ -43,7 +43,7 @@ def _make_required_install_packages():
43
43
# six, and protobuf) with TF.
44
44
return [
45
45
'absl-py>=0.9,<0.11' ,
46
- 'apache-beam[gcp]>=2.23 ,<3' ,
46
+ 'apache-beam[gcp]>=2.24 ,<3' ,
47
47
'numpy>=1.16,<2' ,
48
48
'protobuf>=3.9.2,<4' ,
49
49
'pydot>=1.2,<2' ,
@@ -54,7 +54,7 @@ def _make_required_install_packages():
54
54
nightly = '>=0.25.0.dev' ,
55
55
git_master = '@git+https://github.com/tensorflow/metadata@master' ),
56
56
'tfx-bsl' + select_constraint (
57
- default = '>=0.24,<0.25' ,
57
+ default = '>=0.24.1 ,<0.25' ,
58
58
nightly = '>=0.25.0.dev' ,
59
59
git_master = '@git+https://github.com/tensorflow/tfx-bsl@master' ),
60
60
]
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__ = '0.24.0 '
17
+ __version__ = '0.24.1 '
You can’t perform that action at this time.
0 commit comments