juttle-mysql-adapter
Advanced tools
Comparing version 0.6.0 to 0.6.1
# 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 |
@@ -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": [ |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
21995
125