Skip to content

Commit f6416b6

Browse files
committed
Loosen dependency requirements
Using exact dependency versions can be harmful, as it blocks downstream bug fixes, security patches, and new features. It can also increase the risk of duplicate packages in node_modules, leading to subtle, hard-to-debug issues. This PR changes all user-facing dependencies from x.y.z to ^x.y.z, allowing end users to automatically benefit from compatible updates as they are released.
1 parent 4eb180c commit f6416b6

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

package-lock.json

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,10 @@
1818
"url": "https://github.com/parse-community/node-apn.git"
1919
},
2020
"dependencies": {
21-
"debug": "4.4.3",
22-
"jsonwebtoken": "9.0.2",
23-
"node-forge": "1.3.1",
24-
"verror": "1.10.1"
21+
"debug": "^4.4.3",
22+
"jsonwebtoken": "^9.0.2",
23+
"node-forge": "^1.3.2",
24+
"verror": "^1.10.1"
2525
},
2626
"devDependencies": {
2727
"@semantic-release/changelog": "^5.0.1",

0 commit comments

Comments
 (0)