Skip to content

Releases: googleapis/nodejs-googleapis-common

v3.1.0

12 Aug 19:31
Compare
Choose a tag to compare

Features

v3.0.0

24 Jul 20:33
Compare
Choose a tag to compare

⚠ BREAKING CHANGES

  • pulls in breaking API changes in google-auth-library. getProjectId() and getProjectId() have been modified to make the impact of these changes less noticeable on the legacy googleapis module (getClient() is idempotent, but getProjectId() will use the last configuration).

Features

  • expose GoogleAuth constructor on AuthPlus class (#154) (7d7a961)

v2.0.4

01 Jul 20:31
Compare
Choose a tag to compare

Bug Fixes

  • added _options to topOptions parameters.context.google check (#148) (da1e230)
  • deps: bump the min required version of all deps (#152) (7634004)

v2.0.3

26 Jun 22:35
Compare
Choose a tag to compare

Bug Fixes

  • remove path params when provided via API level options (#147) (96d940a)
  • docs: link to reference docs section on googleapis.dev (#150) (3ac41da)

v2.0.2

14 Jun 16:51
Compare
Choose a tag to compare

Bug Fixes

v2.0.1

14 Jun 15:02
Compare
Choose a tag to compare

Bug Fixes

  • deps: bump minimum deps and remove pify (#141) (26c3eeb)

v2.0.0

09 May 16:46
Compare
Choose a tag to compare

Bug Fixes

  • deps: update dependency gaxios to v2 (#116) (0db9055)
  • deps: update dependency google-auth-library to v4 (#127) (5f83c34)

Build System

BREAKING CHANGES

  • upgrade engines field to >=8.10.0 (#119)

v1.0.0

01 Apr 14:01
143c2c2
Compare
Choose a tag to compare

03-29-2019 11:28 PDT

This release has breaking changes. HTTP retries for a subset of requests are now enabled by default. The retry logic matches the defaults for gaxios:

{
  // The amount of time to initially delay the retry
  retryDelay: 100;

  // The HTTP Methods that will be automatically retried.
  httpMethodsToRetry: ['GET','PUT','HEAD','OPTIONS','DELETE']

  // The HTTP response status codes that will automatically be retried.
  statusCodesToRetry: [[100, 199], [429, 429], [500, 599]];
}

The behavior can be disabled by setting retry to false in the request config. For more information, see #104.

New Features

  • feat: retry requests by default (#104)

Documentation

  • docs: update links in contrib guide (#94)
  • docs: update contributing path in README (#89)
  • docs: move CONTRIBUTING.md to root (#88)
  • docs: add lint/fix example to contributing guide (#86)

Internal / Testing Changes

  • chore: publish to npm using wombat (#101)
  • build: use per-repo publish token (#100)
  • build: Add docuploader credentials to node publish jobs (#98)
  • build: use node10 to run samples-test, system-test etc (#97)
  • build: update release configuration
  • chore(deps): update dependency mocha to v6
  • build: use linkinator for docs test (#92)
  • chore(deps): update dependency @types/tmp to v0.0.34 (#93)
  • build: create docs test npm scripts (#91)
  • build: test using @grpc/grpc-js in CI (#90)

v0.7.2

28 Jan 15:01
49143da
Compare
Choose a tag to compare

01-26-2019 21:18 PST

  • fix: explicit push of finale for multipart/related streams to fix node.js 6 (#82)

v0.7.1

22 Jan 19:31
ae0eb04
Compare
Choose a tag to compare

01-22-2019 11:22 PST

Bug fixes

  • fix(types): allow user agent directives in global options (#78)
  • fix(streams): reroute boundary insertion through transform stream (#67)