Skip to content

Maintenance: Update Patch & Minor#104

Open
dle-renovate-bot[bot] wants to merge 1 commit into
masterfrom
renovate/minor-patch
Open

Maintenance: Update Patch & Minor#104
dle-renovate-bot[bot] wants to merge 1 commit into
masterfrom
renovate/minor-patch

Conversation

@dle-renovate-bot
Copy link
Copy Markdown

@dle-renovate-bot dle-renovate-bot Bot commented Jan 16, 2025

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Change Age Confidence
@fontsource/lato (source) 5.0.205.2.7 age confidence
@fontsource/merriweather (source) ^5.0.12^5.2.11 age confidence
@neoconfetti/svelte (source) ^2.2.1^2.2.2 age confidence
@playwright/test (source) ^1.43.0^1.59.1 age confidence
@skeletonlabs/skeleton (source) 1.8.01.12.0 age confidence
@sveltejs/adapter-auto (source) ^3.2.0^3.3.1 age confidence
@sveltejs/adapter-cloudflare (source) ^4.2.1^4.9.0 age confidence
@sveltejs/adapter-cloudflare-workers (source) ^2.2.1^2.9.0 age confidence
@sveltejs/adapter-node (source) ^5.0.1^5.5.4 age confidence
@sveltejs/adapter-static (source) ^3.0.1^3.0.10 age confidence
@sveltejs/kit (source) 2.53.32.57.0 age confidence
@sveltejs/vite-plugin-svelte (source) ^3.0.2^3.1.2 age confidence
@tailwindcss/forms ^0.5.7^0.5.11 age confidence
@typescript-eslint/eslint-plugin (source) ^7.5.0^7.18.0 age confidence
@typescript-eslint/parser (source) ^7.5.0^7.18.0 age confidence
autoprefixer 10.4.1910.4.27 age confidence
dayjs (source) ^1.11.10^1.11.20 age confidence
dotenv ^16.4.5^16.6.1 age confidence
eslint (source) ^8.57.0^8.57.1 age confidence
eslint-config-prettier ^9.1.0^9.1.2 age confidence
eslint-plugin-simple-import-sort ^12.0.0^12.1.1 age confidence
eslint-plugin-svelte (source) ^2.35.1^2.46.1 age confidence
eslint-plugin-unused-imports ^3.1.0^3.2.0 age confidence
highlight.js (source) ^11.9.0^11.11.1 age confidence
lint-staged 15.2.215.5.2 age confidence
octokit ^3.2.0^3.2.2 age confidence
postcss (source) 8.4.388.5.9 age confidence
postcss-load-config 5.0.35.1.0 age confidence
prettier (source) 3.2.53.8.1 age confidence
prettier-plugin-svelte 3.2.23.5.1 age confidence
rehype 13.0.113.0.2 age confidence
rehype-stringify ^9.0.3^9.0.4 age confidence
sass 1.74.11.99.0 age confidence
svelte (source) 4.2.124.2.20 age confidence
svelte-check 3.6.93.8.6 age confidence
svelte-highlight (source) ^7.6.0^7.9.0 age confidence
svelte-preprocess 5.1.35.1.4 age confidence
sveltekit-superforms (source) ^1.5.0^1.13.4 age confidence
swiper (source) ^11.1.0^11.2.10 age confidence
tailwindcss (source) ^3.4.3^3.4.19 age confidence
tslib (source) ^2.6.2^2.8.1 age confidence
typescript (source) ^5.4.4^5.9.3 age confidence
vitest (source) ^1.4.0^1.6.1 age confidence
wrangler (source) ^3.48.0^3.114.17 age confidence
zod (source) ^3.22.4^3.25.76 age confidence

Release Notes

fontsource/font-files (@​fontsource/lato)

v5.2.7

Compare Source

v5.2.6

Compare Source

v5.2.5

Compare Source

v5.2.4

Compare Source

v5.2.1

Compare Source

v5.2.0

Compare Source

v5.1.1

Compare Source

v5.1.0

Compare Source

v5.0.23

Compare Source

v5.0.22

Compare Source

v5.0.21

Compare Source

fontsource/font-files (@​fontsource/merriweather)

v5.2.11

Compare Source

v5.2.10

Compare Source

v5.2.9

Compare Source

v5.2.8

Compare Source

v5.2.7

Compare Source

v5.2.6

Compare Source

v5.2.5

Compare Source

v5.2.4

Compare Source

v5.2.1

Compare Source

v5.2.0

Compare Source

v5.1.1

Compare Source

v5.1.0

Compare Source

v5.0.15

Compare Source

v5.0.14

Compare Source

v5.0.13

Compare Source

puruvj/neoconfetti (@​neoconfetti/svelte)

v2.2.2

Compare Source

Patch Changes
  • bbc8ff4: Add svelte peerDependency
microsoft/playwright (@​playwright/test)

v1.59.1

Compare Source

Bug Fixes
  • [Windows] Reverted hiding console window when spawning browser processes, which caused regressions including broken codegen, --ui and show commands (#​39990)

v1.59.0

Compare Source

🎬 Screencast

New page.screencast API provides a unified interface for capturing page content with:

  • Screencast recordings
  • Action annotations
  • Visual overlays
  • Real-time frame capture
  • Agentic video receipts
Demo

Screencast recording — record video with precise start/stop control, as an alternative to the recordVideo option:

await page.screencast.start({ path: 'video.webm' });
// ... perform actions ...
await page.screencast.stop();

Action annotations — enable built-in visual annotations that highlight interacted elements and display action titles during recording:

await page.screencast.showActions({ position: 'top-right' });

screencast.showActions() accepts position ('top-left', 'top', 'top-right', 'bottom-left', 'bottom', 'bottom-right'), duration (ms per annotation), and fontSize (px). Returns a disposable to stop showing actions.

Action annotations can also be enabled in test fixtures via the video option:

// playwright.config.ts
export default defineConfig({
  use: {
    video: {
      mode: 'on',
      show: {
        actions: { position: 'top-left' },
        test: { position: 'top-right' },
      },
    },
  },
});

Visual overlays — add chapter titles and custom HTML overlays on top of the page for richer narration:

await page.screencast.showChapter('Adding TODOs', {
  description: 'Type and press enter for each TODO',
  duration: 1000,
});

await page.screencast.showOverlay('<div style="color: red">Recording</div>');

Real-time frame capture — stream JPEG-encoded frames for custom processing like thumbnails, live previews, AI vision, and more:

await page.screencast.start({
  onFrame: ({ data }) => sendToVisionModel(data),
  size: { width: 800, height: 600 },
});

Agentic video receipts — coding agents can produce video evidence of their work. After completing a task, an agent can record a walkthrough video with rich annotations for human review:

await page.screencast.start({ path: 'receipt.webm' });
await page.screencast.showActions({ position: 'top-right' });

await page.screencast.showChapter('Verifying checkout flow', {
  description: 'Added coupon code support per ticket #&#8203;1234',
});

// Agent performs the verification steps...
await page.locator('#coupon').fill('SAVE20');
await page.locator('#apply-coupon').click();
await expect(page.locator('.discount')).toContainText('20%');

await page.screencast.showChapter('Done', {
  description: 'Coupon applied, discount reflected in total',
});

await page.screencast.stop();

The resulting video serves as a receipt: chapter titles provide context, action annotations highlight each interaction, and the visual walkthrough is faster to review than text logs.

🔗 Interoperability

New browser.bind() API makes a launched browser available for playwright-cli, @playwright/mcp, and other clients to connect to.

Bind a browser — start a browser and bind it so others can connect:

const { endpoint } = await browser.bind('my-session', {
  workspaceDir: '/my/project',
});

Connect from playwright-cli — connect to the running browser from your favorite coding agent.

playwright-cli attach my-session
playwright-cli -s my-session snapshot

Connect from @​playwright/mcp — or point your MCP server to the running browser.

@&#8203;playwright/mcp --endpoint=my-session

Connect from a Playwright client — use API to connect to the browser. Multiple clients at a time are supported!

const browser = await chromium.connect(endpoint);

Pass host and port options to bind over WebSocket instead of a named pipe:

const { endpoint } = await browser.bind('my-session', {
  host: 'localhost',
  port: 0,
});
// endpoint is a ws:// URL

Call browser.unbind() to stop accepting new connections.

📊 Observability

Run playwright-cli show to open the Dashboard that lists all the bound browsers, their statuses, and allows interacting with them:

  • See what your agent is doing on the background browsers
  • Click into the sessions for manual interventions
  • Open DevTools to inspect pages from the background browsers.
Demo - `playwright-cli` binds all of its browsers automatically, so you can see what your agents are doing. - Pass `PLAYWRIGHT_DASHBOARD=1` env variable to see all `@playwright/test` browsers in the dashboard.

🐛 CLI debugger for agents

Coding agents can now run npx playwright test --debug=cli to attach and debug tests over playwright-cli — perfect for automatically fixing tests in agentic workflows:

$ npx playwright test --debug=cli

### Debugging Instructions
- Run "playwright-cli attach tw-87b59e" to attach to this test

$ playwright-cli attach tw-87b59e

### Session `tw-87b59e` created, attached to `tw-87b59e`.
Run commands with: playwright-cli --session=tw-87b59e <command>

### Paused
- Navigate to "/" at output/tests/example.spec.ts:4

$ playwright-cli --session tw-87b59e step-over

### Page
- Page URL: https://playwright.dev/
- Page Title: Fast and reliable end-to-end testing for modern web apps | Playwright

### Paused
- Expect "toHaveTitle" at output/tests/example.spec.ts:7

📋 CLI trace analysis for agents

Coding agents can run npx playwright trace to explore Playwright Trace and understand failing or flaky tests from the command line:

$ npx playwright trace open test-results/example-has-title-chromium/trace.zip
  Title:        example.spec.ts:3 › has title

$ npx playwright trace actions --grep="expect"
     # Time       Action                                                  Duration
  ──── ─────────  ─────────────────────────────────────────────────────── ────────
    9. 0:00.859  Expect "toHaveTitle"                                        5.1s  ✗

$ npx playwright trace action 9
  Expect "toHaveTitle"
  Error: expect(page).toHaveTitle(expected) failed
    Expected pattern: /Wrong Title/
    Received string:  "Fast and reliable end-to-end testing for modern web apps | Playwright"
    Timeout: 5000ms
  Snapshots
    available: before, after
    usage:     npx playwright trace snapshot 9 --name <before|after>

$ npx playwright trace snapshot 9 --name after

### Page
- Page Title: Fast and reliable end-to-end testing for modern web apps | Playwright

$ npx playwright trace close

♻️ await using

Many APIs now return async disposables, enabling the await using syntax for automatic cleanup:

await using page = await context.newPage();
{
  await using route = await page.route('**/*', route => route.continue());
  await using script = await page.addInitScript('console.log("init script here")');
  await page.goto('https://playwright.dev');
  // do something
}
// route and init script have been removed at this point

🔍 Snapshots and Locators

New APIs

Screencast
Storage, Console and Errors
Miscellaneous

🛠️ Other improvements

  • UI Mode has an option to only show tests affected by source changes.
  • UI Mode and Trace Viewer have improved action filtering.
  • HTML Reporter shows the list of runs from the same worker.
  • HTML Reporter allows filtering test steps for quick search.
  • New trace mode 'retain-on-failure-and-retries' records a trace for each test run and retains all traces when an attempt fails — great for comparing a passing trace with a failing one from a flaky test.

Known Issues ⚠️⚠️

  • navigator.platform emulation can cause Ctrl or Meta dispatching errors (#​40009). Pass PLAYWRIGHT_NO_UA_PLATFORM = '1' environment variable while we are issuing a patch release. Let us know in the issue how it affected you.

Breaking Changes ⚠️

  • Removed macOS 14 support for WebKit. We recommend upgrading your macOS version, or keeping an older Playwright version.
  • Removed @playwright/experimental-ct-svelte package.

Browser Versions

  • Chromium 147.0.7727.15
  • Mozilla Firefox 148.0.2
  • WebKit 26.4

This version was also tested against the following stable channels:

  • Google Chrome 146
  • Microsoft Edge 146

v1.58.2

Compare Source

Highlights

#​39121 fix(trace viewer): make paths via stdin work
#​39129 fix: do not force swiftshader on chromium mac

Browser Versions

  • Chromium 145.0.7632.6
  • Mozilla Firefox 146.0.1
  • WebKit 26.0

v1.58.1

Compare Source

Highlights

#​39036 fix(msedge): fix local network permissions
#​39037 chore: update cft download location
#​38995 chore(webkit): disable frame sessions on fronzen builds

Browser Versions

  • Chromium 145.0.7632.6
  • Mozilla Firefox 146.0.1
  • WebKit 26.0

v1.58.0

Compare Source

📣 Playwright CLI+SKILLs 📣

We are adding a new token-efficient CLI mode of operation to Playwright with the skills located at playwright-cli. This brings the long-awaited official SKILL-focused CLI mode to our story and makes it more coding agent-friendly.

It is the first snapshot with the essential command set (which is already larger than the original MCP!), but we expect it to grow rapidly. Unlike the token use, that one we expect to go down since snapshots are no longer forced into the LLM!

Timeline

If you're using merged reports, the HTML report Speedboard tab now shows the Timeline:

Timeline chart in the HTML report

UI Mode and Trace Viewer Improvements

  • New 'system' theme option follows your OS dark/light mode preference
  • Search functionality (Cmd/Ctrl+F) is now available in code editors
  • Network details panel has been reorganized for better usability
  • JSON responses are now automatically formatted for readability

Thanks to @​cpAdm for contributing these improvements!

Miscellaneous

browserType.connectOverCDP() now accepts an isLocal option. When set to true, it tells Playwright that it runs on the same host as the CDP server, enabling file system optimizations.

Breaking Changes ⚠️

  • Removed _react and _vue selectors. See locators guide for alternatives.
  • Removed :light selector engine suffix. Use standard CSS selectors instead.
  • Option devtools from browserType.launch() has been removed. Use args: ['--auto-open-devtools-for-tabs'] instead.
  • Removed macOS 13 support for WebKit. We recommend to upgrade your macOS version, or keep using an older Playwright version.

Browser Versions

  • Chromium 145.0.7632.6
  • Mozilla Firefox 146.0.1
  • WebKit 26.0

This version was also tested against the following stable channels:

  • Google Chrome 144
  • Microsoft Edge 144

v1.57.0

Compare Source

Speedboard

In HTML reporter, there's a new tab we call "Speedboard":

speedboard

It shows you all your executed tests sorted by slowness,
and can help you understand where your test suite is taking longer than expected.
Take a look at yours - maybe you'll find some tests that are spending a longer time waiting than they should!

Chrome for Testing

Starting with this release, Playwright switches from Chromium, to using Chrome for Testing builds. Both headed and headless browsers are subject to this. Your tests should still be passing after upgrading to Playwright 1.57.

We're expecting no functional changes to come from this switch. The biggest change is the new icon and title in your toolbar.

new and old logo

If you still see an unexpected behaviour change, please file an issue.

On Arm64 Linux, Playwright continues to use Chromium.

Waiting for webserver output

testConfig.webServer added a wait field. Pass a regular expression, and Playwright will wait until the webserver logs match it.

import { defineConfig } from '@&#8203;playwright/test';

export default defineConfig({
  webServer: {
    command: 'npm run start',
    wait: {
      stdout: '/Listening on port (?<my_server_port>\\d+)/'
    },
  },
});

If you include a named capture group into the expression, then Playwright will provide the capture group contents via environment variables:

import { test, expect } from '@&#8203;playwright/test';

test.use({ baseUrl: `http://localhost:${process.env.MY_SERVER_PORT ?? 3000}` });

test('homepage', async ({ page }) => {
  await page.goto('/');
});

This is not just useful for capturing varying ports of dev servers. You can also use it to wait for readiness of a service that doesn't expose an HTTP readiness check, but instead prints a readiness message to stdout or stderr.

Breaking Change

After 3 years of being deprecated, we removed Page#accessibility from our API. Please use other libraries such as Axe if you need to test page accessibility. See our Node.js guide for integration with Axe.

New APIs

  • New property testConfig.tag adds a tag to all tests in this run. This is useful when using merge-reports.
  • worker.on('console') event is emitted when JavaScript within the worker calls one of console API methods, e.g. console.log or console.dir. worker.waitForEvent() can be used to wait for it.
  • locator.description() returns locator description previously set with locator.describe(), and Locator.toString() now uses the description when available.
  • New option steps in locator.click() and locator.dragTo() that configures the number of mousemove events emitted while moving the mouse pointer to the target element.
  • Network requests issued by Service Workers are now reported and can be routed through the BrowserContext, only in Chromium. You can opt out using the PLAYWRIGHT_DISABLE_SERVICE_WORKER_NETWORK environment variable.
  • Console messages from Service Workers are dispatched through worker.on('console'). You can opt out of this using the PLAYWRIGHT_DISABLE_SERVICE_WORKER_CONSOLE environment variable.

Browser Versions

  • Chromium 143.0.7499.4
  • Mozilla Firefox 144.0.2
  • WebKit 26.0

v1.56.1

Compare Source

Highlights

#​37871 chore: allow local-network-access permission in chromium
#​37891 fix(agents): remove workspaceFolder ref from vscode mcp
#​37759 chore: rename agents to test agents
#​37757 chore(mcp): fallback to cwd when resolving test config

Browser Versions

  • Chromium 141.0.7390.37
  • Mozilla Firefox 142.0.1
  • WebKit 26.0

v1.56.0

Compare Source

Playwright Agents

Introducing Playwright Agents, three custom agent definitions designed to guide LLMs through the core process of building a Playwright test:

  • 🎭 planner explores the app and produces a Markdown test plan
  • 🎭 generator transforms the Markdown plan into the Playwright Test files
  • 🎭 healer executes the test suite and automatically repairs failing tests

Run npx playwright init-agents with your client of choice to generate the latest agent definitions:

# Generate agent files for each agentic loop
# Visual Studio Code
npx playwright init-agents --loop=vscode

# Claude Code
npx playwright init-agents --loop=claude

# opencode
npx playwright init-agents --loop=opencode

[!NOTE]
VS Code v1.105 (currently on the VS Code Insiders channel) is needed for the agentic experience in VS Code. It will become stable shortly, we are a bit ahead of times with this functionality!

Learn more about Playwright Agents

New APIs

UI Mode and HTML Reporter

  • Added option to 'html' reporter to disable the "Copy prompt" button
  • Added option to 'html' reporter and UI Mode to merge files, collapsing test and describe blocks into a single unified list
  • Added option to UI Mode mirroring the --update-snapshots options
  • Added option to UI Mode to run only a single worker at a time

Breaking Changes

Miscellaneous

  • Aria snapshots render and compare input placeholder
  • Added environment variable PLAYWRIGHT_TEST to Playwright worker processes to allow discriminating on testing status

Browser Versions

  • Chromium 141.0.7390.37
  • Mozilla Firefox 142.0.1
  • WebKit 26.0

v1.55.1

Compare Source

Highlights

#​37479 - [Bug]: Upgrade Chromium to 140.0.7339.186.
#​37147 - [Regression]: Internal error: step id not found.
#​37146 - [Regression]: HTML reporter displays a broken chip link when there are no projects.
#​37137 - Revert "fix(a11y): track inert elements as hidden".
#​37532 - chore: do not use -k option

Browser Versions

  • Chromium 140.0.7339.186
  • Mozilla Firefox 141.0
  • WebKit 26.0

This version was also tested against the following stable channels:

  • Google Chrome 139
  • Microsoft Edge 139

v1.55.0

Compare Source

New APIs

  • New Property testStepInfo.titlePath Returns the full title path starting from the test file, including test and step titles.

Codegen

  • Automatic toBeVisible() assertions: Codegen can now generate automatic toBeVisible() assertions for common UI interactions. This feature can be enabled in the Codegen settings UI.

Breaking Changes

  • ⚠️ Dropped support for Chromium extension manifest v2.

Miscellaneous

  • Added support for Debian 13 "Trixie".

Browser Versions

  • Chromium 140.0.7339.16
  • Mozilla Firefox 141.0
  • WebKit 26.0

This version was also tested against the following stable channels:

  • Google Chrome 139
  • Microsoft Edge 139

v1.54.2

Compare Source

Highlights

#​36714 - [Regression]: Codegen is not able to launch in Administrator Terminal on Windows (ProtocolError: Protocol error)
#​36828 - [Regression]: Playwright Codegen keeps spamming with selected option
#​36810 - [Regression]: Starting Codegen with target language doesn't work anymore

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

Compare Source

Highlights

#​36650 - [Regression]: 1.54.0 breaks downloading browsers when an HTTP(S) proxy is used

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

[Compare Source](https://redirect.github.com/microsoft/playwright/compare/v1.53


Configuration

📅 Schedule: (UTC)

  • Branch creation
    • At any time (no schedule defined)
  • 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 has been generated by Renovate Bot.

@dle-renovate-bot dle-renovate-bot Bot enabled auto-merge (squash) January 16, 2025 14:39
@github-actions github-actions Bot temporarily deployed to dle-dev (Preview) January 16, 2025 14:40 Inactive
@dle-renovate-bot dle-renovate-bot Bot force-pushed the renovate/minor-patch branch from 816e95d to 9eedf05 Compare March 25, 2026 12:53
@changeset-bot
Copy link
Copy Markdown

changeset-bot Bot commented Mar 25, 2026

⚠️ No Changeset found

Latest commit: 6acb9e2

Merging this PR will not cause a version bump for any packages. If these changes should not result in a new version, you're good to go. If these changes should result in a version bump, you need to add a changeset.

Click here to learn what changesets are, and how to add one.

Click here if you're a maintainer who wants to add a changeset to this PR

@dle-renovate-bot dle-renovate-bot Bot requested a review from polaroidkidd March 25, 2026 12:53
@github-actions github-actions Bot temporarily deployed to dle-dev (Preview) March 25, 2026 12:53 Inactive
@dle-renovate-bot dle-renovate-bot Bot force-pushed the renovate/minor-patch branch 6 times, most recently from 65ec9c6 to e7c16d4 Compare March 25, 2026 18:23
@github-actions github-actions Bot temporarily deployed to dle-dev (Preview) March 25, 2026 18:24 Inactive
@dle-renovate-bot dle-renovate-bot Bot force-pushed the renovate/minor-patch branch from e7c16d4 to cc7bd6e Compare March 27, 2026 01:36
@github-actions github-actions Bot temporarily deployed to dle-dev (Preview) March 27, 2026 01:37 Inactive
@dle-renovate-bot dle-renovate-bot Bot force-pushed the renovate/minor-patch branch from cc7bd6e to 5f699d6 Compare April 4, 2026 01:37
@github-actions github-actions Bot temporarily deployed to dle-dev (Preview) April 4, 2026 01:38 Inactive
@dle-renovate-bot dle-renovate-bot Bot force-pushed the renovate/minor-patch branch from 5f699d6 to 300d616 Compare April 4, 2026 18:10
@github-actions github-actions Bot temporarily deployed to dle-dev (Preview) April 4, 2026 18:11 Inactive
@dle-renovate-bot dle-renovate-bot Bot force-pushed the renovate/minor-patch branch from 300d616 to ba02087 Compare April 6, 2026 00:12
@github-actions github-actions Bot temporarily deployed to dle-dev (Preview) April 6, 2026 00:13 Inactive
@dle-renovate-bot dle-renovate-bot Bot force-pushed the renovate/minor-patch branch from ba02087 to 20a134a Compare April 6, 2026 21:16
@github-actions github-actions Bot temporarily deployed to dle-dev (Preview) April 6, 2026 21:17 Inactive
@dle-renovate-bot dle-renovate-bot Bot force-pushed the renovate/minor-patch branch from 20a134a to 967e138 Compare April 6, 2026 22:13
@github-actions github-actions Bot temporarily deployed to dle-dev (Preview) April 6, 2026 22:14 Inactive
@dle-renovate-bot dle-renovate-bot Bot force-pushed the renovate/minor-patch branch from 967e138 to 038ec0f Compare April 10, 2026 20:13
@github-actions github-actions Bot temporarily deployed to dle-dev (Preview) April 10, 2026 20:14 Inactive
@dle-renovate-bot dle-renovate-bot Bot force-pushed the renovate/minor-patch branch from 038ec0f to b97fd3a Compare April 10, 2026 23:14
@github-actions github-actions Bot temporarily deployed to dle-dev (Preview) April 10, 2026 23:15 Inactive
| datasource | package                              | from     | to       |
| ---------- | ------------------------------------ | -------- | -------- |
| npm        | @fontsource/lato                     | 5.0.20   | 5.2.7    |
| npm        | @fontsource/merriweather             | 5.0.12   | 5.2.11   |
| npm        | @neoconfetti/svelte                  | 2.2.1    | 2.2.2    |
| npm        | @playwright/test                     | 1.43.0   | 1.59.1   |
| npm        | @skeletonlabs/skeleton               | 1.8.0    | 1.12.0   |
| npm        | @sveltejs/adapter-auto               | 3.2.0    | 3.3.1    |
| npm        | @sveltejs/adapter-cloudflare         | 4.2.1    | 4.9.0    |
| npm        | @sveltejs/adapter-cloudflare-workers | 2.2.1    | 2.9.0    |
| npm        | @sveltejs/adapter-node               | 5.0.1    | 5.5.4    |
| npm        | @sveltejs/adapter-static             | 3.0.1    | 3.0.10   |
| npm        | @sveltejs/kit                        | 2.53.3   | 2.57.0   |
| npm        | @sveltejs/vite-plugin-svelte         | 3.0.2    | 3.1.2    |
| npm        | @tailwindcss/forms                   | 0.5.7    | 0.5.11   |
| npm        | @typescript-eslint/eslint-plugin     | 7.5.0    | 7.18.0   |
| npm        | @typescript-eslint/parser            | 7.5.0    | 7.18.0   |
| npm        | autoprefixer                         | 10.4.19  | 10.4.27  |
| npm        | dayjs                                | 1.11.10  | 1.11.20  |
| npm        | dotenv                               | 16.4.5   | 16.6.1   |
| npm        | eslint                               | 8.57.0   | 8.57.1   |
| npm        | eslint-config-prettier               | 9.1.0    | 9.1.2    |
| npm        | eslint-plugin-simple-import-sort     | 12.0.0   | 12.1.1   |
| npm        | eslint-plugin-svelte                 | 2.35.1   | 2.46.1   |
| npm        | eslint-plugin-unused-imports         | 3.1.0    | 3.2.0    |
| npm        | highlight.js                         | 11.9.0   | 11.11.1  |
| npm        | lint-staged                          | 15.2.2   | 15.5.2   |
| npm        | octokit                              | 3.2.0    | 3.2.2    |
| npm        | postcss                              | 8.4.38   | 8.5.9    |
| npm        | postcss-load-config                  | 5.0.3    | 5.1.0    |
| npm        | prettier                             | 3.2.5    | 3.8.1    |
| npm        | prettier-plugin-svelte               | 3.2.2    | 3.5.1    |
| npm        | rehype                               | 13.0.1   | 13.0.2   |
| npm        | rehype-stringify                     | 9.0.4    | 9.0.4    |
| npm        | sass                                 | 1.74.1   | 1.99.0   |
| npm        | svelte                               | 4.2.12   | 4.2.20   |
| npm        | svelte-check                         | 3.6.9    | 3.8.6    |
| npm        | svelte-highlight                     | 7.6.0    | 7.9.0    |
| npm        | svelte-preprocess                    | 5.1.3    | 5.1.4    |
| npm        | sveltekit-superforms                 | 1.13.4   | 1.13.4   |
| npm        | swiper                               | 11.1.0   | 11.2.10  |
| npm        | tailwindcss                          | 3.4.3    | 3.4.19   |
| npm        | tslib                                | 2.6.2    | 2.8.1    |
| npm        | typescript                           | 5.4.4    | 5.9.3    |
| npm        | vitest                               | 1.6.1    | 1.6.1    |
| npm        | wrangler                             | 3.114.17 | 3.114.17 |
| npm        | zod                                  | 3.22.4   | 3.25.76  |
@dle-renovate-bot dle-renovate-bot Bot force-pushed the renovate/minor-patch branch from b97fd3a to 6acb9e2 Compare April 11, 2026 01:36
@github-actions github-actions Bot temporarily deployed to dle-dev (Preview) April 11, 2026 01:37 Inactive
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