Skip to content

Commit

Permalink
Update aws-lite, deps
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanblock committed Feb 7, 2024
1 parent 9824fae commit 3405ea5
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 6 deletions.
8 changes: 8 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@

---

## [4.0.3] 2024-02-07

### Changed

- Updated `aws-lite`

---

## [4.0.1 - 4.0.2] 2024-02-03

### Fixed
Expand Down
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,11 @@
},
"license": "Apache-2.0",
"dependencies": {
"@architect/asap": "~7.0.4",
"@architect/asap": "~7.0.7",
"@architect/parser": "~6.0.3",
"@architect/utils": "~4.0.1",
"@aws-lite/client": "^0.16.1",
"@aws-lite/ssm": "^0.2.2",
"@architect/utils": "~4.0.2",
"@aws-lite/client": "^0.17.1",
"@aws-lite/ssm": "^0.2.3",
"lambda-runtimes": "~2.0.1"
},
"devDependencies": {
Expand Down
4 changes: 2 additions & 2 deletions src/env/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ module.exports = function env (params, inventory, callback) {
let result = []
// eslint-disable-next-line
let awsLite = require('@aws-lite/client')
/* istanbul ignore next */
awsLite({ profile, region }).then(_aws => {
/* istanbul ignore next */ // eslint-disable-next-line
awsLite({ profile, region, plugins: [ import('@aws-lite/ssm') ] }).then(_aws => {
aws = _aws

// Perform the query
Expand Down

0 comments on commit 3405ea5

Please sign in to comment.