-
Notifications
You must be signed in to change notification settings - Fork 407
fix(appsec): bump @datadog/wasm-js-rewriter to 5.0.2 to resolve js-yaml vulnerability (GHSA-5p4m-2wfm-xmqj) #9768
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -295,12 +295,12 @@ | |
| pprof-format "^2.2.1" | ||
| source-map "^0.8.0" | ||
|
|
||
| "@datadog/wasm-js-rewriter@5.0.1": | ||
| version "5.0.1" | ||
| resolved "https://registry.yarnpkg.com/@datadog/wasm-js-rewriter/-/wasm-js-rewriter-5.0.1.tgz#f227d2e3eb0f83b8a37f190a9ff8fdbde5955782" | ||
| integrity sha512-EzbV3Lrdt3udQEsbDOVC5gB1y7yxfpBbrSIk4jaEsGjyj0Dbv2HGj7tZjs+qXzIzNonHc8h5El2bYZOGfC2wwg== | ||
| "@datadog/wasm-js-rewriter@5.0.2": | ||
| version "5.0.2" | ||
| resolved "https://registry.yarnpkg.com/@datadog/wasm-js-rewriter/-/wasm-js-rewriter-5.0.2.tgz#f7cb491d02a0ce54429ca732f3dba5436b5e9271" | ||
| integrity sha512-ffv9TqdtuE8XnZgaGnmMIU1A+t+eaHIEbdVpV5elijq1dKK03OqFb+Xo4ojTbgCwxIYDA1zmA8TnZJBjtzuVuw== | ||
| dependencies: | ||
| js-yaml "^4.1.0" | ||
| js-yaml "^4.1.1" | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Fresh evidence after the added resolution: this new Useful? React with 👍 / 👎. |
||
| lru-cache "^7.14.0" | ||
| module-details-from-path "^1.0.3" | ||
| node-gyp-build "^4.5.0" | ||
|
|
@@ -2854,10 +2854,10 @@ js-yaml@^3.13.1: | |
| argparse "^1.0.7" | ||
| esprima "^4.0.0" | ||
|
|
||
| js-yaml@^4.1.0, js-yaml@^4.1.1: | ||
| version "4.1.1" | ||
| resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-4.1.1.tgz#854c292467705b699476e1a2decc0c8a3458806b" | ||
| integrity sha512-qQKT4zQxXl8lLwBtHMWwaTcGfFOZviOJet3Oy/xmGk2gZH677CJM9EvtfdSkgWcATZhj/55JZ0rmy3myCT5lsA== | ||
| js-yaml@^4.1.0, js-yaml@^4.1.1, js-yaml@^4.3.1: | ||
| version "4.3.1" | ||
| resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-4.3.1.tgz#01216c001d67f48e2cd560d708c7af21090a3848" | ||
| integrity sha512-CY6crGq313MX8GkwvB7tzgp99vjQxY1++5y10/BKN/GUfHqWaOGQMNZkBvqSzsZKWk/ijwHlWzzkLulsGHhjWQ== | ||
| dependencies: | ||
| argparse "^2.0.1" | ||
|
|
||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This still depends on
js-yamlthrough^4.1.1, and the checked-in lockfile continues to resolve the combinedjs-yaml@^4.1.0, js-yaml@^4.1.1entry to4.1.1. GHSA-5p4m-2wfm-xmqj marks>=4.0.0 <4.3.1as affected and4.3.1as patched, so repo installs and lockfile-based consumers remain vulnerable even after this bump; please use a rewriter release/override that requiresjs-yaml >=4.3.1 <5and update the lockfile accordingly.Useful? React with 👍 / 👎.