Skip to content
This repository was archived by the owner on Nov 18, 2025. It is now read-only.

Commit c3aab52

Browse files
Release v0.21.0 (#349)
1 parent 670d549 commit c3aab52

File tree

3 files changed

+44
-2
lines changed

3 files changed

+44
-2
lines changed

CHANGELOG.md

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,48 @@
44

55
[1]: https://www.npmjs.com/package/gax-nodejs?activeTab=versions
66

7+
## v0.21.0
8+
9+
### 11-10-2018 11:27 PST
10+
This is a minor service release that largely contains updates to other modules. The upgrade to `google-proto-files` and `walkdir` in particular should improve load time of the module by at least ~100ms.
11+
12+
### Dependencies
13+
- fix(deps): update dependency google-proto-files to ^0.18.0 ([#348](https://github.com/googleapis/gax-nodejs/pull/348))
14+
- fix: use `walkdir` instead of `globby` ([#346](https://github.com/googleapis/gax-nodejs/pull/346))
15+
- chore(deps): update dependency through2 to v3 ([#343](https://github.com/googleapis/gax-nodejs/pull/343))
16+
- chore: update grpc to ^1.15.1 ([#316](https://github.com/googleapis/gax-nodejs/pull/316))
17+
- fix(deps): update dependency @grpc/grpc-js to ^0.3.0 ([#308](https://github.com/googleapis/gax-nodejs/pull/308))
18+
19+
### Internal / Testing Changes
20+
- fix: improve types, remove dead code ([#340](https://github.com/googleapis/gax-nodejs/pull/340))
21+
- refactor: enable noImplicitThis in the tsconfig ([#347](https://github.com/googleapis/gax-nodejs/pull/347))
22+
- refactor: drop extend and lodash.flatten ([#345](https://github.com/googleapis/gax-nodejs/pull/345))
23+
- chore: remove temporary folder ([#339](https://github.com/googleapis/gax-nodejs/pull/339))
24+
- chore: use latest npm on Windows ([#344](https://github.com/googleapis/gax-nodejs/pull/344))
25+
- refactor: clean up lodash and use strict ([#342](https://github.com/googleapis/gax-nodejs/pull/342))
26+
- chore: include build in eslintignore ([#337](https://github.com/googleapis/gax-nodejs/pull/337))
27+
- chore: system tests for gax ([#334](https://github.com/googleapis/gax-nodejs/pull/334))
28+
- chore: update issue templates ([#333](https://github.com/googleapis/gax-nodejs/pull/333))
29+
- Update issue templates
30+
- chore: remove old issue template ([#329](https://github.com/googleapis/gax-nodejs/pull/329))
31+
- build: run tests on node11 ([#327](https://github.com/googleapis/gax-nodejs/pull/327))
32+
- fix: better types for GAPIC clients ([#326](https://github.com/googleapis/gax-nodejs/pull/326))
33+
- chores(build): do not collect sponge.xml from windows builds ([#325](https://github.com/googleapis/gax-nodejs/pull/325))
34+
- chores(build): run codecov on continuous builds ([#324](https://github.com/googleapis/gax-nodejs/pull/324))
35+
- chore: update new issue template ([#323](https://github.com/googleapis/gax-nodejs/pull/323))
36+
- build: fix codecov uploading on Kokoro ([#320](https://github.com/googleapis/gax-nodejs/pull/320))
37+
- fix(deps): update dependency google-proto-files to ^0.17.0 ([#317](https://github.com/googleapis/gax-nodejs/pull/317))
38+
- chore(deps): update dependency sinon to v7 ([#319](https://github.com/googleapis/gax-nodejs/pull/319))
39+
- Update kokoro config ([#315](https://github.com/googleapis/gax-nodejs/pull/315))
40+
- chore(deps): update dependency typescript to ~3.1.0 ([#313](https://github.com/googleapis/gax-nodejs/pull/313))
41+
- Update CI config ([#312](https://github.com/googleapis/gax-nodejs/pull/312))
42+
- build: prevent system/sample-test from leaking credentials
43+
- Update the kokoro config ([#309](https://github.com/googleapis/gax-nodejs/pull/309))
44+
- test: remove appveyor config ([#307](https://github.com/googleapis/gax-nodejs/pull/307))
45+
- Update CI config ([#306](https://github.com/googleapis/gax-nodejs/pull/306))
46+
- Enable prefer-const in the eslint config ([#304](https://github.com/googleapis/gax-nodejs/pull/304))
47+
- Enable no-var in eslint ([#303](https://github.com/googleapis/gax-nodejs/pull/303))
48+
749
## v0.18.0
850

951
### Implementation Changes

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "google-gax",
3-
"version": "0.20.0",
3+
"version": "0.21.0",
44
"description": "Google API Extensions",
55
"main": "build/src/index.js",
66
"types": "build/src/index.d.ts",

samples/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"test": "mocha system-test"
1212
},
1313
"dependencies": {
14-
"google-gax": "*"
14+
"google-gax": "^0.21.0"
1515
},
1616
"devDependencies": {
1717
"mocha": "^5.2.0"

0 commit comments

Comments
 (0)