blob: 398d8aaa5bd8ad751889647476ac54adabcf290f [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 Wilcoxcf944322018-06-14 12:22:14 -07007## 1.2.1
8
9### Implementation Changes
10- Make client_info work without gRPC installed. (#5075)
11- Rename `x-goog-header-params` to `x-goog-request-params` (#5495)
12
Christopher Wilcox84aab852018-05-16 14:55:02 -070013## 1.2.0
14
15### Implementation Changes
16- Add close method to grpc Channel (#5333)
17
18### Internal / Testing Changes
19- Fix tests after grpcio update (#5333)
20- Add Test runs for Python 3.7 and remove 3.4 (#5295)
21
Christopher Wilcox0ada3ac2018-04-30 12:24:29 -070022## 1.1.2
23
24### Packaging
25- Update setuptools before packaging (#5265)
26
Christopher Wilcoxd65417d2018-04-18 12:52:17 -070027## 1.1.1
28
29### Internal / Testing Changes
30- Use `install_requires` for platform dependencies instead of `extras_require` (#4991)
31- Update trove classifer to '5 - Production/Stable'
32
Jon Wayne Parrott2b42e292018-03-14 10:11:36 -070033## 1.1.0
34
35### Interface additions
36
37- Add `datetime_helpers.DatetimeWithNanoSeconds` (#4979)
38
39### Implementation changes
40
41- Use a class to wrap grpc streaming errors instead of monkey-patching (#4995)
42
Jon Wayne Parrott35e87e02018-02-27 13:06:14 -080043## 1.0.0
44
45This is the stable v1.0.0 release of google-api-core for Python. Releases after
46this will not contain breaking changes.
47
48### Interface changes and additions
49
50- Made `api_core.page_iterator.PageIterator.item_to_value` public
51- Added ability to specify retry for `Operation` and `polling.Future`. (#4922)
52
Jon Wayne Parrott72af6612018-01-11 09:14:47 -080053## 0.1.4
54
55### New Features
56
57- Add `ChannelStub` to `grpc_helpers` for testing gRPC-based clients. (#4705)
58
59### Notable Implementation Changes
60
61- Fix handling of gapic metadata when specified as `None`. (#4701)
62
Danny Hermesd8af50c2017-12-21 09:14:13 -080063## 0.1.3
64
65### Notable Implementation Changes
66
67- Apply scopes to explicitly provided credentials if needed (#4594).
68- Removing `google.api_core.gapic_v1.method.METRICS_METADATA_KEY`. It
69 can be accessed via
70 `google.api_core.gapic_v1.client_info.METRICS_METADATA_KEY` (#4588).
71
72### Dependencies
73
74- Upgrading to latest `grpcio==1.8.2` (#4642). For details, see
75 related gRPC [bug](https://github.com/grpc/grpc/issues/9688)
76 and [fix](https://github.com/grpc/grpc/pull/13665).
77
78PyPI: https://pypi.org/project/google-api-core/0.1.3/
79
Danny Hermesda0e17b2017-12-08 15:31:56 -080080## 0.1.2
81
82- Upgrading `concurrent.futures` backport from `>= 3.0.0`
83 to `>= 3.2.0` (#4521).
Danny Hermes13d8fd22017-12-11 10:30:58 -080084- Moved `datetime`-related helpers from `google.cloud.core` to
85 `google.api_core.datetime_helpers` (#4399).
86- Added missing `client_info` to `gapic_v1/__init__.py`'s
87 `__all__` (#4567).
88- Added helpers for routing headers to `gapic_v1` (#4336).
89
90PyPI: https://pypi.org/project/google-api-core/0.1.2/
Danny Hermesda0e17b2017-12-08 15:31:56 -080091
Danny Hermes978c5132017-10-31 14:28:55 -070092## 0.1.1
Danny Hermes69979702017-10-30 14:41:42 -070093
Danny Hermes13d8fd22017-12-11 10:30:58 -080094### Dependencies
95
Danny Hermes69979702017-10-30 14:41:42 -070096- Upgrading `grpcio` dependency from `1.2.0, < 1.6dev` to `>= 1.7.0` (#4280)
97
Danny Hermes13d8fd22017-12-11 10:30:58 -080098PyPI: https://pypi.org/project/google-api-core/0.1.1/
99
Danny Hermes978c5132017-10-31 14:28:55 -0700100## 0.1.0
Jon Wayne Parrotte889ec92017-10-26 14:52:33 -0700101
102Initial release
103
104Prior to being separated, this package was developed in `google-cloud-core`, so
105relevant changes from that package are included here.
106
107- Add google.api.core.gapic_v1.config (#4022)
108- Add google.api.core.helpers.grpc_helpers (#4041)
109- Add google.api.core.gapic_v1.method (#4057)
110- Add wrap_with_paging (#4067)
111- Add grpc_helpers.create_channel (#4069)
112- Add DEFAULT sentinel for gapic_v1.method (#4079)
113- Remove `googleapis-common-protos` from deps in non-`core` packages. (#4098)
114- Add google.api.core.operations_v1 (#4081)
115- Fix test assertion in test_wrap_method_with_overriding_retry_deadline (#4131)
116- Add google.api.core.helpers.general_helpers.wraps (#4166)
117- Update Docs with Python Setup Guide (#4187)
118- Move modules in google.api.core.helpers up one level, delete google.api.core.helpers. (#4196)
119- Clarify that PollingFuture timeout is in seconds. (#4201)
120- Add api_core package (#4210)
121- Replace usage of google.api.core with google.api_core (#4221)
122- Add google.api_core.gapic_v2.client_info (#4225)
123- Fix how api_core.operation populates exception errors (#4231)
124- Fix bare except (#4250)
125- Fix parsing of API errors with Unicode err message (#4251)
126- Port gax proto helper methods (#4249)
127- Remove gapic_v1.method.wrap_with_paging (#4257)
128- Add final set of protobuf helpers to api_core (#4259)
Danny Hermes13d8fd22017-12-11 10:30:58 -0800129
130PyPI: https://pypi.org/project/google-api-core/0.1.0/