Socket
Socket
Sign inDemoInstall

@google-cloud/storage

Package Overview
Dependencies
Maintainers
1
Versions
183
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@google-cloud/storage - npm Package Versions

1
19

2.3.0

Diff

Changelog

Source

v2.3.0

Implementation Changes

  • fix(types): Fixes getSignedUrl Return Type (#496)

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)
google-node-team
published 2.2.0 •

Changelog

Source

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)
google-node-team
published 2.1.0 •

Changelog

Source

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 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)
google-node-team
published 2.0.3 •

Changelog

Source

v2.0.3

Implementation Changes

  • Improve TypeScript types (#381)
  • Make some parameters optional (#380)
google-node-team
published 2.0.2 •

Changelog

Source

v2.0.2

Implementation Changes

  • Improve the types (#377)
google-node-team
published 2.0.1 •

Changelog

Source

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)
google-node-team
published 2.0.0 •

Changelog

Source

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...
});
lukesneeringer
published 1.7.0 •

lukesneeringer
published 1.6.0 •

lukesneeringer
published 1.5.2 •

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc