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

snowflake-sdk

Package Overview
Dependencies
Maintainers
1
Versions
64
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

snowflake-sdk - npm Package Compare versions

Comparing version 1.1.9 to 1.1.10

25

lib/connection/connection_config.js

@@ -64,2 +64,11 @@ /*

// if region, cloud or any subdomain is included in account, split them
// into account and region parameters.
var dotPos = options.account.indexOf('.');
if (dotPos > 0 && dotPos < options.account.length - 1)
{
options.region = options.account.substring(dotPos + 1);
options.account = options.account.substring(0, dotPos);
}
// if no access url is specified, derive it from the account name and the

@@ -76,6 +85,14 @@ // region if one is specified

// the region will look something like 'eu-central-1'; add a dot to the
// beginning so we can insert it after the account name when building
// the access url
region = '.' + options.region;
if (options.region === 'us-west-2')
{
// if region is us-west-2, no subdomain is required.
options.region = ''
}
else
{
// the region will look something like 'eu-central-1'; add a dot to the
// beginning so we can insert it after the account name when building
// the access url
region = '.' + options.region;
}
}

@@ -82,0 +99,0 @@

2

package.json
{
"name": "snowflake-sdk",
"version": "1.1.9",
"version": "1.1.10",
"description": "Node.js driver for Snowflake",

@@ -5,0 +5,0 @@ "dependencies": {

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