[Snyk] Upgrade: , , acorn, astring, data-uri-to-buffer, dotenv, glob-stream, preact, reflect-metadata, ws #2
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Snyk has created this PR to upgrade multiple dependencies.
👯 The following dependencies are linked and will therefore be updated together.ℹ️ Keep your dependencies up-to-date. This makes it easier to fix existing vulnerabilities and to more quickly identify and fix newly disclosed vulnerabilities when they affect your project.
@jridgewell/trace-mapping
from 0.3.22 to 0.3.25 | 3 versions ahead of your current version | 6 months ago
on 2024-03-02
@jridgewell/gen-mapping
from 0.3.3 to 0.3.5 | 2 versions ahead of your current version | 6 months ago
on 2024-03-01
acorn
from 8.11.3 to 8.12.1 | 2 versions ahead of your current version | 2 months ago
on 2024-07-03
astring
from 1.8.6 to 1.9.0 | 1 version ahead of your current version | 21 days ago
on 2024-08-25
data-uri-to-buffer
from 6.0.1 to 6.0.2 | 1 version ahead of your current version | 7 months ago
on 2024-02-12
dotenv
from 16.4.1 to 16.4.5 | 4 versions ahead of your current version | 7 months ago
on 2024-02-20
glob-stream
from 8.0.0 to 8.0.2 | 2 versions ahead of your current version | 5 months ago
on 2024-04-08
preact
from 10.19.3 to 10.23.2 | 13 versions ahead of your current version | a month ago
on 2024-08-12
reflect-metadata
from 0.2.1 to 0.2.2 | 1 version ahead of your current version | 6 months ago
on 2024-03-29
ws
from 8.17.1 to 8.18.0 | 1 version ahead of your current version | 2 months ago
on 2024-07-03
Release notes
Package name: @jridgewell/trace-mapping
What's Changed
TraceMap
instances inSectionedSourceMap
'ssections
field: 8d8fc35Full Changelog: v0.3.24...v0.3.25
What's Changed
ignoreList
(andx_google_ignoreList
) support: 1027ce6Full Changelog: v0.3.23...v0.3.24
Full Changelog: v0.3.22...v0.3.23
What's Changed
Full Changelog: v0.3.21...v0.3.22
Package name: @jridgewell/gen-mapping
What's Changed
ignoreList
support: 9add0c2Full Changelog: v0.3.4...v0.3.5
Full Changelog: v0.3.3...v0.3.4
Full Changelog: v0.3.2...v0.3.3
Package name: acorn
Bug fixes
Fix a regression that caused Acorn to no longer run on Node versions <8.10.
New features
Support ES2025 duplicate capture group names in regular expressions.
Bug fixes
Include
VariableDeclarator
in theAnyNode
type so that walker objects can refer to it without getting a type error.Properly raise a parse error for invalid
for
/of
statements usingasync
as binding name.Properly recognize "use strict" when preceded by a string with an escaped newline.
Mark the
Parser
constructor as protected, not private, so plugins can extend it without type errors.Fix a bug where some invalid
delete
expressions were let through when the operand was parenthesized andpreserveParens
was enabled.Properly normalize line endings in raw strings of invalid template tokens.
Properly track line numbers for escaped newlines in strings.
Fix a bug that broke line number accounting after a template literal with invalid escape sequences.
Bug fixes
Add
Function
andClass
to theAggregateType
type, so that they can be used in walkers without raising a type error.Make sure
onToken
get animport
keyword token when parsingimport.meta
.Fix a bug where
.loc.start
could be undefined fornew.target
meta
nodes.Package name: astring
No content.
No content.
Package name: data-uri-to-buffer
Package name: dotenv
16.4.5
16.4.4
16.4.3
16.4.2
16.4.1
Package name: glob-stream
Bug Fixes
Bug Fixes
⚠ BREAKING CHANGES
Features
Bug Fixes
Miscellaneous Chores
Package name: preact
Fixes
Types
Maintenance
Fixes
Features
This adds support for returning a function in functional refs, example
Fixes
Types
Maintenance
Fixes
Types
Ref
type. (#4403, thanks @ maxbrieiev)preact-render-to-string
(#4395, thanks @ Austaras)Maintenance
globalThis
overwindow
if available (#4401, thanks @ marvinhagemeister)Performance
Features
Types
Maintenance
Fixes
<button>
and<a>
(#4376, thanks @ rschristian)<tr>
as a child of<table>
(#4375, thanks @ rschristian)compat/client
for IE11 support (#4372, thanks @ rschristian)Features
Fixes
ReactCurrentDispatcher
(#4342, thanks @ rschristian)Types
Maintenance
Fixes
oldDom
is present in the DOM (#4318, thanks @ JoviDeCroock)Types
Maintenance
Fixes
Features
Fixes
Package name: reflect-metadata
What's Changed
Full Changelog: v0.2.0...v0.2.1
Package name: ws
Features
Blob
(#2229).Bug fixes
A request with a number of headers exceeding the
server.maxHeadersCount
threshold could be used to crash a ws server.
const WebSocket = require('ws');
const wss = new WebSocket.Server({ port: 0 }, function () {
const chars = "!#$%&'*+-.0123456789abcdefghijklmnopqrstuvwxyz^_`|~".split('');
const headers = {};
let count = 0;
for (let i = 0; i < chars.length; i++) {
if (count === 2000) break;
}
headers.Connection = 'Upgrade';
headers.Upgrade = 'websocket';
headers['Sec-WebSocket-Key'] = 'dGhlIHNhbXBsZSBub25jZQ=='<span class="p...