Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

google-cloud-bucket

Package Overview
Dependencies
Maintainers
1
Versions
68
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

google-cloud-bucket - npm Package Compare versions

Comparing version 0.11.0 to 0.11.1

10

CHANGELOG.md

@@ -5,2 +5,12 @@ # Change Log

<a name="0.11.1"></a>
## [0.11.1](https://github.com/nicolasdao/google-cloud-bucket/compare/v0.11.0...v0.11.1) (2019-02-11)
### Bug Fixes
* Listing files in bucket only return 1000 items ([74e7826](https://github.com/nicolasdao/google-cloud-bucket/commit/74e7826))
<a name="0.11.0"></a>

@@ -7,0 +17,0 @@ # [0.11.0](https://github.com/nicolasdao/google-cloud-bucket/compare/v0.10.0...v0.11.0) (2019-02-08)

2

package.json
{
"name": "google-cloud-bucket",
"version": "0.11.0",
"version": "0.11.1",
"description": "Nodejs package to add objects to a Google Cloud Bucket.",

@@ -5,0 +5,0 @@ "main": "index.js",

@@ -145,3 +145,3 @@ /**

_validateRequiredParams({ bucket, token })
const queryUrl = `${BUCKET_FILE_URL(bucket)}${filepath ? `?maxResults=1000${options.pageToken ? `&pageToken=${options.pageToken}` : ''}&prefix=${filepath.replace(/^\/*/, '').split('/').map(p => encodeURIComponent(p)).join('/')}` : ''}`
const queryUrl = `${BUCKET_FILE_URL(bucket)}${filepath ? `?maxResults=1000${options.pageToken ? `&pageToken=${encodeURIComponent(options.pageToken)}` : ''}&prefix=${filepath.replace(/^\/*/, '').split('/').map(p => encodeURIComponent(p)).join('/')}` : ''}`
return fetch.get({

@@ -148,0 +148,0 @@ uri: queryUrl,

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