blob: f69f8b9d625c9fa472759501242fa39e9e47226e [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
Jon Wayne Parrott2b42e292018-03-14 10:11:36 -07007## 1.1.0
8
9### Interface additions
10
11- Add `datetime_helpers.DatetimeWithNanoSeconds` (#4979)
12
13### Implementation changes
14
15- Use a class to wrap grpc streaming errors instead of monkey-patching (#4995)
16
Jon Wayne Parrott35e87e02018-02-27 13:06:14 -080017## 1.0.0
18
19This is the stable v1.0.0 release of google-api-core for Python. Releases after
20this will not contain breaking changes.
21
22### Interface changes and additions
23
24- Made `api_core.page_iterator.PageIterator.item_to_value` public
25- Added ability to specify retry for `Operation` and `polling.Future`. (#4922)
26
Jon Wayne Parrott72af6612018-01-11 09:14:47 -080027## 0.1.4
28
29### New Features
30
31- Add `ChannelStub` to `grpc_helpers` for testing gRPC-based clients. (#4705)
32
33### Notable Implementation Changes
34
35- Fix handling of gapic metadata when specified as `None`. (#4701)
36
Danny Hermesd8af50c2017-12-21 09:14:13 -080037## 0.1.3
38
39### Notable Implementation Changes
40
41- Apply scopes to explicitly provided credentials if needed (#4594).
42- Removing `google.api_core.gapic_v1.method.METRICS_METADATA_KEY`. It
43 can be accessed via
44 `google.api_core.gapic_v1.client_info.METRICS_METADATA_KEY` (#4588).
45
46### Dependencies
47
48- Upgrading to latest `grpcio==1.8.2` (#4642). For details, see
49 related gRPC [bug](https://github.com/grpc/grpc/issues/9688)
50 and [fix](https://github.com/grpc/grpc/pull/13665).
51
52PyPI: https://pypi.org/project/google-api-core/0.1.3/
53
Danny Hermesda0e17b2017-12-08 15:31:56 -080054## 0.1.2
55
56- Upgrading `concurrent.futures` backport from `>= 3.0.0`
57 to `>= 3.2.0` (#4521).
Danny Hermes13d8fd22017-12-11 10:30:58 -080058- Moved `datetime`-related helpers from `google.cloud.core` to
59 `google.api_core.datetime_helpers` (#4399).
60- Added missing `client_info` to `gapic_v1/__init__.py`'s
61 `__all__` (#4567).
62- Added helpers for routing headers to `gapic_v1` (#4336).
63
64PyPI: https://pypi.org/project/google-api-core/0.1.2/
Danny Hermesda0e17b2017-12-08 15:31:56 -080065
Danny Hermes978c5132017-10-31 14:28:55 -070066## 0.1.1
Danny Hermes69979702017-10-30 14:41:42 -070067
Danny Hermes13d8fd22017-12-11 10:30:58 -080068### Dependencies
69
Danny Hermes69979702017-10-30 14:41:42 -070070- Upgrading `grpcio` dependency from `1.2.0, < 1.6dev` to `>= 1.7.0` (#4280)
71
Danny Hermes13d8fd22017-12-11 10:30:58 -080072PyPI: https://pypi.org/project/google-api-core/0.1.1/
73
Danny Hermes978c5132017-10-31 14:28:55 -070074## 0.1.0
Jon Wayne Parrotte889ec92017-10-26 14:52:33 -070075
76Initial release
77
78Prior to being separated, this package was developed in `google-cloud-core`, so
79relevant changes from that package are included here.
80
81- Add google.api.core.gapic_v1.config (#4022)
82- Add google.api.core.helpers.grpc_helpers (#4041)
83- Add google.api.core.gapic_v1.method (#4057)
84- Add wrap_with_paging (#4067)
85- Add grpc_helpers.create_channel (#4069)
86- Add DEFAULT sentinel for gapic_v1.method (#4079)
87- Remove `googleapis-common-protos` from deps in non-`core` packages. (#4098)
88- Add google.api.core.operations_v1 (#4081)
89- Fix test assertion in test_wrap_method_with_overriding_retry_deadline (#4131)
90- Add google.api.core.helpers.general_helpers.wraps (#4166)
91- Update Docs with Python Setup Guide (#4187)
92- Move modules in google.api.core.helpers up one level, delete google.api.core.helpers. (#4196)
93- Clarify that PollingFuture timeout is in seconds. (#4201)
94- Add api_core package (#4210)
95- Replace usage of google.api.core with google.api_core (#4221)
96- Add google.api_core.gapic_v2.client_info (#4225)
97- Fix how api_core.operation populates exception errors (#4231)
98- Fix bare except (#4250)
99- Fix parsing of API errors with Unicode err message (#4251)
100- Port gax proto helper methods (#4249)
101- Remove gapic_v1.method.wrap_with_paging (#4257)
102- Add final set of protobuf helpers to api_core (#4259)
Danny Hermes13d8fd22017-12-11 10:30:58 -0800103
104PyPI: https://pypi.org/project/google-api-core/0.1.0/