nexodus-io / nexodus

Network Connectivity as a Service
https://nexodus.io
Apache License 2.0
57 stars 26 forks source link

build(deps-dev): bump the node-development-dependencies group in /ui with 8 updates #1941

Closed dependabot[bot] closed 4 months ago

dependabot[bot] commented 4 months ago

Bumps the node-development-dependencies group in /ui with 8 updates:

Package From To
@mui/material 5.15.5 5.15.11
@playwright/test 1.40.1 1.41.2
@types/jest 29.5.11 29.5.12
@types/node 20.11.16 20.11.20
@types/react 18.2.48 18.2.58
@types/react-dom 18.2.18 18.2.19
prettier 3.2.4 3.2.5
vite 5.0.12 5.1.4

Updates @mui/material from 5.15.5 to 5.15.11

Release notes

Sourced from @​mui/material's releases.

v5.15.11

A big thanks to the 26 contributors who made this release possible. This release was mostly about 🐛 bug fixes and 📚 documentation improvements.

@mui/material@5.15.11

@mui/material-nextjs@5.15.11

@mui/system@5.15.11

@mui/codemod@5.15.11

@mui/utils@5.15.11

@mui/base@5.0.0-beta.37

@mui/lab@5.0.0-alpha.164

Docs

... (truncated)

Changelog

Sourced from @​mui/material's changelog.

v5.15.11

Feb 21, 2024

A big thanks to the 26 contributors who made this release possible. This release was mostly about 🐛 bug fixes and 📚 documentation improvements.

@mui/material@5.15.11

@mui/material-nextjs@5.15.11

@mui/system@5.15.11

@mui/codemod@5.15.11

@mui/utils@5.15.11

@mui/base@5.0.0-beta.37

@mui/lab@5.0.0-alpha.164

Docs

... (truncated)

Commits
  • e3257a4 v5.15.11 (#41213)
  • d16c76e [code-infra] Prepare babel macros package for publishing to npm (#41178)
  • 274f1e6 [docs-infra] Fix broken anchor links (#40908)
  • fdb8cdf [docs-infra] Share vale-config (#41176)
  • fac2137 [material-ui][joy-ui][Tooltip] Rename mouse event handlers (#41202)
  • ba52e0d [system][material-ui] Move useMediaQuery to system (#39463)
  • b6bec6c [docs] Link to react-transition group with https
  • 28dfd5b [material-ui][PaginationItem] Add codemod for deprecated classes (#41145)
  • 633682d [material-ui][Transitions] External ownerState is incorrectly forwarded to in...
  • a367c25 [material-ui][TablePagination] Fix type error in Select props (#39137)
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by oliviertassinari, a new releaser for @​mui/material since your current version.


Updates @playwright/test from 1.40.1 to 1.41.2

Release notes

Sourced from @​playwright/test's releases.

v1.41.2

Highlights

microsoft/playwright#29123 - [REGRESSION] route.continue: Protocol error (Fetch.continueRequest): Invalid InterceptionId.

Browser Versions

  • Chromium 121.0.6167.57
  • Mozilla Firefox 121.0
  • WebKit 17.4

This version was also tested against the following stable channels:

  • Google Chrome 120
  • Microsoft Edge 120

v1.41.1

Highlights

microsoft/playwright#29067 - [REGRESSION] Codegen/Recorder: not all clicks are being actioned nor recorded microsoft/playwright#29028 - [REGRESSION] React component tests throw type error when passing null/undefined to component microsoft/playwright#29027 - [REGRESSION] React component tests not passing Date prop values microsoft/playwright#29023 - [REGRESSION] React component tests not rendering children prop microsoft/playwright#29019 - [REGRESSION] trace.playwright.dev does not currently support the loading from URL

Browser Versions

  • Chromium 121.0.6167.57
  • Mozilla Firefox 121.0
  • WebKit 17.4

This version was also tested against the following stable channels:

  • Google Chrome 120
  • Microsoft Edge 120

v1.41.0

New APIs

Browser Versions

  • Chromium 121.0.6167.57
  • Mozilla Firefox 121.0
  • WebKit 17.4

This version was also tested against the following stable channels:

  • Google Chrome 120
  • Microsoft Edge 120
Commits
  • a409667 chore: mark 1.41.2 (#29293)
  • 414affa cherry-pick(#29271): Revert "chore: remove fake error from expect calls (#2...
  • 7a72adc cherry-pick(#29180): fix: interception id not found error in route.co… (#29222)
  • 8f0163f chore: mark 1.41.1 (#29075)
  • 98a6618 cherry-pick(#29069): Revert "feat(codegen): add range input recording support...
  • 50f1f08 cherry-pick(#29070): chore(ct): revert export mount result
  • e5d201b cherry-pick(#29031): fix(ct): allow passing date, url, bigint as properties
  • 8ee2d81 cherry-pick(#29026): test: add a props.children test
  • 50a8e4f cherry-pick(#29016): chore: add an image import component test
  • cb6c64c cherry-pick(#28986): fix(ct): move import list into the compilation cache data
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by yurys, a new releaser for @​playwright/test since your current version.


Updates @types/jest from 29.5.11 to 29.5.12

Commits


Updates @types/node from 20.11.16 to 20.11.20

Commits


Updates @types/react from 18.2.48 to 18.2.58

Commits


Updates @types/react-dom from 18.2.18 to 18.2.19

Commits


Updates prettier from 3.2.4 to 3.2.5

Release notes

Sourced from prettier's releases.

3.2.5

🔗 Changelog

Changelog

Sourced from prettier's changelog.

3.2.5

diff

Support Angular inline styles as single template literal (#15968 by @​sosukesuzuki)

Angular v17 supports single string inline styles.

// Input
@Component({
  template: `<div>...</div>`,
  styles: `h1 { color: blue; }`,
})
export class AppComponent {}

// Prettier 3.2.4 @​Component({ template: &lt;div&gt;...&lt;/div&gt;, styles: h1 { color: blue; }, }) export class AppComponent {}

// Prettier 3.2.5 @​Component({ template: &lt;div&gt;...&lt;/div&gt;, styles: h1 { color: blue; }, }) export class AppComponent {}

Unexpected embedded formatting for Angular template (#15969 by @​JounQin)

Computed template should not be considered as Angular component template

// Input
const template = "foobar";

@​Component({ [template]: &lt;h1&gt;{{ hello }}&lt;/h1&gt;, }) export class AppComponent {} </tr></table>

... (truncated)

Commits


Updates vite from 5.0.12 to 5.1.4

Release notes

Sourced from vite's releases.

create-vite@5.1.0

Please refer to CHANGELOG.md for details.

Changelog

Sourced from vite's changelog.

5.1.4 (2024-02-21)

5.1.3 (2024-02-15)

5.1.2 (2024-02-14)

5.1.1 (2024-02-09)

5.1.0 (2024-02-08)

Vite 5.1 is out! Read the announcement blog post at https://vitejs.dev/blog/announcing-vite5-1!

... (truncated)

Commits
  • 0137ea0 release: v5.1.4
  • 8dc1b73 perf: remove unnecessary regex s modifier (#15766)
  • 4fe971f fix: resolve directory correctly when fs.cachedChecks: true (#15983)
  • 1d263d3 fix(watch): build watch fails when outDir is empty string (#15979)
  • 81b3bd0 fix: srcSet with optional descriptor (#15905)
  • 571a3fd fix(deps): update all non-major dependencies (#15959)
  • 8b11fea fix: fs cached checks disabled by default for yarn pnp (#15920)
  • bf39527 release: v5.1.3
  • 5099028 fix: cachedTransformMiddleware for direct css requests (#15919)
  • 4172f02 refactor(runtime): seal ES module namespace object instead of feezing (#15914)
  • 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 show ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore major version` will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself) - `@dependabot ignore minor version` will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself) - `@dependabot ignore ` will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself) - `@dependabot unignore ` will remove all of the ignore conditions of the specified dependency - `@dependabot unignore ` will remove the ignore condition of the specified dependency and ignore conditions
netlify[bot] commented 4 months ago

Deploy Preview for nexodus-docs canceled.

Name Link
Latest commit b611c61c63a64d1ecb5fe1280d42b64110d320d4
Latest deploy log https://app.netlify.com/sites/nexodus-docs/deploys/65dc3cbe49654b00081d2816
dependabot[bot] commented 4 months ago

Superseded by #1950.