[Snyk] Upgrade: folder-hash, simplex-noise, websocket, ws #31
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.
folder-hash
from 4.0.1 to 4.0.4 | 3 versions ahead of your current version | 2 years ago
on 2023-01-11
simplex-noise
from 3.0.0 to 3.0.1 | 1 version ahead of your current version | 3 years ago
on 2022-01-04
websocket
from 1.0.34 to 1.0.35 | 1 version ahead of your current version | 4 months ago
on 2024-05-12
ws
from 8.2.3 to 8.18.0 | 24 versions ahead of your current version | 2 months ago
on 2024-07-03
Issues fixed by the recommended upgrade:
SNYK-JS-ES5EXT-6095076
SNYK-JS-WS-7266574
SNYK-JS-MINIMATCH-3050818
Release notes
Package name: folder-hash
-
4.0.4 - 2023-01-11
- Fix #176 by removing
-
4.0.3 - 2023-01-10
- Fix #146 and remove graceful-fs because it is no longer needed
- Bump dependencies
-
4.0.2 - 2022-02-15
- Update dependencies
- Minor changes to README
-
4.0.1 - 2021-03-13
from folder-hash GitHub release notesgraceful-fsfromcli.jsFull Changelog: v4.0.3...v4.0.4
What's Changed
Full Changelog: v4.0.2...v4.0.3
What's Changed
Full Changelog: v4.0.1...v4.0.2
Fix sorting of files #90
Full Changelog: v4.0.0...v4.0.1
Package name: simplex-noise
-
3.0.1 - 2022-01-04
- Updated examples to es6 by @ amilajack in #26
- Fix source map warnings by @ jwagner in #44
- @ amilajack made their first contribution in #26
-
3.0.0 - 2021-08-23
- Changed module structure. When using bundlers that import the es module even using require() the import might need to be updated.
- Dependency update
- Setting sideEffects: false in package.json
- Added snapshot tests
- Code converted to typescript, the package can of course still be used from regular JS
- Dropped bower
- Added support for es modules
from simplex-noise GitHub release notesWhat's Changed
New Contributors
Full Changelog: 3.0.0...3.0.1
Package name: websocket
-
1.0.35 - 2024-05-12
-
1.0.34 - 2021-04-14
from websocket GitHub release notesBumping version and updating Readme.
Bumping version and updating Readme.
Package name: ws
-
8.18.0 - 2024-07-03
- Added support for
-
8.17.1 - 2024-06-16
- Fixed a DoS vulnerability (#2231).
const http = require('http');
- Reduce the maximum allowed length of the request headers using the
- Set
-
8.17.0 - 2024-04-28
- The
- The default value of the
-
8.16.0 - 2023-12-26
- Added the
-
8.15.1 - 2023-12-12
- The
-
8.15.0 - 2023-12-09
- Added the
-
8.14.2 - 2023-09-19
- Fixed an issue that allowed errors thrown by failed assertions to be
-
8.14.1 - 2023-09-08
-
8.14.0 - 2023-09-06
-
8.13.0 - 2023-03-10
-
8.12.1 - 2023-02-13
-
8.12.0 - 2023-01-07
-
8.11.0 - 2022-11-06
-
8.10.0 - 2022-10-24
-
8.9.0 - 2022-09-22
-
8.8.1 - 2022-07-15
-
8.8.0 - 2022-06-09
-
8.7.0 - 2022-05-26
-
8.6.0 - 2022-05-01
-
8.5.0 - 2022-02-07
-
8.4.2 - 2022-01-14
-
8.4.1 - 2022-01-13
-
8.4.0 - 2021-12-20
-
8.3.0 - 2021-11-23
-
8.2.3 - 2021-10-02
from ws GitHub release notesFeatures
Blob(#2229).Bug fixes
A request with a number of headers exceeding the
server.maxHeadersCountthreshold 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==';
headers['Sec-WebSocket-Version'] = '13';
const request = http.request({
headers: headers,
host: '127.0.0.1',
port: wss.address().port
});
request.end();
});
The vulnerability was reported by Ryan LaPointe in #2230.
In vulnerable versions of ws, the issue can be mitigated in the following ways:
--max-http-header-size=sizeand/or themaxHeaderSizeoptions sothat no more headers than the
server.maxHeadersCountlimit can be sent.server.maxHeadersCountto0so that no limit is applied.Features
WebSocketconstructor now accepts thecreateConnectionoption (#2219).Other notable changes
allowSynchronousEventsoption has been changed totrue(#2221).This is a breaking change in a patch release. The assumption is that the option
is not widely used.
Features
autoPongoption (01ba54e).Notable changes
allowMultipleEventsPerMicrotaskoption has been renamed toallowSynchronousEvents(4ed7fe5).This is a breaking change in a patch release that could have been avoided with
an alias, but the renamed option was added only 3 days ago, so hopefully it
hasn't already been widely used.
Features
allowMultipleEventsPerMicrotaskoption (93e3552).Bug fixes
swallowed when running tests (7f4e1a7).
Important
Note: You are seeing this because you or someone else with access to this repository has authorized Snyk to open upgrade PRs.
For more information: