Skip to content

Commit

Permalink
Update deps and changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanblock committed Feb 7, 2024
1 parent 5253229 commit 206484f
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 4 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 @@

---

## [7.0.5] 2024-02-06

### Changed

- Updated `aws-lite`

---

## [7.0.0, 7.0.4] 2024-02-03

### Fixed
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@
"src/*"
],
"dependencies": {
"@aws-lite/client": "~0.16.1",
"@aws-lite/s3": "^0.1.17"
"@aws-lite/client": "~0.17.1",
"@aws-lite/s3": "^0.1.18"
},
"devDependencies": {
"@architect/eslint-config": "~2.1.2",
Expand Down
4 changes: 2 additions & 2 deletions src/lib/get-s3.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ module.exports = async function getS3 () {
// eslint-disable-next-line
let awsLite = require('@aws-lite/client')
let { s3 } = await awsLite({
autoloadPlugins: false,
region: process.env.AWS_REGION || 'us-west-2',
plugins: [ '@aws-lite/s3' ],
// eslint-disable-next-line
plugins: [ require('@aws-lite/s3') ],
})
_s3 = s3.GetObject
return _s3
Expand Down

0 comments on commit 206484f

Please sign in to comment.