Skip to content

Commit 0a8f854

Browse files
committed
Update aws-lite, deps
1 parent 9824fae commit 0a8f854

File tree

3 files changed

+14
-6
lines changed

3 files changed

+14
-6
lines changed

changelog.md

+8
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@
22

33
---
44

5+
## [4.0.3] 2024-02-07
6+
7+
### Changed
8+
9+
- Updated `aws-lite`
10+
11+
---
12+
513
## [4.0.1 - 4.0.2] 2024-02-03
614

715
### Fixed

package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,11 @@
2121
},
2222
"license": "Apache-2.0",
2323
"dependencies": {
24-
"@architect/asap": "~7.0.4",
24+
"@architect/asap": "~7.0.7",
2525
"@architect/parser": "~6.0.3",
26-
"@architect/utils": "~4.0.1",
27-
"@aws-lite/client": "^0.16.1",
28-
"@aws-lite/ssm": "^0.2.2",
26+
"@architect/utils": "~4.0.2",
27+
"@aws-lite/client": "^0.17.1",
28+
"@aws-lite/ssm": "^0.2.3",
2929
"lambda-runtimes": "~2.0.1"
3030
},
3131
"devDependencies": {

src/env/index.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ module.exports = function env (params, inventory, callback) {
1414
let result = []
1515
// eslint-disable-next-line
1616
let awsLite = require('@aws-lite/client')
17-
/* istanbul ignore next */
18-
awsLite({ profile, region }).then(_aws => {
17+
/* istanbul ignore next */ // eslint-disable-next-line
18+
awsLite({ profile, region, plugins: [ import('@aws-lite/ssm') ] }).then(_aws => {
1919
aws = _aws
2020

2121
// Perform the query

0 commit comments

Comments
 (0)