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

juttle-mysql-adapter

Package Overview
Dependencies
Maintainers
2
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

juttle-mysql-adapter - npm Package Compare versions

Comparing version 0.6.0 to 0.6.1

6

CHANGELOG.md
# Change Log
This file documents all notable changes to the juttle-mysql-adapter. The release numbering uses [semantic versioning](http://semver.org).
## 0.6.1
Released 2016-03-24
### Bug Fixes
- Fix a bug handling non-array responses from a raw SQL query.
## 0.6.0

@@ -5,0 +11,0 @@ Released 2016-03-23

3

lib/read.js

@@ -9,3 +9,4 @@ 'use strict';

handleRawResponse(resp) {
return resp[0];
let firstItem = resp[0];
return _.isArray(firstItem) ? firstItem : [ firstItem ];
}

@@ -12,0 +13,0 @@

{
"name": "juttle-mysql-adapter",
"version": "0.6.0",
"version": "0.6.1",
"description": "Juttle adapter for MySQL",

@@ -5,0 +5,0 @@ "keywords": [

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