Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion course-04/exercises/c4-demos-master/08-dynamodb-create/package.json
100755 → 100644
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"author": "",
"license": "ISC",
"dependencies": {
"aws-sdk": "^2.1110.0",
"aws-sdk": "^2.1693.0",

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

While this upgrade is a positive step, it's important to be aware that AWS SDK for JavaScript v2 is in maintenance mode and is scheduled for end-of-life. To ensure your project remains secure, performant, and maintainable, you should plan a migration to AWS SDK v3.

AWS SDK v3 is modular, which can lead to smaller Lambda package sizes and better performance. For the functionality in index.js, you would replace this monolithic aws-sdk dependency with scoped packages like @aws-sdk/client-dynamodb and @aws-sdk/lib-dynamodb. This change would also require updating your application code to use the new v3 client and command patterns.

"uuid": "^3.3.2"
}
}