@goodware/mysql
Advanced tools
Comparing version 5.0.3 to 5.0.4
# @goodware/mysql Release History | ||
## 5.0.4 2022-05-14 | ||
Roll back previous change. Do not allow ssl to be an empty string. mysql2 doesn't allow it. | ||
## 5.0.3 2022-05-10 | ||
@@ -4,0 +8,0 @@ |
@@ -74,3 +74,3 @@ /* eslint-disable no-param-reassign */ | ||
}).description('Used when useIAM is true. The AWS region name.'), | ||
ssl: Joi.string().allow('').description(`Typically 'Amazon RDS'`), | ||
ssl: Joi.string().description(`Typically 'Amazon RDS'`), | ||
useIAM: Joi.boolean().description('true to use AWS RDS IAM passwordless security'), | ||
@@ -346,3 +346,3 @@ user: Joi.string().default('root').allow('').description('The database user name'), | ||
const { useIAM } = this; | ||
error.options = { | ||
error.options = JSON.stringify({ | ||
host, | ||
@@ -354,3 +354,3 @@ user, | ||
useIAM, | ||
}; | ||
}); | ||
} | ||
@@ -357,0 +357,0 @@ |
{ | ||
"name": "@goodware/mysql", | ||
"version": "5.0.3", | ||
"version": "5.0.4", | ||
"description": "A mysql2-based connection helper", | ||
@@ -17,3 +17,3 @@ "author": "devguy@devguy.com", | ||
"pub": "npm publish --access=public", | ||
"test": "node tests/test.js", | ||
"test": "node tests", | ||
"docs": "node_modules/.bin/jsdoc --configure .jsdoc.json --verbose -R README.md *.js" | ||
@@ -20,0 +20,0 @@ }, |
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
24464