nexodus-io / nexodus

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

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

Closed dependabot[bot] closed 6 months ago

dependabot[bot] commented 6 months ago

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

Package From To
@mui/material 5.15.5 5.15.13
@playwright/test 1.40.1 1.42.1
@types/jest 29.5.11 29.5.12
@types/node 20.11.16 20.11.28
@types/react 18.2.48 18.2.66
@types/react-dom 18.2.18 18.2.22
prettier 3.2.4 3.2.5
typescript 5.3.3 5.4.2
vite 5.0.12 5.1.6
vite-tsconfig-paths 4.3.1 4.3.2

Updates @mui/material from 5.15.5 to 5.15.13

Release notes

Sourced from @​mui/material's releases.

v5.15.13

Mar 13, 2024

A big thanks to the 18 contributors who made this release possible. Here are some highights ✨

@mui/material@5.15.13

@mui/system@5.15.13

@mui/utils@5.15.13

@mui/codemod@5.15.13

@mui/base@5.0.0-beta.39

@pigment-css/react@0.0.2

Docs

... (truncated)

Changelog

Sourced from @​mui/material's changelog.

v5.15.13

Mar 13, 2024

A big thanks to the 18 contributors who made this release possible. Here are some highights ✨

@mui/material@5.15.13

@mui/system@5.15.13

@mui/utils@5.15.13

@mui/codemod@5.15.13

@mui/base@5.0.0-beta.39

@pigment-css/react@0.0.2

Docs

... (truncated)

Commits
  • dbcb678 [release] v5.15.13 (#41462)
  • 9e97e73 [material-ui][Tooltip] Support event handlers with extra parameters (#41320)
  • 9aec566 [material-ui] Add paperChannel token (#41447)
  • 1aa3764 [material-ui][joy-ui][base-ui][Autocomplete] Keep in sync highlighted index w...
  • 1e80616 [RtlProvider] Add component & hook (#41241)
  • 16e8ef7 [code-infra] Add alias for icon types (#41248)
  • 5fb8e19 [material-ui][Autocomplete] Fix the options list being added to the DOM in `f...
  • 1249a37 [material-ui][Switch] Convert to support CSS extraction (#41367)
  • fe5e34b [material-ui][Alert] Add slots and slotProps type to theme (#41324)
  • 5ad69e1 v5.15.12 (#41373)
  • Additional commits viewable in compare view


Updates @playwright/test from 1.40.1 to 1.42.1

Release notes

Sourced from @​playwright/test's releases.

v1.42.1

Highlights

microsoft/playwright#29732 - [Regression]: HEAD requests to webServer.url since v1.42.0 microsoft/playwright#29746 - [Regression]: Playwright CT CLI scripts fail due to broken initializePlugin import microsoft/playwright#29739 - [Bug]: Component tests fails when imported a module with a dot in a name microsoft/playwright#29731 - [Regression]: 1.42.0 breaks some import statements microsoft/playwright#29760 - [Bug]: Possible regression with chained locators in v1.42

Browser Versions

  • Chromium 123.0.6312.4
  • Mozilla Firefox 123.0
  • WebKit 17.4

This version was also tested against the following stable channels:

  • Google Chrome 122
  • Microsoft Edge 123

v1.42.0

New APIs

  • Test tags

    New tag syntax for adding tags to the tests (@-tokens in the test title are still supported).

    test('test customer login', { tag: ['@fast', '@login'] }, async ({ page }) => {
      // ...
    });
    

    Use --grep command line option to run only tests with certain tags.

    npx playwright test --grep @fast
    
  • Annotating skipped tests

    New annotation syntax for test annotations allows annotating the tests that do not run.

    test('test full report', {
      annotation: [
        { type: 'issue', description: 'https://github.com/microsoft/playwright/issues/23180' },
        { type: 'docs', description: 'https://playwright.dev/docs/test-annotations#tag-tests' },
      ],
    }, async ({ page }) => {
      // ...
    });
    

... (truncated)

Commits
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.28

Commits


Updates @types/react from 18.2.48 to 18.2.66

Commits


Updates @types/react-dom from 18.2.18 to 18.2.22

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 typescript from 5.3.3 to 5.4.2

Release notes

Sourced from typescript's releases.

TypeScript 5.4

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

TypeScript 5.4 RC

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

TypeScript 5.4 Beta

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

Commits
  • 42bb138 Bump version to 5.4.2 and LKG
  • 992c705 Add release pipeline to release-5.4 (#57513)
  • db6b2a9 Bump version to 5.4.1-rc and LKG
  • bd4f51c Update LKG
  • 8a1f79d Merge remote-tracking branch 'origin/main' into release-5.4
  • d04e348 Improve apparent type of mapped types (#57122)
  • 86a1663 Update package-lock.json
  • feb57c2 Instantiate earlier inferred constraints in conditional types (#57362)
  • 91e67ff fix(57392): using is not suggested as a keyword (#57394)
  • 29c0024 Avoid creating rest elements with errorType when any is spread (#57116)
  • Additional commits viewable in compare view


Updates vite from 5.0.12 to 5.1.6

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.6 (2024-03-11)

  • chore(deps): update all non-major dependencies (#16131) (a862ecb), closes #16131
  • fix: check for publicDir before checking if it is a parent directory (#16046) (b6fb323), closes #16046
  • fix: escape single quote when relative base is used (#16060) (8f74ce4), closes #16060
  • fix: handle function property extension in namespace import (#16113) (f699194), closes #16113
  • fix: server middleware mode resolve (#16122) (8403546), closes #16122
  • fix(esbuild): update tsconfck to fix bug that could cause a deadlock (#16124) (fd9de04), closes #16124
  • fix(worker): hide "The emitted file overwrites" warning if the content is same (#16094) (60dfa9e), closes #16094
  • fix(worker): throw error when circular worker import is detected and support self referencing worker (eef9da1), closes #16103
  • style(utils): remove null check (#16112) (0d2df52), closes #16112
  • refactor(runtime): share more code between runtime and main bundle (#16063) (93be84e), closes #16063

5.1.5 (2024-03-04)

5.1.4 (2024-02-21)

5.1.3 (2024-02-15)

... (truncated)

Commits
  • 6f7466e release: v5.1.6
  • a862ecb chore(deps): update all non-major dependencies (#16131)
  • 8403546 fix: server middleware mode resolve (#16122)
  • b6fb323 fix: check for publicDir before checking if it is a parent directory (#16046)
  • fd9de04 fix(esbuild): update tsconfck to fix bug that could cause a deadlock (#16124)
  • f699194 fix: handle function property extension in namespace import (#16113)
  • 0d2df52 style(utils): remove null check (#16112)
  • eef9da1 fix(worker): throw error when circular worker import is detected and support ...
  • 60dfa9e fix(worker): hide "The emitted file overwrites" warning if the content is sam...
  • 93be84e refactor(runtime): share more code between runtime and main bundle (#16063)
  • Additional commits viewable in compare view


Updates vite-tsconfig-paths from 4.3.1 to 4.3.2

Commits


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 6 months ago

Deploy Preview for nexodus-docs canceled.

Name Link
Latest commit aefbb68c1485b37e49aa98ae8ee9308018f1f26c
Latest deploy log https://app.netlify.com/sites/nexodus-docs/deploys/65f7ecdfdd18840008dcba63
mergify[bot] commented 6 months ago

@dependabot[bot], this pull request is now in conflict and requires a rebase.

dependabot[bot] commented 6 months ago

Superseded by #1988.