asset-pipe / integration

Integration verification module
Other
0 stars 0 forks source link

Update @google-cloud/storage to the latest version πŸš€ #66

Open greenkeeper[bot] opened 6 years ago

greenkeeper[bot] commented 6 years ago

Version 2.0.0 of @google-cloud/storage was just published.

Dependency @google-cloud/storage
Current Version 1.7.0
Type devDependency

The version 2.0.0 is not covered by your current version range.

If you don’t accept this pull request, your project will work just like it did before. However, you might be missing out on a bunch of new features, fixes and/or performance improvements from the dependency update.

It might be worth looking into these changes and trying to get this project onto the latest version of @google-cloud/storage.

If you have a solid test suite and good coverage, a passing build is a strong indicator that you can take advantage of these changes directly by merging the proposed change into your project. If the build fails or you don’t have such unconditional trust in your tests, this branch is a great starting point for you to work on the update.


Release Notes v2.0.0

This release has breaking changes. This release has a few notable breaking changes. Please take care when upgrading!

require syntax changes

The import style of this library has been changed to support es module syntax. This provides both forward compatibility with es modules, and better supports the TypeScript and Babel ecosystems. As a result, the import syntax has changed:

Old Code

const storage = require('@google-cloud/storage')();
// or...
const Storage = require('@google-cloud/storage');
const storage = new Storage({
  // config...
});

New Code

const {Storage} = require('@google-cloud/storage');
const storage = new Storage({
  // config...
});

bucket.upload method removed

To better support a variety of HTTP clients, the bucket.upload method has been removed. It can be replaced with your favorite HTTP client.

Old Code

bucket.upload('https://example.com/images/image.png', function(err, file, res) {
  // handle upload...
});

New Code

const request = require('request');
const file = bucket.file(name);
const writeStream = file.createWriteStream();
request(url).pipe(writeStream);

