Skip to content
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

chore(deps): update all non-major dependencies #479

Merged
merged 1 commit into from
Oct 8, 2024

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Oct 7, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@faker-js/faker (source) 9.0.0 -> 9.0.3 age adoption passing confidence
@reduxjs/toolkit (source) 2.2.7 -> 2.2.8 age adoption passing confidence
@types/node (source) 20.16.10 -> 20.16.11 age adoption passing confidence
antd (source) 5.21.1 -> 5.21.2 age adoption passing confidence
express (source) 4.19.2 -> 4.21.0 age adoption passing confidence
npm (source) 10.8.3 -> 10.9.0 age adoption passing confidence
socket.io (source) 4.7.5 -> 4.8.0 age adoption passing confidence
socket.io-client (source) 4.7.5 -> 4.8.0 age adoption passing confidence
typescript (source) 5.5.4 -> 5.6.2 age adoption passing confidence
vite (source) 5.4.6 -> 5.4.8 age adoption passing confidence

Release Notes

faker-js/faker (@​faker-js/faker)

v9.0.3

Compare Source

Changed Locales
Bug Fixes

v9.0.2

Compare Source

Bug Fixes

v9.0.1

Compare Source

Bug Fixes
reduxjs/redux-toolkit (@​reduxjs/toolkit)

v2.2.8

Compare Source

ant-design/ant-design (antd)

v5.21.2

Compare Source


expressjs/express (express)

v4.21.0

Compare Source

What's Changed

New Contributors

Full Changelog: expressjs/express@4.20.0...4.21.0

v4.20.0

Compare Source

==========

  • deps: [email protected]
    • Remove link renderization in html while redirecting
  • deps: [email protected]
    • Remove link renderization in html while redirecting
  • deps: [email protected]
    • add depth option to customize the depth level in the parser
    • IMPORTANT: The default depth level for parsing URL-encoded data is now 32 (previously was Infinity)
  • Remove link renderization in html while using res.redirect
  • deps: [email protected]
    • Adds support for named matching groups in the routes using a regex
    • Adds backtracking protection to parameters without regexes defined
  • deps: encodeurl@~2.0.0
    • Removes encoding of \, |, and ^ to align better with URL spec
  • Deprecate passing options.maxAge and options.expires to res.clearCookie
    • Will be ignored in v5, clearCookie will set a cookie with an expires in the past to instruct clients to delete the cookie
npm/cli (npm)

v10.9.0

Compare Source

Features
Bug Fixes
Documentation
Dependencies
Chores
socketio/socket.io (socket.io)

v4.8.0

Compare Source

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
(2) since v21.0.0

Added in f4d898e and 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";

const socket = io({
  tryAllTransports: true
});

This feature is useful in two cases:

  • when HTTP long-polling is disabled on the server, or if CORS fails
  • when WebSocket is tested first (with transports: ["websocket", "polling"])

The only potential downside is that the connection attempt could take more time in case of failure, as there have been reports of WebSocket connection errors taking several seconds before being detected (that's one reason for using HTTP long-polling first). That's why the option defaults to false for now.

Added in 579b243.

Bug Fixes
  • accept string | undefined as init argument (bis) (60c757f)
  • allow to manually stop the reconnection loop (13c6d2e)
  • close the engine upon decoding exception (04c8dd9)
  • do not send a packet on an expired connection (#​5134) (8adcfbf)
Dependencies
microsoft/TypeScript (typescript)

v5.6.2

Compare Source

vitejs/vite (vite)

v5.4.8

Compare Source

Please refer to CHANGELOG.md for details.

v5.4.7

Compare Source

Please refer to CHANGELOG.md for details.


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

Copy link
Contributor

github-actions bot commented Oct 7, 2024

Coverage Report for ./server/

Status Category Percentage Covered / Total
🟢 Lines 79.57% (🎯 60%) 226 / 284
🟢 Statements 79.57% (🎯 60%) 226 / 284
🟢 Functions 100% (🎯 60%) 8 / 8
🟢 Branches 68.65% (🎯 60%) 46 / 67
File CoverageNo changed files found.
Generated in workflow #469

Copy link
Contributor

github-actions bot commented Oct 7, 2024

Coverage Report for ./client/

Status Category Percentage Covered / Total
🟢 Lines 90.23% (🎯 70%) 1645 / 1823
🟢 Statements 90.23% (🎯 70%) 1645 / 1823
🟢 Functions 70.32% (🎯 70%) 64 / 91
🟢 Branches 88.75% (🎯 70%) 229 / 258
File CoverageNo changed files found.
Generated in workflow #469

@renovate renovate bot force-pushed the renovate/npm-all-minor-patch branch 2 times, most recently from 2beb932 to 22e31dd Compare October 7, 2024 22:31
@renovate renovate bot force-pushed the renovate/npm-all-minor-patch branch from 22e31dd to 1d8c9cf Compare October 8, 2024 03:25
Copy link

sonarcloud bot commented Oct 8, 2024

@LeleDallas LeleDallas merged commit e5bff78 into master Oct 8, 2024
5 checks passed
@renovate renovate bot deleted the renovate/npm-all-minor-patch branch October 8, 2024 06:27
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant