Skip to content
This repository has been archived by the owner on Jun 24, 2024. It is now read-only.

v1.0.0

Compare
Choose a tag to compare
@yoshi-automation yoshi-automation released this 28 Feb 15:01
20f9d5b

02-28-2019 06:27 PST

This release has breaking changes. The underlying transport library was changed from request to gaxios. Any response objects returned via the API will now return a GaxiosResponse object.

Old Code

.on('response', function (resp, metadata) {
  console.log(resp.statusCode);
})

New Code

.on('response', function (resp) {
  console.log(resp.status);
});

Implementation Changes

  • fix: replace request with gaxios (#174)

Documentation

  • docs: update links in contrib guide (#184)
  • docs: add lint/fix example to contributing guide (#177)

Internal / Testing Changes

  • chore(deps): update dependency mocha to v6 (#185)
  • build: use linkinator for docs test (#183)
  • build: create docs test npm scripts (#182)
  • build: test using @grpc/grpc-js in CI (#181)
  • chore: move CONTRIBUTING.md to root (#179)
  • chore(deps): update dependency typescript to ~3.3.0 (#176)