Breaking changes

  • semver: do not support upload() from url (#337)
  • fix: drop support for node.js 4.x and 9.x (#282)

Features

  • refactor(ts): merge initial TypeScript conversion (#334)
  • feat: Add Storage#getServiceAccount(). (#331)
  • Kms sample (#209)

Bug fixes

  • fix: gzip and Cache-Control headers in upload sample (#225)
  • fix: move this.[ROLE]s initialization from Acl to AclAccessorRoleMethods (#252)
  • fix: signedURL cname (#210) (#234)

Internal / Testing Changes

  • chore(deps): update dependency nyc to v13 (#341)
  • fix(deps): update dependency @google-cloud/common to ^0.23.0 (#340)
  • test: throw on deprecation (#319)
  • chore(deps): update dependency eslint-config-prettier to v3 (#336)
  • fix(deps): update dependency gcs-resumable-upload to ^0.12.0 (#317)
  • Fix system tests for string comparisons (#328)
  • chore: ignore package-lock.json (#326)
  • chore: update renovate config (#322)
  • chore: regen lock files (#318)
  • chore(deps): lock file maintenance (#313)
  • chore: move mocha options to mocha.opts (#311)
  • chore(deps): lock file maintenance (#309)
  • test: use strictEqual in tests (#306)
  • chore(deps): update dependency eslint-plugin-node to v7 (#305)
  • chore(deps): lock file maintenance (#303)
  • chore(deps): lock file maintenance (#285)
  • fix: test meant to assert err msg exists (#280)
  • fix(deps): update dependency yargs to v12 (#270)
  • fix(deps): update dependency uuid to v3.3.2 (#269)
  • chore: update gcs-resumable-upload to 0.11.1 (#265)
  • fix(deps): update dependency uuid to v3.3.0 (#262)
  • chore(deps): update dependency sinon to v6 (#263)
  • Configure Renovate (#250)
  • refactor: drop repo-tool as an exec wrapper (#258)
  • chore: update sample lockfiles (#256)
  • fix: update linking for samples (#254)
  • chore(package): update eslint to version 5.0.0 (#253)
  • refactor(es6): Refactor constructor pattern as ES6 class (#246)
  • Update @google-cloud/common to the latest version πŸš€ (#226)
  • system-tests: fix channel test. (#243)
  • refactor: Update to the latest version of nodejs-common and gcs-resumable-upload (#202)
  • Fix permission of bash script for Kokoro (#223)
  • chore(package): update nyc to version 12.0.2 (#216)
  • chore: fix prettier incompatibility (#211)
Commits

The new version differs by 51 commits.

  • d6cb9b2 fix quickstart.test.js using new export structure (#348)
  • f323ab3 fix(test): fix broken samples-test script (#344)
  • bcd08d2 Release nodejs-storage v2.0.0 (#343)
  • 0ac0986 chore(deps): update dependency nyc to v13 (#341)
  • cb9c7b1 fix(deps): update dependency @google-cloud/common to ^0.23.0 (#340)
  • f520326 semver: do not support upload() from url (#337)
  • e68242a test: throw on deprecation (#319)
  • 731a754 refactor(ts): merge initial TypeScript conversion (#334)
  • b18c35d feat: Add Storage#getServiceAccount(). (#331)
  • 8aba292 chore(deps): update dependency eslint-config-prettier to v3 (#336)
  • 6fbd1d1 fix(deps): update dependency gcs-resumable-upload to ^0.12.0 (#317)
  • 4ef5d37 Fix system tests for string comparisons (#328)
  • d47e62e chore: ignore package-lock.json (#326)
  • 669f20f chore: update renovate config (#322)
  • 3c89ffe chore: regen lock files (#318)

There are 51 commits in total.

See the full diff

FAQ and help There is a collection of [frequently asked questions](https://greenkeeper.io/faq.html). If those don’t help, you can always [ask the humans behind Greenkeeper](https://github.com/greenkeeperio/greenkeeper/issues/new).

Your Greenkeeper bot :palm_tree:

greenkeeper[bot] commented 6 years ago

Version 2.0.1 just got published.

Update to this version instead πŸš€

Release Notes v2.0.1

This fixes types declaration issues with projects using TypeScript.

Implementation Changes

  • Enable noImplicitThis in the tsconfig (#370)
  • Fix the path to the d.ts (#364)
  • fix: make dependency on request explicit (#361)
  • fix: remove trailing slashes from bucket name. (#266)

Dependencies

  • fix(deps): update dependency @google-cloud/common to ^0.24.0 (#367)
  • fix(deps): update dependency gcs-resumable-upload to ^0.13.0 (#368)
  • Remove unused dependencies (#363)
  • Remove safe-buffer (#359)
  • samples: update dependency @google-cloud/storage to v2 (#350)

Internal / Testing Changes

  • Update CI config (#371)
  • build(kokoro): run docker as user node (#358)
  • build: fix multiline in circle.yml (#357)
  • fix executable modes on .sh's; add pre-system-test.sh hook (#356)
  • decrypt both service account keys (#353)
  • Retry npm install in CI (#352)
  • Add synth script and run it (#351)
Commits

The new version differs by 19 commits.

  • 0a7a226 Release @google-cloud/storage v2.0.1 (#376)
  • 702d7bd Revert "Support Bucket/Object lock operations (#320)" (#373)
  • 2b1ffaf Support Bucket/Object lock operations (#320)
  • 74beabc Enable noImplicitThis in the tsconfig (#370)
  • 52fc8d5 Update CI config (#371)
  • 4e6b942 fix(deps): update dependency @google-cloud/common to ^0.24.0 (#367)
  • a163d19 fix(deps): update dependency gcs-resumable-upload to ^0.13.0 (#368)
  • 5aba0e4 Fix the path to the d.ts (#364)
  • 36c7a64 Remove unused dependencies (#363)
  • 170104e fix: make dependency on request explicit (#361)
  • d76b9e7 fix: remove trailing slashes from bucket name. (#266)
  • 29cb313 Remove safe-buffer (#359)
  • 832d896 build(kokoro): run docker as user node (#358)
  • 69f2fcd build: fix multiline in circle.yml (#357)
  • 6dc2e4e fix executable modes on .sh`s; add pre-system-test.sh hook (#356)

There are 19 commits in total.

See the full diff

greenkeeper[bot] commented 6 years ago

Version 2.0.2 just got published.

Update to this version instead πŸš€

Release Notes v2.0.2

Implementation Changes

  • Improve the types (#377)
Commits

The new version differs by 2 commits.

See the full diff

greenkeeper[bot] commented 6 years ago

Version 2.0.3 just got published.

Update to this version instead πŸš€

Release Notes v2.0.3

Implementation Changes

  • Improve TypeScript types (#381)
  • Make some parameters optional (#380)
Commits

The new version differs by 3 commits.

  • d86d023 Release v2.0.3 (#382)
  • 5b34888 Improve types (#381)
  • b1cfa1a Make some parameters optional (#380)

See the full diff

greenkeeper[bot] commented 6 years ago

Update to this version instead πŸš€

Release Notes for v2.1.0

This release brings support for Bucket/Object lock operations, as well as disable TypeScript as we continue to annotate the project with types.

New Features

  • feat: Support Bucket/Object lock operations (#374)

Implementation Changes

  • disable types for now (#392)
  • Don't publish sourcemaps (#412)

TypeScript support (in progress)

  • fix: add better types for file.ts (#436)
  • fix: use ~ for typescript (and fix compile errors) (#426)
  • fix: Add typing for File#download() (#409)
  • chore: convert system tests to typescript (#424)
  • Improve TypeScript types (part 4) (#402)
  • ts: convert jsdoc types to typescript interfaces (1) (#383)
  • fix: TS definition (#387)
  • Annotate types #3 (#391)
  • Annotate types (2) (#388)

Dependencies

  • chore(deps): update dependency eslint-plugin-prettier to v3 (#419)

Documentation

  • docs: Modify source location for templates (#410)
  • docs: Explain Bucket#upload() still exists (#421)

Internal / Testing Changes

  • fix(tests): fix system tests on CircleCI (#431)
  • fix(tests): system-test compiles to ./build, fix relative path (#428)
  • Update kokoro config (#425)
  • chore(samples): convert samples to async/await (#422)
  • build: samples test by adding appropriate test variables (#423)
  • build: bring in latest kokoro cfgs to run System tests on PRs (#413)
  • test: remove appveyor config (#411)
  • Enable prefer-const in the eslint config (#404)
  • fix(test): instantiate PubSub using new (#403)
  • fix: optionsOrCallback could be undefined if not given, check before assign (#401)
  • Fix the requesterPays methods (#400)
  • Enable no-var in eslint (#398)
  • samples: don't use USA formatted dates for expiry (#396)
  • fix: copy(): Use correct destination file name in URI (#389)
Commits

The new version differs by 31 commits.

  • 9e3cc03 Release v2.1.0 (#440)
  • 26e8710 feat: Support Bucket/Object lock operations (#374)
  • a3f2ee3 chore: block auth during public system tests (#438)
  • 5e58f67 fix: add better types for file.ts (#436)
  • 951bc83 fix(tests): fix system tests on CircleCI (#431)
  • ec27023 fix(tests): system-test compiles to ./build, fix relative path (#428)
  • 56b2fc5 fix: use ~ for typescript (and fix compile errors) (#426)
  • 209fdea docs: Modify source location for templates (#410)
  • 3e795af fix: Add typing for File#download() (#409)
  • b207a36 chore: convert system tests to typescript (#424)
  • b400ae6 Update kokoro config (#425)
  • 2de061b chore(samples): convert samples to async/await (#422)
  • 5b85129 build: samples test by adding approprate test variables (#423)
  • c962a7e build: bring in latest kokoro cfgs to run System tests on PRs (#413)
  • 6c32789 docs: Explain Bucket#upload() still exists (#421)

There are 31 commits in total.

See the full diff

greenkeeper[bot] commented 6 years ago

Update to this version instead πŸš€

Release Notes for v2.2.0

Bug Fixes

  • fix: re-enable typescript types (#484)

Dependencies

  • fix(deps): update dependency @google-cloud/common to ^0.26.0 (edited) (#480)
  • chore: Remove 'is' dependency (#462)
  • chore: upgrade teeny-request to 3.11.0 with type definitions (#457)
  • feat: use small HTTP dependency (#416)

Documentation

  • docs: Minor docs correction (#465)

Internal / Testing Changes

  • chore: remove old issue template (#485)
  • chore(typescript): enable noImplicitAny (#483)
  • chore(typescript): improve typescript types and update tests (#482)
  • build: run tests on node11 (#481)
  • chores(build): do not collect sponge.xml from windows builds (#478)
  • chores(build): run codecov on continuous builds (#476)
  • chore: update new issue template (#475)
  • fix: enable noImplicitAny for src/bucket.ts (#472)
  • fix(tests): use unique prefix for system tests to avoid collision with another run (#468)
  • fix: improve the types (#467)
  • chore: move class Storage to storage.ts, create index.ts that contains all exports (#464)
  • chore: add types to many unit tests (#463)
  • fix: Annotate Iam types (#461)
  • fix: complete bucket.ts noImplicitAny (#460)
  • fix: improve the types on acl.ts (#459)
  • fix: improve types (7) (#458)
  • fix: improve the types (#453)
  • chore: update build config (#455)
  • fix: improve typescript types in src/file.ts (#450)
  • build: fix codecov uploading on Kokoro (#451)
  • test: Attempt to re-enable iam#testPermissions (#429)
  • chore(deps): update dependency sinon to v7 (#449)
  • Re-generate library using /synth.py (#448)
  • Correct parameter name. (#446)
Commits

The new version differs by 31 commits.

  • 8372bd2 Release v2.2.0 (#487)
  • df5e05a chore: remove old issue template (#485)
  • 99188a0 fix: re-enable typescript types (#484)
  • d50d25b chore(typescript): enable noImplicitAny (#483)
  • 230a54d chore(typescript): improve typescript types and update tests (#482)
  • 1a563b6 fix(deps): update dependency @google-cloud/common to ^0.26.0 (edited) (#480)
  • f64b8ee build: run tests on node11 (#481)
  • b39eff3 chores(build): do not collect sponge.xml from windows builds (#478)
  • f9e2b11 chores(build): run codecov on continuous builds (#476)
  • 07a14d4 chore: update new issue template (#475)
  • 9c5a547 fix: enable noImplicitAny for src/bucket.ts (#472)
  • 7d025ca chore: Remove 'is' dependency (#462)
  • 5951a63 fix(tests): use unique prefix for system tests to avoid collision with another run (#468)
  • f43bd18 fix: improve the types (#467)
  • 1b01dd2 docs: Minor docs correction (#465)

There are 31 commits in total.

See the full diff

greenkeeper[bot] commented 6 years ago

Update to this version instead πŸš€

Release Notes for v2.3.0

Implementation Changes

  • fix(types): Fixes getSignedUrl Return Type (#496)
  • fix(types): overload Storage.createBucket with Promise return type (#503)

New Features

  • Introduce Object Lifecycle Management (#471)

Dependencies

  • chore(deps): update dependency eslint-plugin-node to v8 (#490)

Internal / Testing Changes

  • chore: update issue templates (#488)
Commits

The new version differs by 8 commits.

  • 848eb3e feat: release @google-cloud/storage v2.3.0 (#500)
  • 4c65871 fix(types): overload Storage.createBucket with Promise return type (#503)
  • 86fe257 chore(build): update CI config
  • 3e5a196 chore: update CircleCI config (#499)
  • 7aa34ed fix(types): Fixes getSignedUrl Return Type (#496)
  • 69df77f Introduce Object Lifecycle Management (#471)
  • 8d81a90 chore(deps): update dependency eslint-plugin-node to v8 (#490)
  • a027a5f chore: update issue templates (#488)

See the full diff

greenkeeper[bot] commented 5 years ago

Update to this version instead πŸš€

Release Notes for v2.3.1

11-14-2018 22:15 PST

Bug fixes

  • fix: fix TypeScript and system tests (#515)
  • fix(deps): update dependency through2 to v3 (#507)
  • docs: File#setMetadata in parallel results in unpredictable state (#504)

Internal / Testing Changes

  • chore(deps): update dependency gts to ^0.9.0 (#514)
  • chore: update eslintignore config (#513)
  • chore(deps): update dependency @google-cloud/nodejs-repo-tools to v3 (#512)
  • refactor: use object.assign where possible (#510)
  • chore: drop contributors from multiple places (#511)
  • chore: use latest npm on Windows (#509)
Commits

The new version differs by 10 commits.

  • bc35149 Release v2.3.1 (#516)
  • b1f85fe fix: fix TypeScript and system tests (#515)
  • 4e78282 chore(deps): update dependency gts to ^0.9.0 (#514)
  • c5ccf9d chore: update eslintignore config (#513)
  • 489d21a chore(deps): update dependency @google-cloud/nodejs-repo-tools to v3 (#512)
  • 640b0c2 refactor: use object.assign where possible (#510)
  • 64e0e37 chore: drop contributors from multiple places (#511)
  • 253db72 chore: use latest npm on Windows (#509)
  • 233b5d7 fix(deps): update dependency through2 to v3 (#507)
  • 7f51f26 docs: File#setMetadata in parallel results in unpredictable state (#504)

See the full diff

greenkeeper[bot] commented 5 years ago

Update to this version instead πŸš€

Release Notes for v2.3.3

12-06-2018 17:09 PST

Dependencies

  • chore(deps): update dependency @types/configstore to v4 (#537)
  • chore(deps): update dependency @google-cloud/pubsub to ^0.22.0 (#535)

Documentation

  • fix(docs): place doc comment above the last overload (#544)
  • docs: update readme badges (#536)

Internal / Testing Changes

  • chore: always nyc report before calling codecov (#543)
  • chore: nyc ignore build/test by default (#542)
  • chore: update license file (#539)
Commits

The new version differs by 21 commits.

  • eace3b9 chore(build): inject yoshi automation key (#555)
  • c463957 chore: update nyc and eslint configs (#554)
  • e156b15 chore: fix publish.sh permission +x (#552)
  • 5a07552 fix(build): fix Kokoro release script (#551)
  • fc7faa9 build: add Kokoro configs for autorelease (#550)
  • 3a00e0e Release v2.3.3 (#545)
  • 3535aea fix(docs): place doc comment above the last overload (#544)
  • 7c406fc chore: always nyc report before calling codecov (#543)
  • c09009e chore: nyc ignore build/test by default (#542)
  • b14682c chore: update license file (#539)
  • 09130eb chore(deps): update dependency @types/configstore to v4 (#537)
  • 991105f docs: update readme badges (#536)
  • 505b664 chore(deps): update dependency @google-cloud/pubsub to ^0.22.0 (#535)
  • 14bdf86 fix(build): fix system key decryption (#533)
  • e0fef20 feat: release v2.3.2 (#531)

There are 21 commits in total.

See the full diff

greenkeeper[bot] commented 5 years ago

Update to this version instead πŸš€

Release Notes for v2.3.4

12-19-2018 14:21 PST

Implementation Changes

  • fix(types): file.getMetadata should resolves to Metadata, not File (#560)

Internal / Testing Changes

  • refactor: modernize the sample tests (#558)
  • chore(build): inject yoshi automation key (#555)
  • chore: update nyc and eslint configs (#554)
  • chore: fix publish.sh permission +x (#552)
  • fix(build): fix Kokoro release script (#551)
  • build: add Kokoro configs for autorelease (#550)
Commits

The new version differs by 3 commits.

  • 56b64cf Release v2.3.4 (#561)
  • 01f3430 fix(types): file.getMetadata should resolves to Metadata, not File (#560)
  • acfa55c refactor: modernize the sample tests (#558)

See the full diff

greenkeeper[bot] commented 5 years ago

Update to this version instead πŸš€

Release Notes for v2.4.2

02-05-2019 16:55 PST

Dependencies

  • deps: update @google-cloud/common (#596)
  • chore(deps): update dependency typescript to ~3.3.0 (#591)

Documentation

  • docs: add lint/fix example to contributing guide (#594)

Internal / Testing Changes

  • test: skip public bucket system tests running under VPCSC (#595)
Commits

The new version differs by 19 commits.

  • 66be30a Release v2.4.2 (#597)
  • fb78556 deps: update @google-cloud/common (#596)
  • 6d4687d test: skip public bucket system tests running under VPCSC (#595)
  • e3c10a1 docs: add lint/fix example to contributing guide (#594)
  • c381ce8 chore(deps): update dependency typescript to ~3.3.0 (#591)
  • 73f500b Release v2.4.1 (#590)
  • 427c59b fix(ts): fix Storage.createBucket overloaded signature (#589)
  • e4032c6 fix(deps): update dependency @google-cloud/pubsub to ^0.24.0 (#588)
  • 0256a11 Release v2.4.0 (#587)
  • 4007cbe deps: upgrade nodejs-common (#582)
  • fb0148b chore(deps): update dependency eslint-config-prettier to v4 (#586)
  • b8e92f6 fix(deps): update dependency @google-cloud/pubsub to ^0.23.0 (#583)
  • 4e262f2 test: Bucket Policy Only related system test (#579)
  • 932246a docs(samples): Bucket Policy Only Samples (#557)
  • 1e0d450 build: check broken links in generated docs (#567)

There are 19 commits in total.

See the full diff

greenkeeper[bot] commented 5 years ago

Update to this version instead πŸš€

Release Notes for v2.4.3

03-13-2019 17:10 PDT

Bug Fixes / Implementation Changes

  • fix: getSigned(Policy|Url) throws if expiration is invalid Date (#614)
  • fix: handle errors from file#createReadStream (#615)

Dependencies

  • fix(deps): update dependency @google-cloud/paginator to ^0.2.0
  • fix(deps): update dependency gcs-resumable-upload to v1 (#619)
  • fix(deps): update dependency @google-cloud/pubsub to ^0.27.0 (#620)
  • fix(deps): update dependency @google-cloud/pubsub to ^0.26.0 (#618)
  • fix(deps): update dependency @google-cloud/pubsub to ^0.25.0 (#616)
  • chore(deps): update dependency mocha to v6 (#611)
  • fix(deps): update dependency @google-cloud/promisify to ^0.4.0 (#609)
  • chore(deps): update dependency @types/tmp to v0.0.34 (#608)
  • fix(deps): update dependency yargs to v13 (#606)

Documentation

  • docs: update links in contrib guide (#610)
  • docs: update contributing path in README (#603)
  • chore: move CONTRIBUTING.md to root (#601)

Internal / Testing Changes

  • build: Add docuploader credentials to node publish jobs (#624)
  • build: use node10 to run samples-test, system-test etc (#623)
  • build: update release configuration
  • build: use linkinator for docs test (#607)
  • build: create docs test npm scripts (#605)
  • build: test using @grpc/grpc-js in CI (#604)
  • chore: remove console.log in system test (#599)
Commits

The new version differs by 24 commits.

  • f1ef9c6 Release v2.4.3 (#628)
  • b80ee22 fix(deps): update dependency @google-cloud/pubsub to ^0.28.0
  • 813ecca tests: fix assertion syntax (#629)
  • e24f2d1 fix(deps): update dependency @google-cloud/paginator to ^0.2.0
  • 72a57ab build: Add docuploader credentials to node publish jobs (#624)
  • 58d4ea5 fix(deps): update dependency gcs-resumable-upload to v1 (#619)
  • 23a3cf0 build: use node10 to run samples-test, system-test etc (#623)
  • a5ea8ab fix(deps): update dependency @google-cloud/pubsub to ^0.27.0 (#620)
  • 0a6c134 build: update release configuration
  • 5dcb36c fix(deps): update dependency @google-cloud/pubsub to ^0.26.0 (#618)
  • c09f7c2 fix: handle errors from file#createReadStream (#615)
  • d10c120 fix(deps): update dependency @google-cloud/pubsub to ^0.25.0 (#616)
  • 1c3bd03 fix: getSigned(Policy|Url) throws if expiration is invalid Date (#614)
  • f6acc87 chore(deps): update dependency mocha to v6 (#611)
  • c3f3a8e build: use linkinator for docs test (#607)

There are 24 commits in total.

See the full diff

greenkeeper[bot] commented 5 years ago

Update to this version instead πŸš€

Release Notes for v2.5.0

04-04-2019 12:27 PDT

This release brings an option to file#getSignedURL to create a version 4 Signed URL.

file.getSignedUrl({
  version: 'v4', // optional, defaults to v2 (existing version)
  action: 'read',
  expires: FUTURE_DATE,
})

New Features

  • feat: introduce v4 signed url (#637)

Dependencies

  • chore(deps): update dependency @types/node to v11.13.0 (#662)
  • chore(deps): update dependency @types/tmp to v0.1.0
  • chore(deps): upgrade to newest version of @google-cloud/common (#657)
  • chore(deps): update dependency typescript to ~3.4.0
  • chore(deps): update dependency tmp to ^0.1.0 (#641)

Documentation

  • docs: regenerate the samples/README.md (#649)
  • docs: slight difference in how nightly synthtool run generated README (#650)
  • docs: new synthtool generated README (#645)
  • docs(samples): refactor the quickstart to match the new rubric (#647)
  • docs: update README format
  • docs: add requires_billing, retire .cloud-repo-tools.json (#644)
  • docs: add additional api_id field (#640)
  • docs: document destination option (#633)
  • docs: clarify in docs, the meaning of ASIA and coldline (#632)
  • docs: add a .repo-metadata.json (#639)

Internal / Testing Changes

  • test(v2-sign): add multi-valued headers system-test (#646)
  • refactor: replace once with onetime (#660)
  • fix: do not download cached files (#643)
  • chore: publish to npm using wombat (#634)
  • build: use per-repo npm publish token (#630)
Commits

The new version differs by 22 commits.

  • c2ad574 Release @google-cloud/storage v2.5.0 (#665)
  • 521eafd feat: introduce v4 signed url (#637)
  • 00d61bc docs: regenerate the samples/README.md (#649)
  • c0db858 chore(deps): update dependency @types/node to v11.13.0 (#662)
  • 079f246 refactor: replace once with onetime (#660)
  • 3041d15 chore(deps): update dependency @types/tmp to v0.1.0
  • c44f70d chore(deps): upgrade to newest version of @google-cloud/common (#657)
  • 92332dd chore(deps): update dependency typescript to ~3.4.0
  • ba349ae docs: slight difference in how nightly synthtool run generated README (#650)
  • 53e290e docs: new synthtool generated README (#645)
  • 9916cc5 docs(samples): refactor the quickstart to match the new rubric (#647)
  • 51370df test(v2-sign): add multi-valued headers system-test (#646)
  • b48f31a docs: update README format
  • b7e446c docs: add requires_billing, retire .cloud-repo-tools.json (#644)
  • 2248a61 docs: add additional api_id field (#640)

There are 22 commits in total.

See the full diff

greenkeeper[bot] commented 5 years ago

Update to this version instead πŸš€

greenkeeper[bot] commented 5 years ago

Update to this version instead πŸš€

greenkeeper[bot] commented 5 years ago

Update to this version instead πŸš€

greenkeeper[bot] commented 5 years ago

Update to this version instead πŸš€

greenkeeper[bot] commented 5 years ago

Update to this version instead πŸš€

greenkeeper[bot] commented 5 years ago

Update to this version instead πŸš€

greenkeeper[bot] commented 5 years ago

Update to this version instead πŸš€

greenkeeper[bot] commented 5 years ago

Update to this version instead πŸš€

greenkeeper[bot] commented 5 years ago

Update to this version instead πŸš€

greenkeeper[bot] commented 5 years ago

Update to this version instead πŸš€

greenkeeper[bot] commented 5 years ago

Update to this version instead πŸš€

greenkeeper[bot] commented 5 years ago

Update to this version instead πŸš€

greenkeeper[bot] commented 5 years ago

Update to this version instead πŸš€

greenkeeper[bot] commented 5 years ago

Update to this version instead πŸš€

greenkeeper[bot] commented 5 years ago

Update to this version instead πŸš€

greenkeeper[bot] commented 4 years ago

Update to this version instead πŸš€

greenkeeper[bot] commented 4 years ago

Update to this version instead πŸš€

greenkeeper[bot] commented 4 years ago

Update to this version instead πŸš€

greenkeeper[bot] commented 4 years ago

Update to this version instead πŸš€

greenkeeper[bot] commented 4 years ago

Update to this version instead πŸš€

greenkeeper[bot] commented 4 years ago

Update to this version instead πŸš€

greenkeeper[bot] commented 4 years ago

Update to this version instead πŸš€

greenkeeper[bot] commented 4 years ago

Update to this version instead πŸš€

greenkeeper[bot] commented 4 years ago

Update to this version instead πŸš€

greenkeeper[bot] commented 4 years ago

🚨 Reminder! Less than one month left to migrate your repositories over to Snyk before Greenkeeper says goodbye on June 3rd! πŸ’œ πŸššπŸ’¨ πŸ’š

Find out how to migrate to Snyk at greenkeeper.io


Update to this version instead πŸš€

greenkeeper[bot] commented 4 years ago

🚨 Reminder! Less than one month left to migrate your repositories over to Snyk before Greenkeeper says goodbye on June 3rd! πŸ’œ πŸššπŸ’¨ πŸ’š

Find out how to migrate to Snyk at greenkeeper.io


Update to this version instead πŸš€