Socket
Socket
Sign inDemoInstall

camshaft

Package Overview
Dependencies
132
Maintainers
16
Versions
142
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 0.65.1 to 0.65.2

acceptance.md

5

CHANGELOG.md
# Changelog
## 0.65.2
Release 2020-02-17
- Fix uncatched error during sqlWrappedNode.createTableQuery (#397)
## 0.65.1

@@ -4,0 +9,0 @@ Release 2019-12-02

2

HOWTORELEASE.md

@@ -8,3 +8,3 @@ # How to release camshaft & camshaft reference

5. In case the **public API** has some changes we need to release a new version of `camshaft-reference` too:
1. Go to `reference/`, increase package.json version, and run `tools/generate-reference`.
1. Go to `reference/`, increase package.json version, and run `reference/tools/generate-reference`.
2. Ensure new reference version is generated and package.json is updated.

@@ -11,0 +11,0 @@ 6. Commit `package.json`, `CHANGELOG.md`, and reference files (if relevant).

@@ -111,5 +111,10 @@ 'use strict';

}
var sqlWrappedNode = new NodeSqlAdapter(node);
self.queryRunner.run(sqlWrappedNode.createTableQuery(), QUERY_RUNNER_WRITE_OP, function(err) {
let createTableQuery;
try {
createTableQuery = sqlWrappedNode.createTableQuery();
} catch(err) {
return callback(err);
}
self.queryRunner.run(createTableQuery, QUERY_RUNNER_WRITE_OP, function(err) {
debug('TODO: register table');

@@ -116,0 +121,0 @@ if (err && !DUPLICATED_TABLE_ERROR_CODES[err.code]) {

{
"name": "camshaft",
"version": "0.65.1",
"version": "0.65.2",
"description": "Analysis library to create data views from queries",

@@ -35,6 +35,5 @@ "main": "./lib/analysis.js",

"devDependencies": {
"cartodb-redis": "^0.13.0",
"istanbul": "^0.4.2",
"jshint": "^2.9.1",
"mocha": "^2.4.5",
"mocha": "^6.2.2",
"nyc": "^15.0.0",
"semver": "^5.1.0",

@@ -41,0 +40,0 @@ "yargs": "^3.32.0"

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc