-
Notifications
You must be signed in to change notification settings - Fork 0
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
build(deps): bump cookie, socket.io and express #114
Merged
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Bumps [cookie](https://github.com/jshttp/cookie), [socket.io](https://github.com/socketio/socket.io) and [express](https://github.com/expressjs/express). These dependencies needed to be updated together. Updates `cookie` from 0.4.2 to 0.7.2 - [Release notes](https://github.com/jshttp/cookie/releases) - [Commits](jshttp/cookie@v0.4.2...v0.7.2) Updates `socket.io` from 4.7.5 to 4.8.0 - [Release notes](https://github.com/socketio/socket.io/releases) - [Changelog](https://github.com/socketio/socket.io/blob/main/CHANGELOG.md) - [Commits](https://github.com/socketio/socket.io/compare/[email protected]@4.8.0) Updates `express` from 4.21.0 to 4.21.1 - [Release notes](https://github.com/expressjs/express/releases) - [Changelog](https://github.com/expressjs/express/blob/4.21.1/History.md) - [Commits](expressjs/express@4.21.0...4.21.1) --- updated-dependencies: - dependency-name: cookie dependency-type: indirect - dependency-name: socket.io dependency-type: indirect - dependency-name: express dependency-type: indirect ... Signed-off-by: dependabot[bot] <[email protected]>
dependabot
bot
added
the
dependencies
Pull requests that update a dependency file
label
Oct 10, 2024
@dependabot merge
…On Fri, 11 Oct 2024, 06:57 dependabot[bot], ***@***.***> wrote:
This automated pull request fixes a security vulnerability
<https://github.com/davidshen84/davidshen84.github.io/security/dependabot/106>
(low severity).
Learn more about Dependabot security updates
<https://docs.github.com/github/managing-security-vulnerabilities/configuring-dependabot-security-updates>.
------------------------------
Bumps cookie <https://github.com/jshttp/cookie>, socket.io
<https://github.com/socketio/socket.io> and express
<https://github.com/expressjs/express>. These dependencies needed to be
updated together.
Updates cookie from 0.4.2 to 0.7.2
Release notes
*Sourced from cookie's releases
<https://github.com/jshttp/cookie/releases>.*
v0.7.2
*Fixed*
- Fix object assignment of hasOwnProperty (#177
<https://redirect.github.com/jshttp/cookie/issues/177>) bc38ffd
***@***.***
<jshttp/cookie@v0.7.1...v0.7.2>
0.7.1
*Fixed*
- Allow leading dot for domain (#174
<https://redirect.github.com/jshttp/cookie/issues/174>)
- Although not permitted in the spec, some users expect this to
work and user agents ignore the leading dot according to spec
- Add fast path for serialize without options, use obj.hasOwnProperty
when parsing (#172
<https://redirect.github.com/jshttp/cookie/issues/172>)
***@***.***
<jshttp/cookie@v0.7.0...v0.7.1>
0.7.0
- perf: parse cookies ~10% faster (#144
<https://redirect.github.com/jshttp/cookie/issues/144> by @kurtextrem
<https://github.com/kurtextrem> and #170
<https://redirect.github.com/jshttp/cookie/issues/170>)
- fix: narrow the validation of cookies to match RFC6265 (#167
<https://redirect.github.com/jshttp/cookie/issues/167> by @bewinsnw
<https://github.com/bewinsnw>)
- fix: add main to package.json for rspack (#166
<https://redirect.github.com/jshttp/cookie/issues/166> by
@proudparrot2 <https://github.com/proudparrot2>)
***@***.***
<jshttp/cookie@v0.6.0...v0.7.0>
0.6.0
- Add partitioned option
0.5.0
- Add priority option
- Fix expires option to reject invalid dates
- pref: improve default decode speed
- pref: remove slow string split in parse
Commits
- d19eaa1
<jshttp/cookie@d19eaa1>
0.7.2
- bc38ffd
<jshttp/cookie@bc38ffd>
Fix object assignment of hasOwnProperty (#177
<https://redirect.github.com/jshttp/cookie/issues/177>)
- cf4658f
<jshttp/cookie@cf4658f>
0.7.1
- 6a8b8f5
<jshttp/cookie@6a8b8f5>
Allow leading dot for domain (#174
<https://redirect.github.com/jshttp/cookie/issues/174>)
- 58015c0
<jshttp/cookie@58015c0>
Remove more code and perf wins (#172
<https://redirect.github.com/jshttp/cookie/issues/172>)
- ab057d6
<jshttp/cookie@ab057d6>
0.7.0
- 5f02ca8
<jshttp/cookie@5f02ca8>
Migrate history to GitHub releases
- a5d591c
<jshttp/cookie@a5d591c>
Migrate history to GitHub releases
- 51968f9
<jshttp/cookie@51968f9>
Skip isNaN
- 9e7ca51
<jshttp/cookie@9e7ca51>
perf(parse): cache length, return early (#144
<https://redirect.github.com/jshttp/cookie/issues/144>)
- Additional commits viewable in compare view
<jshttp/cookie@v0.4.2...v0.7.2>
Maintainer changes
This version was pushed to npm by blakeembrey
<https://www.npmjs.com/~blakeembrey>, a new releaser for cookie since
your current version.
Updates socket.io from 4.7.5 to 4.8.0
Release notes
*Sourced from socket.io's releases
<https://github.com/socketio/socket.io/releases>.*
***@***.*** Features Custom transport implementations
The transports option now accepts an array of transport implementations:
import { io } from "socket.io-client";import { XHR, WebSocket } from "engine.io-client";const socket = io({transports: [XHR, WebSocket]});
Here is the list of provided implementations:
Transport Description
Fetch HTTP long-polling based on the built-in fetch() method.
NodeXHR HTTP long-polling based on the XMLHttpRequest object provided by
the xmlhttprequest-ssl package.
XHR HTTP long-polling based on the built-in XMLHttpRequest object.
NodeWebSocket WebSocket transport based on the WebSocket object provided
by the ws package.
WebSocket WebSocket transport based on the built-in WebSocket object.
WebTransport WebTransport transport based on the built-in WebTransport
object.
Usage:
Transport browser Node.js Deno Bun
Fetch ✅ ✅ (1) ✅ ✅
NodeXHR ✅ ✅ ✅
XHR ✅
NodeWebSocket ✅ ✅ ✅
WebSocket ✅ ✅ (2) ✅ ✅
WebTransport ✅ ✅
(1) since v18.0.0 <https://nodejs.org/api/globals.html#fetch> (2) since
v21.0.0 <https://nodejs.org/api/globals.html#websocket>
Added in f4d898e
<socketio/engine.io-client@f4d898e>
and b11763b
<socketio/engine.io-client@b11763b>
.
Test each low-level transports
When setting the tryAllTransports option to true, if the first transport
(usually, HTTP long-polling) fails, then the other transports will be
tested too:
import { io } from "socket.io-client";</tr></table>
... (truncated)
Commits
- d0fc720
<socketio/socket.io@d0fc720>
chore(release): ***@***.***
- 4a0555c
<socketio/socket.io@4a0555c>
chore(release): ***@***.***
- 2b60df1
<socketio/socket.io@2b60df1>
chore(release): ***@***.***
- d4cb375
<socketio/socket.io@d4cb375>
ci: ignore tests when publishing to npm
- c251ae7
<socketio/socket.io@c251ae7>
chore(release): ***@***.***
- 8a2f5a3
<socketio/socket.io@8a2f5a3>
fix(eio-client): move 'offline' event listener at the top
- b04fa64
<socketio/socket.io@b04fa64>
fix(sio): allow to join a room in a middleware (uws)
- 7085f0e
<socketio/socket.io@7085f0e>
refactor(sio-client): mangle private attributes
- 4f66708
<socketio/socket.io@4f66708>
chore(sio-client): use babel loose mode when transpiling classes
- 1a95db2
<socketio/socket.io@1a95db2>
chore(sio-client): add a script to compute the bundle size
- Additional commits viewable in compare view
***@***@***.***>
Updates express from 4.21.0 to 4.21.1
Release notes
*Sourced from express's releases
<https://github.com/expressjs/express/releases>.*
4.21.1 What's Changed
- Backport a fix for CVE-2024-47764
<https://github.com/advisories/GHSA-pxg6-pf52-xh8x> to the 4.x branch
by @joshbuker <https://github.com/joshbuker> in expressjs/express#6029
<https://redirect.github.com/expressjs/express/pull/6029>
- Release: 4.21.1 by @UlisesGascon <https://github.com/UlisesGascon>
in expressjs/express#6031
<https://redirect.github.com/expressjs/express/pull/6031>
*Full Changelog*: ***@***.***
<expressjs/express@4.21.0...4.21.1>
Changelog
*Sourced from express's changelog
<https://github.com/expressjs/express/blob/4.21.1/History.md>.*
4.21.1 / 2024-10-08
- Backported a fix for CVE-2024-47764
<https://nvd.nist.gov/vuln/detail/CVE-2024-47764>
Commits
- 8e229f9
<expressjs/express@8e229f9>
4.21.1
- a024c8a
<expressjs/express@a024c8a>
fix(deps): ***@***.***
- See full diff in compare view
<expressjs/express@4.21.0...4.21.1>
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 show <dependency name> ignore conditions will show all
of the ignore conditions of the specified dependency
- @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)
You can disable automated security fix PRs for this repo from the Security
Alerts page
<https://github.com/davidshen84/davidshen84.github.io/network/alerts>.
------------------------------
You can view, comment on, or merge this pull request online at:
#114
Commit Summary
- f815276
<f815276>
build(deps): bump cookie, socket.io and express
File Changes
(1 file
<https://github.com/davidshen84/davidshen84.github.io/pull/114/files>)
- *M* package-lock.json
<https://github.com/davidshen84/davidshen84.github.io/pull/114/files#diff-053150b640a7ce75eff69d1a22cae7f0f94ad64ce9a855db544dda0929316519>
(84)
Patch Links:
- https://github.com/davidshen84/davidshen84.github.io/pull/114.patch
- https://github.com/davidshen84/davidshen84.github.io/pull/114.diff
—
Reply to this email directly, view it on GitHub
<#114>, or
unsubscribe
<https://github.com/notifications/unsubscribe-auth/AAAQBTPBNMGYFLTHMTDUNBLZ23LZHAVCNFSM6AAAAABPXQPQGKVHI2DSMVQWIX3LMV43ASLTON2WKOZSGU3TSNZRHE3DONQ>
.
You are receiving this because you are subscribed to this thread.Message
ID: ***@***.***>
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Bumps cookie, socket.io and express. These dependencies needed to be updated together.
Updates
cookie
from 0.4.2 to 0.7.2Release notes
Sourced from cookie's releases.
Commits
d19eaa1
0.7.2bc38ffd
Fix object assignment ofhasOwnProperty
(#177)cf4658f
0.7.16a8b8f5
Allow leading dot for domain (#174)58015c0
Remove more code and perf wins (#172)ab057d6
0.7.05f02ca8
Migrate history to GitHub releasesa5d591c
Migrate history to GitHub releases51968f9
Skip isNaN9e7ca51
perf(parse): cache length, return early (#144)Maintainer changes
This version was pushed to npm by blakeembrey, a new releaser for cookie since your current version.
Updates
socket.io
from 4.7.5 to 4.8.0Release notes
Sourced from socket.io's releases.
... (truncated)
Commits
d0fc720
chore(release): [email protected]4a0555c
chore(release): [email protected]2b60df1
chore(release): [email protected]d4cb375
ci: ignore tests when publishing to npmc251ae7
chore(release): [email protected]8a2f5a3
fix(eio-client): move 'offline' event listener at the topb04fa64
fix(sio): allow to join a room in a middleware (uws)7085f0e
refactor(sio-client): mangle private attributes4f66708
chore(sio-client): use babel loose mode when transpiling classes1a95db2
chore(sio-client): add a script to compute the bundle sizeUpdates
express
from 4.21.0 to 4.21.1Release notes
Sourced from express's releases.
Changelog
Sourced from express's changelog.
Commits
8e229f9
4.21.1a024c8a
fix(deps): [email protected]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 show <dependency name> ignore conditions
will show all of the ignore conditions of the specified dependency@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)You can disable automated security fix PRs for this repo from the Security Alerts page.