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 npm dependencies #81

Merged
merged 2 commits into from
Jan 27, 2025
Merged

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Oct 26, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@playwright/test (source) 1.47.2 -> 1.50.0 age adoption passing confidence
@solid-primitives/map (source) ^0.4.0 -> ^0.6.0 age adoption passing confidence
@tauri-apps/cli 2.2.4 -> 2.2.7 age adoption passing confidence
@types/node (source) 20.16.13 -> 20.17.16 age adoption passing confidence
axios (source) 1.7.7 -> 1.7.9 age adoption passing confidence
eslint-plugin-playwright 1.8.0 -> 1.8.3 age adoption passing confidence
eslint-plugin-prettier 5.2.1 -> 5.2.3 age adoption passing confidence
eslint-plugin-solid 0.14.3 -> 0.14.5 age adoption passing confidence
husky 9.1.6 -> 9.1.7 age adoption passing confidence
idb 8.0.0 -> 8.0.1 age adoption passing confidence
postcss (source) 8.4.47 -> 8.5.1 age adoption passing confidence
prettier (source) 3.3.3 -> 3.4.2 age adoption passing confidence
prettier-plugin-packagejson 2.5.3 -> 2.5.8 age adoption passing confidence
prettier-plugin-tailwindcss 0.6.8 -> 0.6.11 age adoption passing confidence
slate 0.103.0 -> 0.112.0 age adoption passing confidence
slate-history 0.109.0 -> 0.110.3 age adoption passing confidence
socket.io-client (source) 4.8.0 -> 4.8.1 age adoption passing confidence
solid-js (source) 1.9.2 -> 1.9.4 age adoption passing confidence
tailwindcss (source) 3.4.14 -> 3.4.17 age adoption passing confidence
typescript (source) 5.6.3 -> 5.7.3 age adoption passing confidence
vite (source) 5.4.12 -> 5.4.14 age adoption passing confidence
vite-plugin-solid 2.10.2 -> 2.11.0 age adoption passing confidence
vitest (source) 2.1.3 -> 2.1.8 age adoption passing confidence
yjs (source) 13.6.20 -> 13.6.23 age adoption passing confidence

Release Notes

microsoft/playwright (@​playwright/test)

v1.50.0

Compare Source

Test runner

  • New option timeout allows specifying a maximum run time for an individual test step. A timed-out step will fail the execution of the test.

    test('some test', async ({ page }) => {
      await test.step('a step', async () => {
        // This step can time out separately from the test
      }, { timeout: 1000 });
    });
  • New method test.step.skip() to disable execution of a test step.

    test('some test', async ({ page }) => {
      await test.step('before running step', async () => {
        // Normal step
      });
    
      await test.step.skip('not yet ready', async () => {
        // This step is skipped
      });
    
      await test.step('after running step', async () => {
        // This step still runs even though the previous one was skipped
      });
    });
  • Expanded expect(locator).toMatchAriaSnapshot() to allow storing of aria snapshots in separate YAML files.

  • Added method expect(locator).toHaveAccessibleErrorMessage() to assert the Locator points to an element with a given aria errormessage.

  • Option testConfig.updateSnapshots added the configuration enum changed. changed updates only the snapshots that have changed, whereas all now updates all snapshots, regardless of whether there are any differences.

  • New option testConfig.updateSourceMethod defines the way source code is updated when testConfig.updateSnapshots is configured. Added overwrite and 3-way modes that write the changes into source code, on top of existing patch mode that creates a patch file.

    npx playwright test --update-snapshots=changed --update-source-method=3way
  • Option testConfig.webServer added a gracefulShutdown field for specifying a process kill signal other than the default SIGKILL.

  • Exposed testStep.attachments from the reporter API to allow retrieval of all attachments created by that step.

UI updates

  • Updated default HTML reporter to improve display of attachments.
  • New button for picking elements to produce aria snapshots.
  • Additional details (such as keys pressed) are now displayed alongside action API calls in traces.
  • Display of canvas content in traces is error-prone. Display is now disabled by default, and can be enabled via the Display canvas content UI setting.
  • Call and Network panels now display additional time information.

Breaking

Browser Versions

  • Chromium 133.0.6943.16
  • Mozilla Firefox 134.0
  • WebKit 18.2

This version was also tested against the following stable channels:

  • Google Chrome 132
  • Microsoft Edge 132

v1.49.1

Compare Source

Highlights

https://github.com/microsoft/playwright/issues/33802 - [Bug]: Codegen's Clear button doesn't work if not recordinghttps://github.com/microsoft/playwright/issues/338066 - [Bug]: playwright hangs while waiting for pending navigationhttps://github.com/microsoft/playwright/issues/3378787 - [Bug]: VSC extension isn't capturing all entered tehttps://github.com/microsoft/playwright/issues/33788788 - [Regression]: Double clicking the steps in trace viewer doesn't filter actihttps://github.com/microsoft/playwright/issues/337723772 - [Bug]: aria_snapshot generates invalid yaml when combined with an aria-label attrhttps://github.com/microsoft/playwright/issues/3379133791 - [Bug]: text input with number value raises "container is not iterable" with to_match_aria_snahttps://github.com/microsoft/playwright/issues/33644/33644 - [Bug]: getByRole can't find element with the accessible name from label element when aria-labelledby is nothttps://github.com/microsoft/playwright/issues/33660s/33660 - [Regression]: Unable to open Playwright UI in Dark Mode

Browser Versions
  • Chromium 131.0.6778.33
  • Mozilla Firefox 132.0
  • WebKit 18.2

This version was also tested against the following stable channels:

  • Google Chrome 130
  • Microsoft Edge 130

v1.49.0

Compare Source

v1.48.2

Compare Source

v1.48.1

Compare Source

Highlights

https://github.com/microsoft/playwright/issues/33023 - [Bug]: command line flag --headed has no effect in ui modehttps://github.com/microsoft/playwright/issues/331077 - [REGRESSION]: page.waitForRequest does not get resolved since 1.48.https://github.com/microsoft/playwright/issues/3308585 - [Bug]: WebSocket route does not handle full URLs in Playwrighttps://github.com/microsoft/playwright/issues/33052052 - [Regression]: Inspector not showing recorded sthttps://github.com/microsoft/playwright/issues/331323132 - [Bug]: Wrong Ubuntu release name in Dockerfile.nhttps://github.com/microsoft/playwright/pull/3299632996 - [BUG] Trace attachments have small unusable height

Browser Versions

  • Chromium 130.0.6723.19
  • Mozilla Firefox 130.0
  • WebKit 18.0

This version was also tested against the following stable channels:

  • Google Chrome 129
  • Microsoft Edge 129

v1.48.0

Compare Source

solidjs-community/solid-primitives (@​solid-primitives/map)

v0.6.0

Compare Source

Minor Changes
  • ea09f71: Remove CJS support. The package is ESM only now.
Patch Changes

v0.5.0

Compare Source

Minor Changes
tauri-apps/tauri (@​tauri-apps/cli)

v2.2.7: @​tauri-apps/cli v2.2.7

Compare Source

[2.2.7]

Bug Fixes
Dependencies
  • Upgraded to tauri-cli@2.2.7

v2.2.6: @​tauri-apps/cli v2.2.6

Compare Source

[2.2.6]

Enhancements
Dependencies
  • Upgraded to tauri-cli@2.2.6

v2.2.5: @​tauri-apps/cli v2.2.5

Compare Source

[2.2.5]

Dependencies
  • Upgraded to tauri-cli@2.2.5
axios/axios (axios)

v1.7.9

Compare Source

Reverts
Contributors to this release

v1.7.8

Compare Source

Bug Fixes
Contributors to this release
playwright-community/eslint-plugin-playwright (eslint-plugin-playwright)

v1.8.3

Compare Source

Bug Fixes

v1.8.2

Compare Source

Bug Fixes
Documentation
  • max-expects: Fix README incorrectly marking max-expects as recommended (#​324) (8778bd3)

v1.8.1

Compare Source

Bug Fixes
  • no-useless-await: Fix false positive with expect.poll and resolves/rejects (23663fb), closes #​323
prettier/eslint-plugin-prettier (eslint-plugin-prettier)

v5.2.3

Compare Source

Patch Changes

v5.2.2

Compare Source

Patch Changes
solidjs-community/eslint-plugin-solid (eslint-plugin-solid)

v0.14.5

Compare Source

What's Changed

New Contributors

Full Changelog: solidjs-community/eslint-plugin-solid@v0.14.4...v0.14.5

v0.14.4

Compare Source

What's Changed

New Contributors

Full Changelog: solidjs-community/eslint-plugin-solid@v0.14.3...v0.14.4

typicode/husky (husky)

v9.1.7

Compare Source

jakearchibald/idb (idb)

v8.0.1

Compare Source

postcss/postcss (postcss)

v8.5.1

Compare Source

v8.5.0: 8.5 “Duke Alloces”

Compare Source

President Alloces seal

PostCSS 8.5 brought API to work better with non-CSS sources like HTML, Vue.js/Svelte sources or CSS-in-JS.

@​romainmenke during his work on Stylelint added Input#document in additional to Input#css.

root.source.input.document //=> "<p>Hello</p>
                           //    <style>
                           //    p {
                           //      color: green;
                           //    }
                           //    </style>"
root.source.input.css      //=> "p {
                           //      color: green;
                           //    }"

Thanks to Sponsors

This release was possible thanks to our community.

If your company wants to support the sustainability of front-end infrastructure or wants to give some love to PostCSS, you can join our supporters by:

v8.4.49

Compare Source

v8.4.48

Compare Source

  • Fixed position calculation in error/warnings methods (by @​romainmenke).
prettier/prettier (prettier)

v3.4.2

Compare Source

diff

Treat U+30A0 & U+30FB in Katakana Block as CJK (#​16796 by @​tats-u)

Prettier doesn't treat U+30A0 & U+30FB as Japanese. U+30FB is commonly used in Japanese to represent the delimitation of first and last names of non-Japanese people or “and”. The following “C言語・C++・Go・Rust” means “C language & C++ & Go & Rust” in Japanese.

<!-- Input (--prose-wrap=never) -->

C言
語
・
C++
・
Go
・
Rust

<!-- Prettier 3.4.1 -->
C言語・ C++ ・ Go ・ Rust

<!-- Prettier 3.4.2 -->
C言語・C++・Go・Rust

U+30A0 can be used as the replacement of the - in non-Japanese names (e.g. “Saint-Saëns” (Charles Camille Saint-Saëns) can be represented as “サン゠サーンス” in Japanese), but substituted by ASCII hyphen (U+002D) or U+FF1D (full width hyphen) in many cases (e.g. “サン=サーンス” or “サン=サーンス”).

Fix comments print on class methods with decorators (#​16891 by @​fisker)
// Input
class A {
  @&#8203;decorator
  /** 
   * The method description
   *
  */
  async method(foo: Foo, bar: Bar) {
    console.log(foo);
  }
}

// Prettier 3.4.1
class A {
  @&#8203;decorator
  async /**
   * The method description
   *
   */
  method(foo: Foo, bar: Bar) {
    console.log(foo);
  }
}

// Prettier 3.4.2
class A {
  @&#8203;decorator
  /**
   * The method description
   *
   */
  async method(foo: Foo, bar: Bar) {
    console.log(foo);
  }
}
Fix non-idempotent formatting (#​16899 by @​seiyab)

This bug fix is not language-specific. You may see similar change in any languages. This fixes regression in 3.4.0 so change caused by it should yield same formatting as 3.3.3.

// Input
<div>
  foo
  <span>longlonglonglonglonglonglonglonglonglonglonglonglonglonglongl foo</span>
  , abc
</div>;

// Prettier 3.4.1 (first)
<div>
  foo
  <span>
    longlonglonglonglonglonglonglonglonglonglonglonglonglonglongl foo
  </span>, abc
</div>;

// Prettier 3.4.1 (second)
<div>
  foo
  <span>longlonglonglonglonglonglonglonglonglonglonglonglonglonglongl foo</span>
  , abc
</div>;

// Prettier 3.4.2
<div>
  foo
  <span>longlonglonglonglonglonglonglonglonglonglonglonglonglonglongl foo</span>
  , abc
</div>;

v3.4.1

Compare Source

diff

Remove unnecessary parentheses around assignment in v-on (#​16887 by @​fisker)
<!-- Input -->
<template>
  <button @&#8203;click="foo += 2">Click</button>
</template>

<!-- Prettier 3.4.0 -->
<template>
  <button @&#8203;click="(foo += 2)">Click</button>
</template>

<!-- Prettier 3.4.1 -->
<template>
  <button @&#8203;click="foo += 2">Click</button>
</template>

v3.4.0

Compare Source

diff

🔗 Release Notes

matzkoh/prettier-plugin-packagejson (prettier-plugin-packagejson)

v2.5.8

Compare Source

Bug Fixes
  • deps: update dependency sort-package-json to v2.14.0 (fe3557e)

v2.5.7

Compare Source

Bug Fixes
  • deps: update dependency sort-package-json to v2.13.0 (9515f01)

v2.5.6

Compare Source

Bug Fixes
  • deps: update dependency sort-package-json to v2.12.0 (81ad3b6)

v2.5.5

Compare Source

v2.5.4

Compare Source

tailwindlabs/prettier-plugin-tailwindcss (prettier-plugin-tailwindcss)

v0.6.11

Compare Source

  • Support TypeScript configs and plugins when using v4 (#​342)

v0.6.10

Compare Source

  • Add support for @zackad/prettier-plugin-twig (#​327)
  • Drop support for @zackad/prettier-plugin-twig-melody (#​327)
  • Update Prettier options types (#​325)
  • Don't remove whitespace inside template literals in Svelte (#​332)

v0.6.9

Compare Source

  • Introduce tailwindStylesheet option to replace tailwindEntryPoint (#​330)
ianstormtaylor/slate (slate)

v0.112.0

Compare Source

Minor Changes
  • #​5776 5a1c728c Thanks @​yf-yang! - Add merge optional function to decorations and change related type signatures to DecoratedRange. Now developers can specify how two decoration object with the same key but different value are merged together if they overlap"
Patch Changes

v0.110.2

Compare Source

Patch Changes
socketio/socket.io (socket.io-client)

v4.8.1

Compare Source

Bug Fixes
  • bundle: do not mangle the "_placeholder" attribute (ca9e994)
Dependencies
solidjs/solid (solid-js)

v1.9.4

Compare Source

v1.9.3

Compare Source

tailwindlabs/tailwindcss (tailwindcss)

v3.4.17

Compare Source

v3.4.16

[Compare Source](https:/


Configuration

📅 Schedule: Branch creation - "every weekend before 5:00am" (UTC), Automerge - At any time (no schedule defined).

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

Rebasing: Whenever PR is behind base branch, 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.

@renovate renovate bot force-pushed the renovate/npm-dependencies branch 6 times, most recently from 180009b to 4bf77a3 Compare November 3, 2024 04:23
@renovate renovate bot force-pushed the renovate/npm-dependencies branch 7 times, most recently from 338b341 to 2c23a34 Compare November 14, 2024 22:32
@renovate renovate bot force-pushed the renovate/npm-dependencies branch 8 times, most recently from 17e37ab to 7348687 Compare November 25, 2024 01:19
@renovate renovate bot force-pushed the renovate/npm-dependencies branch 7 times, most recently from 20abed5 to e984440 Compare December 2, 2024 16:20
@renovate renovate bot force-pushed the renovate/npm-dependencies branch 9 times, most recently from 5658721 to 04aae34 Compare January 23, 2025 00:51
@renovate renovate bot force-pushed the renovate/npm-dependencies branch 10 times, most recently from 5693fd7 to f08a566 Compare January 27, 2025 22:52
@renovate renovate bot force-pushed the renovate/npm-dependencies branch from f08a566 to 78cbb9c Compare January 27, 2025 23:28
Copy link

Your image ghcr.io/ekhorn/spaced/item_socket:7de2ae1ca2da2ea91689dbf8c2673f4c78af55b3 critical: 0 high: 0 medium: 0 low: 0
Current base image distroless/static-debian12:nonroot critical: 0 high: 0 medium: 0 low: 0

Copy link

🔍 Vulnerabilities of ghcr.io/ekhorn/spaced/item_socket:7de2ae1ca2da2ea91689dbf8c2673f4c78af55b3

📦 Image Reference ghcr.io/ekhorn/spaced/item_socket:7de2ae1ca2da2ea91689dbf8c2673f4c78af55b3
digestsha256:d69656c0ffc1342fa054c6d6543ca45d51cff451fa13d9d71791f13a2c45dd45
vulnerabilitiescritical: 0 high: 0 medium: 0 low: 0
platformlinux/amd64
size13 MB
packages11
📦 Base Image gcr.io/distroless/static-debian12:nonroot
digestsha256:e855cfad87387db4658f58f72e09f243bdb58f0697e0535d371092d8c03dfd82
vulnerabilitiescritical: 0 high: 0 medium: 0 low: 0

Copy link

Recommended fixes for image ghcr.io/ekhorn/spaced/item_socket:7de2ae1ca2da2ea91689dbf8c2673f4c78af55b3

Base image is :nonroot

Digest
Vulnerabilities
Size0 B
Packages0

Refresh base image

Rebuild the image using a newer base image version. Updating this may result in breaking changes.

✅ This image version is up to date.

Change base image

✅ There are no tag recommendations at this time.

@Ekhorn Ekhorn merged commit 42f228d into main Jan 27, 2025
17 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant