Skip to content

Conversation

@dependabot
Copy link

@dependabot dependabot bot commented on behalf of github Jan 11, 2023

Bumps ms to 2.1.3 and updates ancestor dependencies ms, browserify-middleware, engine.io, engine.io-client, grunt-usemin and karma. These dependencies need to be updated together.

Updates ms from 0.7.0 to 2.1.3

Release notes

Sourced from ms's releases.

2.1.3

Patches

  • Rename zeit to vercel: #151
  • Bump eslint from 4.12.1 to 4.18.2: #122
  • Add prettier as a dev dependency: #135 #153
  • Use GitHub Actions CI: #154

Credits

Huge thanks to @​getsnoopy for helping!

2.1.2

Patches

  • Fixed negative decimals less than -10 don't work: #111
  • Support error in case of Infinity: #116
  • Update regexp for 10-.5 is invalid input: #117
  • Update chat badge: #119

Credits

Huge thanks to @​yuler and @​7ma7X for helping!

2.1.1

Patches

  • Add full support for negative numbers: #104

Credits

Huge thanks to @​thevtm for helping!

2.1.0

Minor Changes

  • Add "week" / "w" support: a2caead13ac7f9931338a1a51ab4e36ddb505e00
  • Fixed match regex to support negative numbers: #96

Patches

  • Applied a few text improvements: 15dc8c5b5a9e8372555400485a749ec04cc02444
  • Fixed spelling of “millisecond” in description: #95
  • Lockfile added: 2425ebdefcdd1c2b726c06f6a65c4f2dea58dee7

Credits

Huge thanks to @​yoavmmn and @​binki for helping!

2.0.0

... (truncated)

Commits
Maintainer changes

This version was pushed to npm by styfle, a new releaser for ms since your current version.


Updates browserify-middleware from 7.1.0 to 8.1.1

Changelog

Sourced from browserify-middleware's changelog.

8.1.1 / 2018-06-01

  • Update ms (limits cache option to 100 chars if string)

8.1.0 / 2018-03-13

  • Update browserify to 16.0.0
  • Swap from uglify-js to uglify-es

8.0.0 / 2017-10-18

  • Update browserify to 14.1.0
  • Pass other options to browserify
Commits
  • d6983b0 Release 8.1.1
  • e0266de fix(package): update ms to version 2.1.1 (#123)
  • bf21d76 Update to node 10 in .travis.yml (#120)
  • c885383 Release 8.1.0
  • dac09b3 upgraded from uglify-js to uglify-es so we can support minifying ES6 for prod...
  • d63b143 fix(package): update prepare-response to version 2.1.1 (#115)
  • 47b0faf Update README.md
  • b6d806c fix(package): update browserify to version 16.0.0 (#114)
  • 3079f56 fix(package): update browserify to version 15.2.0 (#113)
  • 9c41cfd fix(package): update uglify-js to version 3.3.9 (#112)
  • Additional commits viewable in compare view

Updates engine.io from 1.8.5 to 6.3.0

Release notes

Sourced from engine.io's releases.

6.3.0

Bug Fixes

  • fix the ES module wrapper (ed87609)
  • wait for all packets to be sent before closing the WebSocket connection (a65a047)

Features

The trailing slash which was added by default can now be disabled:

import { Server } from "engine.io";
const server = new Server();
server.attach(httpServer, {
addTrailingSlash: false
});

In the example above, the clients can omit the trailing slash and use /engine.io instead of /engine.io/.

Performance Improvements

  • add the wsPreEncodedFrame option (5e34722)

This will be used when broadcasting packets at the Socket.IO level.

See also: socketio/socket.io-adapter@5f7b47d

Links

6.2.1

⚠️ This release contains an important security fix ⚠️

A malicious client could send a specially crafted HTTP request, triggering an uncaught exception and killing the Node.js process:

Error: read ECONNRESET
    at TCP.onStreamRead (internal/stream_base_commons.js:209:20)
Emitted 'error' event on Socket instance at:
</tr></table> 

... (truncated)

Changelog

Sourced from engine.io's changelog.

6.3.0 (2023-01-10)

Bug Fixes

  • fix the ES module wrapper (ed87609)
  • wait for all packets to be sent before closing the WebSocket connection (a65a047)

Features

The trailing slash which was added by default can now be disabled:

import { Server } from "engine.io";
const server = new Server();
server.attach(httpServer, {
addTrailingSlash: false
});

In the example above, the clients can omit the trailing slash and use /engine.io instead of /engine.io/.

Performance Improvements

  • add the wsPreEncodedFrame option (5e34722)

This will be used when broadcasting packets at the Socket.IO level.

See also: socketio/socket.io-adapter@5f7b47d

Dependencies

3.6.1 (2022-11-20)

⚠️ This release contains an important security fix ⚠️

A malicious client could send a specially crafted HTTP request, triggering an uncaught exception and killing the Node.js process:

Error: read ECONNRESET
</tr></table> 

... (truncated)

Commits
  • ae1ea77 chore(release): 6.3.0
  • a65a047 fix: wait for all packets to be sent before closing the WebSocket connection
  • ed87609 fix: fix the ES module wrapper
  • bc98bf1 refactor: bump prettier to version 2.8.1
  • 33dc073 docs: add some TODOs for the next major release
  • d0fd474 feat: add the "addTrailingSlash" option (#655)
  • 5e34722 perf: add the wsPreEncodedFrame option
  • 8a937a4 chore(deps): bump qs and express in /examples/latency (#665)
  • 719e275 chore(deps): bump qs from 6.9.4 to 6.11.0 (#664)
  • 8f8b217 chore(deps): bump engine.io from 4.1.2 to 6.2.1 in /examples/latency (#663)
  • Additional commits viewable in compare view

Updates engine.io-client from 1.8.5 to 6.3.0

Release notes

Sourced from engine.io-client's releases.

6.3.0

Bug Fixes

  • properly parse relative URL with a "@" character (12b7d78)
  • use explicit context for setTimeout function (#699) (047f420)

Features

The trailing slash which was added by default can now be disabled:

import { Socket } from "engine.io-client";
const socket = new Socket("https://example.com", {
addTrailingSlash: false
});

In the example above, the request URL will be https://example.com/engine.io instead of https://example.com/engine.io/.

Links

6.2.3

Bug Fixes

  • properly clear "beforeunload" event listener (99925a4)

Links

6.2.2

Bug Fixes

  • simplify the check for WebSocket availability (f158c8e)

This check was added for the flashsocket transport, which has been deprecated for a while now ([1]). But it fails with latest webpack versions, as the expression "__initialize" in WebSocket gets evaluated to true.

  • use named export for globalThis shim (#688) (32878ea)

Default export of globalThis seems to have a problem in the "browser" field when the library is loaded asynchronously with webpack.

... (truncated)

Changelog

Sourced from engine.io-client's changelog.

6.3.0 (2023-01-10)

Bug Fixes

  • properly parse relative URL with a "@" character (12b7d78)
  • use explicit context for setTimeout function (#699) (047f420)

Features

The trailing slash which was added by default can now be disabled:

import { Socket } from "engine.io-client";
const socket = new Socket("https://example.com", {
addTrailingSlash: false
});

In the example above, the request URL will be https://example.com/engine.io instead of https://example.com/engine.io/.

Dependencies

6.2.3 (2022-10-13)

Bug Fixes

  • properly clear "beforeunload" event listener (99925a4)

Dependencies

6.2.2 (2022-05-02)

Bug Fixes

  • simplify the check for WebSocket availability (f158c8e)

... (truncated)

Commits
  • e2b39b6 chore(release): 6.3.0
  • 047f420 fix: use explicit context for setTimeout function (#699)
  • 12b7d78 fix: properly parse relative URL with a "@" character
  • ed6d016 chore: add security policy
  • 1eaeeec refactor: remove unused option
  • ec5a596 refactor: improve typings
  • 2ddcb82 chore: bump caniuse-lite version
  • 528a61f refactor: bump prettier to version 2.8.1
  • 721837c ci: update the versions of actions/checkout and actions/setup-node
  • 6565c8e ci: temporarily disable browser tests
  • Additional commits viewable in compare view

Updates grunt-usemin from 2.6.2 to 3.1.1

Release notes

Sourced from grunt-usemin's releases.

3.1.1

Fixing breaking change: you can use both uglify or uglifyjs in usemin task.

3.1.0

SVG support: yeoman/grunt-usemin@6119f90

Changes: yeoman/grunt-usemin@v3.0.0...v3.1.0

3.0.0

Commits
Maintainer changes

This version was pushed to npm by arthurvr, a new releaser for grunt-usemin since your current version.


Updates karma from 1.7.1 to 6.4.1

Release notes

Sourced from karma's releases.

v6.4.1

6.4.1 (2022-09-19)

Bug Fixes

v6.4.0

6.4.0 (2022-06-14)

Features

  • support SRI verification of link tags (dc51a2e)
  • support SRI verification of script tags (6a54b1c)

v6.3.20

6.3.20 (2022-05-13)

Bug Fixes

  • prefer IPv4 addresses when resolving domains (e17698f), closes #3730

v6.3.19

6.3.19 (2022-04-19)

Bug Fixes

  • client: error out when opening a new tab fails (099b85e)

v6.3.18

6.3.18 (2022-04-13)

Bug Fixes

  • deps: upgrade socket.io to v4.4.1 (52a30bb)

v6.3.17

6.3.17 (2022-02-28)

Bug Fixes

  • deps: update colors to maintained version (#3763) (fca1884)

v6.3.16

... (truncated)

Changelog

Sourced from karma's changelog.

6.4.1 (2022-09-19)

Bug Fixes

6.4.0 (2022-06-14)

Features

  • support SRI verification of link tags (dc51a2e)
  • support SRI verification of script tags (6a54b1c)

6.3.20 (2022-05-13)

Bug Fixes

  • prefer IPv4 addresses when resolving domains (e17698f), closes #3730

6.3.19 (2022-04-19)

Bug Fixes

  • client: error out when opening a new tab fails (099b85e)

6.3.18 (2022-04-13)

Bug Fixes

  • deps: upgrade socket.io to v4.4.1 (52a30bb)

6.3.17 (2022-02-28)

Bug Fixes

  • deps: update colors to maintained version (#3763) (fca1884)

6.3.16 (2022-02-10)

Bug Fixes

  • security: mitigate the "Open Redirect Vulnerability" (ff7edbb)

... (truncated)

Commits
  • 0013121 chore(release): 6.4.1 [skip ci]
  • 63d86be fix: pass integrity value
  • 84f7cc3 chore(release): 6.4.0 [skip ci]
  • f2d0663 docs: add integrity parameter
  • dc51a2e feat: support SRI verification of link tags
  • 6a54b1c feat: support SRI verification of script tags
  • 5e71cf5 chore(release): 6.3.20 [skip ci]
  • e17698f fix: prefer IPv4 addresses when resolving domains
  • 60f4f79 build: add Node 16 and 18 to the CI matrix
  • 6ff5aaf chore(release): 6.3.19 [skip ci]
  • Additional commits viewable in compare view

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
  • @dependabot use these labels will set the current labels as the default for future PRs for this repo and language
  • @dependabot use these reviewers will set the current reviewers as the default for future PRs for this repo and language
  • @dependabot use these assignees will set the current assignees as the default for future PRs for this repo and language
  • @dependabot use this milestone will set the current milestone as the default for future PRs for this repo and language

You can disable automated security fix PRs for this repo from the Security Alerts page.

…emin and karma

Bumps [ms](https://github.com/vercel/ms) to 2.1.3 and updates ancestor dependencies [ms](https://github.com/vercel/ms), [browserify-middleware](https://github.com/ForbesLindesay/browserify-middleware), [engine.io](https://github.com/socketio/engine.io), [engine.io-client](https://github.com/socketio/engine.io-client), [grunt-usemin](https://github.com/yeoman/grunt-usemin) and [karma](https://github.com/karma-runner/karma). These dependencies need to be updated together.


Updates `ms` from 0.7.0 to 2.1.3
- [Release notes](https://github.com/vercel/ms/releases)
- [Commits](vercel/ms@0.7.0...2.1.3)

Updates `browserify-middleware` from 7.1.0 to 8.1.1
- [Release notes](https://github.com/ForbesLindesay/browserify-middleware/releases)
- [Changelog](https://github.com/ForbesLindesay/browserify-middleware/blob/master/History.md)
- [Commits](ForbesLindesay/browserify-middleware@7.1.0...8.1.1)

Updates `engine.io` from 1.8.5 to 6.3.0
- [Release notes](https://github.com/socketio/engine.io/releases)
- [Changelog](https://github.com/socketio/engine.io/blob/main/CHANGELOG.md)
- [Commits](socketio/engine.io@1.8.5...6.3.0)

Updates `engine.io-client` from 1.8.5 to 6.3.0
- [Release notes](https://github.com/socketio/engine.io-client/releases)
- [Changelog](https://github.com/socketio/engine.io-client/blob/main/CHANGELOG.md)
- [Commits](socketio/engine.io-client@1.8.5...6.3.0)

Updates `grunt-usemin` from 2.6.2 to 3.1.1
- [Release notes](https://github.com/yeoman/grunt-usemin/releases)
- [Commits](yeoman/grunt-usemin@v2.6.2...3.1.1)

Updates `karma` from 1.7.1 to 6.4.1
- [Release notes](https://github.com/karma-runner/karma/releases)
- [Changelog](https://github.com/karma-runner/karma/blob/master/CHANGELOG.md)
- [Commits](karma-runner/karma@1.7.1...v6.4.1)

---
updated-dependencies:
- dependency-name: ms
  dependency-type: indirect
- dependency-name: browserify-middleware
  dependency-type: direct:production
- dependency-name: engine.io
  dependency-type: direct:production
- dependency-name: engine.io-client
  dependency-type: direct:production
- dependency-name: grunt-usemin
  dependency-type: direct:development
- dependency-name: karma
  dependency-type: direct:development
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Jan 11, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant