Skip to content

Commit 6436741

Browse files
author
Jon Wayne Parrott
authored
Release v1.6.5 (#470)
1 parent 20e6135 commit 6436741

File tree

2 files changed

+20
-1
lines changed

2 files changed

+20
-1
lines changed

CHANGELOG

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,22 @@
1+
v1.6.5
2+
Version 1.6.5
3+
4+
Bugfix release
5+
6+
- Proactively refresh credentials when applying and treat a missing
7+
`access_token` as invalid. Note: This change reveals surprising behavior
8+
between default credentials and batches. If you allow
9+
`googleapiclient.discovery.build` to use default credentials *and* specify
10+
different credentials by providing `batch.execut()` with an explicit `http`
11+
argument, your individual requests will use the default credentials and
12+
*not* the credentials specified to the batch http. To avoid this, tell
13+
`build` explicitly not to use default credentials by specifying
14+
`build(..., http=httplib2.Http()`. (#469)
15+
- Remove mutual exclusivity check for developerKey and credentials (#465)
16+
- Handle unknown media length. (#406)
17+
- Handle variant error format gracefully. (#459)
18+
- Avoid testing against Django >= 2.0.0 on Python 2. (#460)
19+
120
v1.6.4
221
Version 1.6.4
322

googleapiclient/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
__version__ = "1.6.4"
15+
__version__ = "1.6.5"
1616

1717
# Set default logging handler to avoid "No handler found" warnings.
1818
import logging

0 commit comments

Comments
 (0)