github googleapis/google-api-nodejs-client v28.0.0
28.0.0

Greetings folks! Gosh, this is a big release. The most request feature in this one is the new shiny support for using promises and async/await:

urlshortener.url.get(params)
  .then(response => {
    console.log('Long url is', response.data.longUrl);
  })
  .catch(error => console.error);

Or async/await:

async function runSample() {
  const response = await urlshortener.url.get(params);
  console.log('Long url is', response.data.longUrl);
}
runSample().catch(console.error);

New Features

82d2776 feat: add upload progress events (#1044)
04dc84c feat: add promise support (#1091)
e900d4c feat: request gzip responses (#1065)

Bug fixes

d89a735 fix: encodeURIComponent path params (#1087)

Docs and samples, samples, samples

edd4257 feat: add sample for appending to sheets (#1067)
a269cab feat: add analytics reporting sample (#1086)
ed38060 docs: improve the readme (#1084)
2d23b59 feat: add a gmail send sample (#1088)
b25d57e chore: add gmail samples (#1046)
9ad0fa5 fix: fix download sample (#1077)
1917e9f feat: add gmail watch sample (#1073)
5add4c7 fix: repair a bunch of samples (#1055)
e5e95a6 Doc changes for url shortener example (#1013)
0f4d4e4 docs: added warning in the example code refresh token (#827)

Package Updates

c7e1d23 chore(package): update @types/node to version 9.6.1 (#1090)
b6734e9 chore(package): update mocha to version 5.0.5 (#1081)
858b3b3 chore(package): update @types/node to version 9.6.0 (#1079)
2c5bbca chore(package): update @types/mocha to version 5.0.0 (#1078)
57016c3 chore(package): update source-map-support to version 0.5.4 (#1068)
f63f6a4 chore(package): update opn to version 5.3.0 (#1066)
1654506 chore(package): update nyc to version 11.6.0 (#1062)
a1ac59c chore(package): update @types/node to version 9.4.7 (#1052)
e33363d chore(package): update js-green-licenses to version 0.5.0 (#1051)
c70d786 chore(package): update mocha to version 5.0.4 (#1048)
a0834cf chore(package): update mocha to version 5.0.3 (#1047)
8eb2fce chore(package): update mocha to version 5.0.2 (#1040)
0fb58e2 chore(package): update gts to version 0.5.4 (#1036)

Keeping the lights on

0d79b4c feat: type all the things (#1082)
ae95ec4 chore: setup nightly builds workflow (#1074)
8d98867 chore: remove example keyfiles (#1045)
fc395c3 chore: run generator (#1054)
8c53a84 chore: enable noImplicitAny (#1050)
7426f41 chore: use make for builds (#1029)
53149a1 test: refactor and test drive samples (#1028)
5e8e6f4 chore: add more type information to generated files (#1039)

Enjoy!

Don't miss a new google-api-nodejs-client release

NewReleases is sending notifications on new releases.