Skip to content

Commit

Permalink
Merge pull request #1 from Science37/ssl-object-support
Browse files Browse the repository at this point in the history
SSL Object support
  • Loading branch information
amcrafts authored Aug 22, 2024
2 parents aff3357 + 857df26 commit dbd45e7
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions changelog/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# @goodware/mysql Release History

## 5.1.2 2024-08-21

SSL Object support.

## 5.1.1 2023-05-16

Update documentation
Expand Down
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ connection`),
is: true,
then: Joi.string().required(),
}).description('Used when useIAM is true. The AWS region name.'),
ssl: Joi.string().description(`Typically 'Amazon RDS'`),
ssl: Joi.alternatives(Joi.string(), Joi.object()).description(`Typically 'Amazon RDS'`),
useIAM: Joi.boolean().description('true to use AWS RDS IAM passwordless security'),
user: Joi.string().default('root').allow('').description('The database user name'),
usePool: Joi.boolean().description('true enables connection pooling'),
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@goodware/mysql",
"version": "5.1.1",
"version": "5.1.2",
"description": "A mysql2-based connection helper",
"author": "[email protected]",
"engines": {
Expand Down

0 comments on commit dbd45e7

Please sign in to comment.