Skip to content

Releases: googleapis/nodejs-storage

v2.0.2

11 Sep 14:37
Compare
Choose a tag to compare

Implementation Changes

  • Improve the types (#377)

v2.0.1

10 Sep 23:57
0a7a226
Compare
Choose a tag to compare

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)

v2.0.0

04 Sep 05:11
Compare
Choose a tag to compare

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)

v1.7.0

22 May 16:55
0ab5719
Compare
Choose a tag to compare

Features

  • (#165): Check if $HOME is writable before starting a resumable upload.
  • (#174): Introduce a directory option to getFiles().
  • (#179): Introduce KMS.

Fixes

  • (#160): Return apiResponse argument from bucket.upload(). (Thanks for pointing this out, @scragg0x!)
  • (#168): Don't require a content type for bucket.combine(). (Thanks, @zbjornson!)
  • (#169): Properly encode signed URLs. (Thanks again to @zbjornson!)

v1.6.0

13 Feb 21:38
Compare
Choose a tag to compare

Features

  • (#125): Allow setting additional request parameters during a Bucket#upload() from a remote file. (Thanks, @ImmaculatePine!)
  • (#129): Support the resumable action for File#getSignedUrl().
  • (#133): Add auto options to automatically determine contentType and gzip settings for File#createWriteStream(). (Thanks, @calvinmetcalf!)

Fixes

  • (#122) Normalize arguments when using new.
  • (#128): Remove leading gs:// parts of a File name provided to a File object.
  • Update dependencies to mitigate possible security issues.

@google-cloud/storage v1.5.2

02 Jan 17:20
Compare
Choose a tag to compare

Fixes

  • (#110): Wait for incoming File download stream to end completely before confirming data integrity.

@google-cloud/storage v1.5.1

05 Dec 16:10
4da861f
Compare
Choose a tag to compare

Fixes

  • (#99): Generated signed policies correctly.

@google-cloud/storage v1.5.0

28 Nov 01:16
ec74a68
Compare
Choose a tag to compare

Features

  • (#63): Upload a file to your bucket from a URL. Idea and implementation by @Kiricon, thank you! 🙇
  • (#81): Update the customer-supplied encryption key for a file with file#rotateEncryptionKey().
  • (#82): Allow unauthenticated File downloads.
  • (#91): Signed policies and URLs no longer require a JSON key file.

Fixes

  • (#57): Correct "Requester Pays" and "User Project" terminology in our documentation.
  • (#61): Correct typo in documentation. (Thanks, @Crazometer!)
  • (#78): Correct userProject type definition. (Nice catch, @tejohnso!)
  • (#79): Explain extensionHeaders better for file#getSignedUrl(). (Thanks for pointing this out, @teemeh!)

@google-cloud/storage v1.4.0

10 Oct 20:05
Compare
Choose a tag to compare

Features

  • (#38): Add support for PubSub notifications.

Refer to the nodejs-storage API reference documentation for details.

@google-cloud/storage v1.3.1

28 Sep 17:59
Compare
Choose a tag to compare

Refer to the nodejs-storage API reference documentation for details.