Skip to content

Commit b9fd03c

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 3f9f286 commit b9fd03c

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

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.1",
22-
"jsonwebtoken": "9.0.2",
23-
"node-forge": "1.3.1",
24-
"verror": "1.10.1"
21+
"debug": "^4.4.1",
22+
"jsonwebtoken": "^9.0.2",
23+
"node-forge": "^1.3.1",
24+
"verror": "^1.10.1"
2525
},
2626
"devDependencies": {
2727
"@semantic-release/changelog": "^5.0.1",

0 commit comments

Comments
 (0)