File tree Expand file tree Collapse file tree 2 files changed +20
-1
lines changed Expand file tree Collapse file tree 2 files changed +20
-1
lines changed Original file line number Diff line number Diff line change
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
+
1
20
v1.6.4
2
21
Version 1.6.4
3
22
Original file line number Diff line number Diff line change 12
12
# See the License for the specific language governing permissions and
13
13
# limitations under the License.
14
14
15
- __version__ = "1.6.4 "
15
+ __version__ = "1.6.5 "
16
16
17
17
# Set default logging handler to avoid "No handler found" warnings.
18
18
import logging
You can’t perform that action at this time.
0 commit comments