chore(deps): pin dependency versions and add version pinning script #18
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Description
Upgraded to NextJs 15.1.9 because of a severe vulnerability in SSR (Security Advisory).
This also adds a utility script to pin dependency versions and updates the project to use exact version numbers instead of caret ranges. This ensures reproducible builds across different environments by locking dependencies to the exact versions currently installed. It also saves us from vulnerability attacks in NPM in the future.
Type of Change
Changes Made
scripts/pin-versions.jsutility script to sync dependency versions from node_modules to package.json^caret ranges).DS_Storeto .gitignore to exclude macOS system filesTest Environment
Test Steps
npm installto ensure dependencies are installednode scripts/pin-versions.jsto verify the script works correctlynpm run buildcompletes successfully with pinned versionsnpm run lintpasses without errorsChecklist
Code Quality
Testing
Documentation
Build & Lint
npm run buildcompletes successfullynpm run lintpasses without errorsSecurity
Additional Notes
Please pull and test locally before merging.
By submitting this pull request, I confirm that my contribution is made under the terms of the project's license.