Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update dependency @google-cloud/storage to v2.3.3 #959

Merged
merged 2 commits into from
Dec 15, 2018

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Nov 29, 2018

This PR contains the following updates:

Package Type Update Change References
@​google-cloud/storage devDependencies major 1.7.0 -> 2.3.3 source
@​google-cloud/storage dependencies patch 2.3.1 -> 2.3.3 source

Release Notes

googleapis/nodejs-storage

v2.3.3

Compare Source

12-06-2018 17:09 PST

Dependencies
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)

v2.3.1

Compare Source

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

v2.3.0

Compare Source

Implementation Changes

v2.2.0

Compare Source

Bug Fixes
  • fix: re-enable typescript types (#​484)
Dependencies
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)

v2.1.0

Compare Source

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
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 approprate 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)

v2.0.3

Compare Source

Implementation Changes
  • Improve TypeScript types (#​381)
  • Make some parameters optional (#​380)

v2.0.2

Compare Source

Implementation Changes

v2.0.1

Compare Source

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
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)

v2.0.0

Compare Source

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 no longer accepts URLs

To better support a variety of HTTP clients, the remote fetching functionality of bucket.upload 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)

Renovate configuration

📅 Schedule: At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

♻️ Rebasing: Whenever PR is stale, or if you modify the PR title to begin with "rebase!".

🔕 Ignore: Close this PR and you won't be reminded about these updates again.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Renovate Bot. View repository job log here.

@googlebot googlebot added the cla: yes This human has signed the Contributor License Agreement. label Nov 29, 2018
@renovate renovate bot force-pushed the renovate/google-cloud-storage-2.x branch 9 times, most recently from 092628c to 55700a4 Compare November 30, 2018 15:36
@fhinkel fhinkel mentioned this pull request Nov 30, 2018
@renovate renovate bot force-pushed the renovate/google-cloud-storage-2.x branch 9 times, most recently from f3f953d to 3be8905 Compare December 7, 2018 23:55
@renovate renovate bot force-pushed the renovate/google-cloud-storage-2.x branch 5 times, most recently from 43eac83 to 23c754d Compare December 10, 2018 23:13
@renovate renovate bot changed the title Update dependency @google-cloud/storage to v2 fix(deps): update dependency @google-cloud/storage to v2 Dec 11, 2018
@renovate renovate bot force-pushed the renovate/google-cloud-storage-2.x branch 4 times, most recently from 2f31bbc to 7689f42 Compare December 14, 2018 16:01
@fhinkel fhinkel added the kokoro:run Add this label to force Kokoro to re-run the tests. label Dec 14, 2018
@kokoro-team kokoro-team removed the kokoro:run Add this label to force Kokoro to re-run the tests. label Dec 14, 2018
@renovate renovate bot force-pushed the renovate/google-cloud-storage-2.x branch 6 times, most recently from fa324bf to a8752ba Compare December 15, 2018 00:18
@renovate renovate bot force-pushed the renovate/google-cloud-storage-2.x branch from a8752ba to 298ab42 Compare December 15, 2018 01:05
@googlebot
Copy link

So there's good news and bad news.

👍 The good news is that everyone that needs to sign a CLA (the pull request submitter and all commit authors) have done so. Everything is all good there.

😕 The bad news is that it appears that one or more commits were authored or co-authored by someone other than the pull request submitter. We need to confirm that all authors are ok with their commits being contributed to this project. Please have them confirm that here in the pull request.

Note to project maintainer: This is a terminal state, meaning the cla/google commit status will not change from this state. It's up to you to confirm consent of all the commit author(s), set the cla label to yes (if enabled on your project), and then merge this pull request when appropriate.

@googlebot googlebot added cla: no This human has *not* signed the Contributor License Agreement. and removed cla: yes This human has signed the Contributor License Agreement. labels Dec 15, 2018
@fhinkel fhinkel added the kokoro:run Add this label to force Kokoro to re-run the tests. label Dec 15, 2018
@kokoro-team kokoro-team removed the kokoro:run Add this label to force Kokoro to re-run the tests. label Dec 15, 2018
@fhinkel fhinkel added cla: yes This human has signed the Contributor License Agreement. kokoro:run Add this label to force Kokoro to re-run the tests. and removed cla: no This human has *not* signed the Contributor License Agreement. labels Dec 15, 2018
@kokoro-team kokoro-team removed the kokoro:run Add this label to force Kokoro to re-run the tests. label Dec 15, 2018
@googlebot
Copy link

A Googler has manually verified that the CLAs look good.

(Googler, please make sure the reason for overriding the CLA status is clearly documented in these comments.)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
cla: yes This human has signed the Contributor License Agreement.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants