Skip to content

fix(deps): update all non-major dependencies (minor) #1719

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

Open
wants to merge 1 commit into
base: develop
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented May 12, 2025

This PR contains the following updates:

Package Change Age Confidence Type Update
@codemirror/view ^6.36.7 -> ^6.38.1 age confidence dependencies minor
@fsegurai/codemirror-theme-vscode-dark ^6.1.4 -> ^6.2.0 age confidence dependencies minor
@fsegurai/codemirror-theme-vscode-light ^6.1.4 -> ^6.2.0 age confidence dependencies minor
@playwright/test (source) ^1.52.0 -> ^1.54.1 age confidence devDependencies minor
@sveltejs/kit (source) 2.20.8 -> 2.25.1 age confidence devDependencies minor
@types/node (source) ^22.15.10 -> ^22.16.4 age confidence devDependencies minor
bits-ui ^1.4.6 -> ^1.8.0 age confidence devDependencies minor
docker.io/library/node 22.15.0-alpine3.21 -> 22.17.1-alpine3.21 age confidence stage minor
lucide-svelte (source) ^0.507.0 -> ^0.525.0 age confidence devDependencies minor
mcr.microsoft.com/playwright v1.52.0-jammy -> v1.54.1-jammy age confidence container minor
node (source) 22.15.0 -> 22.17.1 age confidence minor
pnpm (source) 10.10.0+sha512.d615db246fe70f25dcfea6d8d73dee782ce23e2245e3c4f6f888249fb568149318637dca73c2c5c8ef2a4ca0d5657fb9567188bfab47f566d1ee6ce987815c39 -> 10.13.1 age confidence packageManager minor
prettier (source) ^3.5.3 -> ^3.6.2 age confidence devDependencies minor
prettier-plugin-svelte ^3.3.3 -> ^3.4.0 age confidence devDependencies minor
svelte (source) ^5.28.2 -> ^5.36.8 age confidence devDependencies minor
tailwind-merge ^3.2.0 -> ^3.3.1 age confidence devDependencies minor

Release Notes

codemirror/view (@​codemirror/view)

v6.38.1

Compare Source

Bug fixes

Make the keymap not dispatch Alt key combos on macOS by key code, because those are generally used to type special characters.

Fix a layout bug that could occur with very narrow editors.

v6.38.0

Compare Source

New features

Gutters can now specify that they should be displayed after the content (which would be to the right in a left-to-right layout).

v6.37.2

Compare Source

Bug fixes

Fix an issue where moving the cursor vertically from the one-but-last character on a line would sometimes move incorrectly on Safari.

Fix an issue causing coordinates between lines of text to sometimes be inappropriately placed at the end of the line by posAtCoords.

v6.37.1

Compare Source

Bug fixes

Properly add crelt as a dependency.

v6.37.0

Compare Source

New features

View plugins can now take an argument, in which case they must be instantiated with their of method in order to be added to a configuration.

The new showDialog function makes it easy to show a notification or prompt using a CodeMirror panel.

v6.36.8

Compare Source

Bug fixes

Make logException log errors to the console when onerror returns a falsy value.

Fix an issue in MatchDecorator causing updateDeco to sometimes not do the right thing for deletions.

fsegurai/codemirror-themes (@​fsegurai/codemirror-theme-vscode-dark)

v6.2.0

Compare Source

microsoft/playwright (@​playwright/test)

v1.54.1

Compare Source

v1.54.0

Compare Source

Highlights

  • New cookie property partitionKey in browserContext.cookies() and browserContext.addCookies(). This property allows to save and restore partitioned cookies. See CHIPS MDN article for more information. Note that browsers have different support and defaults for cookie partitioning.

  • New option noSnippets to disable code snippets in the html report.

    import { defineConfig } from '@​playwright/test';
    
    export default defineConfig({
      reporter: [['html', { noSnippets: true }]]
    });
  • New property location in test annotations, for example in testResult.annotations and testInfo.annotations. It shows where the annotation like test.skip or test.fixme was added.

Command Line

  • New option --user-data-dir in multiple commands. You can specify the same user data dir to reuse browsing state, like authentication, between sessions.

    npx playwright codegen --user-data-dir=./user-data
  • Option -gv has been removed from the npx playwright test command. Use --grep-invert instead.

  • npx playwright open does not open the test recorder anymore. Use npx playwright codegen instead.

Miscellaneous

  • Support for Node.js 16 has been removed.
  • Support for Node.js 18 has been deprecated, and will be removed in the future.

Browser Versions

  • Chromium 139.0.7258.5
  • Mozilla Firefox 140.0.2
  • WebKit 26.0

This version was also tested against the following stable channels:

  • Google Chrome 140
  • Microsoft Edge 140

v1.53.2

Compare Source

v1.53.1

Compare Source

v1.53.0

Compare Source

Trace Viewer and HTML Reporter Updates

  • New Steps in Trace Viewer and HTML reporter: New Trace Viewer Steps

  • New option in 'html' reporter to set the title of a specific test run:

    import { defineConfig } from '@​playwright/test';
    
    export default defineConfig({
      reporter: [['html', { title: 'Custom test run #​1028' }]]
    });

Miscellaneous

  • New option kind in testInfo.snapshotPath() controls which snapshot path template is used.

  • New method locator.describe() to describe a locator. Used for trace viewer and reports.

    const button = page.getByTestId('btn-sub').describe('Subscribe button');
    await button.click();
  • npx playwright install --list will now list all installed browsers, versions and locations.

Browser Versions

  • Chromium 138.0.7204.4
  • Mozilla Firefox 139.0
  • WebKit 18.5

This version was also tested against the following stable channels:

  • Google Chrome 137
  • Microsoft Edge 137
sveltejs/kit (@​sveltejs/kit)

v2.25.1

Compare Source

Patch Changes
  • fix: add missing params property (#​14012)

v2.25.0

Compare Source

Minor Changes
  • feat: support asynchronous read implementations from adapters (#​13859)
Patch Changes
  • fix: log when no Svelte config file has been found to avoid confusion (#​14001)

v2.24.0

Compare Source

Minor Changes
  • feat: typed params prop for page/layout components (#​13999)
Patch Changes
  • fix: treeshake internal storage.get helper (#​13998)

v2.23.0

Compare Source

Minor Changes
  • feat: support svelte.config.ts (#​13935)

    NOTE

    Your runtime has to support importing TypeScript files for svelte.config.ts to work.
    In Node.js, the feature is supported with the --experimental-strip-types flag starting in Node 22.6.0 and supported without a flag starting in Node 23.6.0.

Patch Changes
  • fix: extend vite-plugin-svelte's Config type instead of duplicating it (#​13982)

  • fix: regression with rolldown-vite not bundling a single JS file for single and inline apps (#​13941)

v2.22.5

Compare Source

Patch Changes
  • fix: re-add @sveltejs/kit to optimizeDeps.exclude (#​13983)

v2.22.4

Compare Source

Patch Changes
  • fix: force $app/* modules to be bundled (#​13977)

v2.22.3

Compare Source

Patch Changes
  • fix: don't bundle @sveltejs/kit (#​13971)

v2.22.2

Compare Source

Patch Changes
  • fix: use fallback if untrack doesn't exist in svelte package (#​13933)

  • fix: warning for chrome devtools requests now suggests sv instead of vite plugin (#​13905)

v2.22.1

Compare Source

Patch Changes
  • fix: prevent infinite loop when calling pushState/replaceState in $effect (#​13914)

  • chore: use manualChunks to bundle single and inline apps with Rolldown (#​13915)

v2.22.0

Compare Source

Minor Changes
  • feat: add support for Vite 7 and Rolldown. See https://vite.dev/guide/rolldown.html#how-to-try-rolldown for details about how to try experimental Rolldown support. You will also need vite-plugin-svelte@^6.0.0-next.0 and vite@^7.0.0-beta.0. Compilation should be faster using Rolldown, but with larger bundle sizes until additional tree-shaking is implemented in Rolldown. See #​13738 for ongoing work. (#​13747)

v2.21.5

Compare Source

Patch Changes
  • fix: correctly set the sequential focus navigation point when using hash routing (#​13884)

  • fix: regression when resetting focus and the URL hash contains selector combinators or separators (#​13884)

v2.21.4

Compare Source

Patch Changes
  • fix: correctly access transport decoders on the client when building for a single or inline output app (#​13871)

v2.21.3

Compare Source

Patch Changes
  • fix: correctly invalidate static analysis cache of child nodes when modifying a universal +layout file during dev (#​13793)

  • fix: correctly set sequential focus navigation starting point after navigation (#​10856)

  • fix: suppress console spam for chrome devtools requests (#​13830)

  • fix: avoid externalising packages that depend on @sveltejs/kit so that libraries can also use redirect and error helpers (#​13843)

  • fix: correctly run deserialize on the server (#​13686)

  • fix: correctly inline stylesheets of components dynamically imported in a universal load function if they are below the configured inlineStyleThreshold (#​13723)

v2.21.2

Compare Source

Patch Changes
  • fix: omit stack when logging 404 errors (#​13848)

v2.21.1

Compare Source

Patch Changes
  • chore: clarify which functions handleFetch affects (#​13788)

  • fix: ensure $env and $app/environment are correctly set while analysing server nodes (#​13790)

v2.21.0

Compare Source

Minor Changes
  • feat: allow running client-side code at the top-level of universal pages/layouts when SSR is disabled and page options are only boolean or string literals (#​13684)
Patch Changes
  • chore: remove import-meta-resolve dependency (#​13629)

  • fix: remove component code from server nodes that are never used for SSR (#​13684)

huntabyte/bits-ui (bits-ui)

v1.8.0

Compare Source

Minor Changes
  • feat(Slider): thumbPositioning for more granular control of thumb positioning (#​1470)
Patch Changes
  • fix(NavigationMenu): moving from submenu trigger to menu item in the same menu should close the submenu (#​1489)

  • feat(NavigationMenu): openOnHover prop to control whether menu items open on hover or not (#​1491)

  • fix(NavigationMenu): issues with non-viewport transitions (#​1489)

v1.7.0

Compare Source

Minor Changes
  • feat(DropdownMenu): new DropdownMenu.CheckboxGroup component (#​1486)

  • feat(ContextMenu): new ContextMenu.CheckboxGroup component (#​1486)

  • feat(Menubar): new Menubar.CheckboxGroup component (#​1486)

Patch Changes
  • fix(Select): ensure scroll buttons render on subsequent mounts (#​1484)

  • fix(Combobox): ensure scroll buttons render on subsequent mounts (#​1484)

v1.6.1

Compare Source

Patch Changes
  • fix(Tooltip): ensure only one tooltip within a Provider can be open at a time (#​1481)

  • fix(Command): replace encodeURIComponent with css.escape for attribute values (#​1482)

v1.6.0

Compare Source

Minor Changes
  • feat(Slider): expose thumb active state (#​1471)
Patch Changes
  • fix(DateRangeField): ensure prepopulated value takes priority over placeholder for validation (#​1479)

  • fix(NavigationMenu): do not close Sub content when clicking the trigger (#​1473)

  • fix(NavigationMenu): render Content without Viewport (#​1474)

  • fix(DateField): ensure prepopulated value takes priority over placeholder for validation (#​1479)

v1.5.3

Compare Source

Patch Changes
  • chore: remove internal uses of parameter properties (#​1466)

v1.5.2

Compare Source

Patch Changes
  • fix(RangeCalendar): ensure weekStartsOn is absolute and fallback to locale if not provided (#​1462)

  • fix(DateRangePicker): use current field to determine max days in month (#​1460)

  • fix(DateRangePicker): ensure weekStartsOn is absolute and fallback to locale if not provided (#​1462)

  • fix(DatePicker): ensure weekStartsOn is absolute and fallback to locale if not provided (#​1462)

  • fix(Calendar): ensure weekStartsOn is absolute and fallback to locale if not provided (#​1462)

  • fix(DateRangeField): use current field to determine max days in month (#​1460)

v1.5.1

Compare Source

Patch Changes
  • fix(NavigationMenu): allow roving focus to link items (#​1457)

v1.5.0

Compare Source

Minor Changes
  • feat(Menu): add onSelect for SubTrigger (#​1454)
Patch Changes
  • fix(ScrollArea): ensure thumb properly restores previous position (#​1455)

  • fix(DatePicker): export Portal parts (#​1451)

  • fix(Menu): remove unused closeOnSelect prop from SubTrigger components (#​1453)

v1.4.8

Compare Source

Patch Changes
  • fix(Checkbox): ensure Checkbox.Group value setter is called (#​1440)

v1.4.7

Compare Source

Patch Changes
  • fix(Multiple): ensure preventOverflowTextSelection prop is applied (#​1435)
lucide-icons/lucide (lucide-svelte)

v0.525.0: Version 0.525.0

Compare Source

What's Changed

New Contributors

Full Changelog: lucide-icons/lucide@0.524.0...0.525.0

v0.524.0: Version 0.524.0

Compare Source

What's Changed

Full Changelog: lucide-icons/lucide@0.523.0...0.524.0

v0.523.0: Version 0.523.0

Compare Source

What's Changed

Full Changelog: lucide-icons/lucide@0.522.0...0.523.0

v0.522.0: Version 0.522.0

Compare Source

What's Changed

Full Changelog: lucide-icons/lucide@0.521.0...0.522.0

v0.521.0: Version 0.521.0

Compare Source

What's Changed
New Contributors

Full Changelog: lucide-icons/lucide@0.520.0...0.521.0

v0.520.0: Version 0.520.0

Compare Source

What's Changed

New Contributors

Full Changelog: lucide-icons/lucide@0.519.0...0.520.0

v0.519.0: Version 0.519.0

Compare Source

What's Changed

Full Changelog: lucide-icons/lucide@0.518.0...0.519.0

v0.518.0: Version 0.518.0

Compare Source

What's Changed

New Contributors

Full Changelog: lucide-icons/lucide@0.517.0...0.518.0

v0.517.0: Version 0.517.0

Compare Source

What's Changed

Full Changelog: lucide-icons/lucide@0.516.0...0.517.0

v0.516.0: Version 0.516.0

Compare Source

What's Changed

New Contributors

Full Changelog: lucide-icons/lucide@0.515.0...0.516.0

v0.515.0: Version 0.515.0

Compare Source

What's Changed

New Contributors

Full Changelog: lucide-icons/lucide@0.514.0...0.515.0

v0.514.0: Version 0.514.0

Compare Source

What's Changed

New Contributors

Full Changelog: lucide-icons/lucide@0.513.0...0.514.0

v0.513.0: Version 0.513.0

Compare Source

What's Changed

Full Changelog: lucide-icons/lucide@0.512.0...0.513.0

v0.512.0: Version 0.512.0

Compare Source

What's Changed

New Contributors

Full Changelog: lucide-icons/lucide@0.511.0...0.512.0

v0.511.0: Version 0.511.0

Compare Source

What's Changed

New Contributors

Full Changelog: lucide-icons/lucide@0.510.0...0.511.0

v0.510.0: Version 0.510.0

Compare Source

What's Changed

New Contributors

Full Changelog: lucide-icons/lucide@0.509.0...0.510.0

v0.509.0: Version 0.509.0

Compare Source

What's Changed

New Contributors

Full Changelog: lucide-icons/lucide@0.508.0...0.509.0

v0.508.0: Version 0.508.0

Compare Source

What's Changed

Full Changelog: lucide-icons/lucide@0.507.0...0.508.0

nodejs/node (node)

v22.17.1

Compare Source

v22.17.0: 2025-06-24, Version 22.17.0 'Jod' (LTS), @​aduh95

Compare Source

Notable Changes
⚠️ Deprecations
Instantiating node:http classes without new

Constructing classes like IncomingMessage or ServerResponse without the new
keyword is now discouraged. This clarifies API expectations and aligns with standard
JavaScript behavior. It ma


Configuration

📅 Schedule: Branch creation - Between 12:00 AM and 03:59 AM, only on Monday ( * 0-3 * * 1 ) (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

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.

Copy link

netlify bot commented May 12, 2025

Deploy Preview for mermaidjs ready!

Name Link
🔨 Latest commit 2565450
🔍 Latest deploy log https://app.netlify.com/projects/mermaidjs/deploys/687a837112f43e0008c72a9a
😎 Deploy Preview https://deploy-preview-1719--mermaidjs.netlify.app
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.

To edit notification comments on pull requests, go to your Netlify project configuration.

@renovate renovate bot force-pushed the renovate/all-minor-patch branch 11 times, most recently from 9c56871 to 6d3f6bd Compare May 19, 2025 07:13
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 11 times, most recently from a2e7a4a to 090d464 Compare May 25, 2025 19:12
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 5 times, most recently from 008fa32 to 72cc47a Compare May 29, 2025 05:34
@renovate renovate bot changed the title chore(deps): update all non-major dependencies (minor) fix(deps): update all non-major dependencies (minor) May 29, 2025
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 72cc47a to 2507d43 Compare May 29, 2025 13:51
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 7 times, most recently from 73abc0b to ba3f1e6 Compare July 3, 2025 17:12
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 12 times, most recently from 39798aa to 866e8da Compare July 11, 2025 18:42
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 9 times, most recently from 11e7476 to 0e54c24 Compare July 17, 2025 21:03
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 0e54c24 to 2565450 Compare July 18, 2025 17:25
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.

0 participants