What changed
- refactor: move common request validation to
read function
- deps:
type-is@^2.0.1
iconv-lite@^0.7.0
raw-body@^3.0.1
debug@^4.4.3
Additionally, I’d like to include #642 to update debug to ^4.4.3 to force users to update from the compromised 4.4.2 version. Edit: #642 already merged
The critical change here is the iconv-lite update to 0.7.0, which addresses important issues.
A new release is needed to deduplicate iconv-lite in our dependency tree (see npmgraph). Currently, two versions of iconv-lite are being pulled in. Since iconv-lite is pre-1.0.0, semver treats ^0.6.3 like ~0.6.3 (it matches only 0.6.x), so it won’t float to 0.7.0. Releasing with iconv-lite@^0.7.0 lets npm dedupe our tree to a single 0.7.x.
What changed
readfunctiontype-is@^2.0.1iconv-lite@^0.7.0raw-body@^3.0.1debug@^4.4.3Additionally, I’d like to include #642 to update debug toEdit: #642 already merged^4.4.3to force users to update from the compromised4.4.2version.The critical change here is the
iconv-liteupdate to 0.7.0, which addresses important issues.A new release is needed to deduplicate
iconv-litein our dependency tree (see npmgraph). Currently, two versions oficonv-liteare being pulled in. Sinceiconv-liteis pre-1.0.0, semver treats^0.6.3like~0.6.3(it matches only0.6.x), so it won’t float to0.7.0. Releasing withiconv-lite@^0.7.0lets npm dedupe our tree to a single0.7.x.