@google-cloud/storage
Advanced tools
Changelog
v2.3.1
11-14-2018 22:15 PST
Changelog
v2.2.0
Changelog
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.
Changelog
v2.0.2
Changelog
v2.0.1
This fixes types declaration issues with projects using TypeScript.
Changelog
v2.0.0
This release has breaking changes. This release has a few notable breaking changes. Please take care when upgrading!
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:
const storage = require('@google-cloud/storage')();
// or...
const Storage = require('@google-cloud/storage');
const storage = new Storage({
// config...
});
const {Storage} = require('@google-cloud/storage');
const storage = new Storage({
// config...
});