Skip to content

Commit 6a29b31

Browse files
authored
Increase the required version of send from 0.0.18 to 0.0.19 (#1693)
The version of send 0.0.18 has a published vulnerability that is fixed in 0.0.19, see GHSA-m6fv-jmcg-4jfg. However, the version specifier of "^0.0.18" in package.json does not allow projects to use 0.0.19. This changes the specifier to "^0.0.19" which allows (and requires) Observable Framework projects to use 0.0.19 to avoid the vulnerability. Note that the vulnerability GHSA-m6fv-jmcg-4jfg has been public for over 2 weeks at this point, and so this isn't disclosing anything new.
1 parent ec65262 commit 6a29b31

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@
8888
"rollup": "^4.6.0",
8989
"rollup-plugin-esbuild": "^6.1.0",
9090
"semver": "^7.5.4",
91-
"send": "^0.18.0",
91+
"send": "^0.19.0",
9292
"tar": "^6.2.0",
9393
"tar-stream": "^3.1.6",
9494
"tsx": "^4.7.1",

yarn.lock

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3481,10 +3481,10 @@ semver@^7.3.8, semver@^7.5.3, semver@^7.5.4, semver@^7.6.0, semver@^7.6.3:
34813481
resolved "https://registry.yarnpkg.com/semver/-/semver-7.6.3.tgz#980f7b5550bc175fb4dc09403085627f9eb33143"
34823482
integrity sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==
34833483

3484-
send@^0.18.0:
3485-
version "0.18.0"
3486-
resolved "https://registry.yarnpkg.com/send/-/send-0.18.0.tgz#670167cc654b05f5aa4a767f9113bb371bc706be"
3487-
integrity sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==
3484+
send@^0.19.0:
3485+
version "0.19.0"
3486+
resolved "https://registry.yarnpkg.com/send/-/send-0.19.0.tgz#bbc5a388c8ea6c048967049dbeac0e4a3f09d7f8"
3487+
integrity sha512-dW41u5VfLXu8SJh5bwRmyYUbAoSB3c9uQh6L8h/KtsFREPWpbX1lrljJo186Jc4nmci/sGUZ9a0a0J2zgfq2hw==
34883488
dependencies:
34893489
debug "2.6.9"
34903490
depd "2.0.0"

0 commit comments

Comments
 (0)