nexodus-io / nexodus

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

build(deps-dev): bump the node-development-dependencies group across 1 directory with 8 updates #2026

Closed dependabot[bot] closed 1 month ago

dependabot[bot] commented 2 months ago

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

Package From To
@mui/material 5.15.5 5.15.15
@playwright/test 1.41.2 1.43.1
@types/jest 29.5.11 29.5.12
@types/node 20.11.16 20.12.7
prettier 3.2.4 3.2.5
typescript 5.3.3 5.4.5
vite 5.0.13 5.2.10
vite-tsconfig-paths 4.3.1 4.3.2

Updates @mui/material from 5.15.5 to 5.15.15

Release notes

Sourced from @​mui/material's releases.

v5.15.15

A big thanks to the 7 contributors who made this release possible. Here are some highlights ✨: This release was mostly about 🐛 bug fixes and 📚 documentation improvements.

@mui/material@5.15.15

@mui/system@5.15.15

Docs

Core

All contributors of this release in alphabetical order: @​aarongarciah, @​bharatkashyap, @​cherniavskii, @​danilo-leal, @​mnajdova, @​oliviertassinari, @​ZeeshanTamboli

v5.15.14

Mar 19, 2024

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

@mui/material@5.15.14

@pigment-css/react@0.0.3

... (truncated)

Changelog

Sourced from @​mui/material's changelog.

v5.15.15

Apr 4, 2024

A big thanks to the 7 contributors who made this release possible. Here are some highlights ✨: This release was mostly about 🐛 bug fixes and 📚 documentation improvements.

@mui/material@5.15.15

@mui/system@5.15.15

Docs

Core

All contributors of this release in alphabetical order: @​aarongarciah, @​bharatkashyap, @​cherniavskii, @​danilo-leal, @​mnajdova, @​oliviertassinari, @​ZeeshanTamboli

v5.15.14

Mar 18, 2024

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

@mui/material@5.15.14

... (truncated)

Commits


Updates @playwright/test from 1.41.2 to 1.43.1

Release notes

Sourced from @​playwright/test's releases.

v1.43.1

Highlights

microsoft/playwright#30300 - [REGRESSION]: UI mode restarts if keep storage state microsoft/playwright#30339 - [REGRESSION]: Brand new install of playwright, unable to run chromium with show browser using vscode

Browser Versions

  • Chromium 124.0.6367.29
  • Mozilla Firefox 124.0
  • WebKit 17.4

This version was also tested against the following stable channels:

  • Google Chrome 123
  • Microsoft Edge 123

v1.43.0

New APIs

  • Method browserContext.clearCookies() now supports filters to remove only some cookies.

    // Clear all cookies.
    await context.clearCookies();
    // New: clear cookies with a particular name.
    await context.clearCookies({ name: 'session-id' });
    // New: clear cookies for a particular domain.
    await context.clearCookies({ domain: 'my-origin.com' });
    
  • New mode retain-on-first-failure for testOptions.trace. In this mode, trace is recorded for the first run of each test, but not for retires. When test run fails, the trace file is retained, otherwise it is removed.

    import { defineConfig } from '@playwright/test';
    

    export default defineConfig({ use: { trace: 'retain-on-first-failure', }, });

  • New property testInfo.tags exposes test tags during test execution.

    test('example', async ({ page }) => {
      console.log(test.info().tags);
    });
    
  • New method locator.contentFrame() converts a Locator object to a FrameLocator. This can be useful when you have a Locator object obtained somewhere, and later on would like to interact with the content inside the frame.

... (truncated)

Commits
  • a051ceb chore: mark 1.43.1 (#30354)
  • 3ab466e cherry-pick(#30312): fix(ui-mode): do not loose run information after writing...
  • 35468cf cherry-pick(#30342): Revert "fix(reuse): reset Origin Private File System API...
  • 5332639 cherry-pick(#30263): docs: add v1.43 release notes for language ports
  • c729a7b cherry-pick(#30232): docs: fix C# and python snippets
  • 7748e21 cherry-pick(#30210): docs: update context.backgroundPage event examples
  • acb6ff1 cherry-pick(#30200): docs(java,csharp): add BrowserContext.backgroundPage(s)
  • 7c7f8ac cherry-pick(#30227): chore(deps): bump vite from 5.0.12 to 5.0.13 (#30254)
  • 62d4dc9 cherry-pick(#30235): feat(chromium): roll to r1112
  • 79d4776 cherry-pick(#30226): chore: migrate to the testserver.initialize
  • Additional commits viewable in compare view


Updates @types/jest from 29.5.11 to 29.5.12

Commits


Updates @types/node from 20.11.16 to 20.12.7

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.5

Release notes

Sourced from typescript's releases.

TypeScript 5.4.5

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.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.3

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

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

... (truncated)

Commits
  • 27bcd4c Update LKG
  • 9f33bf1 🤖 Pick PR #58098 (Fix constraints of nested homomorph...) into release-5.4 (#...
  • 71b2f84 Bump version to 5.4.5 and LKG
  • 892936f 🤖 Pick PR #58083 (Don't propagate partial union/inter...) into release-5.4 (#...
  • 38a7c05 release-5.4: Always set node-version for setup-node (#58117)
  • b754fc3 🤖 Pick PR #57778 (fix type import check for default-i...) into release-5.4 (#...
  • 8eb3367 Bump version to 5.4.4 and LKG
  • de9096b 🤖 Pick PR #57871 (Divide-and-conquer strategy for int...) into release-5.4 (#...
  • 06aae98 🤖 Pick PR #57973 (Compare package.json paths with cor...) into release-5.4 (#...
  • 6d8134e 🤖 Pick PR #57637 (Fixed a regression related to deter...) into release-5.4 (#...
  • Additional commits viewable in compare view


Updates vite from 5.0.13 to 5.2.10

Release notes

Sourced from vite's releases.

create-vite@5.2.3

Please refer to CHANGELOG.md for details.

create-vite@5.2.2

Please refer to CHANGELOG.md for details.

create-vite@5.2.1

Please refer to CHANGELOG.md for details.

create-vite@5.2.0

Please refer to CHANGELOG.md for details.

create-vite@5.1.0

Please refer to CHANGELOG.md for details.

Changelog

Sourced from vite's changelog.

5.2.10 (2024-04-20)

5.2.9 (2024-04-15)

5.2.8 (2024-04-03)

5.2.7 (2024-03-29)

5.2.6 (2024-03-24)

... (truncated)

Commits


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

Deploy Preview for nexodus-docs canceled.

Name Link
Latest commit 09a36d4ce0b8011fc83eaf53f9a745f7173b8bca
Latest deploy log https://app.netlify.com/sites/nexodus-docs/deploys/662f4d1149f39a000843a77e
dependabot[bot] commented 1 month ago

Superseded by #2030.