|
1 | 1 | # `struct2tensor` release notes |
2 | 2 |
|
3 | | -# Current version (not yet released; still in development) |
4 | | - |
5 | | -## Major Features and Improvements |
6 | | - |
7 | | -## Bug Fixes and Other Changes |
8 | | - |
9 | | -## Breaking changes |
10 | | - |
11 | | -## Deprecations |
12 | | - |
13 | 3 | ## Release 0.27.0 |
14 | 4 |
|
15 | 5 | ## Major Features and Improvements |
|
29 | 19 | ## Deprecations |
30 | 20 |
|
31 | 21 | * N/A |
32 | | - |
33 | | -## Release 0.26.0 |
34 | | - |
35 | | -## Major Features and Improvements |
36 | | - |
37 | | -* Created a docker image that contains a TF model server with struct2tensor |
38 | | - ops linked. This docker image is available at |
39 | | - `gcr.io/tfx-oss-public/s2t_tf_serving` . |
40 | | -* Add support for string_views for intermediate serialized protos. To use, set |
41 | | - the option "use_string_view" in CalculateOptions to true. string_views are |
42 | | - potentially more memory bandwidth efficient depending on the depth and |
43 | | - complexity of the input proto. |
44 | | - |
45 | | -## Bug Fixes and Other Changes |
46 | | - |
47 | | -* Depends on `tensorflow-metadata>=0.26,<0.27`. |
48 | | - |
49 | | -## Breaking changes |
50 | | - |
51 | | -* N/A |
52 | | - |
53 | | -## Deprecations |
54 | | - |
55 | | -* N/A |
56 | | - |
57 | | -## Release 0.25.0 |
58 | | - |
59 | | -## Major Features and Improvements |
60 | | - |
61 | | -* From this release Struct2Tensor will also be hosting nightly packages on |
62 | | - https://pypi-nightly.tensorflow.org. To install the nightly package use the |
63 | | - following command: |
64 | | - |
65 | | - ``` |
66 | | - pip install -i https://pypi-nightly.tensorflow.org/simple struct2tensor |
67 | | - ``` |
68 | | -
|
69 | | - Note: These nightly packages are unstable and breakages are likely to |
70 | | - happen. The fix could often take a week or more depending on the complexity |
71 | | - involved for the wheels to be available on the PyPI cloud service. You can |
72 | | - always use the stable version of struct2tensor available on PyPI by running |
73 | | - the command `pip install struct2tensor` . |
74 | | -
|
75 | | -## Bug Fixes and Other Changes |
76 | | -
|
77 | | -* Update __init__.py to import the API, instead of just the modules. |
78 | | -* Provide an __init__.py for struct2tensor.expression_impl directory. This is |
79 | | - meant for power users. |
80 | | -* Update python notebook to use import style. |
81 | | -* Fix bug in prensor_to_structured_tensor. |
82 | | -* Depends on `tensorflow-metadata>=0.25,<0.26`. |
83 | | -* Depends on `pyarrow>=0.17,<1`. |
84 | | -
|
85 | | -## Breaking changes |
86 | | -
|
87 | | -* N/A |
88 | | -
|
89 | | -## Deprecations |
90 | | -
|
91 | | -* N/A |
92 | | -
|
93 | | -## Release 0.24.0 |
94 | | -
|
95 | | -## Major Features and Improvements |
96 | | -
|
97 | | -* Add support for converting prensor to `StructuredTensor`. |
98 | | -
|
99 | | -## Bug Fixes and Other Changes |
100 | | -
|
101 | | -* Depends on `tensorflow>=2.3.0,<2.4` |
102 | | -* Depends on `tensorflow-metadata>=0.24,<0.25` |
103 | | -
|
104 | | -## Breaking changes |
105 | | -
|
106 | | -* N/A |
107 | | -
|
108 | | -## Deprecations |
109 | | -
|
110 | | -* Deprecated py3.5 support |
111 | | -
|
112 | | -## Release 0.23.0 |
113 | | -
|
114 | | -### Major Features and Improvements |
115 | | -
|
116 | | -* Add promote for substructures. |
117 | | -* Add support for converting `StructuredTensor` to prensor. |
118 | | -
|
119 | | -### Bug Fixes and Other Changes |
120 | | -
|
121 | | -* Depends on `tensorflow>=2.3.0,<2.4` |
122 | | -* Depends on `tensorflow-metadata>=0.23,<0.24` |
123 | | -
|
124 | | -### Breaking Changes |
125 | | -
|
126 | | -* Drop snappy support for parquet dataset. |
127 | | -
|
128 | | -### Deprecations |
129 | | -
|
130 | | -* Deprecating Py2 support. |
131 | | -
|
132 | | -## Release 0.22.0 |
133 | | -
|
134 | | -### Major Features and Improvements |
135 | | -
|
136 | | -### Bug Fixes and Other Changes |
137 | | -
|
138 | | -* Depends on `tensorflow>=2.2.0,<2.3 |
139 | | -
|
140 | | -### Breaking Changes |
141 | | -
|
142 | | -### Deprecations |
143 | | -
|
144 | | -## Release 0.21.1 |
145 | | -
|
146 | | -### Major Features and Improvements |
147 | | -
|
148 | | -* Bumped Tensorflow version for statically linked libraries from 1.5 to 2.1. |
149 | | -
|
150 | | -### Bug Fixes and Other Changes |
151 | | -
|
152 | | -* Added tests for statically linked libraries. |
153 | | -* Statically linked libraries build now. |
154 | | -
|
155 | | -### Breaking Changes |
156 | | -
|
157 | | -### Deprecations |
158 | | -
|
159 | | -## Release 0.21.0 |
160 | | -
|
161 | | -### Major Features and Improvements |
162 | | -
|
163 | | -* Parquet dataset that can apply expressions to a parquet schema, allowing for |
164 | | - reading data from IO to tensors directly. |
165 | | -
|
166 | | -### Bug Fixes and Other Changes |
167 | | -
|
168 | | -* Now requires tensorflow>=2.1.0,<2.2. |
169 | | -
|
170 | | -### Breaking Changes |
171 | | -
|
172 | | -### Deprecations |
173 | | -
|
174 | | -## Release 0.0.1dev6 |
175 | | -
|
176 | | -* Initial release of struct2tensor. |
0 commit comments