Skip to content

Commit 4aca57f

Browse files
roseayeontfx-copybara
authored andcommitted
TFX 1.14.0 Release
PiperOrigin-RevId: 559260889
1 parent cafeb89 commit 4aca57f

7 files changed

+54
-20
lines changed

README.md

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

6363
tfx | 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) | 2.47.0 | 1.13.1 | 10.0.0 | nightly (2.x) | 1.13.0 | 1.13.1 | 0.44.0 | 2.9.0 | 1.13.0 | 1.13.0
65+
[GitHub master](https://github.com/tensorflow/tfx/blob/master/RELEASE.md) | 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
66+
[1.14.0](https://github.com/tensorflow/tfx/blob/v1.14.0/RELEASE.md) | 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
6667
[1.13.0](https://github.com/tensorflow/tfx/blob/v1.13.0/RELEASE.md) | 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
6768
[1.12.0](https://github.com/tensorflow/tfx/blob/v1.12.0/RELEASE.md) | 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
6869
[1.11.0](https://github.com/tensorflow/tfx/blob/v1.11.0/RELEASE.md) | 2.40.0 | 1.11.0 | 6.0.0 | 1.15.5 / 2.10.0 | 1.11.0 | 1.11.0 | 0.42.0 | 2.9.0 | 1.11.0 | 1.11.0

RELEASE.md

+18
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.14.0
20+
21+
## Major Features and Improvements
22+
523
* Added python 3.10 support.
624

725
## Breaking Changes

WORKSPACE

+17-2
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,11 @@ http_archive(
3131
# version of this -- keep in sync.
3232
http_archive(
3333
name = "bazel_skylib",
34-
sha256 = "2ef429f5d7ce7111263289644d233707dba35e39696377ebab8b0bc701f7818e",
35-
urls = ["https://github.com/bazelbuild/bazel-skylib/releases/download/0.8.0/bazel-skylib.0.8.0.tar.gz"],
34+
sha256 = "97e70364e9249702246c0e9444bccdc4b847bed1eb03c5a3ece4f83dfe6abc44",
35+
urls = [
36+
"https://mirror.bazel.build/github.com/bazelbuild/bazel-skylib/releases/download/1.0.2/bazel-skylib-1.0.2.tar.gz",
37+
"https://github.com/bazelbuild/bazel-skylib/releases/download/1.0.2/bazel-skylib-1.0.2.tar.gz",
38+
],
3639
)
3740

3841
# TensorFlow depends on "io_bazel_rules_closure" so we need this here.
@@ -49,6 +52,18 @@ http_archive(
4952
)
5053
# LINT.ThenChange(:tf_commit)
5154

55+
http_archive(
56+
name = "com_google_protobuf",
57+
sha256 = "930c2c3b5ecc6c9c12615cf5ad93f1cd6e12d0aba862b572e076259970ac3a53",
58+
strip_prefix = "protobuf-3.21.12",
59+
urls = ["https://github.com/protocolbuffers/protobuf/archive/v3.21.12.tar.gz"],
60+
)
61+
62+
load("@com_google_protobuf//:protobuf_deps.bzl", "protobuf_deps")
63+
64+
protobuf_deps()
65+
66+
5267
# MLMD depends on "io_bazel_rules_go" so we need this here.
5368
http_archive(
5469
name = "io_bazel_rules_go",

tfx/dependencies.py

+12-12
Original file line numberDiff line numberDiff line change
@@ -54,9 +54,9 @@ def make_pipeline_sdk_required_install_packages():
5454
'absl-py>=0.9,<2.0.0',
5555
'ml-metadata' + select_constraint(
5656
# LINT.IfChange
57-
default='>=1.13.1,<1.14.0',
57+
default='>=1.14.0,<1.15.0',
5858
# LINT.ThenChange(tfx/workspace.bzl)
59-
nightly='>=1.14.0.dev',
59+
nightly='>=1.15.0.dev',
6060
git_master='@git+https://github.com/google/ml-metadata@master'),
6161
'packaging>=20,<21',
6262
'portpicker>=1.3.1,<2',
@@ -100,29 +100,29 @@ def make_required_install_packages():
100100
'tensorflow-hub>=0.9.0,<0.14',
101101
'tensorflow-data-validation'
102102
+ select_constraint(
103-
default='>=1.13.0,<1.14.0',
104-
nightly='>=1.14.0.dev',
103+
default='>=1.14.0,<1.15.0',
104+
nightly='>=1.15.0.dev',
105105
git_master=(
106106
'@git+https://github.com/tensorflow/data-validation@master'
107107
),
108108
),
109109
'tensorflow-model-analysis'
110110
+ select_constraint(
111-
default='>=0.44.0,<0.45.0',
112-
nightly='>=0.45.0.dev',
111+
default='>=0.45.0,<0.46.0',
112+
nightly='>=0.46.0.dev',
113113
git_master='@git+https://github.com/tensorflow/model-analysis@master',
114114
),
115115
'tensorflow-serving-api>=1.15,!=2.0.*,!=2.1.*,!=2.2.*,!=2.3.*,!=2.4.*,!=2.5.*,!=2.6.*,!=2.7.*,!=2.8.*,<3',
116116
'tensorflow-transform'
117117
+ select_constraint(
118-
default='>=1.13.0,<1.14.0',
119-
nightly='>=1.14.0.dev',
118+
default='>=1.14.0,<1.15.0',
119+
nightly='>=1.15.0.dev',
120120
git_master='@git+https://github.com/tensorflow/transform@master',
121121
),
122122
'tfx-bsl'
123123
+ select_constraint(
124-
default='>=1.13.0,<1.14.0',
125-
nightly='>=1.14.0.dev',
124+
default='>=1.14.0,<1.15.0',
125+
nightly='>=1.15.0.dev',
126126
git_master='@git+https://github.com/tensorflow/tfx-bsl@master',
127127
),
128128
]
@@ -184,8 +184,8 @@ def make_extra_packages_tf_ranking():
184184
return [
185185
'tensorflow-ranking>=0.5,<0.6',
186186
'struct2tensor' + select_constraint(
187-
default='>=0.44,<0.45',
188-
nightly='>=0.45.0.dev',
187+
default='>=0.45,<0.46',
188+
nightly='>=0.46.0.dev',
189189
git_master='@git+https://github.com/google/struct2tensor@master'),
190190
]
191191

tfx/tfx.bzl

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ def tfx_py_proto_library(name, srcs = [], deps = [], visibility = None, testonly
2222
name = name,
2323
srcs = srcs,
2424
srcs_version = "PY2AND3",
25-
deps = ["@com_google_protobuf//:protobuf_python"] + deps,
26-
default_runtime = "@com_google_protobuf//:protobuf_python",
25+
deps = ["@com_google_protobuf//:well_known_types_py_pb2"] + deps,
26+
default_runtime = "@com_google_protobuf//:well_known_types_py_pb2",
2727
protoc = "@com_google_protobuf//:protoc",
2828
visibility = visibility,
2929
testonly = testonly,

tfx/version.py

+1-1
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.14.0.dev'
17+
__version__ = '1.15.0.dev'

tfx/workspace.bzl

+2-2
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.13.0",
82+
tag = "v1.14.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.9.0",
92+
tag = "v1.14.0",
9393
# LINT.ThenChange(//tfx/dependencies.py)
9494
)

0 commit comments

Comments
 (0)