blob: 0d601ee6b85d319fd41302a38ed525308f236893 [file] [log] [blame] [view]
Jon Wayne Parrotte889ec92017-10-26 14:52:33 -07001# Changelog
2
Danny Hermes978c5132017-10-31 14:28:55 -07003[PyPI History][1]
4
5[1]: https://pypi.org/project/google-api-core/#history
6
Christopher Wilcoxb5bf50a2018-10-18 16:37:35 -07007## 1.6.0a1
8
910-18-2018 16:26 PDT
10
11### New Features
12- Add methods to api_core used by new autogenerator. ([#6267](https://github.com/googleapis/google-cloud-python/pull/6267))
13
14### Internal / Testing Changes
15- Fix branch coverage for un-called callbacks. ([#6242](https://github.com/googleapis/google-cloud-python/pull/6242))
16- Fix import order, appeasing lint. ([#6240](https://github.com/googleapis/google-cloud-python/pull/6240))
17- Add / fix badges for PyPI / versions. ([#6158](https://github.com/googleapis/google-cloud-python/pull/6158))
18
Christopher Wilcox352242e2018-10-16 09:43:02 -070019## 1.5.0
20
21### New Features
22- Add bidi, Bidirection Streaming, to api-core ([#6211](https://github.com/GoogleCloudPlatform/google-cloud-python/pull/6211))
23
24
25### Internal / Testing Changes
26- Use new Nox ([#6175](https://github.com/GoogleCloudPlatform/google-cloud-python/pull/6175))
27
Tres Seaver2ab3a092018-09-28 13:13:55 -040028## 1.4.1
29
30### Dependencies
31- Pin minimum protobuf dependency to 3.4.0. ([#6132](https://github.com/GoogleCloudPlatform/google-cloud-python/pull/6132))
32
33### Internal / Testing Changes
34- Add type-checking via pytype to api_core. ([#6116](https://github.com/GoogleCloudPlatform/google-cloud-python/pull/6116))
35
Thea Flowers58ae90e2018-09-11 11:02:50 -070036## 1.4.0
37
38### Dependencies
39
40- Add support for gRPC connection management (available when using optional grpc_gcp dependency) ([#5553](https://github.com/GoogleCloudPlatform/google-cloud-python/pull/5553)) ([#5904](https://github.com/GoogleCloudPlatform/google-cloud-python/pull/5904))
41- Update classifiers to drop Python 3.4 and add Python 3.7 ([#5702](https://github.com/GoogleCloudPlatform/google-cloud-python/pull/5702))
42
Thea Flowers21bc9ad2018-07-27 10:29:39 -070043## 1.3.0
44
45### New Features
46
47- Add protobuf_helpers.field_mask to calculate a field mask from two messages (#5320)
48
Christopher Wilcoxcf944322018-06-14 12:22:14 -070049## 1.2.1
50
51### Implementation Changes
52- Make client_info work without gRPC installed. (#5075)
53- Rename `x-goog-header-params` to `x-goog-request-params` (#5495)
54
Christopher Wilcox84aab852018-05-16 14:55:02 -070055## 1.2.0
56
57### Implementation Changes
58- Add close method to grpc Channel (#5333)
59
60### Internal / Testing Changes
61- Fix tests after grpcio update (#5333)
62- Add Test runs for Python 3.7 and remove 3.4 (#5295)
63
Christopher Wilcox0ada3ac2018-04-30 12:24:29 -070064## 1.1.2
65
66### Packaging
67- Update setuptools before packaging (#5265)
68
Christopher Wilcoxd65417d2018-04-18 12:52:17 -070069## 1.1.1
70
71### Internal / Testing Changes
72- Use `install_requires` for platform dependencies instead of `extras_require` (#4991)
73- Update trove classifer to '5 - Production/Stable'
74
Jon Wayne Parrott2b42e292018-03-14 10:11:36 -070075## 1.1.0
76
77### Interface additions
78
79- Add `datetime_helpers.DatetimeWithNanoSeconds` (#4979)
80
81### Implementation changes
82
83- Use a class to wrap grpc streaming errors instead of monkey-patching (#4995)
84
Jon Wayne Parrott35e87e02018-02-27 13:06:14 -080085## 1.0.0
86
87This is the stable v1.0.0 release of google-api-core for Python. Releases after
88this will not contain breaking changes.
89
90### Interface changes and additions
91
92- Made `api_core.page_iterator.PageIterator.item_to_value` public
93- Added ability to specify retry for `Operation` and `polling.Future`. (#4922)
94
Jon Wayne Parrott72af6612018-01-11 09:14:47 -080095## 0.1.4
96
97### New Features
98
99- Add `ChannelStub` to `grpc_helpers` for testing gRPC-based clients. (#4705)
100
101### Notable Implementation Changes
102
103- Fix handling of gapic metadata when specified as `None`. (#4701)
104
Danny Hermesd8af50c2017-12-21 09:14:13 -0800105## 0.1.3
106
107### Notable Implementation Changes
108
109- Apply scopes to explicitly provided credentials if needed (#4594).
110- Removing `google.api_core.gapic_v1.method.METRICS_METADATA_KEY`. It
111 can be accessed via
112 `google.api_core.gapic_v1.client_info.METRICS_METADATA_KEY` (#4588).
113
114### Dependencies
115
116- Upgrading to latest `grpcio==1.8.2` (#4642). For details, see
117 related gRPC [bug](https://github.com/grpc/grpc/issues/9688)
118 and [fix](https://github.com/grpc/grpc/pull/13665).
119
120PyPI: https://pypi.org/project/google-api-core/0.1.3/
121
Danny Hermesda0e17b2017-12-08 15:31:56 -0800122## 0.1.2
123
124- Upgrading `concurrent.futures` backport from `>= 3.0.0`
125 to `>= 3.2.0` (#4521).
Danny Hermes13d8fd22017-12-11 10:30:58 -0800126- Moved `datetime`-related helpers from `google.cloud.core` to
127 `google.api_core.datetime_helpers` (#4399).
128- Added missing `client_info` to `gapic_v1/__init__.py`'s
129 `__all__` (#4567).
130- Added helpers for routing headers to `gapic_v1` (#4336).
131
132PyPI: https://pypi.org/project/google-api-core/0.1.2/
Danny Hermesda0e17b2017-12-08 15:31:56 -0800133
Danny Hermes978c5132017-10-31 14:28:55 -0700134## 0.1.1
Danny Hermes69979702017-10-30 14:41:42 -0700135
Danny Hermes13d8fd22017-12-11 10:30:58 -0800136### Dependencies
137
Danny Hermes69979702017-10-30 14:41:42 -0700138- Upgrading `grpcio` dependency from `1.2.0, < 1.6dev` to `>= 1.7.0` (#4280)
139
Danny Hermes13d8fd22017-12-11 10:30:58 -0800140PyPI: https://pypi.org/project/google-api-core/0.1.1/
141
Danny Hermes978c5132017-10-31 14:28:55 -0700142## 0.1.0
Jon Wayne Parrotte889ec92017-10-26 14:52:33 -0700143
144Initial release
145
146Prior to being separated, this package was developed in `google-cloud-core`, so
147relevant changes from that package are included here.
148
149- Add google.api.core.gapic_v1.config (#4022)
150- Add google.api.core.helpers.grpc_helpers (#4041)
151- Add google.api.core.gapic_v1.method (#4057)
152- Add wrap_with_paging (#4067)
153- Add grpc_helpers.create_channel (#4069)
154- Add DEFAULT sentinel for gapic_v1.method (#4079)
155- Remove `googleapis-common-protos` from deps in non-`core` packages. (#4098)
156- Add google.api.core.operations_v1 (#4081)
157- Fix test assertion in test_wrap_method_with_overriding_retry_deadline (#4131)
158- Add google.api.core.helpers.general_helpers.wraps (#4166)
159- Update Docs with Python Setup Guide (#4187)
160- Move modules in google.api.core.helpers up one level, delete google.api.core.helpers. (#4196)
161- Clarify that PollingFuture timeout is in seconds. (#4201)
162- Add api_core package (#4210)
163- Replace usage of google.api.core with google.api_core (#4221)
164- Add google.api_core.gapic_v2.client_info (#4225)
165- Fix how api_core.operation populates exception errors (#4231)
166- Fix bare except (#4250)
167- Fix parsing of API errors with Unicode err message (#4251)
168- Port gax proto helper methods (#4249)
169- Remove gapic_v1.method.wrap_with_paging (#4257)
170- Add final set of protobuf helpers to api_core (#4259)
Danny Hermes13d8fd22017-12-11 10:30:58 -0800171
172PyPI: https://pypi.org/project/google-api-core/0.1.0/