fix(deps): update npm (non-major) #38

Merged
claude-bot merged 1 commit from renovate/npm-(non-major) into main 2026-08-31 17:36:21 +00:00
Contributor

This PR contains the following updates:

Package Change Age Confidence
@playwright/test (source) 1.60.01.62.1 age confidence
@tanstack/react-query (source) 5.100.105.102.8 age confidence
@testing-library/react 16.3.216.3.3 age confidence
@testing-library/user-event 14.6.114.6.6 age confidence
@types/node (source) 22.19.1922.20.1 age confidence
@types/react (source) 18.3.2818.3.31 age confidence
autoprefixer 10.5.010.5.4 age confidence
lucide-react (source) ^0.441.0^0.577.0 age confidence
postcss (source) 8.5.148.5.26 age confidence
react-router-dom (source) 6.30.46.30.6 age confidence
vitest (source) 4.1.74.1.11 age confidence

Release Notes

microsoft/playwright (@​playwright/test)

v1.62.1

Compare Source

Bug Fixes
  • #​41989 [Regression]: tsconfig "extends" bare specifier isn't resolved via node_modules walk-up like tsc (fatal since 1.62)
  • #​41998 [Regression]: directory-form tsconfig project references ("path": "../pkg") fail to resolve (fatal since 1.62)
  • #​41985 Accessibility snapshot drops button name when text is nested inside spans with aria-hidden SVG
  • #​42000 [Regression]: page.evaluate() arg of a branded primitive type (string & { brand }) no longer type-checks since 1.62
  • #​42013 [BUG]Image-type actionable elements are not presented in the snapshot.

v1.62.0

Compare Source

🧱 New component testing model

Component testing moves to a stories and galleries model.
A story wraps your component in one specific scenario — hard-coded props, mock data, providers — and a gallery page that you serve renders stories on demand.
The new fixtures.mount() fixture navigates to the gallery, mounts a story by id, and returns a Locator scoped to the story's root element:

test('click should expand', async ({ mount }) => {
  const component = await mount('components/Expandable/Stateful');
  await component.getByRole('button').click();
  await expect(component.getByTestId('expanded')).toHaveValue('true');
});

Pass a story type as a template argument to type-check its props, and use update(props) / unmount() on the returned locator to re-render or tear down within a test.

🛑 Cancel operations with AbortSignal

Most operations and web-first assertions now accept a signal option that takes an AbortSignal, letting you cancel long-running actions, navigations, waits, and assertions:

const controller = new AbortController();
setTimeout(() => controller.abort(), 1000);

await page.getByRole('button', { name: 'Submit' }).click({ signal: controller.signal });
await expect(page.getByText('Done')).toBeVisible({ signal: controller.signal });

Providing a signal does not disable the default timeout; pass timeout: 0 to disable it.

🖼️ WebP screenshots

expect(page).toHaveScreenshot() and expect(locator).toHaveScreenshot() can now store snapshots in the WebP format — just give the snapshot a .webp name:

// Visual comparisons store the golden snapshot as lossless WebP.
await expect(page).toHaveScreenshot('homepage.webp');

// Standalone screenshots can trade quality for size with lossy WebP.
await page.screenshot({ path: 'homepage.webp', quality: 50 });

page.screenshot() and [locator.screenshot() (https://playwright.dev/docs/api/class-locator#locator-screenshot) also accept webp as a type, where quality 100 (the default) is lossless and lower values use lossy compression.

🧩 Custom test filtering with Reporter.preprocess()

New reporter.preprocess() hook runs after the configuration is resolved and before reporter.onBegin(), letting a reporter mark individual tests as skipped, excluded, fixed, or failing through a TestRun object:

class MyReporter {
  async preprocess({ config, suite, testRun }) {
    for (const test of suite.allTests()) {
      if (shouldSkip(test))
        testRun.skip(test);
    }
  }
}

🔁 Isolated retries

New testConfig.retryStrategy controls when failed tests are retried.
The default 'immediate' retries as soon as a worker is free; 'isolated' runs all retries at the end, one by one in a single worker, to minimize interference with the rest of the suite:

// playwright.config.ts
export default defineConfig({
  retries: 2,
  retryStrategy: 'isolated',
});

New APIs

Browser and Context
  • New option credentials includes the context's virtual WebAuthn Credentials (passkeys) in the storage state, so they can be persisted and re-seeded into later contexts.
Actions
  • New scroll option ("auto" | "none") on actions to opt out of Playwright's automatic scroll-into-view.
Network
Evaluation
Command line & MCP
Reporters
  • The HTML report's Merge files grouping — previously only a UI toggle — can now be enabled from the config with the new mergeFiles reporter option:
// playwright.config.ts
export default defineConfig({
  reporter: [['html', { mergeFiles: true }]],
});

Announcements

  • ⚠️ Debian 11 is not supported anymore.

Browser Versions

  • Chromium 151.0.7922.34
  • Mozilla Firefox 153.0
  • WebKit 26.5

This version was also tested against the following stable channels:

  • Google Chrome 151
  • Microsoft Edge 151

v1.61.1

Compare Source

Bug Fixes
  • #​41365 [Bug]: Expect.Extend matcher with same name as default matcher in same expect instance overrides default matchers implementation to custom matcher
  • #​41351 [Bug]: Playwright UI mode: apiRequestContext._wrapApiCall reports unexpected number of bytes (same test passes in headed mode)
  • #​41360 [Bug]: Trace viewer: message times in websockets are downscaled by 1000
  • #​41311 [Bug]: [Regression]: Sync loader throws "context.conditions?.includes is not a function" on Node 22.15
  • #​41371 [Regression]: Sync ESM loader (registerHooks) fails to resolve extensionless .ts subpath imports across pnpm workspace symlinks

v1.61.0

Compare Source

🔑 WebAuthn passkeys

New Credentials virtual authenticator, available via browserContext.credentials, lets tests register passkeys and answer navigator.credentials.create() / navigator.credentials.get() ceremonies in the page — no real hardware key required, works in all browsers:

const context = await browser.newContext();

// Seed a passkey your backend provisioned for a test user.
await context.credentials.create('example.com', {
  id: credentialId,
  userHandle,
  privateKey,
  publicKey,
});
await context.credentials.install();

const page = await context.newPage();
await page.goto('https://example.com/login');
// The page's navigator.credentials.get() is answered with the seeded passkey.

You can also let the app register a passkey once in a setup test, read it back with credentials.get(), and seed it into later tests — see Credentials for details.

🗃️ Web Storage

New WebStorage API, available via page.localStorage and page.sessionStorage, reads and writes the page's storage for the current origin:

await page.localStorage.setItem('token', 'abc');
const token = await page.localStorage.getItem('token');
const items = await page.sessionStorage.items();

New APIs

Network
Browser and Screencast
  • New option artifactsDir in browserType.connectOverCDP() controls where artifacts such as traces and downloads are stored when attached to an existing browser.
  • New option cursor in screencast.showActions() controls the cursor decoration rendered for pointer actions.
  • The onFrame callback in screencast.start() now receives a timestamp of when the frame was presented by the browser.
Test runner
  • The testOptions.video option now supports the same set of modes as trace: new 'on-all-retries', 'retain-on-first-failure' and 'retain-on-failure-and-retries' values. See the video modes table for which runs are recorded and kept in each mode.
  • Supported expect.soft.poll(...).
  • New fullConfig.argv — a snapshot of process.argv from the runner process, handy for reading custom arguments passed after the -- separator.
  • New fullConfig.failOnFlakyTests mirrors the config option, so reporters can explain why a flaky run failed.
  • testInfo.errors now lists each sub-error of an AggregateError as a separate entry.
  • New -G command line shorthand for --grep-invert.

🛠️ Other improvements

  • Playwright now supports Ubuntu 26.04.
  • HAR and trace recordings now include WebSocket requests.

Browser Versions

  • Chromium 149.0.7827.55
  • Mozilla Firefox 151.0
  • WebKit 26.5

This version was also tested against the following stable channels:

  • Google Chrome 149
  • Microsoft Edge 149
TanStack/query (@​tanstack/react-query)

v5.102.8

Compare Source

Patch Changes

v5.102.7

Compare Source

Patch Changes

v5.102.6

Compare Source

Patch Changes

v5.102.5

Compare Source

Patch Changes

v5.102.4

Compare Source

Patch Changes

v5.102.3

Compare Source

Patch Changes

v5.102.2

Compare Source

Patch Changes

v5.102.1

Compare Source

Patch Changes

v5.102.0

Compare Source

Minor Changes
  • #​10668 e674826 - react-query: update usePrefetchQuery and usePrefetchInfiniteQuery to use queryClient.query and queryClient.infiniteQuery
Patch Changes

v5.101.4

Compare Source

Patch Changes

v5.101.3

Compare Source

Patch Changes

v5.101.2

Compare Source

Patch Changes

v5.101.1

Compare Source

Patch Changes

v5.101.0

Compare Source

Patch Changes

v5.100.14

Compare Source

Patch Changes

v5.100.13

Compare Source

Patch Changes

v5.100.12

Compare Source

Patch Changes

v5.100.11

Patch Changes
testing-library/react-testing-library (@​testing-library/react)

v16.3.3

Compare Source

Bug Fixes
testing-library/user-event (@​testing-library/user-event)

v14.6.6

Compare Source

Bug Fixes
  • default pointer event pointerType to empty string instead of the string "undefined" (#​1325) (71a5475)

v14.6.5

Compare Source

Bug Fixes

v14.6.4

Compare Source

Bug Fixes

v14.6.3

Compare Source

Bug Fixes
postcss/autoprefixer (autoprefixer)

v10.5.4

Compare Source

v10.5.3

Compare Source

v10.5.2

Compare Source

  • Moved -webkit-fill-available before -moz-available, so Firefox
    will use -webkit- version which is closer to stretch.

v10.5.1

Compare Source

lucide-icons/lucide (lucide-react)

v0.577.0: Version 0.577.0

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/lucide-icons/lucide/compare/0.576.0...0.577.0

v0.576.0: Version 0.576.0

Compare Source

What's Changed

Full Changelog: https://github.com/lucide-icons/lucide/compare/0.575.0...0.576.0

v0.575.0: Version 0.575.0

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/lucide-icons/lucide/compare/0.573.0...0.575.0

v0.574.0: Version 0.574.0

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/lucide-icons/lucide/compare/0.572.0...0.574.0

v0.573.0: Version 0.573.0

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/lucide-icons/lucide/compare/0.572.0...0.573.0

v0.572.0: Version 0.572.0

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/lucide-icons/lucide/compare/0.571.0...0.572.0

v0.571.0: Version 0.571.0

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/lucide-icons/lucide/compare/0.570.0...0.571.0

v0.570.0: Version 0.570.0

Compare Source

What's Changed

Full Changelog: https://github.com/lucide-icons/lucide/compare/0.569.0...0.570.0

v0.569.0: Version 0.569.0

Compare Source

What's Changed

Full Changelog: https://github.com/lucide-icons/lucide/compare/0.568.0...0.569.0

v0.568.0: Version 0.568.0

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/lucide-icons/lucide/compare/0.567.0...0.568.0

v0.567.0: Version 0.567.0

Compare Source

What's Changed

Full Changelog: https://github.com/lucide-icons/lucide/compare/0.566.0...0.567.0

v0.566.0: Version 0.566.0

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/lucide-icons/lucide/compare/0.565.0...0.566.0

v0.565.0: Version 0.565.0

Compare Source

What's Changed

Full Changelog: https://github.com/lucide-icons/lucide/compare/0.564.0...0.565.0

v0.564.0: Version 0.564.0

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/lucide-icons/lucide/compare/0.563.1...0.564.0

v0.563.0: Version 0.563.0

Compare Source

What's Changed

aria-hidden is by default added to icons components in all packages. This was already added to lucide-react before.
Making icons accessible, you can add an aria-label or a title. See docs about accessibility.

All changes

New Contributors

Full Changelog: https://github.com/lucide-icons/lucide/compare/0.562.0...0.563.0

v0.562.0: Version 0.562.0

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/lucide-icons/lucide/compare/0.561.0...0.562.0

v0.561.0: Version 0.561.0

Compare Source

What's Changed

Full Changelog: https://github.com/lucide-icons/lucide/compare/0.560.0...0.561.0

v0.560.0: Version 0.560.0

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/lucide-icons/lucide/compare/0.559.0...0.560.0

v0.559.0: Version 0.559.0

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/lucide-icons/lucide/compare/0.558.0...0.559.0

v0.558.0: Version 0.558.0

Compare Source

What's Changed

Full Changelog: https://github.com/lucide-icons/lucide/compare/0.557.0...0.558.0

v0.557.0: Version 0.557.0

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/lucide-icons/lucide/compare/0.556.0...0.557.0

v0.556.0: Version 0.556.0

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/lucide-icons/lucide/compare/0.555.0...0.556.0

v0.555.0: Version 0.555.0

Compare Source

What's Changed

Full Changelog: https://github.com/lucide-icons/lucide/compare/0.554.0...0.555.0

v0.554.0: Version 0.554.0

Compare Source

What's Changed

Breaking change

For lucide-react and lucide-solid, imports for Fingerprint icon are changed to FingerprintPattern.

Lucide React
- import { Fingerprint } from "lucide-react";
+ import { FingerprintPattern } from "lucide-react";
Lucide Solid
- import { Fingerprint } from "lucide/solid";
+ import { FingerprintPattern } from "lucide/solid";

// Or

- import Fingerprint from "lucide/solid/icons/fingerprint";
+ import FingerprintPattern from "lucide/solid/icons/fingerprint-pattern";

New Contributors

Full Changelog: https://github.com/lucide-icons/lucide/compare/0.553.0...0.554.0

v0.553.0: Version 0.553.0

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/lucide-icons/lucide/compare/0.552.0...0.553.0

v0.552.0: Version 0.552.0

Compare Source

What's Changed

Full Changelog: https://github.com/lucide-icons/lucide/compare/0.551.0...0.552.0

v0.551.0: Version 0.551.0

Compare Source

What's Changed

Full Changelog: https://github.com/lucide-icons/lucide/compare/0.550.0...0.551.0

v0.550.0: Version 0.550.0

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/lucide-icons/lucide/compare/0.549.0...0.550.0

v0.549.0: Version 0.549.0

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/lucide-icons/lucide/compare/0.548.0...0.549.0

v0.548.0: Version 0.548.0

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/lucide-icons/lucide/compare/0.547.0...0.548.0

v0.547.0: Version 0.547.0

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/lucide-icons/lucide/compare/0.546.0...0.547.0

v0.546.0: Version 0.546.0

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/lucide-icons/lucide/compare/0.545.0...0.546.0

v0.545.0: Version 0.545.0

Compare Source

What's Changed

Full Changelog: https://github.com/lucide-icons/lucide/compare/0.544.0...0.545.0

v0.544.0: Version 0.544.0

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/lucide-icons/lucide/compare/0.543.0...0.544.0

v0.543.0: Version 0.543.0

Compare Source

What's Changed

Full Changelog: https://github.com/lucide-icons/lucide/compare/0.542.0...0.543.0

v0.542.0: Version 0.542.0

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/lucide-icons/lucide/compare/0.541.0...0.542.0

v0.541.0: Version 0.541.0

Compare Source

What's Changed

Full Changelog: https://github.com/lucide-icons/lucide/compare/0.540.0...0.541.0

v0.540.0: Version 0.540.0

Compare Source

What's Changed

Full Changelog: https://github.com/lucide-icons/lucide/compare/0.539.0...0.540.0

v0.539.0: Version 0.539.0

Compare Source

What's Changed

Full Changelog: https://github.com/lucide-icons/lucide/compare/0.538.0...0.539.0

v0.538.0: Version 0.538.0

Compare Source

What's Changed

Full Changelog: https://github.com/lucide-icons/lucide/compare/0.537.0...0.538.0

v0.537.0: Version 0.537.0

Compare Source

What's Changed

Full Changelog: https://github.com/lucide-icons/lucide/compare/0.536.0...0.537.0

v0.536.0: Version 0.536.0

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/lucide-icons/lucide/compare/0.535.0...0.536.0

v0.535.0: Version 0.535.0

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/lucide-icons/lucide/compare/0.534.0...0.535.0

v0.534.0: Version 0.534.0

Compare Source

What's Changed

Full Changelog: https://github.com/lucide-icons/lucide/compare/0.533.0...0.534.0

v0.533.0: Version 0.533.0

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/lucide-icons/lucide/compare/0.532.0...0.533.0

v0.532.0: Version 0.532.0

Compare Source

What's Changed

Full Changelog: https://github.com/lucide-icons/lucide/compare/0.531.0...0.532.0

v0.531.0: Version 0.531.0

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/lucide-icons/lucide/compare/0.530.0...0.531.0

v0.530.0: Version 0.530.0

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/lucide-icons/lucide/compare/0.529.0...0.530.0

v0.529.0: Version 0.529.0

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/lucide-icons/lucide/compare/0.528.0...0.529.0

v0.528.0: Version 0.528.0

Compare Source

What's Changed

Full Changelog: https://github.com/lucide-icons/lucide/compare/0.527.0...0.528.0

v0.527.0: Version 0.527.0

Compare Source

What's Changed

Full Changelog: https://github.com/lucide-icons/lucide/compare/0.526.0...0.527.0

v0.526.0: Version 0.526.0

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/lucide-icons/lucide/compare/0.525.0...0.526.0

v0.525.0: Version 0.525.0

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/lucide-icons/lucide/compare/0.524.0...0.525.0

v0.524.0: Version 0.524.0

Compare Source

What's Changed

Full Changelog: https://github.com/lucide-icons/lucide/compare/0.523.0...0.524.0

v0.523.0: Version 0.523.0

Compare Source

What's Changed

Full Changelog: https://github.com/lucide-icons/lucide/compare/0.522.0...0.523.0

v0.522.0: Version 0.522.0

Compare Source

What's Changed

Full Changelog: https://github.com/lucide-icons/lucide/compare/0.521.0...0.522.0

v0.521.0: Version 0.521.0

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/lucide-icons/lucide/compare/0.520.0...0.521.0

v0.520.0: Version 0.520.0

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/lucide-icons/lucide/compare/0.519.0...0.520.0

v0.519.0: Version 0.519.0

Compare Source

What's Changed

Full Changelog: https://github.com/lucide-icons/lucide/compare/0.518.0...0.519.0

v0.518.0: Version 0.518.0

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/lucide-icons/lucide/compare/0.517.0...0.518.0

v0.517.0: Version 0.517.0

Compare Source

What's Changed

Full Changelog: https://github.com/lucide-icons/lucide/compare/0.516.0...0.517.0

v0.516.0: Version 0.516.0

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/lucide-icons/lucide/compare/0.515.0...0.516.0

v0.515.0: Version 0.515.0

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/lucide-icons/lucide/compare/0.514.0...0.515.0

v0.514.0: Version 0.514.0

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/lucide-icons/lucide/compare/0.513.0...0.514.0

v0.513.0: Version 0.513.0

Compare Source

What's Changed

Full Changelog: https://github.com/lucide-icons/lucide/compare/0.512.0...0.513.0

v0.512.0: Version 0.512.0

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/lucide-icons/lucide/compare/0.511.0...0.512.0

v0.511.0: Version 0.511.0

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/lucide-icons/lucide/compare/0.510.0...0.511.0

v0.510.0: Version 0.510.0

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/lucide-icons/lucide/compare/0.509.0...0.510.0

v0.509.0: Version 0.509.0

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/lucide-icons/lucide/compare/0.508.0...0.509.0

v0.508.0: Version 0.508.0

Compare Source

What's Changed

Full Changelog: https://github.com/lucide-icons/lucide/compare/0.507.0...0.508.0

v0.507.0: Version 0.507.0

Compare Source

What's Changed

Full Changelog: https://github.com/lucide-icons/lucide/compare/0.506.0...0.507.0

v0.506.0: Version 0.506.0

Compare Source

What's Changed

Full Changelog: https://github.com/lucide-icons/lucide/compare/0.505.0...0.506.0

v0.505.0: Version 0.505.0

Compare Source

What's Changed

Full Changelog: https://github.com/lucide-icons/lucide/compare/0.504.0...0.505.0

v0.504.0: Version 0.504.0

Compare Source

What's Changed

Full Changelog: https://github.com/lucide-icons/lucide/compare/0.503.0...0.504.0

v0.503.0: Version 0.503.0

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/lucide-icons/lucide/compare/0.502.0...0.503.0

v0.502.0: Version 0.502.0

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/lucide-icons/lucide/compare/0.501.0...0.502.0

v0.501.0: Version 0.501.0

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/lucide-icons/lucide/compare/0.500.0...0.501.0

v0.500.0: Version 0.500.0

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/lucide-icons/lucide/compare/0.499.0...0.500.0

v0.499.0: Version 0.499.0

Compare Source

What's Changed

Full Changelog: https://github.com/lucide-icons/lucide/compare/0.498.0...0.499.0

v0.498.0: Version 0.498.0

Compare Source

What's Changed

Full Changelog: https://github.com/lucide-icons/lucide/compare/0.497.0...0.498.0

v0.497.0: Version 0.497.0

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/lucide-icons/lucide/compare/0.496.0...0.497.0

v0.496.0: Version 0.496.0

Compare Source

What's Changed

Full Changelog: https://github.com/lucide-icons/lucide/compare/0.495.0...0.496.0

v0.495.0: Version 0.495.0

Compare Source

What's Changed

Full Changelog: https://github.com/lucide-icons/lucide/compare/0.494.0...0.495.0

v0.494.0: Version 0.494.0

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/lucide-icons/lucide/compare/0.493.0...0.494.0

v0.493.0: Version 0.493.0

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/lucide-icons/lucide/compare/0.492.0...0.493.0

v0.492.0: Version 0.492.0

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/lucide-icons/lucide/compare/0.491.0...0.492.0

v0.491.0: Version 0.491.0

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/lucide-icons/lucide/compare/0.490.0...0.491.0

v0.490.0: Version 0.490.0

Compare Source

What's Changed

Full Changelog: https://github.com/lucide-icons/lucide/compare/0.489.0...0.490.0

v0.489.0: Version 0.489.0

Compare Source

What's Changed

Full Changelog: https://github.com/lucide-icons/lucide/compare/0.488.0...0.489.0

v0.488.0: Version 0.488.0

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/lucide-icons/lucide/compare/0.487.0...0.488.0

v0.487.0: Version 0.487.0

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/lucide-icons/lucide/compare/0.486.0...0.487.0

v0.486.0: Version 0.486.0

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/lucide-icons/lucide/compare/0.485.0...0.486.0

v0.485.0: Version 0.485.0

Compare Source

What's Changed

Full Changelog: https://github.com/lucide-icons/lucide/compare/0.484.0...0.485.0

v0.484.0: Version 0.484.0

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/lucide-icons/lucide/compare/0.483.0...0.484.0

v0.483.0: Version 0.483.0

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/lucide-icons/lucide/compare/0.482.0...0.483.0

v0.482.0: Version 0.482.0

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/lucide-icons/lucide/compare/0.481.0...0.482.0

v0.481.0: Version 0.481.0

Compare Source

What's Changed

Full Changelog: https://github.com/lucide-icons/lucide/compare/0.480.0...0.481.0

v0.480.0: Version 0.480.0

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/lucide-icons/lucide/compare/0.479.0...0.480.0

v0.479.0: Version 0.479.0

Compare Source

What's Changed

Full Changelog: https://github.com/lucide-icons/lucide/compare/0.478.0...0.479.0

v0.478.0: Version 0.478.0

Compare Source

What's Changed

Full Changelog: https://github.com/lucide-icons/lucide/compare/0.477.0...0.478.0

v0.477.0: New icons 0.477.0

Compare Source

New icons 🎨

Modified Icons 🔨

v0.476.0: Fixes and new icons 0.476.0

Compare Source

Fixes

New icons 🎨

Modified Icons 🔨

v0.475.0: New icons 0.475.0

Compare Source

New icons 🎨

v0.474.0: New icons 0.474.0

Compare Source

Modified Icons 🔨

v0.473.0: New icons 0.473.0

Compare Source

Modified Icons 🔨

v0.472.0: New icons 0.472.0

New icons 🎨

What's Changed

  • lucide-svelte: Make sure license ends up in SvelteKit bundles by @​Lettnald in #​2728
  • lucide-react: Fixes aliases imports.

Full Changelog: https://github.com/lucide-icons/lucide/compare/0.471.1...0.472.0

v0.471.1: Hotfix Lucide React exports

Compare Source

What's Changed

v0.471.0: Dynamic Icon component Lucide React and new icons 0.471.0

Compare Source

New Dynamic Icon Component (lucide-react)

This is an easier approach than the previous dynamicIconImports we exported in the library. This one supports all environments.
We removed the examples in the docs of how you can make a dynamic icon yourself with a dedicated DynamicIcon component.
This one fetches the icon data itself and renders it instead of fetching the Icon component from the library.
This makes it more flexible with all the frontend frameworks and libraries that exist for React.

🚨
Not recommended for regular applications that work fine with the regular static icon components.
Using the dynamic icon component increases build time, separate bundles, and separate network requests for each icon.

How to use

DynamicIcon is useful for applications that want to show icons dynamically by icon name, for example when using a content management system where icon names are stored in a database.

const App = () => (
  <DynamicIcon name="camera" color="red" size={48} />
);
Possible Breaking changes

We have switched to the "exports" property in package.json. This can cause issues if you have directly imported scripts from the package. Please open an issue if we need to refine this export map.

New icons 🎨

v0.470.0: New icons 0.470.0

Compare Source

New icons 🎨

Modified Icons 🔨

v0.469.0: New icons 0.469.0

Compare Source

Modified Icons 🔨

v0.468.0: New icons 0.468.0

Compare Source

New icons 🎨

v0.467.0: New icons 0.467.0

Compare Source

New icons 🎨

Modified Icons 🔨

v0.466.0: New icons 0.466.0

Compare Source

New icons 🎨

Modified Icons 🔨

v0.465.0: New icons 0.465.0

Compare Source

New icons 🎨

Modified Icons 🔨

v0.464.0: New icons 0.464.0

Compare Source

Modified Icons 🔨

v0.463.0: New icons 0.463.0

Compare Source

Modified Icons 🔨

v0.462.0: New icons 0.462.0

Compare Source

New icons 🎨

Modified Icons 🔨

v0.461.0: New icons 0.461.0

Compare Source

New icons 🎨

Modified Icons 🔨

v0.460.0: New icons 0.460.0

Compare Source

New icons 🎨

v0.459.0: New icons 0.459.0

Compare Source

New icons 🎨

v0.458.0: New icons 0.458.0

Compare Source

New icons 🎨

Modified Icons 🔨

Other Changes

Full Changelog: https://github.com/lucide-icons/lucide/compare/0.457.0...0.458.0

v0.457.0: New icons 0.457.0

Compare Source

New icons 🎨

Modified Icons 🔨

v0.456.0: Choosing import name style 0.456.0

Compare Source

What's Changed

Adjustable icon naming imports

Customize import name styles for lucide-react, lucide-vue, lucide-react-native, lucide-preact, to manage autocompletion in your IDE.

  1. Turn off autocomplete in your IDE:
    Add the following to your settings.json
{
  "typescript.preferences.autoImportFileExcludePatterns": [
    "lucide-react",
    "lucide-preact",
    "lucide-react-native",
    "lucide-vue-next"
  ]
}
  1. Create a custom module declaration file:

It allows you to choose the import name style.

For React:

declare module "lucide-react" {
  // Prefixed import names
  export * from "lucide-react/dist/lucide-react.prefixed";
  // or
  // Suffixed import names
  export * from "lucide-react/dist/lucide-react.suffixed";
}

For Vue:

declare module "lucide-vue-next" {
  // Prefixed import names
  export * from "lucide-vue-next/dist/lucide-vue-next.prefixed";
  // or
  // Suffixed import names
  export * from "lucide-vue-next/dist/lucide-vue-next.suffixed";
}

v0.455.0: New icons 0.455.0

Compare Source

New icons 🎨

Modified Icons 🔨

v0.454.0: New icons 0.454.0

Compare Source

Modified Icons 🔨

v0.453.0: New icons 0.453.0

Compare Source

New icons 🎨

v0.452.0: New icons 0.452.0

Compare Source

Modified Icons 🔨

v0.451.0: New icons 0.451.0

Compare Source

Modified Icons 🔨

v0.449.0: New icons 0.449.0

Compare Source

New icons 🎨

v0.448.0: New icons 0.448.0

Compare Source

New icons 🎨

v0.447.0: New icons 0.447.0

Compare Source

v0.446.0: New icons 0.446.0

Compare Source

New icons 🎨

v0.445.0: New icons 0.445.0

Compare Source

New icons 🎨

v0.444.0: New icons 0.444.0

Compare Source

Modified Icons 🔨

v0.443.0: New icons 0.443.0

Compare Source

Modified Icons 🔨

v0.442.0: New icons 0.442.0

Compare Source

Modified Icons 🔨

postcss/postcss (postcss)

v8.5.26

Compare Source

  • Fixed list.split() regression (by @​lazerg).
  • Track symlinks in path protection in source map loading (by @​drengir1).

v8.5.25

Compare Source

  • Fixed 8.5.17 visitor regression.
  • Fixed list.split() for non-string values (by @​amir-rezaei).

v8.5.24

Compare Source

  • Preserve the BOM after the processing (by @​hdimer).

v8.5.23

Compare Source

  • Do not load source map without opts.from for security reasons.

v8.5.22

Compare Source

v8.5.21

Compare Source

v8.5.20

Compare Source

v8.5.19

Compare Source

  • Fixed cleaning before for new nodes inserted to Root (by @​MahinAnowar).

v8.5.18

Compare Source

  • Restricted loading previous source maps file to the opts.from folder for security reasons (use unsafeMap: true to disable the check).

v8.5.17

Compare Source

  • Fixed Maximum call stack size exceeded error.
  • Fixed Prototype hijacking for postcss.fromJSON().
  • Fixed Input#origin() for unmapped end position (by @​chatman-media).

v8.5.16

Compare Source

v8.5.15

Compare Source

  • Fixed declaration parsing performance (by @​homanp).
vitest-dev/vitest (vitest)

v4.1.11

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v4.1.10

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v4.1.9

Compare Source

🐞 Bug Fixes
  • Fix importOriginal with optimizer and query import [backport to v4] - by Hiroshi Ogawa, David Harris, Codexand Vladimir in #​10546 (a5180)
  • browser:
    • Wait for orchestrator readiness before resolving browser sessions [backport to v4] - by Vladimir and Séamus O'Connor in #​10555 (7fb29)
    • Wait for iframe tester readiness before preparing [backport to v4] - by Vladimir and Séamus O'Connor in #​10497 and #​10556 (fbc62)
  • mocker:
    • Hoist vi.mock() for vite-plus/test imports [backport to v4] - by Hiroshi Ogawa, LongYinan, Claude Opus 4.8 and Vladimir in #​10548 (2c955)
  • pool:
    • Prevent test run hang on worker crash [backport to v4] - by Ari Perkkiö and Jattioui Ismail in #​10543 and #​10564 (934b0)
View changes on GitHub

v4.1.8

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

Configuration

📅 Schedule: (UTC)

  • Branch creation
    • "before 6am on monday"
  • 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 Mend Renovate.

This PR contains the following updates: | Package | Change | [Age](https://docs.renovatebot.com/merge-confidence/) | [Confidence](https://docs.renovatebot.com/merge-confidence/) | |---|---|---|---| | [@playwright/test](https://playwright.dev) ([source](https://github.com/microsoft/playwright)) | [`1.60.0` → `1.62.1`](https://renovatebot.com/diffs/npm/@playwright%2ftest/1.60.0/1.62.1) | ![age](https://developer.mend.io/api/mc/badges/age/npm/@playwright%2ftest/1.62.1?slim=true) | ![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@playwright%2ftest/1.60.0/1.62.1?slim=true) | | [@tanstack/react-query](https://tanstack.com/query) ([source](https://github.com/TanStack/query/tree/HEAD/packages/react-query)) | [`5.100.10` → `5.102.8`](https://renovatebot.com/diffs/npm/@tanstack%2freact-query/5.100.10/5.102.8) | ![age](https://developer.mend.io/api/mc/badges/age/npm/@tanstack%2freact-query/5.102.8?slim=true) | ![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@tanstack%2freact-query/5.100.10/5.102.8?slim=true) | | [@testing-library/react](https://github.com/testing-library/react-testing-library) | [`16.3.2` → `16.3.3`](https://renovatebot.com/diffs/npm/@testing-library%2freact/16.3.2/16.3.3) | ![age](https://developer.mend.io/api/mc/badges/age/npm/@testing-library%2freact/16.3.3?slim=true) | ![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@testing-library%2freact/16.3.2/16.3.3?slim=true) | | [@testing-library/user-event](https://github.com/testing-library/user-event) | [`14.6.1` → `14.6.6`](https://renovatebot.com/diffs/npm/@testing-library%2fuser-event/14.6.1/14.6.6) | ![age](https://developer.mend.io/api/mc/badges/age/npm/@testing-library%2fuser-event/14.6.6?slim=true) | ![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@testing-library%2fuser-event/14.6.1/14.6.6?slim=true) | | [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node) ([source](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node)) | [`22.19.19` → `22.20.1`](https://renovatebot.com/diffs/npm/@types%2fnode/22.19.19/22.20.1) | ![age](https://developer.mend.io/api/mc/badges/age/npm/@types%2fnode/22.20.1?slim=true) | ![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@types%2fnode/22.19.19/22.20.1?slim=true) | | [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react) ([source](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react)) | [`18.3.28` → `18.3.31`](https://renovatebot.com/diffs/npm/@types%2freact/18.3.28/18.3.31) | ![age](https://developer.mend.io/api/mc/badges/age/npm/@types%2freact/18.3.31?slim=true) | ![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@types%2freact/18.3.28/18.3.31?slim=true) | | [autoprefixer](https://github.com/postcss/autoprefixer) | [`10.5.0` → `10.5.4`](https://renovatebot.com/diffs/npm/autoprefixer/10.5.0/10.5.4) | ![age](https://developer.mend.io/api/mc/badges/age/npm/autoprefixer/10.5.4?slim=true) | ![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/autoprefixer/10.5.0/10.5.4?slim=true) | | [lucide-react](https://lucide.dev) ([source](https://github.com/lucide-icons/lucide/tree/HEAD/packages/lucide-react)) | [`^0.441.0` → `^0.577.0`](https://renovatebot.com/diffs/npm/lucide-react/0.441.0/0.577.0) | ![age](https://developer.mend.io/api/mc/badges/age/npm/lucide-react/0.577.0?slim=true) | ![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/lucide-react/0.441.0/0.577.0?slim=true) | | [postcss](https://postcss.org/) ([source](https://github.com/postcss/postcss)) | [`8.5.14` → `8.5.26`](https://renovatebot.com/diffs/npm/postcss/8.5.14/8.5.26) | ![age](https://developer.mend.io/api/mc/badges/age/npm/postcss/8.5.26?slim=true) | ![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/postcss/8.5.14/8.5.26?slim=true) | | [react-router-dom](https://github.com/remix-run/react-router) ([source](https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-dom)) | [`6.30.4` → `6.30.6`](https://renovatebot.com/diffs/npm/react-router-dom/6.30.4/6.30.6) | ![age](https://developer.mend.io/api/mc/badges/age/npm/react-router-dom/6.30.6?slim=true) | ![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/react-router-dom/6.30.4/6.30.6?slim=true) | | [vitest](https://vitest.dev) ([source](https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest)) | [`4.1.7` → `4.1.11`](https://renovatebot.com/diffs/npm/vitest/4.1.7/4.1.11) | ![age](https://developer.mend.io/api/mc/badges/age/npm/vitest/4.1.11?slim=true) | ![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/vitest/4.1.7/4.1.11?slim=true) | --- ### Release Notes <details> <summary>microsoft/playwright (@&#8203;playwright/test)</summary> ### [`v1.62.1`](https://github.com/microsoft/playwright/releases/tag/v1.62.1) [Compare Source](https://github.com/microsoft/playwright/compare/v1.62.0...v1.62.1) ##### Bug Fixes - [#&#8203;41989](https://github.com/microsoft/playwright/issues/41989) \[Regression]: tsconfig "extends" bare specifier isn't resolved via node\_modules walk-up like tsc (fatal since 1.62) - [#&#8203;41998](https://github.com/microsoft/playwright/issues/41998) \[Regression]: directory-form tsconfig project references ("path": "../pkg") fail to resolve (fatal since 1.62) - [#&#8203;41985](https://github.com/microsoft/playwright/issues/41985) Accessibility snapshot drops button name when text is nested inside spans with aria-hidden SVG - [#&#8203;42000](https://github.com/microsoft/playwright/issues/42000) \[Regression]: page.evaluate() arg of a branded primitive type (string & { brand }) no longer type-checks since 1.62 - [#&#8203;42013](https://github.com/microsoft/playwright/issues/42013) \[BUG]Image-type actionable elements are not presented in the snapshot. ### [`v1.62.0`](https://github.com/microsoft/playwright/releases/tag/v1.62.0) [Compare Source](https://github.com/microsoft/playwright/compare/v1.61.1...v1.62.0) #### 🧱 New component testing model [Component testing](https://playwright.dev/docs/test-components) moves to a **stories and galleries** model. A **story** wraps your component in one specific scenario — hard-coded props, mock data, providers — and a **gallery** page that you serve renders stories on demand. The new [fixtures.mount()](https://playwright.dev/docs/api/class-fixtures#fixtures-mount) fixture navigates to the gallery, mounts a story by id, and returns a [Locator](https://playwright.dev/docs/api/class-locator) scoped to the story's root element: ```js test('click should expand', async ({ mount }) => { const component = await mount('components/Expandable/Stateful'); await component.getByRole('button').click(); await expect(component.getByTestId('expanded')).toHaveValue('true'); }); ``` Pass a story type as a template argument to type-check its props, and use `update(props)` / `unmount()` on the returned locator to re-render or tear down within a test. #### 🛑 Cancel operations with AbortSignal Most operations and web-first assertions now accept a `signal` option that takes an [`AbortSignal`](https://developer.mozilla.org/en-US/docs/Web/API/AbortSignal), letting you cancel long-running actions, navigations, waits, and assertions: ```js const controller = new AbortController(); setTimeout(() => controller.abort(), 1000); await page.getByRole('button', { name: 'Submit' }).click({ signal: controller.signal }); await expect(page.getByText('Done')).toBeVisible({ signal: controller.signal }); ``` Providing a signal does not disable the default timeout; pass `timeout: 0` to disable it. #### 🖼️ WebP screenshots [expect(page).toHaveScreenshot()](https://playwright.dev/docs/api/class-pageassertions#page-assertions-to-have-screenshot-1) and [expect(locator).toHaveScreenshot()](https://playwright.dev/docs/api/class-locatorassertions#locator-assertions-to-have-screenshot-1) can now store snapshots in the WebP format — just give the snapshot a `.webp` name: ```js // Visual comparisons store the golden snapshot as lossless WebP. await expect(page).toHaveScreenshot('homepage.webp'); // Standalone screenshots can trade quality for size with lossy WebP. await page.screenshot({ path: 'homepage.webp', quality: 50 }); ``` [page.screenshot()](https://playwright.dev/docs/api/class-page#page-screenshot) and \[locator.screenshot() (<https://playwright.dev/docs/api/class-locator#locator-screenshot>) also accept `webp` as a `type`, where quality `100` (the default) is lossless and lower values use lossy compression. #### 🧩 Custom test filtering with Reporter.preprocess() New [reporter.preprocess()](https://playwright.dev/docs/api/class-reporter#reporter-preprocess) hook runs after the configuration is resolved and before [reporter.onBegin()](https://playwright.dev/docs/api/class-reporter#reporter-on-begin), letting a reporter mark individual tests as skipped, excluded, fixed, or failing through a [TestRun](https://playwright.dev/docs/api/class-testrun) object: ```js class MyReporter { async preprocess({ config, suite, testRun }) { for (const test of suite.allTests()) { if (shouldSkip(test)) testRun.skip(test); } } } ``` #### 🔁 Isolated retries New [testConfig.retryStrategy](https://playwright.dev/docs/api/class-testconfig#test-config-retry-strategy) controls when failed tests are retried. The default `'immediate'` retries as soon as a worker is free; `'isolated'` runs all retries at the end, one by one in a single worker, to minimize interference with the rest of the suite: ```js // playwright.config.ts export default defineConfig({ retries: 2, retryStrategy: 'isolated', }); ``` #### New APIs ##### Browser and Context - New option [`credentials`](https://playwright.dev/docs/api/class-browsercontext#browser-context-storage-state-option-credentials) includes the context's virtual WebAuthn [Credentials](https://playwright.dev/docs/api/class-credentials) (passkeys) in the storage state, so they can be persisted and re-seeded into later contexts. ##### Actions - New `scroll` option (`"auto"` | `"none"`) on actions to opt out of Playwright's automatic scroll-into-view. ##### Network - New [apiResponse.timing()](https://playwright.dev/docs/api/class-apiresponse#api-response-timing) returns resource timing information for an API response. ##### Evaluation - New [locator.waitForFunction()](https://playwright.dev/docs/api/class-locator#locator-wait-for-function) waits until a function — called with the matching element — returns a truthy value. - [page.evaluate()](https://playwright.dev/docs/api/class-page#page-evaluate) and related methods now accept functions as evaluate arguments. - [page.addInitScript()](https://playwright.dev/docs/api/class-page#page-add-init-script) / [browserContext.addInitScript()](https://playwright.dev/docs/api/class-browsercontext#browser-context-add-init-script) now accept functions as init-script arguments. ##### Command line & MCP - Playwright now bundles the [Playwright MCP](https://playwright.dev/docs/getting-started-mcp) server and [`playwright-cli`](https://playwright.dev/docs/getting-started-cli), runnable via `npx playwright mcp` and `npx playwright cli`. ##### Reporters - The HTML report's **Merge files** grouping — previously only a UI toggle — can now be enabled from the config with the new `mergeFiles` reporter option: ```js // playwright.config.ts export default defineConfig({ reporter: [['html', { mergeFiles: true }]], }); ``` #### Announcements - ⚠️ Debian 11 is not supported anymore. #### Browser Versions - Chromium 151.0.7922.34 - Mozilla Firefox 153.0 - WebKit 26.5 This version was also tested against the following stable channels: - Google Chrome 151 - Microsoft Edge 151 ### [`v1.61.1`](https://github.com/microsoft/playwright/releases/tag/v1.61.1) [Compare Source](https://github.com/microsoft/playwright/compare/v1.61.0...v1.61.1) ##### Bug Fixes - [#&#8203;41365](https://github.com/microsoft/playwright/issues/41365) \[Bug]: Expect.Extend matcher with same name as default matcher in same expect instance overrides default matchers implementation to custom matcher - [#&#8203;41351](https://github.com/microsoft/playwright/issues/41351) \[Bug]: Playwright UI mode: apiRequestContext.\_wrapApiCall reports unexpected number of bytes (same test passes in headed mode) - [#&#8203;41360](https://github.com/microsoft/playwright/issues/41360) \[Bug]: Trace viewer: message times in websockets are downscaled by 1000 - [#&#8203;41311](https://github.com/microsoft/playwright/issues/41311) \[Bug]: \[Regression]: Sync loader throws "context.conditions?.includes is not a function" on Node 22.15 - [#&#8203;41371](https://github.com/microsoft/playwright/issues/41371) \[Regression]: Sync ESM loader (registerHooks) fails to resolve extensionless .ts subpath imports across pnpm workspace symlinks ### [`v1.61.0`](https://github.com/microsoft/playwright/releases/tag/v1.61.0) [Compare Source](https://github.com/microsoft/playwright/compare/v1.60.0...v1.61.0) #### 🔑 WebAuthn passkeys New [Credentials](https://playwright.dev/docs/api/class-credentials) virtual authenticator, available via [browserContext.credentials](https://playwright.dev/docs/api/class-browsercontext#browser-context-credentials), lets tests register passkeys and answer `navigator.credentials.create()` / `navigator.credentials.get()` ceremonies in the page — no real hardware key required, works in all browsers: ```js const context = await browser.newContext(); // Seed a passkey your backend provisioned for a test user. await context.credentials.create('example.com', { id: credentialId, userHandle, privateKey, publicKey, }); await context.credentials.install(); const page = await context.newPage(); await page.goto('https://example.com/login'); // The page's navigator.credentials.get() is answered with the seeded passkey. ``` You can also let the app register a passkey once in a setup test, read it back with [credentials.get()](https://playwright.dev/docs/api/class-credentials#credentials-get), and seed it into later tests — see [Credentials](https://playwright.dev/docs/api/class-credentials) for details. #### 🗃️ Web Storage New [WebStorage](https://playwright.dev/docs/api/class-webstorage) API, available via [page.localStorage](https://playwright.dev/docs/api/class-page#page-local-storage) and [page.sessionStorage](https://playwright.dev/docs/api/class-page#page-session-storage), reads and writes the page's storage for the current origin: ```js await page.localStorage.setItem('token', 'abc'); const token = await page.localStorage.getItem('token'); const items = await page.sessionStorage.items(); ``` #### New APIs ##### Network - [apiResponse.securityDetails()](https://playwright.dev/docs/api/class-apiresponse#api-response-security-details) and [apiResponse.serverAddr()](https://playwright.dev/docs/api/class-apiresponse#api-response-server-addr) mirror the browser-side [response.securityDetails()](https://playwright.dev/docs/api/class-response#response-security-details) and [response.serverAddr()](https://playwright.dev/docs/api/class-response#response-server-addr). ##### Browser and Screencast - New option `artifactsDir` in [browserType.connectOverCDP()](https://playwright.dev/docs/api/class-browsertype#browser-type-connect-over-cdp) controls where artifacts such as traces and downloads are stored when attached to an existing browser. - New option `cursor` in [screencast.showActions()](https://playwright.dev/docs/api/class-screencast#screencast-show-actions) controls the cursor decoration rendered for pointer actions. - The `onFrame` callback in [screencast.start()](https://playwright.dev/docs/api/class-screencast#screencast-start) now receives a `timestamp` of when the frame was presented by the browser. ##### Test runner - The [testOptions.video](https://playwright.dev/docs/api/class-testoptions#test-options-video) option now supports the same set of modes as `trace`: new `'on-all-retries'`, `'retain-on-first-failure'` and `'retain-on-failure-and-retries'` values. See the [video modes table](https://playwright.dev/docs/test-use-options#video-modes) for which runs are recorded and kept in each mode. - Supported `expect.soft.poll(...)`. - New [fullConfig.argv](https://playwright.dev/docs/api/class-fullconfig#full-config-argv) — a snapshot of `process.argv` from the runner process, handy for reading custom arguments passed after the `--` separator. - New [fullConfig.failOnFlakyTests](https://playwright.dev/docs/api/class-fullconfig#full-config-fail-on-flaky-tests) mirrors the config option, so reporters can explain why a flaky run failed. - [testInfo.errors](https://playwright.dev/docs/api/class-testinfo#test-info-errors) now lists each sub-error of an `AggregateError` as a separate entry. - New `-G` command line shorthand for `--grep-invert`. #### 🛠️ Other improvements - Playwright now supports Ubuntu 26.04. - HAR and trace recordings now include WebSocket requests. #### Browser Versions - Chromium 149.0.7827.55 - Mozilla Firefox 151.0 - WebKit 26.5 This version was also tested against the following stable channels: - Google Chrome 149 - Microsoft Edge 149 </details> <details> <summary>TanStack/query (@&#8203;tanstack/react-query)</summary> ### [`v5.102.8`](https://github.com/TanStack/query/blob/HEAD/packages/react-query/CHANGELOG.md#51028) [Compare Source](https://github.com/TanStack/query/compare/@tanstack/react-query@5.102.7...@tanstack/react-query@5.102.8) ##### Patch Changes - Updated dependencies \[]: - [@&#8203;tanstack/query-core](https://github.com/tanstack/query-core)@&#8203;5.102.8 ### [`v5.102.7`](https://github.com/TanStack/query/blob/HEAD/packages/react-query/CHANGELOG.md#51027) [Compare Source](https://github.com/TanStack/query/compare/@tanstack/react-query@5.102.6...@tanstack/react-query@5.102.7) ##### Patch Changes - Updated dependencies \[]: - [@&#8203;tanstack/query-core](https://github.com/tanstack/query-core)@&#8203;5.102.7 ### [`v5.102.6`](https://github.com/TanStack/query/blob/HEAD/packages/react-query/CHANGELOG.md#51026) [Compare Source](https://github.com/TanStack/query/compare/@tanstack/react-query@5.102.5...@tanstack/react-query@5.102.6) ##### Patch Changes - [#&#8203;11305](https://github.com/TanStack/query/pull/11305) [`ac2b612`](https://github.com/TanStack/query/commit/ac2b61230ea35b90b177ba35dc030598bac9c9a6) - fix(react-query): throw falsy errors from `useQueries` and `useSuspenseQueries` to the error boundary - Updated dependencies \[]: - [@&#8203;tanstack/query-core](https://github.com/tanstack/query-core)@&#8203;5.102.6 ### [`v5.102.5`](https://github.com/TanStack/query/blob/HEAD/packages/react-query/CHANGELOG.md#51025) [Compare Source](https://github.com/TanStack/query/compare/@tanstack/react-query@5.102.4...@tanstack/react-query@5.102.5) ##### Patch Changes - Updated dependencies \[[`578e5c2`](https://github.com/TanStack/query/commit/578e5c26e8ebd0d7351b4b8e2bafba695e672b8d)]: - [@&#8203;tanstack/query-core](https://github.com/tanstack/query-core)@&#8203;5.102.5 ### [`v5.102.4`](https://github.com/TanStack/query/blob/HEAD/packages/react-query/CHANGELOG.md#51024) [Compare Source](https://github.com/TanStack/query/compare/@tanstack/react-query@5.102.3...@tanstack/react-query@5.102.4) ##### Patch Changes - Updated dependencies \[[`a05df6a`](https://github.com/TanStack/query/commit/a05df6aefb0e2489ec2c879ae16e2ee7cb3123ec)]: - [@&#8203;tanstack/query-core](https://github.com/tanstack/query-core)@&#8203;5.102.4 ### [`v5.102.3`](https://github.com/TanStack/query/blob/HEAD/packages/react-query/CHANGELOG.md#51023) [Compare Source](https://github.com/TanStack/query/compare/@tanstack/react-query@5.102.2...@tanstack/react-query@5.102.3) ##### Patch Changes - Updated dependencies \[]: - [@&#8203;tanstack/query-core](https://github.com/tanstack/query-core)@&#8203;5.102.3 ### [`v5.102.2`](https://github.com/TanStack/query/blob/HEAD/packages/react-query/CHANGELOG.md#51022) [Compare Source](https://github.com/TanStack/query/compare/@tanstack/react-query@5.102.1...@tanstack/react-query@5.102.2) ##### Patch Changes - Updated dependencies \[[`80fbf73`](https://github.com/TanStack/query/commit/80fbf73e77892d702c107e14a84c219a8ed825dc)]: - [@&#8203;tanstack/query-core](https://github.com/tanstack/query-core)@&#8203;5.102.2 ### [`v5.102.1`](https://github.com/TanStack/query/blob/HEAD/packages/react-query/CHANGELOG.md#51021) [Compare Source](https://github.com/TanStack/query/compare/@tanstack/react-query@5.102.0...@tanstack/react-query@5.102.1) ##### Patch Changes - Updated dependencies \[[`134890d`](https://github.com/TanStack/query/commit/134890dbdc60e4fb0313e44b512d29284ca82f96)]: - [@&#8203;tanstack/query-core](https://github.com/tanstack/query-core)@&#8203;5.102.1 ### [`v5.102.0`](https://github.com/TanStack/query/blob/HEAD/packages/react-query/CHANGELOG.md#51020) [Compare Source](https://github.com/TanStack/query/compare/@tanstack/react-query@5.101.4...@tanstack/react-query@5.102.0) ##### Minor Changes - [#&#8203;10668](https://github.com/TanStack/query/pull/10668) [`e674826`](https://github.com/TanStack/query/commit/e6748265c86294704f6c872e6f435d9ec5a92b28) - react-query: update usePrefetchQuery and usePrefetchInfiniteQuery to use queryClient.query and queryClient.infiniteQuery ##### Patch Changes - [#&#8203;11245](https://github.com/TanStack/query/pull/11245) [`37127db`](https://github.com/TanStack/query/commit/37127dbe479a4892dbbe28ac8ceabf8832b5f1a3) - revert: remove NoInfer from useQuery return types - [#&#8203;10373](https://github.com/TanStack/query/pull/10373) [`6e3d521`](https://github.com/TanStack/query/commit/6e3d521fe54f78624e53c1c6f9cadd678504bee8) - fix(types): propagate generic type parameters to `useMutationState` select callback - [#&#8203;11224](https://github.com/TanStack/query/pull/11224) [`294d4e6`](https://github.com/TanStack/query/commit/294d4e62c4f7d674574a4903eef2a1bc3dd1413b) - Fix `queryOptions` and `infiniteQueryOptions` return types so exported inferred options can be emitted in declaration files without leaking internal data tag symbols. - [#&#8203;11147](https://github.com/TanStack/query/pull/11147) [`cb6c9d3`](https://github.com/TanStack/query/commit/cb6c9d3725db0fed94fb5133820e41b7c326d2ef) - Default `TData` of `UseInfiniteQueryOptions` and `UseSuspenseInfiniteQueryOptions` to `InfiniteData<TQueryFnData>` so it matches the hook generics. - [#&#8203;8737](https://github.com/TanStack/query/pull/8737) [`2215bb0`](https://github.com/TanStack/query/commit/2215bb031139cdc8a84751b37a485c38ca9d2b6e) - fix: make mutation variables optional when `undefined extends TVariables` - [#&#8203;11221](https://github.com/TanStack/query/pull/11221) [`1ef4208`](https://github.com/TanStack/query/commit/1ef42087c9a266c2137d2ef645cbcc662f60ac93) - Remove experimental render-time prefetching and the `promise` property from query results. - [#&#8203;11228](https://github.com/TanStack/query/pull/11228) [`fb6c3fa`](https://github.com/TanStack/query/commit/fb6c3fabda4cb6b291cccc6651ed88a7db901915) - Avoid emitting a runtime import for React Query's type-only exports. - [#&#8203;11130](https://github.com/TanStack/query/pull/11130) [`8834267`](https://github.com/TanStack/query/commit/88342670eca6e4949416aab832b1f81cc7b881f8) - fix(react-query): don't show optimistic fetching for unsubscribed useQueries - [#&#8203;11233](https://github.com/TanStack/query/pull/11233) [`b866a95`](https://github.com/TanStack/query/commit/b866a95adde7e8465462526df5870ebc12340b36) - remove unused experimental\_beforeQuery and experimental\_afterQuery hooks - [#&#8203;11144](https://github.com/TanStack/query/pull/11144) [`e546d03`](https://github.com/TanStack/query/commit/e546d03bef116c66a05dbf42ccfd70b6d8600a8f) - fix: remove placeholderData from suspense infinite query - Updated dependencies \[[`34f7cee`](https://github.com/TanStack/query/commit/34f7ceed09c10e4a3aa2df31a106ddf02ec4e787), [`b4368c4`](https://github.com/TanStack/query/commit/b4368c43792349f6c29d1fb41f7ee1ef3a8bdd2c), [`5bb089d`](https://github.com/TanStack/query/commit/5bb089d153d33933983b7ea80f8d69b51d423698), [`ba4650c`](https://github.com/TanStack/query/commit/ba4650c05e61e33c609e051b948c9f7d31ce70d1), [`294d4e6`](https://github.com/TanStack/query/commit/294d4e62c4f7d674574a4903eef2a1bc3dd1413b), [`1f631b3`](https://github.com/TanStack/query/commit/1f631b3604aab6567fb3f6c90646a5a304641546), [`01a02bf`](https://github.com/TanStack/query/commit/01a02bfad32f9efbc17796be31d6399f1197a655), [`18c1c1e`](https://github.com/TanStack/query/commit/18c1c1ef94883e781ad36d36f9ea4a043ce4260b), [`5448063`](https://github.com/TanStack/query/commit/5448063f828d2270dccd41ae375e1afde35e91f2), [`2215bb0`](https://github.com/TanStack/query/commit/2215bb031139cdc8a84751b37a485c38ca9d2b6e), [`1ef4208`](https://github.com/TanStack/query/commit/1ef42087c9a266c2137d2ef645cbcc662f60ac93), [`5981771`](https://github.com/TanStack/query/commit/5981771abec9330b344a2617543eb05ba7c99e24), [`4a9bef6`](https://github.com/TanStack/query/commit/4a9bef6cf19b1cd6b014032d696129f12a848185), [`bef4bc7`](https://github.com/TanStack/query/commit/bef4bc780ce7cca32b7e3dea85f77d92f82a62a2), [`9656dc4`](https://github.com/TanStack/query/commit/9656dc4e5fef5f8c502579b52459f9e8c72e787c), [`326aaf1`](https://github.com/TanStack/query/commit/326aaf1333e5d9cbc46569c53f218d31684162d2), [`3e83601`](https://github.com/TanStack/query/commit/3e836010032c2586e9f1c66a271fa9114a6401f9), [`c6fc17c`](https://github.com/TanStack/query/commit/c6fc17cfad6e452261c585fabfb8c210e60531ed)]: - [@&#8203;tanstack/query-core](https://github.com/tanstack/query-core)@&#8203;5.102.0 ### [`v5.101.4`](https://github.com/TanStack/query/blob/HEAD/packages/react-query/CHANGELOG.md#51014) [Compare Source](https://github.com/TanStack/query/compare/@tanstack/react-query@5.101.3...@tanstack/react-query@5.101.4) ##### Patch Changes - Updated dependencies \[]: - [@&#8203;tanstack/query-core](https://github.com/tanstack/query-core)@&#8203;5.101.4 ### [`v5.101.3`](https://github.com/TanStack/query/blob/HEAD/packages/react-query/CHANGELOG.md#51013) [Compare Source](https://github.com/TanStack/query/compare/@tanstack/react-query@5.101.2...@tanstack/react-query@5.101.3) ##### Patch Changes - Updated dependencies \[[`7e3c822`](https://github.com/TanStack/query/commit/7e3c822a10896f41a8f1031c16b85096277af677)]: - [@&#8203;tanstack/query-core](https://github.com/tanstack/query-core)@&#8203;5.101.3 ### [`v5.101.2`](https://github.com/TanStack/query/blob/HEAD/packages/react-query/CHANGELOG.md#51012) [Compare Source](https://github.com/TanStack/query/compare/@tanstack/react-query@5.101.1...@tanstack/react-query@5.101.2) ##### Patch Changes - Updated dependencies \[]: - [@&#8203;tanstack/query-core](https://github.com/tanstack/query-core)@&#8203;5.101.2 ### [`v5.101.1`](https://github.com/TanStack/query/blob/HEAD/packages/react-query/CHANGELOG.md#51011) [Compare Source](https://github.com/TanStack/query/compare/@tanstack/react-query@5.101.0...@tanstack/react-query@5.101.1) ##### Patch Changes - Updated dependencies \[[`9eff92e`](https://github.com/TanStack/query/commit/9eff92ed86e284ec0125b3a3539d028688235bd1)]: - [@&#8203;tanstack/query-core](https://github.com/tanstack/query-core)@&#8203;5.101.1 ### [`v5.101.0`](https://github.com/TanStack/query/blob/HEAD/packages/react-query/CHANGELOG.md#51010) [Compare Source](https://github.com/TanStack/query/compare/@tanstack/react-query@5.100.14...@tanstack/react-query@5.101.0) ##### Patch Changes - Updated dependencies \[]: - [@&#8203;tanstack/query-core](https://github.com/tanstack/query-core)@&#8203;5.101.0 ### [`v5.100.14`](https://github.com/TanStack/query/blob/HEAD/packages/react-query/CHANGELOG.md#510014) [Compare Source](https://github.com/TanStack/query/compare/@tanstack/react-query@5.100.13...@tanstack/react-query@5.100.14) ##### Patch Changes - fix(react-query): do not go into optimistic fetching state when not subscribed ([#&#8203;10759](https://github.com/TanStack/query/pull/10759)) - Updated dependencies \[]: - [@&#8203;tanstack/query-core](https://github.com/tanstack/query-core)@&#8203;5.100.14 ### [`v5.100.13`](https://github.com/TanStack/query/blob/HEAD/packages/react-query/CHANGELOG.md#510013) [Compare Source](https://github.com/TanStack/query/compare/@tanstack/react-query@5.100.12...@tanstack/react-query@5.100.13) ##### Patch Changes - Updated dependencies \[[`d423168`](https://github.com/TanStack/query/commit/d423168f6261a5cb3d353e53b27c8150cc271151)]: - [@&#8203;tanstack/query-core](https://github.com/tanstack/query-core)@&#8203;5.100.13 ### [`v5.100.12`](https://github.com/TanStack/query/blob/HEAD/packages/react-query/CHANGELOG.md#510012) [Compare Source](https://github.com/TanStack/query/compare/@tanstack/react-query@5.100.11...@tanstack/react-query@5.100.12) ##### Patch Changes - Updated dependencies \[]: - [@&#8203;tanstack/query-core](https://github.com/tanstack/query-core)@&#8203;5.100.12 ### [`v5.100.11`](https://github.com/TanStack/query/blob/HEAD/packages/react-query/CHANGELOG.md#510011) ##### Patch Changes - Updated dependencies \[]: - [@&#8203;tanstack/query-core](https://github.com/tanstack/query-core)@&#8203;5.100.11 </details> <details> <summary>testing-library/react-testing-library (@&#8203;testing-library/react)</summary> ### [`v16.3.3`](https://github.com/testing-library/react-testing-library/releases/tag/v16.3.3) [Compare Source](https://github.com/testing-library/react-testing-library/compare/v16.3.2...v16.3.3) ##### Bug Fixes - Avoid act() re-entrant when dispatching events ([#&#8203;1468](https://github.com/testing-library/react-testing-library/issues/1468)) ([20ce75f](https://github.com/testing-library/react-testing-library/commit/20ce75f2907ca0e5c5a8ae595c0e9a4e368c7800)) </details> <details> <summary>testing-library/user-event (@&#8203;testing-library/user-event)</summary> ### [`v14.6.6`](https://github.com/testing-library/user-event/releases/tag/v14.6.6) [Compare Source](https://github.com/testing-library/user-event/compare/v14.6.5...v14.6.6) ##### Bug Fixes - default pointer event pointerType to empty string instead of the string "undefined" ([#&#8203;1325](https://github.com/testing-library/user-event/issues/1325)) ([71a5475](https://github.com/testing-library/user-event/commit/71a547572e6f7793b925052c71aaabef6a443995)) ### [`v14.6.5`](https://github.com/testing-library/user-event/releases/tag/v14.6.5) [Compare Source](https://github.com/testing-library/user-event/compare/v14.6.4...v14.6.5) ##### Bug Fixes - tab retargeting if focus moved during keydown ([#&#8203;1296](https://github.com/testing-library/user-event/issues/1296)) ([43efda7](https://github.com/testing-library/user-event/commit/43efda7f998c3e519cb1c5ced2795a459c0f0f65)) ### [`v14.6.4`](https://github.com/testing-library/user-event/releases/tag/v14.6.4) [Compare Source](https://github.com/testing-library/user-event/compare/v14.6.3...v14.6.4) ##### Bug Fixes - keyboard event repeat property ([#&#8203;1312](https://github.com/testing-library/user-event/issues/1312)) ([d7e80e3](https://github.com/testing-library/user-event/commit/d7e80e33366e8f64d9a3bf4b012b5720c9fcc0e7)) ### [`v14.6.3`](https://github.com/testing-library/user-event/releases/tag/v14.6.3) [Compare Source](https://github.com/testing-library/user-event/compare/v14.6.1...v14.6.3) ##### Bug Fixes - **release:** manually release a patch version ([#&#8203;1321](https://github.com/testing-library/user-event/issues/1321)) ([1d18b1f](https://github.com/testing-library/user-event/commit/1d18b1fae589eeed8e08838672a4c2de0dcc2b36)), closes [#&#8203;1317](https://github.com/testing-library/user-event/issues/1317) </details> <details> <summary>postcss/autoprefixer (autoprefixer)</summary> ### [`v10.5.4`](https://github.com/postcss/autoprefixer/blob/HEAD/CHANGELOG.md#1054) [Compare Source](https://github.com/postcss/autoprefixer/compare/10.5.3...10.5.4) - Fixed prefixed rule duplication (by [@&#8203;xianjianlf2](https://github.com/xianjianlf2)). ### [`v10.5.3`](https://github.com/postcss/autoprefixer/blob/HEAD/CHANGELOG.md#1053) [Compare Source](https://github.com/postcss/autoprefixer/compare/10.5.2...10.5.3) - Fixed brackets and gradient parser ([@&#8203;alanturing881](https://github.com/alanturing881)). ### [`v10.5.2`](https://github.com/postcss/autoprefixer/blob/HEAD/CHANGELOG.md#1052) [Compare Source](https://github.com/postcss/autoprefixer/compare/10.5.1...10.5.2) - Moved `-webkit-fill-available` before `-moz-available`, so Firefox will use `-webkit-` version which is closer to `stretch`. ### [`v10.5.1`](https://github.com/postcss/autoprefixer/blob/HEAD/CHANGELOG.md#1051) [Compare Source](https://github.com/postcss/autoprefixer/compare/10.5.0...10.5.1) - Fixed `grid-area` span reset for overriding areas (by [@&#8203;puneetdixit200](https://github.com/puneetdixit200)). </details> <details> <summary>lucide-icons/lucide (lucide-react)</summary> ### [`v0.577.0`](https://github.com/lucide-icons/lucide/releases/tag/0.577.0): Version 0.577.0 [Compare Source](https://github.com/lucide-icons/lucide/compare/0.576.0...0.577.0) #### What's Changed - chore(deps): bump rollup from 4.53.3 to 4.59.0 by [@&#8203;dependabot](https://github.com/dependabot)\[bot] in [#&#8203;4106](https://github.com/lucide-icons/lucide/pull/4106) - fix(repo): correctly ignore docs/releaseMetadata via .gitignore by [@&#8203;bhavberi](https://github.com/bhavberi) in [#&#8203;4100](https://github.com/lucide-icons/lucide/pull/4100) - feat(icons): added `ellipse` icon by [@&#8203;KISHORE-KUMAR-S](https://github.com/KISHORE-KUMAR-S) in [#&#8203;3749](https://github.com/lucide-icons/lucide/pull/3749) #### New Contributors - [@&#8203;bhavberi](https://github.com/bhavberi) made their first contribution in [#&#8203;4100](https://github.com/lucide-icons/lucide/pull/4100) - [@&#8203;KISHORE-KUMAR-S](https://github.com/KISHORE-KUMAR-S) made their first contribution in [#&#8203;3749](https://github.com/lucide-icons/lucide/pull/3749) **Full Changelog**: <https://github.com/lucide-icons/lucide/compare/0.576.0...0.577.0> ### [`v0.576.0`](https://github.com/lucide-icons/lucide/releases/tag/0.576.0): Version 0.576.0 [Compare Source](https://github.com/lucide-icons/lucide/compare/0.575.0...0.576.0) #### What's Changed - Added zodiac signs by [@&#8203;karsa-mistmere](https://github.com/karsa-mistmere) in [#&#8203;712](https://github.com/lucide-icons/lucide/pull/712) - fix(icons): fixes guideline violations in `package-*` icons. by [@&#8203;karsa-mistmere](https://github.com/karsa-mistmere) in [#&#8203;4074](https://github.com/lucide-icons/lucide/pull/4074) - fix(icons): changed `receipt` icon by [@&#8203;karsa-mistmere](https://github.com/karsa-mistmere) in [#&#8203;4075](https://github.com/lucide-icons/lucide/pull/4075) - fix(icons): updated `cuboid` icon tags and categories by [@&#8203;karsa-mistmere](https://github.com/karsa-mistmere) in [#&#8203;4095](https://github.com/lucide-icons/lucide/pull/4095) - fix(icons): changed `cuboid` icon by [@&#8203;jamiemlaw](https://github.com/jamiemlaw) in [#&#8203;4098](https://github.com/lucide-icons/lucide/pull/4098) - fix(lucide-font, lucide-static): Fixing stable code points by [@&#8203;ericfennis](https://github.com/ericfennis) in [#&#8203;3894](https://github.com/lucide-icons/lucide/pull/3894) - feat(icons): added `fishing-rod` icon by [@&#8203;7ender](https://github.com/7ender) in [#&#8203;3839](https://github.com/lucide-icons/lucide/pull/3839) **Full Changelog**: <https://github.com/lucide-icons/lucide/compare/0.575.0...0.576.0> ### [`v0.575.0`](https://github.com/lucide-icons/lucide/releases/tag/0.575.0): Version 0.575.0 [Compare Source](https://github.com/lucide-icons/lucide/compare/0.574.0...0.575.0) #### What's Changed - feat(icons): added `message-square-check` icon by [@&#8203;karsa-mistmere](https://github.com/karsa-mistmere) in [#&#8203;4076](https://github.com/lucide-icons/lucide/pull/4076) - fix(lucide): Fix ESM Module output path in build by [@&#8203;ericfennis](https://github.com/ericfennis) in [#&#8203;4084](https://github.com/lucide-icons/lucide/pull/4084) - feat(icons): added `metronome` icon by [@&#8203;edwloef](https://github.com/edwloef) in [#&#8203;4063](https://github.com/lucide-icons/lucide/pull/4063) - fix(icons): remove execution permission of SVG files by [@&#8203;duckafire](https://github.com/duckafire) in [#&#8203;4053](https://github.com/lucide-icons/lucide/pull/4053) - fix(icons): changed `file-pen-line` icon by [@&#8203;jguddas](https://github.com/jguddas) in [#&#8203;3970](https://github.com/lucide-icons/lucide/pull/3970) - feat(icons): added `square-arrow-right-exit` and `square-arrow-right-enter` icons by [@&#8203;EthanHazel](https://github.com/EthanHazel) in [#&#8203;3958](https://github.com/lucide-icons/lucide/pull/3958) - fix(icons): renamed `flip-*` to `square-centerline-dashed-*` by [@&#8203;jguddas](https://github.com/jguddas) in [#&#8203;3945](https://github.com/lucide-icons/lucide/pull/3945) #### New Contributors - [@&#8203;edwloef](https://github.com/edwloef) made their first contribution in [#&#8203;4063](https://github.com/lucide-icons/lucide/pull/4063) - [@&#8203;duckafire](https://github.com/duckafire) made their first contribution in [#&#8203;4053](https://github.com/lucide-icons/lucide/pull/4053) **Full Changelog**: <https://github.com/lucide-icons/lucide/compare/0.573.0...0.575.0> ### [`v0.574.0`](https://github.com/lucide-icons/lucide/releases/tag/0.574.0): Version 0.574.0 [Compare Source](https://github.com/lucide-icons/lucide/compare/0.573.0...0.574.0) #### What's Changed - fix(icons): changed `rocking-chair` icon by [@&#8203;jamiemlaw](https://github.com/jamiemlaw) in [#&#8203;3445](https://github.com/lucide-icons/lucide/pull/3445) - fix(icons): flipped `coins` icon by [@&#8203;jguddas](https://github.com/jguddas) in [#&#8203;3158](https://github.com/lucide-icons/lucide/pull/3158) - feat(icons): added `x-line-top` icon by [@&#8203;jguddas](https://github.com/jguddas) in [#&#8203;2838](https://github.com/lucide-icons/lucide/pull/2838) - feat(icons): added `mouse-left` icon by [@&#8203;marvfash](https://github.com/marvfash) in [#&#8203;2788](https://github.com/lucide-icons/lucide/pull/2788) - feat(icons): added `mouse-right` icon by [@&#8203;marvfash](https://github.com/marvfash) in [#&#8203;2787](https://github.com/lucide-icons/lucide/pull/2787) #### New Contributors - [@&#8203;marvfash](https://github.com/marvfash) made their first contribution in [#&#8203;2788](https://github.com/lucide-icons/lucide/pull/2788) **Full Changelog**: <https://github.com/lucide-icons/lucide/compare/0.572.0...0.574.0> ### [`v0.573.0`](https://github.com/lucide-icons/lucide/releases/tag/0.573.0): Version 0.573.0 [Compare Source](https://github.com/lucide-icons/lucide/compare/0.572.0...0.573.0) #### What's Changed - fix(icons): changed `rocking-chair` icon by [@&#8203;jamiemlaw](https://github.com/jamiemlaw) in [#&#8203;3445](https://github.com/lucide-icons/lucide/pull/3445) - fix(icons): flipped `coins` icon by [@&#8203;jguddas](https://github.com/jguddas) in [#&#8203;3158](https://github.com/lucide-icons/lucide/pull/3158) - feat(icons): added `x-line-top` icon by [@&#8203;jguddas](https://github.com/jguddas) in [#&#8203;2838](https://github.com/lucide-icons/lucide/pull/2838) - feat(icons): added `mouse-left` icon by [@&#8203;marvfash](https://github.com/marvfash) in [#&#8203;2788](https://github.com/lucide-icons/lucide/pull/2788) - feat(icons): added `mouse-right` icon by [@&#8203;marvfash](https://github.com/marvfash) in [#&#8203;2787](https://github.com/lucide-icons/lucide/pull/2787) #### New Contributors - [@&#8203;marvfash](https://github.com/marvfash) made their first contribution in [#&#8203;2788](https://github.com/lucide-icons/lucide/pull/2788) **Full Changelog**: <https://github.com/lucide-icons/lucide/compare/0.572.0...0.573.0> ### [`v0.572.0`](https://github.com/lucide-icons/lucide/releases/tag/0.572.0): Version 0.572.0 [Compare Source](https://github.com/lucide-icons/lucide/compare/0.571.0...0.572.0) #### What's Changed - feat(icons): added `message-circle-check` icon by [@&#8203;Shrinks99](https://github.com/Shrinks99) in [#&#8203;3770](https://github.com/lucide-icons/lucide/pull/3770) #### New Contributors - [@&#8203;Shrinks99](https://github.com/Shrinks99) made their first contribution in [#&#8203;3770](https://github.com/lucide-icons/lucide/pull/3770) **Full Changelog**: <https://github.com/lucide-icons/lucide/compare/0.571.0...0.572.0> ### [`v0.571.0`](https://github.com/lucide-icons/lucide/releases/tag/0.571.0): Version 0.571.0 [Compare Source](https://github.com/lucide-icons/lucide/compare/0.570.0...0.571.0) #### What's Changed - fix(icons): rearange `circle`-icons path and circle order by [@&#8203;adamlindqvist](https://github.com/adamlindqvist) in [#&#8203;3746](https://github.com/lucide-icons/lucide/pull/3746) - feat(icons): added `shelving-unit` icon by [@&#8203;karsa-mistmere](https://github.com/karsa-mistmere) in [#&#8203;3041](https://github.com/lucide-icons/lucide/pull/3041) #### New Contributors - [@&#8203;adamlindqvist](https://github.com/adamlindqvist) made their first contribution in [#&#8203;3746](https://github.com/lucide-icons/lucide/pull/3746) **Full Changelog**: <https://github.com/lucide-icons/lucide/compare/0.570.0...0.571.0> ### [`v0.570.0`](https://github.com/lucide-icons/lucide/releases/tag/0.570.0): Version 0.570.0 [Compare Source](https://github.com/lucide-icons/lucide/compare/0.569.0...0.570.0) #### What's Changed - feat(icons): added `towel-rack` icon by [@&#8203;jguddas](https://github.com/jguddas) in [#&#8203;3350](https://github.com/lucide-icons/lucide/pull/3350) **Full Changelog**: <https://github.com/lucide-icons/lucide/compare/0.569.0...0.570.0> ### [`v0.569.0`](https://github.com/lucide-icons/lucide/releases/tag/0.569.0): Version 0.569.0 [Compare Source](https://github.com/lucide-icons/lucide/compare/0.568.0...0.569.0) #### What's Changed - fix(icons): changed `clipboard-pen` icon by [@&#8203;Spleefies](https://github.com/Spleefies) in [#&#8203;4006](https://github.com/lucide-icons/lucide/pull/4006) - feat(icons): add `mirror-round` and `mirror-rectangular` by [@&#8203;Muhammad-Aqib-Bashir](https://github.com/Muhammad-Aqib-Bashir) in [#&#8203;3832](https://github.com/lucide-icons/lucide/pull/3832) **Full Changelog**: <https://github.com/lucide-icons/lucide/compare/0.568.0...0.569.0> ### [`v0.568.0`](https://github.com/lucide-icons/lucide/releases/tag/0.568.0): Version 0.568.0 [Compare Source](https://github.com/lucide-icons/lucide/compare/0.567.0...0.568.0) #### What's Changed - fix(icons): adjusted `clapperboard` so slash is no longer protruding by [@&#8203;torfmuer](https://github.com/torfmuer) in [#&#8203;3764](https://github.com/lucide-icons/lucide/pull/3764) - feat(icons): Add `git-merge-conflict` icon by [@&#8203;timmy471](https://github.com/timmy471) in [#&#8203;3008](https://github.com/lucide-icons/lucide/pull/3008) #### New Contributors - [@&#8203;torfmuer](https://github.com/torfmuer) made their first contribution in [#&#8203;3764](https://github.com/lucide-icons/lucide/pull/3764) - [@&#8203;timmy471](https://github.com/timmy471) made their first contribution in [#&#8203;3008](https://github.com/lucide-icons/lucide/pull/3008) **Full Changelog**: <https://github.com/lucide-icons/lucide/compare/0.567.0...0.568.0> ### [`v0.567.0`](https://github.com/lucide-icons/lucide/releases/tag/0.567.0): Version 0.567.0 [Compare Source](https://github.com/lucide-icons/lucide/compare/0.566.0...0.567.0) #### What's Changed - chore(tags): added tags to `info` by [@&#8203;jamiemlaw](https://github.com/jamiemlaw) in [#&#8203;4047](https://github.com/lucide-icons/lucide/pull/4047) - fix(icons): changed `gift` icon by [@&#8203;jguddas](https://github.com/jguddas) in [#&#8203;3977](https://github.com/lucide-icons/lucide/pull/3977) - feat(icons): added `line-dot-right-horizontal` icon by [@&#8203;nathan-de-pachtere](https://github.com/nathan-de-pachtere) in [#&#8203;3742](https://github.com/lucide-icons/lucide/pull/3742) **Full Changelog**: <https://github.com/lucide-icons/lucide/compare/0.566.0...0.567.0> ### [`v0.566.0`](https://github.com/lucide-icons/lucide/releases/tag/0.566.0): Version 0.566.0 [Compare Source](https://github.com/lucide-icons/lucide/compare/0.565.0...0.566.0) #### What's Changed - fix(icons): changed `forklift` icon by [@&#8203;jguddas](https://github.com/jguddas) in [#&#8203;4069](https://github.com/lucide-icons/lucide/pull/4069) - fix(icons): changed `rocket` icon by [@&#8203;jguddas](https://github.com/jguddas) in [#&#8203;4067](https://github.com/lucide-icons/lucide/pull/4067) - feat(icons): added `globe-off` icon by [@&#8203;TimNekk](https://github.com/TimNekk) in [#&#8203;4051](https://github.com/lucide-icons/lucide/pull/4051) #### New Contributors - [@&#8203;TimNekk](https://github.com/TimNekk) made their first contribution in [#&#8203;4051](https://github.com/lucide-icons/lucide/pull/4051) **Full Changelog**: <https://github.com/lucide-icons/lucide/compare/0.565.0...0.566.0> ### [`v0.565.0`](https://github.com/lucide-icons/lucide/releases/tag/0.565.0): Version 0.565.0 [Compare Source](https://github.com/lucide-icons/lucide/compare/0.564.0...0.565.0) #### What's Changed - feat(icons): add `lens-concave` and `lens-convex` by [@&#8203;Muhammad-Aqib-Bashir](https://github.com/Muhammad-Aqib-Bashir) in [#&#8203;3831](https://github.com/lucide-icons/lucide/pull/3831) **Full Changelog**: <https://github.com/lucide-icons/lucide/compare/0.564.0...0.565.0> ### [`v0.564.0`](https://github.com/lucide-icons/lucide/releases/tag/0.564.0): Version 0.564.0 [Compare Source](https://github.com/lucide-icons/lucide/compare/0.563.0...0.564.0) #### What's Changed - chore(docs): Improve SEO icon detail pages by [@&#8203;ericfennis](https://github.com/ericfennis) in [#&#8203;4040](https://github.com/lucide-icons/lucide/pull/4040) - feat(icons): added `database-search` icon by [@&#8203;Spleefies](https://github.com/Spleefies) in [#&#8203;4003](https://github.com/lucide-icons/lucide/pull/4003) - fix(icons): changed `user-lock` icon by [@&#8203;jguddas](https://github.com/jguddas) in [#&#8203;3971](https://github.com/lucide-icons/lucide/pull/3971) - fix(icons): changed `bug-off` icon by [@&#8203;jguddas](https://github.com/jguddas) in [#&#8203;3972](https://github.com/lucide-icons/lucide/pull/3972) - fix(icons): changed `bell-dot` icon by [@&#8203;jguddas](https://github.com/jguddas) in [#&#8203;3973](https://github.com/lucide-icons/lucide/pull/3973) - fix(icons): changed `bandage` icon by [@&#8203;jguddas](https://github.com/jguddas) in [#&#8203;3967](https://github.com/lucide-icons/lucide/pull/3967) - fix(icons): changed `hard-drive` icon by [@&#8203;jguddas](https://github.com/jguddas) in [#&#8203;3622](https://github.com/lucide-icons/lucide/pull/3622) - fix(icons): changed `git-branch` icon by [@&#8203;jguddas](https://github.com/jguddas) in [#&#8203;3938](https://github.com/lucide-icons/lucide/pull/3938) - fix(icons): changed `file-cog` icon by [@&#8203;jguddas](https://github.com/jguddas) in [#&#8203;3965](https://github.com/lucide-icons/lucide/pull/3965) - fix(icons): changed `cloud-alert` and `cloud-check` icon by [@&#8203;jguddas](https://github.com/jguddas) in [#&#8203;3976](https://github.com/lucide-icons/lucide/pull/3976) - feat(icons): adds `user-key` and `user-round-key`, updates other `-key` icons to match by [@&#8203;karsa-mistmere](https://github.com/karsa-mistmere) in [#&#8203;4044](https://github.com/lucide-icons/lucide/pull/4044) #### New Contributors - [@&#8203;Spleefies](https://github.com/Spleefies) made their first contribution in [#&#8203;4003](https://github.com/lucide-icons/lucide/pull/4003) **Full Changelog**: <https://github.com/lucide-icons/lucide/compare/0.563.1...0.564.0> ### [`v0.563.0`](https://github.com/lucide-icons/lucide/releases/tag/0.563.0): Version 0.563.0 [Compare Source](https://github.com/lucide-icons/lucide/compare/0.562.0...0.563.0) #### What's Changed `aria-hidden` is by default added to icons components in all packages. This was already added to `lucide-react` before. Making icons accessible, you can add an `aria-label` or a `title`. See docs about [accessibility](https://lucide.dev/guide/advanced/accessibility). #### All changes - chore(dev): Enable ligatures in font build configuration by [@&#8203;dcxo](https://github.com/dcxo) in [#&#8203;3876](https://github.com/lucide-icons/lucide/pull/3876) - chore(repo): add Android to brand stopwords by [@&#8203;karsa-mistmere](https://github.com/karsa-mistmere) in [#&#8203;3895](https://github.com/lucide-icons/lucide/pull/3895) - fix(site): add missing titles and a title template by [@&#8203;taimar](https://github.com/taimar) in [#&#8203;3920](https://github.com/lucide-icons/lucide/pull/3920) - fix(site): unify and improve the styling of input fields by [@&#8203;taimar](https://github.com/taimar) in [#&#8203;3919](https://github.com/lucide-icons/lucide/pull/3919) - fix(icons): changed `star-off` icon by [@&#8203;jguddas](https://github.com/jguddas) in [#&#8203;3952](https://github.com/lucide-icons/lucide/pull/3952) - fix(icons): changed `tickets-plane` icon by [@&#8203;jguddas](https://github.com/jguddas) in [#&#8203;3928](https://github.com/lucide-icons/lucide/pull/3928) - fix(icons): changed `monitor-off` icon by [@&#8203;jguddas](https://github.com/jguddas) in [#&#8203;3962](https://github.com/lucide-icons/lucide/pull/3962) - fix(icons): changed `lasso` icon by [@&#8203;jguddas](https://github.com/jguddas) in [#&#8203;3961](https://github.com/lucide-icons/lucide/pull/3961) - fix(icons): changed `cloud-off` icon by [@&#8203;jguddas](https://github.com/jguddas) in [#&#8203;3942](https://github.com/lucide-icons/lucide/pull/3942) - docs(site): added lucide-web-components third-party package by [@&#8203;midesweb](https://github.com/midesweb) in [#&#8203;3948](https://github.com/lucide-icons/lucide/pull/3948) - chore(deps-dev): bump preact from 10.27.2 to 10.27.3 by [@&#8203;dependabot](https://github.com/dependabot)\[bot] in [#&#8203;3955](https://github.com/lucide-icons/lucide/pull/3955) - feat(icon): add globe-x icon with metadata by [@&#8203;Muhammad-Aqib-Bashir](https://github.com/Muhammad-Aqib-Bashir) in [#&#8203;3827](https://github.com/lucide-icons/lucide/pull/3827) - fix(icons): changed `waypoints` icon by [@&#8203;karsa-mistmere](https://github.com/karsa-mistmere) in [#&#8203;3990](https://github.com/lucide-icons/lucide/pull/3990) - fix(icons): changed `bookmark` icon by [@&#8203;jguddas](https://github.com/jguddas) in [#&#8203;2906](https://github.com/lucide-icons/lucide/pull/2906) - fix(icons): changed `message-square-dashed` icon by [@&#8203;jguddas](https://github.com/jguddas) in [#&#8203;3959](https://github.com/lucide-icons/lucide/pull/3959) - fix(icons): changed `cloudy` icon by [@&#8203;jguddas](https://github.com/jguddas) in [#&#8203;3966](https://github.com/lucide-icons/lucide/pull/3966) - fix(github-actions): resolved spelling mistake in gh issue close command by [@&#8203;jguddas](https://github.com/jguddas) in [#&#8203;4000](https://github.com/lucide-icons/lucide/pull/4000) - Update LICENSE by [@&#8203;alxgraphy](https://github.com/alxgraphy) in [#&#8203;4009](https://github.com/lucide-icons/lucide/pull/4009) - feat(packages): Added aria-hidden fallback for decorative icons to all packages by [@&#8203;ericfennis](https://github.com/ericfennis) in [#&#8203;3604](https://github.com/lucide-icons/lucide/pull/3604) - chore(deps): bump lodash from 4.17.21 to 4.17.23 by [@&#8203;dependabot](https://github.com/dependabot)\[bot] in [#&#8203;4020](https://github.com/lucide-icons/lucide/pull/4020) - chore(deps): bump lodash-es from 4.17.21 to 4.17.23 by [@&#8203;dependabot](https://github.com/dependabot)\[bot] in [#&#8203;4019](https://github.com/lucide-icons/lucide/pull/4019) - Suggest anchoring to a specific lucide version when using a cdn by [@&#8203;drago1520](https://github.com/drago1520) in [#&#8203;3727](https://github.com/lucide-icons/lucide/pull/3727) - feat(docs): upgraded backers block by [@&#8203;karsa-mistmere](https://github.com/karsa-mistmere) in [#&#8203;4014](https://github.com/lucide-icons/lucide/pull/4014) - fix(site): hide native search input clear "X" icon by [@&#8203;epifaniofrancisco](https://github.com/epifaniofrancisco) in [#&#8203;3933](https://github.com/lucide-icons/lucide/pull/3933) - feat(icons): added `printer-x` icon by [@&#8203;lt25106](https://github.com/lt25106) in [#&#8203;3941](https://github.com/lucide-icons/lucide/pull/3941) #### New Contributors - [@&#8203;dcxo](https://github.com/dcxo) made their first contribution in [#&#8203;3876](https://github.com/lucide-icons/lucide/pull/3876) - [@&#8203;midesweb](https://github.com/midesweb) made their first contribution in [#&#8203;3948](https://github.com/lucide-icons/lucide/pull/3948) - [@&#8203;alxgraphy](https://github.com/alxgraphy) made their first contribution in [#&#8203;4009](https://github.com/lucide-icons/lucide/pull/4009) - [@&#8203;drago1520](https://github.com/drago1520) made their first contribution in [#&#8203;3727](https://github.com/lucide-icons/lucide/pull/3727) - [@&#8203;lt25106](https://github.com/lt25106) made their first contribution in [#&#8203;3941](https://github.com/lucide-icons/lucide/pull/3941) **Full Changelog**: <https://github.com/lucide-icons/lucide/compare/0.562.0...0.563.0> ### [`v0.562.0`](https://github.com/lucide-icons/lucide/releases/tag/0.562.0): Version 0.562.0 [Compare Source](https://github.com/lucide-icons/lucide/compare/0.561.0...0.562.0) #### What's Changed - fix(icons): changed `paint-bucket` icon by [@&#8203;jguddas](https://github.com/jguddas) in [#&#8203;3880](https://github.com/lucide-icons/lucide/pull/3880) - fix(site): Fix and unify color-picker font-size by [@&#8203;taimar](https://github.com/taimar) in [#&#8203;3889](https://github.com/lucide-icons/lucide/pull/3889) - fix(react-native-web): only add className prop to parent Icon component by [@&#8203;jguddas](https://github.com/jguddas) in [#&#8203;3892](https://github.com/lucide-icons/lucide/pull/3892) - fix(lucide-react-native): remove icons namespace export to enable tree-shaking by [@&#8203;jtomaszewski](https://github.com/jtomaszewski) in [#&#8203;3868](https://github.com/lucide-icons/lucide/pull/3868) - feat(icons): added `toolbox` icon by [@&#8203;karsa-mistmere](https://github.com/karsa-mistmere) in [#&#8203;3871](https://github.com/lucide-icons/lucide/pull/3871) #### New Contributors - [@&#8203;taimar](https://github.com/taimar) made their first contribution in [#&#8203;3889](https://github.com/lucide-icons/lucide/pull/3889) - [@&#8203;jtomaszewski](https://github.com/jtomaszewski) made their first contribution in [#&#8203;3868](https://github.com/lucide-icons/lucide/pull/3868) **Full Changelog**: <https://github.com/lucide-icons/lucide/compare/0.561.0...0.562.0> ### [`v0.561.0`](https://github.com/lucide-icons/lucide/releases/tag/0.561.0): Version 0.561.0 [Compare Source](https://github.com/lucide-icons/lucide/compare/0.560.0...0.561.0) #### What's Changed - fix(site): Small adjustments color picker and add clear button search bar by [@&#8203;ericfennis](https://github.com/ericfennis) in [#&#8203;3851](https://github.com/lucide-icons/lucide/pull/3851) - feat(icons): added `stone` icon by [@&#8203;Alportan](https://github.com/Alportan) in [#&#8203;3850](https://github.com/lucide-icons/lucide/pull/3850) **Full Changelog**: <https://github.com/lucide-icons/lucide/compare/0.560.0...0.561.0> ### [`v0.560.0`](https://github.com/lucide-icons/lucide/releases/tag/0.560.0): Version 0.560.0 [Compare Source](https://github.com/lucide-icons/lucide/compare/0.559.0...0.560.0) #### What's Changed - feat(icons): added `cannabis-off` icon by [@&#8203;NickVeles](https://github.com/NickVeles) in [#&#8203;3748](https://github.com/lucide-icons/lucide/pull/3748) #### New Contributors - [@&#8203;NickVeles](https://github.com/NickVeles) made their first contribution in [#&#8203;3748](https://github.com/lucide-icons/lucide/pull/3748) **Full Changelog**: <https://github.com/lucide-icons/lucide/compare/0.559.0...0.560.0> ### [`v0.559.0`](https://github.com/lucide-icons/lucide/releases/tag/0.559.0): Version 0.559.0 [Compare Source](https://github.com/lucide-icons/lucide/compare/0.558.0...0.559.0) #### What's Changed - feat(icons): added `fishing-hook` icon by [@&#8203;7ender](https://github.com/7ender) in [#&#8203;3837](https://github.com/lucide-icons/lucide/pull/3837) #### New Contributors - [@&#8203;7ender](https://github.com/7ender) made their first contribution in [#&#8203;3837](https://github.com/lucide-icons/lucide/pull/3837) **Full Changelog**: <https://github.com/lucide-icons/lucide/compare/0.558.0...0.559.0> ### [`v0.558.0`](https://github.com/lucide-icons/lucide/releases/tag/0.558.0): Version 0.558.0 [Compare Source](https://github.com/lucide-icons/lucide/compare/0.557.0...0.558.0) #### What's Changed - feat(icons): added `hd` icon by [@&#8203;jamiemlaw](https://github.com/jamiemlaw) in [#&#8203;2958](https://github.com/lucide-icons/lucide/pull/2958) **Full Changelog**: <https://github.com/lucide-icons/lucide/compare/0.557.0...0.558.0> ### [`v0.557.0`](https://github.com/lucide-icons/lucide/releases/tag/0.557.0): Version 0.557.0 [Compare Source](https://github.com/lucide-icons/lucide/compare/0.556.0...0.557.0) #### What's Changed - fix(github/workflows/ci): fixes linting issues by [@&#8203;karsa-mistmere](https://github.com/karsa-mistmere) in [#&#8203;3858](https://github.com/lucide-icons/lucide/pull/3858) - fix(icons): changed `memory-stick` icon by [@&#8203;karsa-mistmere](https://github.com/karsa-mistmere) in [#&#8203;3017](https://github.com/lucide-icons/lucide/pull/3017) - fix(icons): changed `microchip` icon by [@&#8203;karsa-mistmere](https://github.com/karsa-mistmere) in [#&#8203;3018](https://github.com/lucide-icons/lucide/pull/3018) - chore(repo): Update Node version and overal cleanup by [@&#8203;ericfennis](https://github.com/ericfennis) in [#&#8203;3861](https://github.com/lucide-icons/lucide/pull/3861) - fix(icons): changed `paint-bucket` icon by [@&#8203;jguddas](https://github.com/jguddas) in [#&#8203;3865](https://github.com/lucide-icons/lucide/pull/3865) - fix(icons): changed `brush-cleaning` icon by [@&#8203;jguddas](https://github.com/jguddas) in [#&#8203;3863](https://github.com/lucide-icons/lucide/pull/3863) - fix(icons): Swap `thumbs-up` `thumbs-down` paths to fix fill issue by [@&#8203;theianjones](https://github.com/theianjones) in [#&#8203;3873](https://github.com/lucide-icons/lucide/pull/3873) - fix(icons): changed `tickets` icon by [@&#8203;karsa-mistmere](https://github.com/karsa-mistmere) in [#&#8203;3859](https://github.com/lucide-icons/lucide/pull/3859) - feat(icons): added `layers-plus` icon by [@&#8203;juanisidoro](https://github.com/juanisidoro) in [#&#8203;3367](https://github.com/lucide-icons/lucide/pull/3367) - docs(dev): Fix code sample for vanilla JS by [@&#8203;wavebeem](https://github.com/wavebeem) in [#&#8203;3836](https://github.com/lucide-icons/lucide/pull/3836) - feat(icons): add `search-error` icon by [@&#8203;Veatec22](https://github.com/Veatec22) in [#&#8203;3292](https://github.com/lucide-icons/lucide/pull/3292) - feat(icons): Add `cloud-sync` and `cloud-backup` by [@&#8203;ericfennis](https://github.com/ericfennis) in [#&#8203;3466](https://github.com/lucide-icons/lucide/pull/3466) - feat(icons): added `circle-pile` icon by [@&#8203;nathan-de-pachtere](https://github.com/nathan-de-pachtere) in [#&#8203;3681](https://github.com/lucide-icons/lucide/pull/3681) - feat(icons): added `balloon` icon by [@&#8203;peteruithoven](https://github.com/peteruithoven) in [#&#8203;2519](https://github.com/lucide-icons/lucide/pull/2519) #### New Contributors - [@&#8203;theianjones](https://github.com/theianjones) made their first contribution in [#&#8203;3873](https://github.com/lucide-icons/lucide/pull/3873) - [@&#8203;juanisidoro](https://github.com/juanisidoro) made their first contribution in [#&#8203;3367](https://github.com/lucide-icons/lucide/pull/3367) - [@&#8203;wavebeem](https://github.com/wavebeem) made their first contribution in [#&#8203;3836](https://github.com/lucide-icons/lucide/pull/3836) - [@&#8203;Veatec22](https://github.com/Veatec22) made their first contribution in [#&#8203;3292](https://github.com/lucide-icons/lucide/pull/3292) **Full Changelog**: <https://github.com/lucide-icons/lucide/compare/0.556.0...0.557.0> ### [`v0.556.0`](https://github.com/lucide-icons/lucide/releases/tag/0.556.0): Version 0.556.0 [Compare Source](https://github.com/lucide-icons/lucide/compare/0.555.0...0.556.0) #### What's Changed - feat(icon): add `book-search` icon ([#&#8203;3573](https://github.com/lucide-icons/lucide/issues/3573)) by [@&#8203;Muhammad-Aqib-Bashir](https://github.com/Muhammad-Aqib-Bashir) in [#&#8203;3580](https://github.com/lucide-icons/lucide/pull/3580) - chore(dependencies): Update dependencies by [@&#8203;ericfennis](https://github.com/ericfennis) in [#&#8203;3809](https://github.com/lucide-icons/lucide/pull/3809) - ci(workflows): Enable trusted publishing in release by [@&#8203;ericfennis](https://github.com/ericfennis) in [#&#8203;3808](https://github.com/lucide-icons/lucide/pull/3808) - feat(icons): added `scooter` icon by [@&#8203;Ahmed-Dghaies](https://github.com/Ahmed-Dghaies) in [#&#8203;3818](https://github.com/lucide-icons/lucide/pull/3818) - fix(icons): changed `plug` icon by [@&#8203;jamiemlaw](https://github.com/jamiemlaw) in [#&#8203;3841](https://github.com/lucide-icons/lucide/pull/3841) - fix(icons): changed `thermometer-sun` icon by [@&#8203;jguddas](https://github.com/jguddas) in [#&#8203;3773](https://github.com/lucide-icons/lucide/pull/3773) - fix(icons): Shrink square-scissors icons to match optical volume by [@&#8203;eden881](https://github.com/eden881) in [#&#8203;3603](https://github.com/lucide-icons/lucide/pull/3603) - feat(preview-comment): add symmetry preview by [@&#8203;jguddas](https://github.com/jguddas) in [#&#8203;3823](https://github.com/lucide-icons/lucide/pull/3823) - feat(icons): added `estimated-weight` icon by [@&#8203;nathan-de-pachtere](https://github.com/nathan-de-pachtere) in [#&#8203;3822](https://github.com/lucide-icons/lucide/pull/3822) - fix(icons): changed `flashlight` icons by [@&#8203;jamiemlaw](https://github.com/jamiemlaw) in [#&#8203;3843](https://github.com/lucide-icons/lucide/pull/3843) - fix(icons): changed `bubbles` icon by [@&#8203;jguddas](https://github.com/jguddas) in [#&#8203;3774](https://github.com/lucide-icons/lucide/pull/3774) - feat(site): add brand stop words to icon search by [@&#8203;karsa-mistmere](https://github.com/karsa-mistmere) in [#&#8203;3824](https://github.com/lucide-icons/lucide/pull/3824) - feat(icons): added `van` icon by [@&#8203;Ahmed-Dghaies](https://github.com/Ahmed-Dghaies) in [#&#8203;3821](https://github.com/lucide-icons/lucide/pull/3821) #### New Contributors - [@&#8203;Muhammad-Aqib-Bashir](https://github.com/Muhammad-Aqib-Bashir) made their first contribution in [#&#8203;3580](https://github.com/lucide-icons/lucide/pull/3580) - [@&#8203;Ahmed-Dghaies](https://github.com/Ahmed-Dghaies) made their first contribution in [#&#8203;3818](https://github.com/lucide-icons/lucide/pull/3818) - [@&#8203;eden881](https://github.com/eden881) made their first contribution in [#&#8203;3603](https://github.com/lucide-icons/lucide/pull/3603) - [@&#8203;nathan-de-pachtere](https://github.com/nathan-de-pachtere) made their first contribution in [#&#8203;3822](https://github.com/lucide-icons/lucide/pull/3822) **Full Changelog**: <https://github.com/lucide-icons/lucide/compare/0.555.0...0.556.0> ### [`v0.555.0`](https://github.com/lucide-icons/lucide/releases/tag/0.555.0): Version 0.555.0 [Compare Source](https://github.com/lucide-icons/lucide/compare/0.554.0...0.555.0) #### What's Changed - fix(icons): changed `calendars` icon by [@&#8203;jguddas](https://github.com/jguddas) in [#&#8203;3795](https://github.com/lucide-icons/lucide/pull/3795) - fix(docs): correct package name and description for Flutter and Lustre package ([#&#8203;3701](https://github.com/lucide-icons/lucide/issues/3701)) by [@&#8203;epifaniofrancisco](https://github.com/epifaniofrancisco) in [#&#8203;3703](https://github.com/lucide-icons/lucide/pull/3703) - feat(angular): Angular V21 Support by [@&#8203;JeevanMahesha](https://github.com/JeevanMahesha) in [#&#8203;3807](https://github.com/lucide-icons/lucide/pull/3807) - chore(metadata): Adjust navigation category by [@&#8203;ericfennis](https://github.com/ericfennis) in [#&#8203;3461](https://github.com/lucide-icons/lucide/pull/3461) - feat(icons): Add `waves-arrow-up` and `waves-arrow-down` by [@&#8203;ericfennis](https://github.com/ericfennis) in [#&#8203;3463](https://github.com/lucide-icons/lucide/pull/3463) - fix(icons): changed `scale` icon by [@&#8203;jamiemlaw](https://github.com/jamiemlaw) in [#&#8203;3800](https://github.com/lucide-icons/lucide/pull/3800) - feat(icons): added `form` icon by [@&#8203;jguddas](https://github.com/jguddas) in [#&#8203;3558](https://github.com/lucide-icons/lucide/pull/3558) **Full Changelog**: <https://github.com/lucide-icons/lucide/compare/0.554.0...0.555.0> ### [`v0.554.0`](https://github.com/lucide-icons/lucide/releases/tag/0.554.0): Version 0.554.0 [Compare Source](https://github.com/lucide-icons/lucide/compare/0.553.0...0.554.0) #### What's Changed - fix(icons): Rename fingerprint icon to fingerprint-pattern by [@&#8203;ericfennis](https://github.com/ericfennis) in [#&#8203;3767](https://github.com/lucide-icons/lucide/pull/3767) - feat(docs): added lucide-rails third-party package by [@&#8203;theiereman](https://github.com/theiereman) in [#&#8203;3769](https://github.com/lucide-icons/lucide/pull/3769) - fix(icons): changed `ampersand` icon by [@&#8203;jguddas](https://github.com/jguddas) in [#&#8203;3771](https://github.com/lucide-icons/lucide/pull/3771) - fix(icons): changed `folder-git-2` icon by [@&#8203;jguddas](https://github.com/jguddas) in [#&#8203;3790](https://github.com/lucide-icons/lucide/pull/3790) - fix(icons): update `anchor` icon by [@&#8203;jamiemlaw](https://github.com/jamiemlaw) in [#&#8203;2523](https://github.com/lucide-icons/lucide/pull/2523) - feat(icons): added `calendars` icon by [@&#8203;jguddas](https://github.com/jguddas) in [#&#8203;3788](https://github.com/lucide-icons/lucide/pull/3788) #### Breaking change For `lucide-react` and `lucide-solid`, imports for `Fingerprint` icon are changed to `FingerprintPattern`. ##### Lucide React ```diff - import { Fingerprint } from "lucide-react"; + import { FingerprintPattern } from "lucide-react"; ``` ##### Lucide Solid ```diff - import { Fingerprint } from "lucide/solid"; + import { FingerprintPattern } from "lucide/solid"; // Or - import Fingerprint from "lucide/solid/icons/fingerprint"; + import FingerprintPattern from "lucide/solid/icons/fingerprint-pattern"; ``` #### New Contributors - [@&#8203;theiereman](https://github.com/theiereman) made their first contribution in [#&#8203;3769](https://github.com/lucide-icons/lucide/pull/3769) **Full Changelog**: <https://github.com/lucide-icons/lucide/compare/0.553.0...0.554.0> ### [`v0.553.0`](https://github.com/lucide-icons/lucide/releases/tag/0.553.0): Version 0.553.0 [Compare Source](https://github.com/lucide-icons/lucide/compare/0.552.0...0.553.0) #### What's Changed - feat(icons): added `mouse-pointer-2-off` icon by [@&#8203;domingasp](https://github.com/domingasp) in [#&#8203;3570](https://github.com/lucide-icons/lucide/pull/3570) - fix(icons): changed `ruler-dimension-line` icon by [@&#8203;karsa-mistmere](https://github.com/karsa-mistmere) in [#&#8203;3433](https://github.com/lucide-icons/lucide/pull/3433) - feat(docs): add keyboard shortcut for search by [@&#8203;dzonatan](https://github.com/dzonatan) in [#&#8203;3718](https://github.com/lucide-icons/lucide/pull/3718) - fix(lucide-preact): handle `className` prop by [@&#8203;ocavue](https://github.com/ocavue) in [#&#8203;3751](https://github.com/lucide-icons/lucide/pull/3751) - feat(icons): added chess pieces by [@&#8203;karsa-mistmere](https://github.com/karsa-mistmere) in [#&#8203;1945](https://github.com/lucide-icons/lucide/pull/1945) #### New Contributors - [@&#8203;domingasp](https://github.com/domingasp) made their first contribution in [#&#8203;3570](https://github.com/lucide-icons/lucide/pull/3570) **Full Changelog**: <https://github.com/lucide-icons/lucide/compare/0.552.0...0.553.0> ### [`v0.552.0`](https://github.com/lucide-icons/lucide/releases/tag/0.552.0): Version 0.552.0 [Compare Source](https://github.com/lucide-icons/lucide/compare/0.551.0...0.552.0) #### What's Changed - fix(icons/file): arcified folds by [@&#8203;karsa-mistmere](https://github.com/karsa-mistmere) in [#&#8203;3587](https://github.com/lucide-icons/lucide/pull/3587) - feat(icons): added `solar-panel` icon by [@&#8203;UsamaKhan](https://github.com/UsamaKhan) in [#&#8203;2780](https://github.com/lucide-icons/lucide/pull/2780) **Full Changelog**: <https://github.com/lucide-icons/lucide/compare/0.551.0...0.552.0> ### [`v0.551.0`](https://github.com/lucide-icons/lucide/releases/tag/0.551.0): Version 0.551.0 [Compare Source](https://github.com/lucide-icons/lucide/compare/0.550.0...0.551.0) #### What's Changed - feat(icons): added `clock-check` icon by [@&#8203;jguddas](https://github.com/jguddas) in [#&#8203;2402](https://github.com/lucide-icons/lucide/pull/2402) **Full Changelog**: <https://github.com/lucide-icons/lucide/compare/0.550.0...0.551.0> ### [`v0.550.0`](https://github.com/lucide-icons/lucide/releases/tag/0.550.0): Version 0.550.0 [Compare Source](https://github.com/lucide-icons/lucide/compare/0.549.0...0.550.0) #### What's Changed - feat(icons): added `helicopter` icon by [@&#8203;liloudreams](https://github.com/liloudreams) in [#&#8203;2760](https://github.com/lucide-icons/lucide/pull/2760) #### New Contributors - [@&#8203;liloudreams](https://github.com/liloudreams) made their first contribution in [#&#8203;2760](https://github.com/lucide-icons/lucide/pull/2760) **Full Changelog**: <https://github.com/lucide-icons/lucide/compare/0.549.0...0.550.0> ### [`v0.549.0`](https://github.com/lucide-icons/lucide/releases/tag/0.549.0): Version 0.549.0 [Compare Source](https://github.com/lucide-icons/lucide/compare/0.548.0...0.549.0) #### What's Changed - fix(docs): Replace `pnpm install` with `pnpm add` across documentation. by [@&#8203;josch87](https://github.com/josch87) in [#&#8203;3735](https://github.com/lucide-icons/lucide/pull/3735) - feat(docs): add new package for Go by [@&#8203;kaugesaar](https://github.com/kaugesaar) in [#&#8203;3736](https://github.com/lucide-icons/lucide/pull/3736) - feat(icons): added `git-branch-minus` icon by [@&#8203;joris-gallot](https://github.com/joris-gallot) in [#&#8203;3586](https://github.com/lucide-icons/lucide/pull/3586) #### New Contributors - [@&#8203;josch87](https://github.com/josch87) made their first contribution in [#&#8203;3735](https://github.com/lucide-icons/lucide/pull/3735) - [@&#8203;kaugesaar](https://github.com/kaugesaar) made their first contribution in [#&#8203;3736](https://github.com/lucide-icons/lucide/pull/3736) - [@&#8203;joris-gallot](https://github.com/joris-gallot) made their first contribution in [#&#8203;3586](https://github.com/lucide-icons/lucide/pull/3586) **Full Changelog**: <https://github.com/lucide-icons/lucide/compare/0.548.0...0.549.0> ### [`v0.548.0`](https://github.com/lucide-icons/lucide/releases/tag/0.548.0): Version 0.548.0 [Compare Source](https://github.com/lucide-icons/lucide/compare/0.547.0...0.548.0) #### What's Changed - feat(docs): add new package for Slint by [@&#8203;cnlancehu](https://github.com/cnlancehu) in [#&#8203;3698](https://github.com/lucide-icons/lucide/pull/3698) - docs(site): add introductions for packages in documentation by [@&#8203;mattheskaiser](https://github.com/mattheskaiser) in [#&#8203;3643](https://github.com/lucide-icons/lucide/pull/3643) - Fix default prop by [@&#8203;ericfennis](https://github.com/ericfennis) in [#&#8203;3730](https://github.com/lucide-icons/lucide/pull/3730) - feat(icons): added `gamepad-directional` icon by [@&#8203;felipeajzanetti](https://github.com/felipeajzanetti) in [#&#8203;3693](https://github.com/lucide-icons/lucide/pull/3693) #### New Contributors - [@&#8203;cnlancehu](https://github.com/cnlancehu) made their first contribution in [#&#8203;3698](https://github.com/lucide-icons/lucide/pull/3698) - [@&#8203;mattheskaiser](https://github.com/mattheskaiser) made their first contribution in [#&#8203;3643](https://github.com/lucide-icons/lucide/pull/3643) - [@&#8203;felipeajzanetti](https://github.com/felipeajzanetti) made their first contribution in [#&#8203;3693](https://github.com/lucide-icons/lucide/pull/3693) **Full Changelog**: <https://github.com/lucide-icons/lucide/compare/0.547.0...0.548.0> ### [`v0.547.0`](https://github.com/lucide-icons/lucide/releases/tag/0.547.0): Version 0.547.0 [Compare Source](https://github.com/lucide-icons/lucide/compare/0.546.0...0.547.0) #### What's Changed - fix(docs): update brand logo statement link in github action by [@&#8203;karsa-mistmere](https://github.com/karsa-mistmere) in [#&#8203;3630](https://github.com/lucide-icons/lucide/pull/3630) - chore(deps): bump astro from 5.5.2 to 5.14.4 by [@&#8203;dependabot](https://github.com/dependabot)\[bot] in [#&#8203;3683](https://github.com/lucide-icons/lucide/pull/3683) - fix(packages/lucide): replace elements inside `<template>` ([#&#8203;2635](https://github.com/lucide-icons/lucide/issues/2635)) by [@&#8203;KhalidAlansary](https://github.com/KhalidAlansary) in [#&#8203;3576](https://github.com/lucide-icons/lucide/pull/3576) - feat(icons): added `birdhouse` icon by [@&#8203;hieu-onefold](https://github.com/hieu-onefold) in [#&#8203;3378](https://github.com/lucide-icons/lucide/pull/3378) #### New Contributors - [@&#8203;KhalidAlansary](https://github.com/KhalidAlansary) made their first contribution in [#&#8203;3576](https://github.com/lucide-icons/lucide/pull/3576) - [@&#8203;hieu-onefold](https://github.com/hieu-onefold) made their first contribution in [#&#8203;3378](https://github.com/lucide-icons/lucide/pull/3378) **Full Changelog**: <https://github.com/lucide-icons/lucide/compare/0.546.0...0.547.0> ### [`v0.546.0`](https://github.com/lucide-icons/lucide/releases/tag/0.546.0): Version 0.546.0 [Compare Source](https://github.com/lucide-icons/lucide/compare/0.545.0...0.546.0) #### What's Changed - fix(icons): changed `receipt-text` icon by [@&#8203;jguddas](https://github.com/jguddas) in [#&#8203;3553](https://github.com/lucide-icons/lucide/pull/3553) - fix(docs): removed duplicate text in intro text by [@&#8203;nielsswinkels](https://github.com/nielsswinkels) in [#&#8203;3673](https://github.com/lucide-icons/lucide/pull/3673) - feat(icons): add VS Code `squircle` base shape snippet by [@&#8203;danielbayley](https://github.com/danielbayley) in [#&#8203;3674](https://github.com/lucide-icons/lucide/pull/3674) - fix(icons): changed `sword` icon by [@&#8203;jguddas](https://github.com/jguddas) in [#&#8203;3421](https://github.com/lucide-icons/lucide/pull/3421) - feat(icons): added `monitor-cloud` icon by [@&#8203;karsa-mistmere](https://github.com/karsa-mistmere) in [#&#8203;3037](https://github.com/lucide-icons/lucide/pull/3037) #### New Contributors - [@&#8203;nielsswinkels](https://github.com/nielsswinkels) made their first contribution in [#&#8203;3673](https://github.com/lucide-icons/lucide/pull/3673) **Full Changelog**: <https://github.com/lucide-icons/lucide/compare/0.545.0...0.546.0> ### [`v0.545.0`](https://github.com/lucide-icons/lucide/releases/tag/0.545.0): Version 0.545.0 [Compare Source](https://github.com/lucide-icons/lucide/compare/0.544.0...0.545.0) #### What's Changed - fix(icons): changed `flame` icon by [@&#8203;jamiemlaw](https://github.com/jamiemlaw) in [#&#8203;3600](https://github.com/lucide-icons/lucide/pull/3600) - fix(icons): arcified `square-m` icon by [@&#8203;jguddas](https://github.com/jguddas) in [#&#8203;3549](https://github.com/lucide-icons/lucide/pull/3549) - chore(deps-dev): bump vite from 6.3.5 to 6.3.6 by [@&#8203;dependabot](https://github.com/dependabot)\[bot] in [#&#8203;3611](https://github.com/lucide-icons/lucide/pull/3611) - fix(icons): changed `combine` icon by [@&#8203;jguddas](https://github.com/jguddas) in [#&#8203;3200](https://github.com/lucide-icons/lucide/pull/3200) - fix(icons): changed `building-2` icon by [@&#8203;karsa-mistmere](https://github.com/karsa-mistmere) in [#&#8203;3509](https://github.com/lucide-icons/lucide/pull/3509) - chore(deps): bump devalue from 5.1.1 to 5.3.2 by [@&#8203;dependabot](https://github.com/dependabot)\[bot] in [#&#8203;3638](https://github.com/lucide-icons/lucide/pull/3638) - feat(icons): Add `motorbike` icon by [@&#8203;jamiemlaw](https://github.com/jamiemlaw) in [#&#8203;3371](https://github.com/lucide-icons/lucide/pull/3371) **Full Changelog**: <https://github.com/lucide-icons/lucide/compare/0.544.0...0.545.0> ### [`v0.544.0`](https://github.com/lucide-icons/lucide/releases/tag/0.544.0): Version 0.544.0 [Compare Source](https://github.com/lucide-icons/lucide/compare/0.543.0...0.544.0) #### What's Changed - docs: update lucide-static documentation about raw string imports by [@&#8203;pascalduez](https://github.com/pascalduez) in [#&#8203;3524](https://github.com/lucide-icons/lucide/pull/3524) - feat(icons): added `ev-charger` icon by [@&#8203;UsamaKhan](https://github.com/UsamaKhan) in [#&#8203;2781](https://github.com/lucide-icons/lucide/pull/2781) #### New Contributors - [@&#8203;pascalduez](https://github.com/pascalduez) made their first contribution in [#&#8203;3524](https://github.com/lucide-icons/lucide/pull/3524) **Full Changelog**: <https://github.com/lucide-icons/lucide/compare/0.543.0...0.544.0> ### [`v0.543.0`](https://github.com/lucide-icons/lucide/releases/tag/0.543.0): Version 0.543.0 [Compare Source](https://github.com/lucide-icons/lucide/compare/0.542.0...0.543.0) #### What's Changed - feat(preview-comment): put x-ray at top if there are more than 7 changed icons to prevent them from being cut of by [@&#8203;jguddas](https://github.com/jguddas) in [#&#8203;3589](https://github.com/lucide-icons/lucide/pull/3589) - fix(icons): changed `church` icon by [@&#8203;karsa-mistmere](https://github.com/karsa-mistmere) in [#&#8203;2971](https://github.com/lucide-icons/lucide/pull/2971) - chore(metadata): Added tags to `messages-square` by [@&#8203;jamiemlaw](https://github.com/jamiemlaw) in [#&#8203;3529](https://github.com/lucide-icons/lucide/pull/3529) - fix(icons): Optimise `bug` icons by [@&#8203;jamiemlaw](https://github.com/jamiemlaw) in [#&#8203;3574](https://github.com/lucide-icons/lucide/pull/3574) - fix(icons): changed list/text & derived icons by [@&#8203;karsa-mistmere](https://github.com/karsa-mistmere) in [#&#8203;3568](https://github.com/lucide-icons/lucide/pull/3568) - fix(icons): changed `panel-top-bottom-dashed` icon by [@&#8203;jguddas](https://github.com/jguddas) in [#&#8203;3584](https://github.com/lucide-icons/lucide/pull/3584) - fix(icons): changed `message-square-quote` icon by [@&#8203;jguddas](https://github.com/jguddas) in [#&#8203;3550](https://github.com/lucide-icons/lucide/pull/3550) - fix(meta): added tag to `ship` metadata by [@&#8203;jguddas](https://github.com/jguddas) in [#&#8203;3559](https://github.com/lucide-icons/lucide/pull/3559) - fix(meta): add tags to `id-card-lanyard` metadata by [@&#8203;jguddas](https://github.com/jguddas) in [#&#8203;3534](https://github.com/lucide-icons/lucide/pull/3534) - fix(icons): changed `calendar-cog` icon by [@&#8203;jguddas](https://github.com/jguddas) in [#&#8203;3583](https://github.com/lucide-icons/lucide/pull/3583) - chore(deps): bump astro from 5.5.2 to 5.13.2 by [@&#8203;dependabot](https://github.com/dependabot)\[bot] in [#&#8203;3564](https://github.com/lucide-icons/lucide/pull/3564) - feat(packages): add new package for flutter by [@&#8203;vqh2602](https://github.com/vqh2602) in [#&#8203;3536](https://github.com/lucide-icons/lucide/pull/3536) - feat(icons): added `house-heart` icon by [@&#8203;danielbayley](https://github.com/danielbayley) in [#&#8203;3239](https://github.com/lucide-icons/lucide/pull/3239) **Full Changelog**: <https://github.com/lucide-icons/lucide/compare/0.542.0...0.543.0> ### [`v0.542.0`](https://github.com/lucide-icons/lucide/releases/tag/0.542.0): Version 0.542.0 [Compare Source](https://github.com/lucide-icons/lucide/compare/0.541.0...0.542.0) #### What's Changed - feat(docs): add MDN Web Docs & Nuxt to showcase by [@&#8203;karsa-mistmere](https://github.com/karsa-mistmere) in [#&#8203;3590](https://github.com/lucide-icons/lucide/pull/3590) - feat(icons): added `list-chevrons-down-up` icon by [@&#8203;juliankellydesign](https://github.com/juliankellydesign) in [#&#8203;3492](https://github.com/lucide-icons/lucide/pull/3492) #### New Contributors - [@&#8203;juliankellydesign](https://github.com/juliankellydesign) made their first contribution in [#&#8203;3492](https://github.com/lucide-icons/lucide/pull/3492) **Full Changelog**: <https://github.com/lucide-icons/lucide/compare/0.541.0...0.542.0> ### [`v0.541.0`](https://github.com/lucide-icons/lucide/releases/tag/0.541.0): Version 0.541.0 [Compare Source](https://github.com/lucide-icons/lucide/compare/0.540.0...0.541.0) #### What's Changed - feat(packages/lucide): added support for providing a custom root element by [@&#8203;karsa-mistmere](https://github.com/karsa-mistmere) in [#&#8203;3543](https://github.com/lucide-icons/lucide/pull/3543) - fix(icons): optimized `chrome` icon & renamed to `chromium` by [@&#8203;jguddas](https://github.com/jguddas) in [#&#8203;3572](https://github.com/lucide-icons/lucide/pull/3572) - fix(icons): changed `wallpaper` icon by [@&#8203;jguddas](https://github.com/jguddas) in [#&#8203;3566](https://github.com/lucide-icons/lucide/pull/3566) - fix(icons): optimized `cog` icon by [@&#8203;jguddas](https://github.com/jguddas) in [#&#8203;3548](https://github.com/lucide-icons/lucide/pull/3548) - fix(icons): changed `building` icon by [@&#8203;karsa-mistmere](https://github.com/karsa-mistmere) in [#&#8203;3510](https://github.com/lucide-icons/lucide/pull/3510) - feat(dpi-preview): add previous version for easier comparison by [@&#8203;jguddas](https://github.com/jguddas) in [#&#8203;3532](https://github.com/lucide-icons/lucide/pull/3532) - feat(icons): added 'panel-dashed' variants + update tags on existing icons by [@&#8203;irvineacosta](https://github.com/irvineacosta) in [#&#8203;3500](https://github.com/lucide-icons/lucide/pull/3500) **Full Changelog**: <https://github.com/lucide-icons/lucide/compare/0.540.0...0.541.0> ### [`v0.540.0`](https://github.com/lucide-icons/lucide/releases/tag/0.540.0): Version 0.540.0 [Compare Source](https://github.com/lucide-icons/lucide/compare/0.539.0...0.540.0) #### What's Changed - fix(license): add full text of Feather license by [@&#8203;jguddas](https://github.com/jguddas) in [#&#8203;3530](https://github.com/lucide-icons/lucide/pull/3530) - fix(icons): changed `umbrella` icon by [@&#8203;karsa-mistmere](https://github.com/karsa-mistmere) in [#&#8203;3490](https://github.com/lucide-icons/lucide/pull/3490) - docs(site): added official statement on brand logos in Lucide by [@&#8203;karsa-mistmere](https://github.com/karsa-mistmere) in [#&#8203;3541](https://github.com/lucide-icons/lucide/pull/3541) - fix(icons): changed `camera` icon by [@&#8203;karsa-mistmere](https://github.com/karsa-mistmere) in [#&#8203;3539](https://github.com/lucide-icons/lucide/pull/3539) - feat(icons): added `rose` icon by [@&#8203;jguddas](https://github.com/jguddas) in [#&#8203;1972](https://github.com/lucide-icons/lucide/pull/1972) **Full Changelog**: <https://github.com/lucide-icons/lucide/compare/0.539.0...0.540.0> ### [`v0.539.0`](https://github.com/lucide-icons/lucide/releases/tag/0.539.0): Version 0.539.0 [Compare Source](https://github.com/lucide-icons/lucide/compare/0.538.0...0.539.0) #### What's Changed - feat(icons): added `brick-wall-shield` icon by [@&#8203;karsa-mistmere](https://github.com/karsa-mistmere) in [#&#8203;3476](https://github.com/lucide-icons/lucide/pull/3476) **Full Changelog**: <https://github.com/lucide-icons/lucide/compare/0.538.0...0.539.0> ### [`v0.538.0`](https://github.com/lucide-icons/lucide/releases/tag/0.538.0): Version 0.538.0 [Compare Source](https://github.com/lucide-icons/lucide/compare/0.537.0...0.538.0) #### What's Changed - fix(icons): changed `apple` icon by [@&#8203;karsa-mistmere](https://github.com/karsa-mistmere) in [#&#8203;3505](https://github.com/lucide-icons/lucide/pull/3505) - fix(icons): changed `store` icon by [@&#8203;karsa-mistmere](https://github.com/karsa-mistmere) in [#&#8203;3501](https://github.com/lucide-icons/lucide/pull/3501) - fix(icons): changed `mic-off` icon by [@&#8203;lieonlion](https://github.com/lieonlion) in [#&#8203;2823](https://github.com/lucide-icons/lucide/pull/2823) - chore(deps): bump astro from 5.5.2 to 5.12.8 by [@&#8203;dependabot](https://github.com/dependabot)\[bot] in [#&#8203;3523](https://github.com/lucide-icons/lucide/pull/3523) - fix(icons): deprecate rail-symbol by [@&#8203;jguddas](https://github.com/jguddas) in [#&#8203;2862](https://github.com/lucide-icons/lucide/pull/2862) - feat(icons): added `kayak` icon by [@&#8203;jpjacobpadilla](https://github.com/jpjacobpadilla) in [#&#8203;3054](https://github.com/lucide-icons/lucide/pull/3054) **Full Changelog**: <https://github.com/lucide-icons/lucide/compare/0.537.0...0.538.0> ### [`v0.537.0`](https://github.com/lucide-icons/lucide/releases/tag/0.537.0): Version 0.537.0 [Compare Source](https://github.com/lucide-icons/lucide/compare/0.536.0...0.537.0) #### What's Changed - chore(metadata): Add tags to `x` icon by [@&#8203;jamiemlaw](https://github.com/jamiemlaw) in [#&#8203;3341](https://github.com/lucide-icons/lucide/pull/3341) - docs: add rule against war/violence related imagery by [@&#8203;jguddas](https://github.com/jguddas) in [#&#8203;3506](https://github.com/lucide-icons/lucide/pull/3506) - fix(icons): changed `spade` icon by [@&#8203;karsa-mistmere](https://github.com/karsa-mistmere) in [#&#8203;3502](https://github.com/lucide-icons/lucide/pull/3502) - fix(icons): changed `school` icon by [@&#8203;karsa-mistmere](https://github.com/karsa-mistmere) in [#&#8203;2968](https://github.com/lucide-icons/lucide/pull/2968) - fix(site): fixes icon style customiser by [@&#8203;karsa-mistmere](https://github.com/karsa-mistmere) in [#&#8203;3511](https://github.com/lucide-icons/lucide/pull/3511) - fix(docs): fixed array length error in diff endpoint by [@&#8203;jguddas](https://github.com/jguddas) in [#&#8203;3498](https://github.com/lucide-icons/lucide/pull/3498) - feat(icons): added `circle-star` icon by [@&#8203;karsa-mistmere](https://github.com/karsa-mistmere) in [#&#8203;3507](https://github.com/lucide-icons/lucide/pull/3507) **Full Changelog**: <https://github.com/lucide-icons/lucide/compare/0.536.0...0.537.0> ### [`v0.536.0`](https://github.com/lucide-icons/lucide/releases/tag/0.536.0): Version 0.536.0 [Compare Source](https://github.com/lucide-icons/lucide/compare/0.535.0...0.536.0) #### What's Changed - fix(icons): arcified message icons & fixed optical volume by [@&#8203;karsa-mistmere](https://github.com/karsa-mistmere) in [#&#8203;3473](https://github.com/lucide-icons/lucide/pull/3473) - fix(icons): changed `hospital` icon by [@&#8203;karsa-mistmere](https://github.com/karsa-mistmere) in [#&#8203;2969](https://github.com/lucide-icons/lucide/pull/2969) - fix([@&#8203;lucide/svelte](https://github.com/lucide/svelte)): Add `.js` extensions to imports by [@&#8203;abdel-17](https://github.com/abdel-17) in [#&#8203;2950](https://github.com/lucide-icons/lucide/pull/2950) - fix(lucide-vue-next): Support for kebabCase props by [@&#8203;ericfennis](https://github.com/ericfennis) in [#&#8203;3477](https://github.com/lucide-icons/lucide/pull/3477) - fix(icons): changed `a-arrow-*` icons by [@&#8203;jguddas](https://github.com/jguddas) in [#&#8203;3474](https://github.com/lucide-icons/lucide/pull/3474) - fix(icons): arcified `cake-slice` icon by [@&#8203;jguddas](https://github.com/jguddas) in [#&#8203;3345](https://github.com/lucide-icons/lucide/pull/3345) - feat(lucide-static): include aliases in icons directory by [@&#8203;jguddas](https://github.com/jguddas) in [#&#8203;3368](https://github.com/lucide-icons/lucide/pull/3368) - feat(icons): added `turntable` icon by [@&#8203;karsa-mistmere](https://github.com/karsa-mistmere) in [#&#8203;3429](https://github.com/lucide-icons/lucide/pull/3429) #### New Contributors - [@&#8203;abdel-17](https://github.com/abdel-17) made their first contribution in [#&#8203;2950](https://github.com/lucide-icons/lucide/pull/2950) **Full Changelog**: <https://github.com/lucide-icons/lucide/compare/0.535.0...0.536.0> ### [`v0.535.0`](https://github.com/lucide-icons/lucide/releases/tag/0.535.0): Version 0.535.0 [Compare Source](https://github.com/lucide-icons/lucide/compare/0.534.0...0.535.0) #### What's Changed - ci: add "telegram" to close-issue-with-banned-phrases by [@&#8203;jguddas](https://github.com/jguddas) in [#&#8203;3475](https://github.com/lucide-icons/lucide/pull/3475) - fix(lucide-static): properly select icons dir for tags & error if no metadata found by [@&#8203;AlexProgrammerDE](https://github.com/AlexProgrammerDE) in [#&#8203;3411](https://github.com/lucide-icons/lucide/pull/3411) - fix(docs): update prop name from absolute-stroke-width to absoluteStrokeWidth in vue-next guide by [@&#8203;epifaniofrancisco](https://github.com/epifaniofrancisco) in [#&#8203;3322](https://github.com/lucide-icons/lucide/pull/3322) - feat(SvgPreview): add features from lucide studio by [@&#8203;jguddas](https://github.com/jguddas) in [#&#8203;3365](https://github.com/lucide-icons/lucide/pull/3365) - chore: icon alias improvements by [@&#8203;jguddas](https://github.com/jguddas) in [#&#8203;2861](https://github.com/lucide-icons/lucide/pull/2861) - fix(icons): changed tiny heart icons by [@&#8203;karsa-mistmere](https://github.com/karsa-mistmere) in [#&#8203;3471](https://github.com/lucide-icons/lucide/pull/3471) - chore(docs): Update vitepress deps by [@&#8203;ericfennis](https://github.com/ericfennis) in [#&#8203;3470](https://github.com/lucide-icons/lucide/pull/3470) - feat(icons): added hand-fist icon by [@&#8203;karsa-mistmere](https://github.com/karsa-mistmere) in [#&#8203;1843](https://github.com/lucide-icons/lucide/pull/1843) #### New Contributors - [@&#8203;AlexProgrammerDE](https://github.com/AlexProgrammerDE) made their first contribution in [#&#8203;3411](https://github.com/lucide-icons/lucide/pull/3411) **Full Changelog**: <https://github.com/lucide-icons/lucide/compare/0.534.0...0.535.0> ### [`v0.534.0`](https://github.com/lucide-icons/lucide/releases/tag/0.534.0): Version 0.534.0 [Compare Source](https://github.com/lucide-icons/lucide/compare/0.533.0...0.534.0) #### What's Changed - fix(icons): changed `settings` icon by [@&#8203;karsa-mistmere](https://github.com/karsa-mistmere) in [#&#8203;3467](https://github.com/lucide-icons/lucide/pull/3467) - fix(icons): changed `mails`, `tags`, `files`, `file-stack`, `book-copy` and `folders` icon by [@&#8203;jguddas](https://github.com/jguddas) in [#&#8203;2935](https://github.com/lucide-icons/lucide/pull/2935) - fix(icons): changed `gavel` icon by [@&#8203;karsa-mistmere](https://github.com/karsa-mistmere) in [#&#8203;3465](https://github.com/lucide-icons/lucide/pull/3465) - fix(icons): changed `sun-moon` icon & arcified `moon` icons by [@&#8203;karsa-mistmere](https://github.com/karsa-mistmere) in [#&#8203;3380](https://github.com/lucide-icons/lucide/pull/3380) **Full Changelog**: <https://github.com/lucide-icons/lucide/compare/0.533.0...0.534.0> ### [`v0.533.0`](https://github.com/lucide-icons/lucide/releases/tag/0.533.0): Version 0.533.0 [Compare Source](https://github.com/lucide-icons/lucide/compare/0.532.0...0.533.0) #### What's Changed - fix(docs): Icon Component Example for Svelte 5 does not compile by [@&#8203;Zlendy](https://github.com/Zlendy) in [#&#8203;3416](https://github.com/lucide-icons/lucide/pull/3416) - fix(icons): changed `sailboat` icon by [@&#8203;karsa-mistmere](https://github.com/karsa-mistmere) in [#&#8203;3460](https://github.com/lucide-icons/lucide/pull/3460) - fix(icons): Changed `a-large-small` icon by [@&#8203;vichotech](https://github.com/vichotech) in [#&#8203;3396](https://github.com/lucide-icons/lucide/pull/3396) - fix(icons): added rounding to `heart-*` icons by [@&#8203;jguddas](https://github.com/jguddas) in [#&#8203;3061](https://github.com/lucide-icons/lucide/pull/3061) - fix(icons): changed `folder-symlink` icon by [@&#8203;jguddas](https://github.com/jguddas) in [#&#8203;2558](https://github.com/lucide-icons/lucide/pull/2558) - fix(icons): Rounded and optically-centred `flag-triangle-*` icons by [@&#8203;jamiemlaw](https://github.com/jamiemlaw) in [#&#8203;3438](https://github.com/lucide-icons/lucide/pull/3438) - feat(icons): added `closed-caption` icon by [@&#8203;UsamaKhan](https://github.com/UsamaKhan) in [#&#8203;2910](https://github.com/lucide-icons/lucide/pull/2910) #### New Contributors - [@&#8203;Zlendy](https://github.com/Zlendy) made their first contribution in [#&#8203;3416](https://github.com/lucide-icons/lucide/pull/3416) - [@&#8203;vichotech](https://github.com/vichotech) made their first contribution in [#&#8203;3396](https://github.com/lucide-icons/lucide/pull/3396) **Full Changelog**: <https://github.com/lucide-icons/lucide/compare/0.532.0...0.533.0> ### [`v0.532.0`](https://github.com/lucide-icons/lucide/releases/tag/0.532.0): Version 0.532.0 [Compare Source](https://github.com/lucide-icons/lucide/compare/0.531.0...0.532.0) #### What's Changed - feat(icons): added `handbag` icon by [@&#8203;jamiemlaw](https://github.com/jamiemlaw) in [#&#8203;3298](https://github.com/lucide-icons/lucide/pull/3298) - fix(icons): changed `wrench` icon by [@&#8203;karsa-mistmere](https://github.com/karsa-mistmere) in [#&#8203;3459](https://github.com/lucide-icons/lucide/pull/3459) **Full Changelog**: <https://github.com/lucide-icons/lucide/compare/0.531.0...0.532.0> ### [`v0.531.0`](https://github.com/lucide-icons/lucide/releases/tag/0.531.0): Version 0.531.0 [Compare Source](https://github.com/lucide-icons/lucide/compare/0.530.0...0.531.0) #### What's Changed - fix(icons): changed `user-star` icon by [@&#8203;karsa-mistmere](https://github.com/karsa-mistmere) in [#&#8203;3464](https://github.com/lucide-icons/lucide/pull/3464) - feat(icons): added `clipboard-clock` icon by [@&#8203;beanduong](https://github.com/beanduong) in [#&#8203;3427](https://github.com/lucide-icons/lucide/pull/3427) #### New Contributors - [@&#8203;beanduong](https://github.com/beanduong) made their first contribution in [#&#8203;3427](https://github.com/lucide-icons/lucide/pull/3427) **Full Changelog**: <https://github.com/lucide-icons/lucide/compare/0.530.0...0.531.0> ### [`v0.530.0`](https://github.com/lucide-icons/lucide/releases/tag/0.530.0): Version 0.530.0 [Compare Source](https://github.com/lucide-icons/lucide/compare/0.529.0...0.530.0) #### What's Changed - feat(icons): added `user-star` icon by [@&#8203;MArtytraM99](https://github.com/MArtytraM99) in [#&#8203;3331](https://github.com/lucide-icons/lucide/pull/3331) #### New Contributors - [@&#8203;MArtytraM99](https://github.com/MArtytraM99) made their first contribution in [#&#8203;3331](https://github.com/lucide-icons/lucide/pull/3331) **Full Changelog**: <https://github.com/lucide-icons/lucide/compare/0.529.0...0.530.0> ### [`v0.529.0`](https://github.com/lucide-icons/lucide/releases/tag/0.529.0): Version 0.529.0 [Compare Source](https://github.com/lucide-icons/lucide/compare/0.528.0...0.529.0) #### What's Changed - fix(icons): changed `shovel` icon by [@&#8203;karsa-mistmere](https://github.com/karsa-mistmere) in [#&#8203;3458](https://github.com/lucide-icons/lucide/pull/3458) - fix(icons): changed `castle` icon by [@&#8203;karsa-mistmere](https://github.com/karsa-mistmere) in [#&#8203;2972](https://github.com/lucide-icons/lucide/pull/2972) - fix(icons): Rename `location-edit` to `map-pin-pencil` by [@&#8203;ericfennis](https://github.com/ericfennis) in [#&#8203;3462](https://github.com/lucide-icons/lucide/pull/3462) - feat(icons): added `map-minus` icon by [@&#8203;MarianoFranzese](https://github.com/MarianoFranzese) in [#&#8203;3259](https://github.com/lucide-icons/lucide/pull/3259) #### New Contributors - [@&#8203;MarianoFranzese](https://github.com/MarianoFranzese) made their first contribution in [#&#8203;3259](https://github.com/lucide-icons/lucide/pull/3259) **Full Changelog**: <https://github.com/lucide-icons/lucide/compare/0.528.0...0.529.0> ### [`v0.528.0`](https://github.com/lucide-icons/lucide/releases/tag/0.528.0): Version 0.528.0 [Compare Source](https://github.com/lucide-icons/lucide/compare/0.527.0...0.528.0) #### What's Changed - fix(icons): changed `lasso` icon by [@&#8203;jguddas](https://github.com/jguddas) in [#&#8203;3454](https://github.com/lucide-icons/lucide/pull/3454) - fix(icons): changed `gem` icon by [@&#8203;karsa-mistmere](https://github.com/karsa-mistmere) in [#&#8203;3442](https://github.com/lucide-icons/lucide/pull/3442) - fix(icons): Refine `refresh-ccw-dot` to match other `refresh-` icons by [@&#8203;jamiemlaw](https://github.com/jamiemlaw) in [#&#8203;3437](https://github.com/lucide-icons/lucide/pull/3437) - fix(icons): changed `croissant` icon by [@&#8203;karsa-mistmere](https://github.com/karsa-mistmere) in [#&#8203;3428](https://github.com/lucide-icons/lucide/pull/3428) - fix(icons): changed `sprout` icon by [@&#8203;jamiemlaw](https://github.com/jamiemlaw) in [#&#8203;3430](https://github.com/lucide-icons/lucide/pull/3430) - fix(icons): arcified playback icons by [@&#8203;karsa-mistmere](https://github.com/karsa-mistmere) in [#&#8203;3425](https://github.com/lucide-icons/lucide/pull/3425) - fix(icons): changed `sparkles` icon by [@&#8203;karsa-mistmere](https://github.com/karsa-mistmere) in [#&#8203;3426](https://github.com/lucide-icons/lucide/pull/3426) - fix(icons): arcify `arrow-big-` icons by [@&#8203;jamiemlaw](https://github.com/jamiemlaw) in [#&#8203;3356](https://github.com/lucide-icons/lucide/pull/3356) - feat(icons): added `hat-glasses` icon by [@&#8203;karsa-mistmere](https://github.com/karsa-mistmere) in [#&#8203;3431](https://github.com/lucide-icons/lucide/pull/3431) **Full Changelog**: <https://github.com/lucide-icons/lucide/compare/0.527.0...0.528.0> ### [`v0.527.0`](https://github.com/lucide-icons/lucide/releases/tag/0.527.0): Version 0.527.0 [Compare Source](https://github.com/lucide-icons/lucide/compare/0.526.0...0.527.0) #### What's Changed - fix(icons): changed `monitor-dot` icon by [@&#8203;jguddas](https://github.com/jguddas) in [#&#8203;3452](https://github.com/lucide-icons/lucide/pull/3452) - feat(icons): added `spotlight` icon by [@&#8203;chessurisme](https://github.com/chessurisme) in [#&#8203;3450](https://github.com/lucide-icons/lucide/pull/3450) **Full Changelog**: <https://github.com/lucide-icons/lucide/compare/0.526.0...0.527.0> ### [`v0.526.0`](https://github.com/lucide-icons/lucide/releases/tag/0.526.0): Version 0.526.0 [Compare Source](https://github.com/lucide-icons/lucide/compare/0.525.0...0.526.0) #### What's Changed - ci(icons): Add ChatGPT tags suggestions on icon PRs by [@&#8203;ericfennis](https://github.com/ericfennis) in [#&#8203;3372](https://github.com/lucide-icons/lucide/pull/3372) - docs(site): small changes for DynamicIcon by [@&#8203;Itrulia](https://github.com/Itrulia) in [#&#8203;3355](https://github.com/lucide-icons/lucide/pull/3355) - fix(icons): changed `circle-parking-off` icon by [@&#8203;jguddas](https://github.com/jguddas) in [#&#8203;3343](https://github.com/lucide-icons/lucide/pull/3343) - feat(icons): added Turkish lira icons by [@&#8203;jamiemlaw](https://github.com/jamiemlaw) in [#&#8203;2873](https://github.com/lucide-icons/lucide/pull/2873) - fix(icons): changed `brain` icon by [@&#8203;jamiemlaw](https://github.com/jamiemlaw) in [#&#8203;3381](https://github.com/lucide-icons/lucide/pull/3381) - fix(icons): changed `cable` icon by [@&#8203;jguddas](https://github.com/jguddas) in [#&#8203;3374](https://github.com/lucide-icons/lucide/pull/3374) - fix(icons): changed `podcast` icon by [@&#8203;jguddas](https://github.com/jguddas) in [#&#8203;3385](https://github.com/lucide-icons/lucide/pull/3385) - fix(icons): changed `trash` icon by [@&#8203;karsa-mistmere](https://github.com/karsa-mistmere) in [#&#8203;3394](https://github.com/lucide-icons/lucide/pull/3394) - fix(icons): changed `pen-line` and `pencil-line` icon by [@&#8203;jguddas](https://github.com/jguddas) in [#&#8203;2663](https://github.com/lucide-icons/lucide/pull/2663) - fix(icons): fixed `ban` icon by [@&#8203;karsa-mistmere](https://github.com/karsa-mistmere) in [#&#8203;3434](https://github.com/lucide-icons/lucide/pull/3434) - fix(icons): changed `magnet` icon by [@&#8203;karsa-mistmere](https://github.com/karsa-mistmere) in [#&#8203;3435](https://github.com/lucide-icons/lucide/pull/3435) - feat(icons): added `wifi-sync` icon by [@&#8203;luisdlopera](https://github.com/luisdlopera) in [#&#8203;3132](https://github.com/lucide-icons/lucide/pull/3132) #### New Contributors - [@&#8203;Itrulia](https://github.com/Itrulia) made their first contribution in [#&#8203;3355](https://github.com/lucide-icons/lucide/pull/3355) **Full Changelog**: <https://github.com/lucide-icons/lucide/compare/0.525.0...0.526.0> ### [`v0.525.0`](https://github.com/lucide-icons/lucide/releases/tag/0.525.0): Version 0.525.0 [Compare Source](https://github.com/lucide-icons/lucide/compare/0.524.0...0.525.0) #### What's Changed - fix(icons): Changed `megaphone` icon by [@&#8203;jamiemlaw](https://github.com/jamiemlaw) in [#&#8203;2448](https://github.com/lucide-icons/lucide/pull/2448) - fix(icons): arcified `shrub` icon by [@&#8203;jguddas](https://github.com/jguddas) in [#&#8203;2292](https://github.com/lucide-icons/lucide/pull/2292) - fix(icons): changed `sun-moon` icon by [@&#8203;zishankadri](https://github.com/zishankadri) in [#&#8203;3328](https://github.com/lucide-icons/lucide/pull/3328) - fix(icons): changed `flag` icon by [@&#8203;jamiemlaw](https://github.com/jamiemlaw) in [#&#8203;3370](https://github.com/lucide-icons/lucide/pull/3370) - feat(icons): added `tool-case` icon by [@&#8203;AlexNaskida](https://github.com/AlexNaskida) in [#&#8203;3333](https://github.com/lucide-icons/lucide/pull/3333) #### New Contributors - [@&#8203;zishankadri](https://github.com/zishankadri) made their first contribution in [#&#8203;3328](https://github.com/lucide-icons/lucide/pull/3328) - [@&#8203;AlexNaskida](https://github.com/AlexNaskida) made their first contribution in [#&#8203;3333](https://github.com/lucide-icons/lucide/pull/3333) **Full Changelog**: <https://github.com/lucide-icons/lucide/compare/0.524.0...0.525.0> ### [`v0.524.0`](https://github.com/lucide-icons/lucide/releases/tag/0.524.0): Version 0.524.0 [Compare Source](https://github.com/lucide-icons/lucide/compare/0.523.0...0.524.0) #### What's Changed - docs(packages/lucide-static): update docs for better clarity by [@&#8203;karsa-mistmere](https://github.com/karsa-mistmere) in [#&#8203;3225](https://github.com/lucide-icons/lucide/pull/3225) - fix(icons): changed `dessert` icon by [@&#8203;jguddas](https://github.com/jguddas) in [#&#8203;3362](https://github.com/lucide-icons/lucide/pull/3362) - fix(icons): changed `ligature` icon by [@&#8203;jamiemlaw](https://github.com/jamiemlaw) in [#&#8203;3369](https://github.com/lucide-icons/lucide/pull/3369) - fix(icons): Updates to clock-related icons by [@&#8203;jamiemlaw](https://github.com/jamiemlaw) in [#&#8203;2538](https://github.com/lucide-icons/lucide/pull/2538) - feat(icons): added `vector-square` icon by [@&#8203;chessurisme](https://github.com/chessurisme) in [#&#8203;2531](https://github.com/lucide-icons/lucide/pull/2531) **Full Changelog**: <https://github.com/lucide-icons/lucide/compare/0.523.0...0.524.0> ### [`v0.523.0`](https://github.com/lucide-icons/lucide/releases/tag/0.523.0): Version 0.523.0 [Compare Source](https://github.com/lucide-icons/lucide/compare/0.522.0...0.523.0) #### What's Changed - feat(icons): added `bottle-wine` icon by [@&#8203;jguddas](https://github.com/jguddas) in [#&#8203;3265](https://github.com/lucide-icons/lucide/pull/3265) **Full Changelog**: <https://github.com/lucide-icons/lucide/compare/0.522.0...0.523.0> ### [`v0.522.0`](https://github.com/lucide-icons/lucide/releases/tag/0.522.0): Version 0.522.0 [Compare Source](https://github.com/lucide-icons/lucide/compare/0.521.0...0.522.0) #### What's Changed - fix(icons): changed `shopping-bag` icon by [@&#8203;jguddas](https://github.com/jguddas) in [#&#8203;2483](https://github.com/lucide-icons/lucide/pull/2483) - feat(icons): add `line-squiggle` icon by [@&#8203;chessurisme](https://github.com/chessurisme) in [#&#8203;2393](https://github.com/lucide-icons/lucide/pull/2393) **Full Changelog**: <https://github.com/lucide-icons/lucide/compare/0.521.0...0.522.0> ### [`v0.521.0`](https://github.com/lucide-icons/lucide/releases/tag/0.521.0): Version 0.521.0 [Compare Source](https://github.com/lucide-icons/lucide/compare/0.520.0...0.521.0) #### What's Changed - fix(icons): ensure shaft overlaps arrowhead in `circle-arrow-left` and `circle-arrow-right` by [@&#8203;cstayyab](https://github.com/cstayyab) in [#&#8203;3269](https://github.com/lucide-icons/lucide/pull/3269) - feat(icons): added `squircle-dashed` icon by [@&#8203;aramsoneson](https://github.com/aramsoneson) in [#&#8203;3262](https://github.com/lucide-icons/lucide/pull/3262) - docs(design-guide): added bad examples for 2px rule by [@&#8203;jguddas](https://github.com/jguddas) in [#&#8203;2879](https://github.com/lucide-icons/lucide/pull/2879) #### New Contributors - [@&#8203;cstayyab](https://github.com/cstayyab) made their first contribution in [#&#8203;3269](https://github.com/lucide-icons/lucide/pull/3269) - [@&#8203;aramsoneson](https://github.com/aramsoneson) made their first contribution in [#&#8203;3262](https://github.com/lucide-icons/lucide/pull/3262) **Full Changelog**: <https://github.com/lucide-icons/lucide/compare/0.520.0...0.521.0> ### [`v0.520.0`](https://github.com/lucide-icons/lucide/releases/tag/0.520.0): Version 0.520.0 [Compare Source](https://github.com/lucide-icons/lucide/compare/0.519.0...0.520.0) #### What's Changed - feat(icons): added `georgian-lari` icon by [@&#8203;kivicode](https://github.com/kivicode) in [#&#8203;3323](https://github.com/lucide-icons/lucide/pull/3323) #### New Contributors - [@&#8203;kivicode](https://github.com/kivicode) made their first contribution in [#&#8203;3323](https://github.com/lucide-icons/lucide/pull/3323) **Full Changelog**: <https://github.com/lucide-icons/lucide/compare/0.519.0...0.520.0> ### [`v0.519.0`](https://github.com/lucide-icons/lucide/releases/tag/0.519.0): Version 0.519.0 [Compare Source](https://github.com/lucide-icons/lucide/compare/0.518.0...0.519.0) #### What's Changed - fix(icons): changed `blocks` icon by [@&#8203;jguddas](https://github.com/jguddas) in [#&#8203;3267](https://github.com/lucide-icons/lucide/pull/3267) - feat(icons): added `spool` icon by [@&#8203;karsa-mistmere](https://github.com/karsa-mistmere) in [#&#8203;2926](https://github.com/lucide-icons/lucide/pull/2926) **Full Changelog**: <https://github.com/lucide-icons/lucide/compare/0.518.0...0.519.0> ### [`v0.518.0`](https://github.com/lucide-icons/lucide/releases/tag/0.518.0): Version 0.518.0 [Compare Source](https://github.com/lucide-icons/lucide/compare/0.517.0...0.518.0) #### What's Changed - fix(icons): updated `egg` and `egg-off` icons by [@&#8203;jamiemlaw](https://github.com/jamiemlaw) in [#&#8203;3299](https://github.com/lucide-icons/lucide/pull/3299) - fix(icons): renamed `*-help` and `*-question` icons to `*-question-mark` by [@&#8203;jguddas](https://github.com/jguddas) in [#&#8203;2540](https://github.com/lucide-icons/lucide/pull/2540) - chore(scripts): Refactor scripts to typescript by [@&#8203;ericfennis](https://github.com/ericfennis) in [#&#8203;3316](https://github.com/lucide-icons/lucide/pull/3316) - feat(icons): added `drone` icon by [@&#8203;shopped](https://github.com/shopped) in [#&#8203;3247](https://github.com/lucide-icons/lucide/pull/3247) #### New Contributors - [@&#8203;shopped](https://github.com/shopped) made their first contribution in [#&#8203;3247](https://github.com/lucide-icons/lucide/pull/3247) **Full Changelog**: <https://github.com/lucide-icons/lucide/compare/0.517.0...0.518.0> ### [`v0.517.0`](https://github.com/lucide-icons/lucide/releases/tag/0.517.0): Version 0.517.0 [Compare Source](https://github.com/lucide-icons/lucide/compare/0.516.0...0.517.0) #### What's Changed - feat(icons): adds `barrel` icon by [@&#8203;karsa-mistmere](https://github.com/karsa-mistmere) in [#&#8203;1955](https://github.com/lucide-icons/lucide/pull/1955) **Full Changelog**: <https://github.com/lucide-icons/lucide/compare/0.516.0...0.517.0> ### [`v0.516.0`](https://github.com/lucide-icons/lucide/releases/tag/0.516.0): Version 0.516.0 [Compare Source](https://github.com/lucide-icons/lucide/compare/0.515.0...0.516.0) #### What's Changed - fix(icons): changed `stamp` icon by [@&#8203;jamiemlaw](https://github.com/jamiemlaw) in [#&#8203;3310](https://github.com/lucide-icons/lucide/pull/3310) - fix(icons): changed `pocket` icon by [@&#8203;jamiemlaw](https://github.com/jamiemlaw) in [#&#8203;3304](https://github.com/lucide-icons/lucide/pull/3304) - fix(icons): changed `mic` icon by [@&#8203;jamiemlaw](https://github.com/jamiemlaw) in [#&#8203;3301](https://github.com/lucide-icons/lucide/pull/3301) - fix(icons): changed `radio` icon by [@&#8203;jguddas](https://github.com/jguddas) in [#&#8203;3293](https://github.com/lucide-icons/lucide/pull/3293) - fix: some typos for categories by [@&#8203;npv12](https://github.com/npv12) in [#&#8203;3319](https://github.com/lucide-icons/lucide/pull/3319) - perf(docs): optimize IconsOverview initial render - 50% faster load times by [@&#8203;epifaniofrancisco](https://github.com/epifaniofrancisco) in [#&#8203;3282](https://github.com/lucide-icons/lucide/pull/3282) - fix(docs): remove flex-direction CSS causing absolute stroke width toggle positioning issue ([#&#8203;3308](https://github.com/lucide-icons/lucide/issues/3308)) by [@&#8203;epifaniofrancisco](https://github.com/epifaniofrancisco) in [#&#8203;3317](https://github.com/lucide-icons/lucide/pull/3317) - feat(icons): added `wifi-cog` icon by [@&#8203;luisdlopera](https://github.com/luisdlopera) in [#&#8203;3133](https://github.com/lucide-icons/lucide/pull/3133) #### New Contributors - [@&#8203;npv12](https://github.com/npv12) made their first contribution in [#&#8203;3319](https://github.com/lucide-icons/lucide/pull/3319) **Full Changelog**: <https://github.com/lucide-icons/lucide/compare/0.515.0...0.516.0> ### [`v0.515.0`](https://github.com/lucide-icons/lucide/releases/tag/0.515.0): Version 0.515.0 [Compare Source](https://github.com/lucide-icons/lucide/compare/0.514.0...0.515.0) #### What's Changed - fix(icons): changed `house-plus` icon by [@&#8203;jguddas](https://github.com/jguddas) in [#&#8203;3238](https://github.com/lucide-icons/lucide/pull/3238) - fix(icons): changed `radiation` icon by [@&#8203;jamiemlaw](https://github.com/jamiemlaw) in [#&#8203;3303](https://github.com/lucide-icons/lucide/pull/3303) - feat(icons): added `rectangle-circle` icon by [@&#8203;zefir-git](https://github.com/zefir-git) in [#&#8203;3245](https://github.com/lucide-icons/lucide/pull/3245) #### New Contributors - [@&#8203;zefir-git](https://github.com/zefir-git) made their first contribution in [#&#8203;3245](https://github.com/lucide-icons/lucide/pull/3245) **Full Changelog**: <https://github.com/lucide-icons/lucide/compare/0.514.0...0.515.0> ### [`v0.514.0`](https://github.com/lucide-icons/lucide/releases/tag/0.514.0): Version 0.514.0 [Compare Source](https://github.com/lucide-icons/lucide/compare/0.513.0...0.514.0) #### What's Changed - fix(icons): changed `trophy` icon by [@&#8203;jguddas](https://github.com/jguddas) in [#&#8203;2475](https://github.com/lucide-icons/lucide/pull/2475) - fix(pull-request-icon-preview): pinned and --forced svgson installati… by [@&#8203;jguddas](https://github.com/jguddas) in [#&#8203;3289](https://github.com/lucide-icons/lucide/pull/3289) - chore(metadata): added tag to `bandage` icon by [@&#8203;jamiemlaw](https://github.com/jamiemlaw) in [#&#8203;3300](https://github.com/lucide-icons/lucide/pull/3300) - fix(icons): changed `settings-2` icon by [@&#8203;jguddas](https://github.com/jguddas) in [#&#8203;2974](https://github.com/lucide-icons/lucide/pull/2974) - fix(docs): [#&#8203;2984](https://github.com/lucide-icons/lucide/issues/2984) absoluteStrokeWidth not resetting with Reset button by [@&#8203;epifaniofrancisco](https://github.com/epifaniofrancisco) in [#&#8203;3261](https://github.com/lucide-icons/lucide/pull/3261) - feat(icons): added book-alert icon by [@&#8203;domasmark](https://github.com/domasmark) in [#&#8203;3249](https://github.com/lucide-icons/lucide/pull/3249) #### New Contributors - [@&#8203;domasmark](https://github.com/domasmark) made their first contribution in [#&#8203;3249](https://github.com/lucide-icons/lucide/pull/3249) **Full Changelog**: <https://github.com/lucide-icons/lucide/compare/0.513.0...0.514.0> ### [`v0.513.0`](https://github.com/lucide-icons/lucide/releases/tag/0.513.0): Version 0.513.0 [Compare Source](https://github.com/lucide-icons/lucide/compare/0.512.0...0.513.0) #### What's Changed - feat(icons): Add sim card icon from lab by [@&#8203;ericfennis](https://github.com/ericfennis) in [#&#8203;3275](https://github.com/lucide-icons/lucide/pull/3275) **Full Changelog**: <https://github.com/lucide-icons/lucide/compare/0.512.0...0.513.0> ### [`v0.512.0`](https://github.com/lucide-icons/lucide/releases/tag/0.512.0): Version 0.512.0 [Compare Source](https://github.com/lucide-icons/lucide/compare/0.511.0...0.512.0) #### What's Changed - feat(icons): added `circle-pound-sterling` icon by [@&#8203;lieonlion](https://github.com/lieonlion) in [#&#8203;2822](https://github.com/lucide-icons/lucide/pull/2822) - build(deps-dev): bump vite from 6.3.2 to 6.3.4 by [@&#8203;dependabot](https://github.com/dependabot) in [#&#8203;3181](https://github.com/lucide-icons/lucide/pull/3181) - docs(docs): added testing website locally instructions by [@&#8203;briz123](https://github.com/briz123) in [#&#8203;3124](https://github.com/lucide-icons/lucide/pull/3124) - build(deps-dev): bump vite from 6.0.7 to 6.1.6 by [@&#8203;dependabot](https://github.com/dependabot) in [#&#8203;3236](https://github.com/lucide-icons/lucide/pull/3236) - fix(icons): changed `square-check-big` icon by [@&#8203;jguddas](https://github.com/jguddas) in [#&#8203;3156](https://github.com/lucide-icons/lucide/pull/3156) - fix(icons): changed `list-collapse` icon by [@&#8203;jguddas](https://github.com/jguddas) in [#&#8203;3081](https://github.com/lucide-icons/lucide/pull/3081) - fix(icons): changed `battery-*` icons by [@&#8203;jguddas](https://github.com/jguddas) in [#&#8203;3083](https://github.com/lucide-icons/lucide/pull/3083) - fix(icons): changed `paperclip` icon by [@&#8203;jguddas](https://github.com/jguddas) in [#&#8203;2956](https://github.com/lucide-icons/lucide/pull/2956) - fix(icons): changed `eraser` icon by [@&#8203;jguddas](https://github.com/jguddas) in [#&#8203;3076](https://github.com/lucide-icons/lucide/pull/3076) - feat(icons): Add `cloud-check` icon by [@&#8203;lscheibel](https://github.com/lscheibel) in [#&#8203;2612](https://github.com/lucide-icons/lucide/pull/2612) - feat(icon): add `id-card-lanyard` icon by [@&#8203;python2911](https://github.com/python2911) in [#&#8203;2898](https://github.com/lucide-icons/lucide/pull/2898) - feat(angular): update peer dependencies for Angular to support version 20.x by [@&#8203;JeevanMahesha](https://github.com/JeevanMahesha) in [#&#8203;3273](https://github.com/lucide-icons/lucide/pull/3273) - fix(icons): changed `file-badge` icon by [@&#8203;jguddas](https://github.com/jguddas) in [#&#8203;2934](https://github.com/lucide-icons/lucide/pull/2934) - feat(icons): added `grid-3x2` icon by [@&#8203;qubrat](https://github.com/qubrat) in [#&#8203;3216](https://github.com/lucide-icons/lucide/pull/3216) #### New Contributors - [@&#8203;lieonlion](https://github.com/lieonlion) made their first contribution in [#&#8203;2822](https://github.com/lucide-icons/lucide/pull/2822) - [@&#8203;python2911](https://github.com/python2911) made their first contribution in [#&#8203;2898](https://github.com/lucide-icons/lucide/pull/2898) - [@&#8203;JeevanMahesha](https://github.com/JeevanMahesha) made their first contribution in [#&#8203;3273](https://github.com/lucide-icons/lucide/pull/3273) - [@&#8203;qubrat](https://github.com/qubrat) made their first contribution in [#&#8203;3216](https://github.com/lucide-icons/lucide/pull/3216) **Full Changelog**: <https://github.com/lucide-icons/lucide/compare/0.511.0...0.512.0> ### [`v0.511.0`](https://github.com/lucide-icons/lucide/releases/tag/0.511.0): Version 0.511.0 [Compare Source](https://github.com/lucide-icons/lucide/compare/0.510.0...0.511.0) #### What's Changed - fix(icons): Optimise a number of icons using `<line>` and `<polyline>` by [@&#8203;jamiemlaw](https://github.com/jamiemlaw) in [#&#8203;3168](https://github.com/lucide-icons/lucide/pull/3168) - fix(icons): changed `clock-6` icon by [@&#8203;jguddas](https://github.com/jguddas) in [#&#8203;3209](https://github.com/lucide-icons/lucide/pull/3209) - fix(icons): changed `axis-3d` icon by [@&#8203;jguddas](https://github.com/jguddas) in [#&#8203;3199](https://github.com/lucide-icons/lucide/pull/3199) - fix(icons): changed `chevrons-left-right-ellipsis` icon by [@&#8203;jguddas](https://github.com/jguddas) in [#&#8203;3189](https://github.com/lucide-icons/lucide/pull/3189) - fix(icons): changed `square-code` icon by [@&#8203;jguddas](https://github.com/jguddas) in [#&#8203;3173](https://github.com/lucide-icons/lucide/pull/3173) - fix(icons): changed `satellite` icon by [@&#8203;karsa-mistmere](https://github.com/karsa-mistmere) in [#&#8203;3180](https://github.com/lucide-icons/lucide/pull/3180) - fix(lucide-react-native): support react 19 ([#&#8203;2951](https://github.com/lucide-icons/lucide/issues/2951)) by [@&#8203;jvliwanag](https://github.com/jvliwanag) in [#&#8203;3126](https://github.com/lucide-icons/lucide/pull/3126) - fix(icons): changed `factory` icon by [@&#8203;karsa-mistmere](https://github.com/karsa-mistmere) in [#&#8203;2970](https://github.com/lucide-icons/lucide/pull/2970) - fix(icons): changed `university` icon by [@&#8203;karsa-mistmere](https://github.com/karsa-mistmere) in [#&#8203;2965](https://github.com/lucide-icons/lucide/pull/2965) - fix(icons): changed `warehouse` icon by [@&#8203;karsa-mistmere](https://github.com/karsa-mistmere) in [#&#8203;2966](https://github.com/lucide-icons/lucide/pull/2966) - fix(icons): changed `landmark` icon by [@&#8203;karsa-mistmere](https://github.com/karsa-mistmere) in [#&#8203;2967](https://github.com/lucide-icons/lucide/pull/2967) - chore(cspell): remove duplicate 'pilcrow' from `custom-words.txt` by [@&#8203;Abdalrhman-Almarakeby](https://github.com/Abdalrhman-Almarakeby) in [#&#8203;3193](https://github.com/lucide-icons/lucide/pull/3193) - feat(icons): added `square-dashed-top-solid` icon by [@&#8203;juanpablofernandez](https://github.com/juanpablofernandez) in [#&#8203;3204](https://github.com/lucide-icons/lucide/pull/3204) #### New Contributors - [@&#8203;jvliwanag](https://github.com/jvliwanag) made their first contribution in [#&#8203;3126](https://github.com/lucide-icons/lucide/pull/3126) - [@&#8203;juanpablofernandez](https://github.com/juanpablofernandez) made their first contribution in [#&#8203;3204](https://github.com/lucide-icons/lucide/pull/3204) **Full Changelog**: <https://github.com/lucide-icons/lucide/compare/0.510.0...0.511.0> ### [`v0.510.0`](https://github.com/lucide-icons/lucide/releases/tag/0.510.0): Version 0.510.0 [Compare Source](https://github.com/lucide-icons/lucide/compare/0.509.0...0.510.0) #### What's Changed - fix(icons): changed `brackets` icon by [@&#8203;jguddas](https://github.com/jguddas) in [#&#8203;3172](https://github.com/lucide-icons/lucide/pull/3172) - feat(icons): added `check-line` icon by [@&#8203;oosawy](https://github.com/oosawy) in [#&#8203;2890](https://github.com/lucide-icons/lucide/pull/2890) #### New Contributors - [@&#8203;oosawy](https://github.com/oosawy) made their first contribution in [#&#8203;2890](https://github.com/lucide-icons/lucide/pull/2890) **Full Changelog**: <https://github.com/lucide-icons/lucide/compare/0.509.0...0.510.0> ### [`v0.509.0`](https://github.com/lucide-icons/lucide/releases/tag/0.509.0): Version 0.509.0 [Compare Source](https://github.com/lucide-icons/lucide/compare/0.508.0...0.509.0) #### What's Changed - fix(icons): changed `axe` icon by [@&#8203;karsa-mistmere](https://github.com/karsa-mistmere) in [#&#8203;3201](https://github.com/lucide-icons/lucide/pull/3201) - revert(site): resets Absolute Stroke Width by [@&#8203;jguddas](https://github.com/jguddas) in [#&#8203;3197](https://github.com/lucide-icons/lucide/pull/3197) - feat(icons): added `gpu` icon by [@&#8203;xandykati98](https://github.com/xandykati98) in [#&#8203;2955](https://github.com/lucide-icons/lucide/pull/2955) #### New Contributors - [@&#8203;xandykati98](https://github.com/xandykati98) made their first contribution in [#&#8203;2955](https://github.com/lucide-icons/lucide/pull/2955) **Full Changelog**: <https://github.com/lucide-icons/lucide/compare/0.508.0...0.509.0> ### [`v0.508.0`](https://github.com/lucide-icons/lucide/releases/tag/0.508.0): Version 0.508.0 [Compare Source](https://github.com/lucide-icons/lucide/compare/0.507.0...0.508.0) #### What's Changed - fix(icons): Optimised `phone-` icons by [@&#8203;jamiemlaw](https://github.com/jamiemlaw) in [#&#8203;3169](https://github.com/lucide-icons/lucide/pull/3169) - docs(packages): Update names in docs by [@&#8203;ericfennis](https://github.com/ericfennis) in [#&#8203;3184](https://github.com/lucide-icons/lucide/pull/3184) - fix(icons): arcified `laptop` icon by [@&#8203;jguddas](https://github.com/jguddas) in [#&#8203;3190](https://github.com/lucide-icons/lucide/pull/3190) - chore(metadata): add `lens` tag to icons with magnifying glass by [@&#8203;Abdalrhman-Almarakeby](https://github.com/Abdalrhman-Almarakeby) in [#&#8203;3192](https://github.com/lucide-icons/lucide/pull/3192) **Full Changelog**: <https://github.com/lucide-icons/lucide/compare/0.507.0...0.508.0> ### [`v0.507.0`](https://github.com/lucide-icons/lucide/releases/tag/0.507.0): Version 0.507.0 [Compare Source](https://github.com/lucide-icons/lucide/compare/0.506.0...0.507.0) #### What's Changed - fix(metadata): added tags to `square-pen` icon by [@&#8203;jguddas](https://github.com/jguddas) in [#&#8203;3155](https://github.com/lucide-icons/lucide/pull/3155) - fix(icons): changed `search` icon by [@&#8203;jguddas](https://github.com/jguddas) in [#&#8203;3140](https://github.com/lucide-icons/lucide/pull/3140) - fix(dev): resets Absolute Stroke Width by [@&#8203;briz123](https://github.com/briz123) in [#&#8203;3005](https://github.com/lucide-icons/lucide/pull/3005) - fix(icons): changed `guitar` icon by [@&#8203;jamiemlaw](https://github.com/jamiemlaw) in [#&#8203;3115](https://github.com/lucide-icons/lucide/pull/3115) - fix(Icons): Adding missing categories to 4 Icons by [@&#8203;ajokt123](https://github.com/ajokt123) in [#&#8203;3110](https://github.com/lucide-icons/lucide/pull/3110) - fix(ci): reduces workflow triggers by [@&#8203;jguddas](https://github.com/jguddas) in [#&#8203;3150](https://github.com/lucide-icons/lucide/pull/3150) - fix(icons): changed `air-vent` icon by [@&#8203;jguddas](https://github.com/jguddas) in [#&#8203;3117](https://github.com/lucide-icons/lucide/pull/3117) - fix(icons): rotate `dumbbell` icon by [@&#8203;jguddas](https://github.com/jguddas) in [#&#8203;3107](https://github.com/lucide-icons/lucide/pull/3107) - fix(icons): changed `touchpad-off` icon by [@&#8203;jguddas](https://github.com/jguddas) in [#&#8203;3118](https://github.com/lucide-icons/lucide/pull/3118) - fix(icons): changed `bell-electric` icon by [@&#8203;jguddas](https://github.com/jguddas) in [#&#8203;3139](https://github.com/lucide-icons/lucide/pull/3139) - fix(icons): changed `menu` icon by [@&#8203;jguddas](https://github.com/jguddas) in [#&#8203;3142](https://github.com/lucide-icons/lucide/pull/3142) - fix(icons): changed `mail` icon by [@&#8203;jguddas](https://github.com/jguddas) in [#&#8203;3144](https://github.com/lucide-icons/lucide/pull/3144) - chore(pr-template): Adjust PR template by [@&#8203;ericfennis](https://github.com/ericfennis) in [#&#8203;3183](https://github.com/lucide-icons/lucide/pull/3183) - feat(icons): added `soap-dispenser-droplet` icon by [@&#8203;jguddas](https://github.com/jguddas) in [#&#8203;3088](https://github.com/lucide-icons/lucide/pull/3088) - feat(icons): added `panda` icon by [@&#8203;chessurisme](https://github.com/chessurisme) in [#&#8203;2094](https://github.com/lucide-icons/lucide/pull/2094) **Full Changelog**: <https://github.com/lucide-icons/lucide/compare/0.506.0...0.507.0> ### [`v0.506.0`](https://github.com/lucide-icons/lucide/releases/tag/0.506.0): Version 0.506.0 [Compare Source](https://github.com/lucide-icons/lucide/compare/0.505.0...0.506.0) #### What's Changed - perf(react): use implicit return in react package by [@&#8203;VIKTORVAV99](https://github.com/VIKTORVAV99) in [#&#8203;2325](https://github.com/lucide-icons/lucide/pull/2325) - fix(icons): changed `users` icon by [@&#8203;jguddas](https://github.com/jguddas) in [#&#8203;3143](https://github.com/lucide-icons/lucide/pull/3143) - fix(icons): changed `locate-off` icon by [@&#8203;jamiemlaw](https://github.com/jamiemlaw) in [#&#8203;3137](https://github.com/lucide-icons/lucide/pull/3137) - fix(icons): changed `expand` icon by [@&#8203;jguddas](https://github.com/jguddas) in [#&#8203;2831](https://github.com/lucide-icons/lucide/pull/2831) - feat(icons): Added clock plus icon. by [@&#8203;gubser](https://github.com/gubser) in [#&#8203;2996](https://github.com/lucide-icons/lucide/pull/2996) **Full Changelog**: <https://github.com/lucide-icons/lucide/compare/0.505.0...0.506.0> ### [`v0.505.0`](https://github.com/lucide-icons/lucide/releases/tag/0.505.0): Version 0.505.0 [Compare Source](https://github.com/lucide-icons/lucide/compare/0.504.0...0.505.0) #### What's Changed - fix(icons): changed `package-2` icon by [@&#8203;jguddas](https://github.com/jguddas) in [#&#8203;3174](https://github.com/lucide-icons/lucide/pull/3174) - docs(icon-design-guide): point people to lucide studio instead of svgo by [@&#8203;jguddas](https://github.com/jguddas) in [#&#8203;3152](https://github.com/lucide-icons/lucide/pull/3152) - fix(lucide-svelte): Resolve Svelte 5 deprecation of svelte:component by [@&#8203;shamaamahh](https://github.com/shamaamahh) in [#&#8203;3112](https://github.com/lucide-icons/lucide/pull/3112) - feat(icons): added `brush-cleaning` icon by [@&#8203;karsa-mistmere](https://github.com/karsa-mistmere) in [#&#8203;2395](https://github.com/lucide-icons/lucide/pull/2395) **Full Changelog**: <https://github.com/lucide-icons/lucide/compare/0.504.0...0.505.0> ### [`v0.504.0`](https://github.com/lucide-icons/lucide/releases/tag/0.504.0): Version 0.504.0 [Compare Source](https://github.com/lucide-icons/lucide/compare/0.503.0...0.504.0) #### What's Changed - feat(icons): add door closed locked / unlocked icons by [@&#8203;lukedukeus](https://github.com/lukedukeus) in [#&#8203;3060](https://github.com/lucide-icons/lucide/pull/3060) - build(dev-deps): Bump dependencies by [@&#8203;ericfennis](https://github.com/ericfennis) in [#&#8203;3096](https://github.com/lucide-icons/lucide/pull/3096) - fix(icons): redesigned `brush` icon by [@&#8203;jguddas](https://github.com/jguddas) in [#&#8203;3011](https://github.com/lucide-icons/lucide/pull/3011) - fix(site): remove studio link from navbar by [@&#8203;jguddas](https://github.com/jguddas) in [#&#8203;3166](https://github.com/lucide-icons/lucide/pull/3166) - feat(icons): added `hamburger` icon by [@&#8203;karsa-mistmere](https://github.com/karsa-mistmere) in [#&#8203;3165](https://github.com/lucide-icons/lucide/pull/3165) **Full Changelog**: <https://github.com/lucide-icons/lucide/compare/0.503.0...0.504.0> ### [`v0.503.0`](https://github.com/lucide-icons/lucide/releases/tag/0.503.0): Version 0.503.0 [Compare Source](https://github.com/lucide-icons/lucide/compare/0.502.0...0.503.0) #### What's Changed - fix(icons): changed `file-badge-2` icon by [@&#8203;jguddas](https://github.com/jguddas) in [#&#8203;2933](https://github.com/lucide-icons/lucide/pull/2933) - feat(icons): added `wifi-pen` icon by [@&#8203;luisdlopera](https://github.com/luisdlopera) in [#&#8203;2576](https://github.com/lucide-icons/lucide/pull/2576) #### New Contributors - [@&#8203;luisdlopera](https://github.com/luisdlopera) made their first contribution in [#&#8203;2576](https://github.com/lucide-icons/lucide/pull/2576) **Full Changelog**: <https://github.com/lucide-icons/lucide/compare/0.502.0...0.503.0> ### [`v0.502.0`](https://github.com/lucide-icons/lucide/releases/tag/0.502.0): Version 0.502.0 [Compare Source](https://github.com/lucide-icons/lucide/compare/0.501.0...0.502.0) #### What's Changed - fix(docs): Added link for jguddas next to lucide studio by [@&#8203;briz123](https://github.com/briz123) in [#&#8203;3063](https://github.com/lucide-icons/lucide/pull/3063) - build(deps-dev): bump vite from 5.4.15 to 5.4.17 by [@&#8203;dependabot](https://github.com/dependabot) in [#&#8203;2993](https://github.com/lucide-icons/lucide/pull/2993) - fix(build): fix shredder formatting and duplicate contributors error by [@&#8203;jpjacobpadilla](https://github.com/jpjacobpadilla) in [#&#8203;3072](https://github.com/lucide-icons/lucide/pull/3072) - fix(icons): rebase non-binary on square-asterisk by [@&#8203;karsa-mistmere](https://github.com/karsa-mistmere) in [#&#8203;3071](https://github.com/lucide-icons/lucide/pull/3071) - docs(CONTRIBUTING): Grammar fix for CONTRIBUTING by [@&#8203;ajokt123](https://github.com/ajokt123) in [#&#8203;3090](https://github.com/lucide-icons/lucide/pull/3090) - fix(icons): changed `calendar-plus` icon by [@&#8203;jguddas](https://github.com/jguddas) in [#&#8203;3085](https://github.com/lucide-icons/lucide/pull/3085) - fix(icons): changed `book-key` icon by [@&#8203;jguddas](https://github.com/jguddas) in [#&#8203;3062](https://github.com/lucide-icons/lucide/pull/3062) - fix(icons): changed `clipboard-paste` icon by [@&#8203;jguddas](https://github.com/jguddas) in [#&#8203;3075](https://github.com/lucide-icons/lucide/pull/3075) - fix(icons): changed `orbit` icon by [@&#8203;jguddas](https://github.com/jguddas) in [#&#8203;3074](https://github.com/lucide-icons/lucide/pull/3074) - fix(icons): changed `baby` icon by [@&#8203;jguddas](https://github.com/jguddas) in [#&#8203;3073](https://github.com/lucide-icons/lucide/pull/3073) - docs(pacakges): Added periods to package summary by [@&#8203;briz123](https://github.com/briz123) in [#&#8203;3065](https://github.com/lucide-icons/lucide/pull/3065) - fix(docs): PR Conventions by [@&#8203;briz123](https://github.com/briz123) in [#&#8203;3066](https://github.com/lucide-icons/lucide/pull/3066) - feat(icons): added `ruler-dimension-line` icon by [@&#8203;jguddas](https://github.com/jguddas) in [#&#8203;2535](https://github.com/lucide-icons/lucide/pull/2535) #### New Contributors - [@&#8203;jpjacobpadilla](https://github.com/jpjacobpadilla) made their first contribution in [#&#8203;3072](https://github.com/lucide-icons/lucide/pull/3072) - [@&#8203;ajokt123](https://github.com/ajokt123) made their first contribution in [#&#8203;3090](https://github.com/lucide-icons/lucide/pull/3090) **Full Changelog**: <https://github.com/lucide-icons/lucide/compare/0.501.0...0.502.0> ### [`v0.501.0`](https://github.com/lucide-icons/lucide/releases/tag/0.501.0): Version 0.501.0 [Compare Source](https://github.com/lucide-icons/lucide/compare/0.500.0...0.501.0) #### What's Changed - feat(angular): export icon data types by [@&#8203;dzonatan](https://github.com/dzonatan) in [#&#8203;2820](https://github.com/lucide-icons/lucide/pull/2820) - feat: added request-review workflow by [@&#8203;jguddas](https://github.com/jguddas) in [#&#8203;2502](https://github.com/lucide-icons/lucide/pull/2502) - feat(icons): Add columns-3-cog icon by [@&#8203;irvineacosta](https://github.com/irvineacosta) in [#&#8203;2763](https://github.com/lucide-icons/lucide/pull/2763) #### New Contributors - [@&#8203;dzonatan](https://github.com/dzonatan) made their first contribution in [#&#8203;2820](https://github.com/lucide-icons/lucide/pull/2820) - [@&#8203;irvineacosta](https://github.com/irvineacosta) made their first contribution in [#&#8203;2763](https://github.com/lucide-icons/lucide/pull/2763) **Full Changelog**: <https://github.com/lucide-icons/lucide/compare/0.500.0...0.501.0> ### [`v0.500.0`](https://github.com/lucide-icons/lucide/releases/tag/0.500.0): Version 0.500.0 [Compare Source](https://github.com/lucide-icons/lucide/compare/0.499.0...0.500.0) #### What's Changed - fix(icons): updated `*-cog` icons by [@&#8203;UsamaKhan](https://github.com/UsamaKhan) in [#&#8203;2782](https://github.com/lucide-icons/lucide/pull/2782) - fix(icons): arcified `lamp-*` icons by [@&#8203;jguddas](https://github.com/jguddas) in [#&#8203;2267](https://github.com/lucide-icons/lucide/pull/2267) - fix(icons): changed `traffic-cone` icon by [@&#8203;jguddas](https://github.com/jguddas) in [#&#8203;2941](https://github.com/lucide-icons/lucide/pull/2941) - Add `electric-truck` icon by [@&#8203;LienMaas](https://github.com/LienMaas) in [#&#8203;1803](https://github.com/lucide-icons/lucide/pull/1803) - feat(icons): Add `user-lock` icon by [@&#8203;anthony-mariotti](https://github.com/anthony-mariotti) in [#&#8203;2818](https://github.com/lucide-icons/lucide/pull/2818) #### New Contributors - [@&#8203;UsamaKhan](https://github.com/UsamaKhan) made their first contribution in [#&#8203;2782](https://github.com/lucide-icons/lucide/pull/2782) - [@&#8203;LienMaas](https://github.com/LienMaas) made their first contribution in [#&#8203;1803](https://github.com/lucide-icons/lucide/pull/1803) - [@&#8203;anthony-mariotti](https://github.com/anthony-mariotti) made their first contribution in [#&#8203;2818](https://github.com/lucide-icons/lucide/pull/2818) **Full Changelog**: <https://github.com/lucide-icons/lucide/compare/0.499.0...0.500.0> ### [`v0.499.0`](https://github.com/lucide-icons/lucide/releases/tag/0.499.0): Version 0.499.0 [Compare Source](https://github.com/lucide-icons/lucide/compare/0.498.0...0.499.0) #### What's Changed - feat(icons): added `bow-arrow` icon by [@&#8203;jamiemlaw](https://github.com/jamiemlaw) in [#&#8203;2418](https://github.com/lucide-icons/lucide/pull/2418) **Full Changelog**: <https://github.com/lucide-icons/lucide/compare/0.498.0...0.499.0> ### [`v0.498.0`](https://github.com/lucide-icons/lucide/releases/tag/0.498.0): Version 0.498.0 [Compare Source](https://github.com/lucide-icons/lucide/compare/0.497.0...0.498.0) #### What's Changed - feat(icons): added `decimals-arrow-left` icon and `decimals-arrow-right` by [@&#8203;AnnaSasDev](https://github.com/AnnaSasDev) in [#&#8203;2945](https://github.com/lucide-icons/lucide/pull/2945) **Full Changelog**: <https://github.com/lucide-icons/lucide/compare/0.497.0...0.498.0> ### [`v0.497.0`](https://github.com/lucide-icons/lucide/releases/tag/0.497.0): Version 0.497.0 [Compare Source](https://github.com/lucide-icons/lucide/compare/0.496.0...0.497.0) #### What's Changed - feat(icons): added `shredder` icon by [@&#8203;alirashidy](https://github.com/alirashidy) in [#&#8203;3052](https://github.com/lucide-icons/lucide/pull/3052) #### New Contributors - [@&#8203;alirashidy](https://github.com/alirashidy) made their first contribution in [#&#8203;3052](https://github.com/lucide-icons/lucide/pull/3052) **Full Changelog**: <https://github.com/lucide-icons/lucide/compare/0.496.0...0.497.0> ### [`v0.496.0`](https://github.com/lucide-icons/lucide/releases/tag/0.496.0): Version 0.496.0 [Compare Source](https://github.com/lucide-icons/lucide/compare/0.495.0...0.496.0) #### What's Changed - feat(icons): added `squares-*` operation icons by [@&#8203;EthanHazel](https://github.com/EthanHazel) in [#&#8203;2585](https://github.com/lucide-icons/lucide/pull/2585) **Full Changelog**: <https://github.com/lucide-icons/lucide/compare/0.495.0...0.496.0> ### [`v0.495.0`](https://github.com/lucide-icons/lucide/releases/tag/0.495.0): Version 0.495.0 [Compare Source](https://github.com/lucide-icons/lucide/compare/0.494.0...0.495.0) #### What's Changed - feat(icons): added `rectangle-goggles` icon by [@&#8203;EthanHazel](https://github.com/EthanHazel) in [#&#8203;2515](https://github.com/lucide-icons/lucide/pull/2515) **Full Changelog**: <https://github.com/lucide-icons/lucide/compare/0.494.0...0.495.0> ### [`v0.494.0`](https://github.com/lucide-icons/lucide/releases/tag/0.494.0): Version 0.494.0 [Compare Source](https://github.com/lucide-icons/lucide/compare/0.493.0...0.494.0) #### What's Changed - fix(icons): changed `cpu` icon by [@&#8203;karsa-mistmere](https://github.com/karsa-mistmere) in [#&#8203;3033](https://github.com/lucide-icons/lucide/pull/3033) - feat(icons): added map-pin-edit icon [#&#8203;2874](https://github.com/lucide-icons/lucide/issues/2874) by [@&#8203;sachinkr7368](https://github.com/sachinkr7368) in [#&#8203;2957](https://github.com/lucide-icons/lucide/pull/2957) #### New Contributors - [@&#8203;sachinkr7368](https://github.com/sachinkr7368) made their first contribution in [#&#8203;2957](https://github.com/lucide-icons/lucide/pull/2957) **Full Changelog**: <https://github.com/lucide-icons/lucide/compare/0.493.0...0.494.0> ### [`v0.493.0`](https://github.com/lucide-icons/lucide/releases/tag/0.493.0): Version 0.493.0 [Compare Source](https://github.com/lucide-icons/lucide/compare/0.492.0...0.493.0) #### What's Changed - feat(icons): added `bubbles` icon by [@&#8203;vqh2602](https://github.com/vqh2602) in [#&#8203;2582](https://github.com/lucide-icons/lucide/pull/2582) - docs(studio): Add lucide studio to site navbar by [@&#8203;ericfennis](https://github.com/ericfennis) in [#&#8203;3058](https://github.com/lucide-icons/lucide/pull/3058) - feat(ci): adds dpi preview for 16, 32 and 48px by [@&#8203;jguddas](https://github.com/jguddas) in [#&#8203;3048](https://github.com/lucide-icons/lucide/pull/3048) - fix(icons): changed `palette` icon by [@&#8203;jamiemlaw](https://github.com/jamiemlaw) in [#&#8203;3015](https://github.com/lucide-icons/lucide/pull/3015) - feat(icons): added `brick-wall-fire` icon by [@&#8203;karsa-mistmere](https://github.com/karsa-mistmere) in [#&#8203;3036](https://github.com/lucide-icons/lucide/pull/3036) #### New Contributors - [@&#8203;vqh2602](https://github.com/vqh2602) made their first contribution in [#&#8203;2582](https://github.com/lucide-icons/lucide/pull/2582) **Full Changelog**: <https://github.com/lucide-icons/lucide/compare/0.492.0...0.493.0> ### [`v0.492.0`](https://github.com/lucide-icons/lucide/releases/tag/0.492.0): Version 0.492.0 [Compare Source](https://github.com/lucide-icons/lucide/compare/0.491.0...0.492.0) #### What's Changed - fix(icons): changed `pipette` icon by [@&#8203;jguddas](https://github.com/jguddas) in [#&#8203;2927](https://github.com/lucide-icons/lucide/pull/2927) - feat(icons): added `heart-plus` & `heart-minus` icon by [@&#8203;Ayberkyvs](https://github.com/Ayberkyvs) in [#&#8203;2842](https://github.com/lucide-icons/lucide/pull/2842) #### New Contributors - [@&#8203;Ayberkyvs](https://github.com/Ayberkyvs) made their first contribution in [#&#8203;2842](https://github.com/lucide-icons/lucide/pull/2842) **Full Changelog**: <https://github.com/lucide-icons/lucide/compare/0.491.0...0.492.0> ### [`v0.491.0`](https://github.com/lucide-icons/lucide/releases/tag/0.491.0): Version 0.491.0 [Compare Source](https://github.com/lucide-icons/lucide/compare/0.490.0...0.491.0) #### What's Changed - feat(icons): added `rotate-ccw-key` icon by [@&#8203;pgbradbury](https://github.com/pgbradbury) in [#&#8203;2587](https://github.com/lucide-icons/lucide/pull/2587) #### New Contributors - [@&#8203;pgbradbury](https://github.com/pgbradbury) made their first contribution in [#&#8203;2587](https://github.com/lucide-icons/lucide/pull/2587) **Full Changelog**: <https://github.com/lucide-icons/lucide/compare/0.490.0...0.491.0> ### [`v0.490.0`](https://github.com/lucide-icons/lucide/releases/tag/0.490.0): Version 0.490.0 [Compare Source](https://github.com/lucide-icons/lucide/compare/0.489.0...0.490.0) #### What's Changed - fix(icons): changed `piggy-bank` icon by [@&#8203;jamiemlaw](https://github.com/jamiemlaw) in [#&#8203;3044](https://github.com/lucide-icons/lucide/pull/3044) **Full Changelog**: <https://github.com/lucide-icons/lucide/compare/0.489.0...0.490.0> ### [`v0.489.0`](https://github.com/lucide-icons/lucide/releases/tag/0.489.0): Version 0.489.0 [Compare Source](https://github.com/lucide-icons/lucide/compare/0.488.0...0.489.0) #### What's Changed - fix(icons): changed `toggle` icons by [@&#8203;jamiemlaw](https://github.com/jamiemlaw) in [#&#8203;3049](https://github.com/lucide-icons/lucide/pull/3049) - fix(dev): added link for preact in installation by [@&#8203;briz123](https://github.com/briz123) in [#&#8203;3025](https://github.com/lucide-icons/lucide/pull/3025) - fix(react): added aria-hidden fallback for decorative icons by [@&#8203;jguddas](https://github.com/jguddas) in [#&#8203;2158](https://github.com/lucide-icons/lucide/pull/2158) - fix(icons): added 2px gap between layers of `layers-2` icon by [@&#8203;jguddas](https://github.com/jguddas) in [#&#8203;2918](https://github.com/lucide-icons/lucide/pull/2918) - fix(icons): changed `text-cursor-input` icon by [@&#8203;jguddas](https://github.com/jguddas) in [#&#8203;3027](https://github.com/lucide-icons/lucide/pull/3027) **Full Changelog**: <https://github.com/lucide-icons/lucide/compare/0.488.0...0.489.0> ### [`v0.488.0`](https://github.com/lucide-icons/lucide/releases/tag/0.488.0): Version 0.488.0 [Compare Source](https://github.com/lucide-icons/lucide/compare/0.487.0...0.488.0) #### What's Changed - docs(readme): fix packages table by [@&#8203;realguse](https://github.com/realguse) in [#&#8203;2976](https://github.com/lucide-icons/lucide/pull/2976) - fix(dev): point urls on packages page to correct page by [@&#8203;briz123](https://github.com/briz123) in [#&#8203;2983](https://github.com/lucide-icons/lucide/pull/2983) - build(deps-dev): bump vite from 5.4.14 to 5.4.15 by [@&#8203;dependabot](https://github.com/dependabot) in [#&#8203;2946](https://github.com/lucide-icons/lucide/pull/2946) - Typo fix for [@&#8203;lucide/astro](https://github.com/lucide/astro) badge by [@&#8203;dotspencer](https://github.com/dotspencer) in [#&#8203;3004](https://github.com/lucide-icons/lucide/pull/3004) - removed flutter package link by [@&#8203;shamaamahh](https://github.com/shamaamahh) in [#&#8203;2999](https://github.com/lucide-icons/lucide/pull/2999) - feat(ci): added npm package provenance attestation by [@&#8203;jguddas](https://github.com/jguddas) in [#&#8203;3016](https://github.com/lucide-icons/lucide/pull/3016) - fix(icons): changed `text` icon by [@&#8203;jguddas](https://github.com/jguddas) in [#&#8203;3029](https://github.com/lucide-icons/lucide/pull/3029) - fix(icons): changed `letter-text` icon by [@&#8203;jguddas](https://github.com/jguddas) in [#&#8203;3030](https://github.com/lucide-icons/lucide/pull/3030) - fix(icons): changed `text-select` icon by [@&#8203;jguddas](https://github.com/jguddas) in [#&#8203;3028](https://github.com/lucide-icons/lucide/pull/3028) #### New Contributors - [@&#8203;dotspencer](https://github.com/dotspencer) made their first contribution in [#&#8203;3004](https://github.com/lucide-icons/lucide/pull/3004) - [@&#8203;shamaamahh](https://github.com/shamaamahh) made their first contribution in [#&#8203;2999](https://github.com/lucide-icons/lucide/pull/2999) **Full Changelog**: <https://github.com/lucide-icons/lucide/compare/0.487.0...0.488.0> ### [`v0.487.0`](https://github.com/lucide-icons/lucide/releases/tag/0.487.0): Version 0.487.0 [Compare Source](https://github.com/lucide-icons/lucide/compare/0.486.0...0.487.0) #### What's Changed - feat(icons): added `spline-pointer` icon by [@&#8203;Kaleidosium](https://github.com/Kaleidosium) in [#&#8203;2932](https://github.com/lucide-icons/lucide/pull/2932) #### New Contributors - [@&#8203;Kaleidosium](https://github.com/Kaleidosium) made their first contribution in [#&#8203;2932](https://github.com/lucide-icons/lucide/pull/2932) **Full Changelog**: <https://github.com/lucide-icons/lucide/compare/0.486.0...0.487.0> ### [`v0.486.0`](https://github.com/lucide-icons/lucide/releases/tag/0.486.0): Version 0.486.0 [Compare Source](https://github.com/lucide-icons/lucide/compare/0.485.0...0.486.0) #### What's Changed - feat([@&#8203;lucide/astro](https://github.com/lucide/astro)): add lucide package for Astro by [@&#8203;MoustaphaDev](https://github.com/MoustaphaDev) in [#&#8203;2665](https://github.com/lucide-icons/lucide/pull/2665) #### New Contributors - [@&#8203;MoustaphaDev](https://github.com/MoustaphaDev) made their first contribution in [#&#8203;2665](https://github.com/lucide-icons/lucide/pull/2665) **Full Changelog**: <https://github.com/lucide-icons/lucide/compare/0.485.0...0.486.0> ### [`v0.485.0`](https://github.com/lucide-icons/lucide/releases/tag/0.485.0): Version 0.485.0 [Compare Source](https://github.com/lucide-icons/lucide/compare/0.484.0...0.485.0) #### What's Changed - feat(icons): added `banknote-arrow-down` icon by [@&#8203;joffx](https://github.com/joffx) in [#&#8203;2948](https://github.com/lucide-icons/lucide/pull/2948) - feat(icons): added `banknote-x` icon by [@&#8203;joffx](https://github.com/joffx) in [#&#8203;2949](https://github.com/lucide-icons/lucide/pull/2949) **Full Changelog**: <https://github.com/lucide-icons/lucide/compare/0.484.0...0.485.0> ### [`v0.484.0`](https://github.com/lucide-icons/lucide/releases/tag/0.484.0): Version 0.484.0 [Compare Source](https://github.com/lucide-icons/lucide/compare/0.483.0...0.484.0) #### What's Changed - build(deps): bump tj-actions/changed-files from 41 to 46 in /.github/workflows by [@&#8203;dependabot](https://github.com/dependabot) in [#&#8203;2920](https://github.com/lucide-icons/lucide/pull/2920) - fix(packages): consistent icon name class by [@&#8203;danteissaias](https://github.com/danteissaias) in [#&#8203;2878](https://github.com/lucide-icons/lucide/pull/2878) - feat(ci): add `x.com` to brand filter by [@&#8203;jguddas](https://github.com/jguddas) in [#&#8203;2939](https://github.com/lucide-icons/lucide/pull/2939) - fix(icons): arcified candy & candy-off by [@&#8203;karsa-mistmere](https://github.com/karsa-mistmere) in [#&#8203;2944](https://github.com/lucide-icons/lucide/pull/2944) #### New Contributors - [@&#8203;danteissaias](https://github.com/danteissaias) made their first contribution in [#&#8203;2878](https://github.com/lucide-icons/lucide/pull/2878) **Full Changelog**: <https://github.com/lucide-icons/lucide/compare/0.483.0...0.484.0> ### [`v0.483.0`](https://github.com/lucide-icons/lucide/releases/tag/0.483.0): Version 0.483.0 [Compare Source](https://github.com/lucide-icons/lucide/compare/0.482.0...0.483.0) #### What's Changed - feat(ci): added `pix` to brand filter by [@&#8203;jguddas](https://github.com/jguddas) in [#&#8203;2908](https://github.com/lucide-icons/lucide/pull/2908) - fix(packages/lucide-angular): restore exporting prefixed and suffixed icon names by [@&#8203;karsa-mistmere](https://github.com/karsa-mistmere) in [#&#8203;2919](https://github.com/lucide-icons/lucide/pull/2919) - feat(icons): updates `filter` & adds `filter-plus` icon by [@&#8203;lukedukeus](https://github.com/lukedukeus) in [#&#8203;2917](https://github.com/lucide-icons/lucide/pull/2917) #### New Contributors - [@&#8203;lukedukeus](https://github.com/lukedukeus) made their first contribution in [#&#8203;2917](https://github.com/lucide-icons/lucide/pull/2917) **Full Changelog**: <https://github.com/lucide-icons/lucide/compare/0.482.0...0.483.0> ### [`v0.482.0`](https://github.com/lucide-icons/lucide/releases/tag/0.482.0): Version 0.482.0 [Compare Source](https://github.com/lucide-icons/lucide/compare/0.481.0...0.482.0) #### What's Changed - fix(deps): CVE-2024-21538 by [@&#8203;anupamme](https://github.com/anupamme) in [#&#8203;2871](https://github.com/lucide-icons/lucide/pull/2871) - feat(icons): add `saudi-riyal` Symbol by [@&#8203;Null78](https://github.com/Null78) in [#&#8203;2827](https://github.com/lucide-icons/lucide/pull/2827) #### New Contributors - [@&#8203;anupamme](https://github.com/anupamme) made their first contribution in [#&#8203;2871](https://github.com/lucide-icons/lucide/pull/2871) - [@&#8203;Null78](https://github.com/Null78) made their first contribution in [#&#8203;2827](https://github.com/lucide-icons/lucide/pull/2827) **Full Changelog**: <https://github.com/lucide-icons/lucide/compare/0.481.0...0.482.0> ### [`v0.481.0`](https://github.com/lucide-icons/lucide/releases/tag/0.481.0): Version 0.481.0 [Compare Source](https://github.com/lucide-icons/lucide/compare/0.480.0...0.481.0) #### What's Changed - feat(icons): added `clock-fading` icon by [@&#8203;jguddas](https://github.com/jguddas) in [#&#8203;2405](https://github.com/lucide-icons/lucide/pull/2405) **Full Changelog**: <https://github.com/lucide-icons/lucide/compare/0.480.0...0.481.0> ### [`v0.480.0`](https://github.com/lucide-icons/lucide/releases/tag/0.480.0): Version 0.480.0 [Compare Source](https://github.com/lucide-icons/lucide/compare/0.479.0...0.480.0) #### What's Changed - ci: added `bluesky` and `spotify` to brand list filter by [@&#8203;jguddas](https://github.com/jguddas) in [#&#8203;2857](https://github.com/lucide-icons/lucide/pull/2857) - fix(docs): grammatical inconsistencies by [@&#8203;FOSS-VFX](https://github.com/FOSS-VFX) in [#&#8203;2899](https://github.com/lucide-icons/lucide/pull/2899) - fix(docs): Resolves [#&#8203;2887](https://github.com/lucide-icons/lucide/issues/2887) by [@&#8203;briz123](https://github.com/briz123) in [#&#8203;2889](https://github.com/lucide-icons/lucide/pull/2889) - fix(icons): arcified `newspaper` by [@&#8203;karsa-mistmere](https://github.com/karsa-mistmere) in [#&#8203;2885](https://github.com/lucide-icons/lucide/pull/2885) - ci(node): Use correct node version by [@&#8203;ericfennis](https://github.com/ericfennis) in [#&#8203;2877](https://github.com/lucide-icons/lucide/pull/2877) - fix(icons): changed `infinity` icon by [@&#8203;jamiemlaw](https://github.com/jamiemlaw) in [#&#8203;2868](https://github.com/lucide-icons/lucide/pull/2868) - feat(icons): added `shrimp` icon by [@&#8203;jguddas](https://github.com/jguddas) in [#&#8203;2319](https://github.com/lucide-icons/lucide/pull/2319) #### New Contributors - [@&#8203;FOSS-VFX](https://github.com/FOSS-VFX) made their first contribution in [#&#8203;2899](https://github.com/lucide-icons/lucide/pull/2899) - [@&#8203;briz123](https://github.com/briz123) made their first contribution in [#&#8203;2889](https://github.com/lucide-icons/lucide/pull/2889) **Full Changelog**: <https://github.com/lucide-icons/lucide/compare/0.479.0...0.480.0> ### [`v0.479.0`](https://github.com/lucide-icons/lucide/releases/tag/0.479.0): Version 0.479.0 [Compare Source](https://github.com/lucide-icons/lucide/compare/0.478.0...0.479.0) #### What's Changed - feat([@&#8203;lucide/svelte](https://github.com/lucide/svelte)): Lucide svelte 5 package by [@&#8203;ericfennis](https://github.com/ericfennis) in [#&#8203;2753](https://github.com/lucide-icons/lucide/pull/2753) **Full Changelog**: <https://github.com/lucide-icons/lucide/compare/0.478.0...0.479.0> ### [`v0.478.0`](https://github.com/lucide-icons/lucide/releases/tag/0.478.0): Version 0.478.0 [Compare Source](https://github.com/lucide-icons/lucide/compare/0.477.0...0.478.0) #### What's Changed - ci(pr-comment): Fix icon preview comment on PRs by [@&#8203;ericfennis](https://github.com/ericfennis) in [#&#8203;2854](https://github.com/lucide-icons/lucide/pull/2854) - fix(ci): run lint pr title on title change by [@&#8203;jguddas](https://github.com/jguddas) in [#&#8203;2872](https://github.com/lucide-icons/lucide/pull/2872) - fix(metadata): name change reflected in contributions by [@&#8203;AnnaSasDev](https://github.com/AnnaSasDev) in [#&#8203;2866](https://github.com/lucide-icons/lucide/pull/2866) - fix(icons): changed `brackets` icon by [@&#8203;jguddas](https://github.com/jguddas) in [#&#8203;2863](https://github.com/lucide-icons/lucide/pull/2863) **Full Changelog**: <https://github.com/lucide-icons/lucide/compare/0.477.0...0.478.0> ### [`v0.477.0`](https://github.com/lucide-icons/lucide/releases/tag/0.477.0): New icons 0.477.0 [Compare Source](https://github.com/lucide-icons/lucide/compare/0.476.0...0.477.0) #### New icons 🎨 - `square-round-corner` ([#&#8203;2323](https://github.com/lucide-icons/lucide/issues/2323)) by [@&#8203;liamb13](https://github.com/liamb13) #### Modified Icons 🔨 - `circle-slash-2` ([#&#8203;2837](https://github.com/lucide-icons/lucide/issues/2837)) by [@&#8203;jguddas](https://github.com/jguddas) ### [`v0.476.0`](https://github.com/lucide-icons/lucide/releases/tag/0.476.0): Fixes and new icons 0.476.0 [Compare Source](https://github.com/lucide-icons/lucide/compare/0.475.0...0.476.0) #### Fixes - fix(lucide-react): Revert exports property package.json, fixing edge worker environments. by [@&#8203;ericfennis](https://github.com/ericfennis) in [#&#8203;2814](https://github.com/lucide-icons/lucide/pull/2814) - fix(lucide): Lucide create element function returning SVG Element by [@&#8203;ericfennis](https://github.com/ericfennis) in [#&#8203;2816](https://github.com/lucide-icons/lucide/pull/2816) #### New icons 🎨 - `shield-user` ([#&#8203;2608](https://github.com/lucide-icons/lucide/issues/2608)) by [@&#8203;sebinemeth](https://github.com/sebinemeth) #### Modified Icons 🔨 - `beef` ([#&#8203;2832](https://github.com/lucide-icons/lucide/issues/2832)) by [@&#8203;jguddas](https://github.com/jguddas) ### [`v0.475.0`](https://github.com/lucide-icons/lucide/releases/tag/0.475.0): New icons 0.475.0 [Compare Source](https://github.com/lucide-icons/lucide/compare/0.474.0...0.475.0) #### New icons 🎨 - `circle-small` ([#&#8203;2607](https://github.com/lucide-icons/lucide/issues/2607)) by [@&#8203;jamiemlaw](https://github.com/jamiemlaw) - `mars-stroke` ([#&#8203;2607](https://github.com/lucide-icons/lucide/issues/2607)) by [@&#8203;jamiemlaw](https://github.com/jamiemlaw) - `mars` ([#&#8203;2607](https://github.com/lucide-icons/lucide/issues/2607)) by [@&#8203;jamiemlaw](https://github.com/jamiemlaw) - `non-binary` ([#&#8203;2607](https://github.com/lucide-icons/lucide/issues/2607)) by [@&#8203;jamiemlaw](https://github.com/jamiemlaw) - `transgender` ([#&#8203;2607](https://github.com/lucide-icons/lucide/issues/2607)) by [@&#8203;jamiemlaw](https://github.com/jamiemlaw) - `venus-and-mars` ([#&#8203;2607](https://github.com/lucide-icons/lucide/issues/2607)) by [@&#8203;jamiemlaw](https://github.com/jamiemlaw) - `venus` ([#&#8203;2607](https://github.com/lucide-icons/lucide/issues/2607)) by [@&#8203;jamiemlaw](https://github.com/jamiemlaw) ### [`v0.474.0`](https://github.com/lucide-icons/lucide/releases/tag/0.474.0): New icons 0.474.0 [Compare Source](https://github.com/lucide-icons/lucide/compare/0.473.0...0.474.0) #### Modified Icons 🔨 - `expand` ([#&#8203;2677](https://github.com/lucide-icons/lucide/issues/2677)) by [@&#8203;jguddas](https://github.com/jguddas) ### [`v0.473.0`](https://github.com/lucide-icons/lucide/releases/tag/0.473.0): New icons 0.473.0 [Compare Source](https://github.com/lucide-icons/lucide/compare/0.472.0...0.473.0) #### Modified Icons 🔨 - `package` ([#&#8203;2706](https://github.com/lucide-icons/lucide/issues/2706)) by [@&#8203;sezze](https://github.com/sezze) ### [`v0.472.0`](https://github.com/lucide-icons/lucide/releases/tag/0.472.0): New icons 0.472.0 #### New icons 🎨 - `battery-plus` ([#&#8203;2693](https://github.com/lucide-icons/lucide/issues/2693)) by [@&#8203;Footagesus](https://github.com/Footagesus) - `map-plus` ([#&#8203;2697](https://github.com/lucide-icons/lucide/issues/2697)) by [@&#8203;Seanw265](https://github.com/Seanw265) #### What's Changed - lucide-svelte: Make sure license ends up in SvelteKit bundles by [@&#8203;Lettnald](https://github.com/Lettnald) in [#&#8203;2728](https://github.com/lucide-icons/lucide/pull/2728) - lucide-react: Fixes aliases imports. **Full Changelog**: <https://github.com/lucide-icons/lucide/compare/0.471.1...0.472.0> ### [`v0.471.1`](https://github.com/lucide-icons/lucide/releases/tag/0.471.1): Hotfix Lucide React exports [Compare Source](https://github.com/lucide-icons/lucide/compare/0.471.0...0.471.1) #### What's Changed - fix(lucide-react) Adds type module in package.json by [@&#8203;ericfennis](https://github.com/ericfennis) in [#&#8203;2731](https://github.com/lucide-icons/lucide/pull/2731) ### [`v0.471.0`](https://github.com/lucide-icons/lucide/releases/tag/0.471.0): Dynamic Icon component Lucide React and new icons 0.471.0 [Compare Source](https://github.com/lucide-icons/lucide/compare/0.470.0...0.471.0) #### New Dynamic Icon Component (lucide-react) This is an easier approach than the previous `dynamicIconImports` we exported in the library. This one supports all environments. We removed the examples in the docs of how you can make a dynamic icon yourself with a dedicated DynamicIcon component. This one fetches the icon data itself and renders it instead of fetching the Icon component from the library. This makes it more flexible with all the frontend frameworks and libraries that exist for React. > :rotating\_light: > Not recommended for regular applications that work fine with the regular static icon components. > Using the dynamic icon component increases build time, separate bundles, and separate network requests for each icon. ##### How to use `DynamicIcon` is useful for applications that want to show icons dynamically by icon name, for example when using a content management system where icon names are stored in a database. ```jsx const App = () => ( <DynamicIcon name="camera" color="red" size={48} /> ); ``` ##### Possible Breaking changes We have switched to the ["exports"](https://nodejs.org/api/packages.html#exports-sugar) property in `package.json`. This can cause issues if you have directly imported scripts from the package. Please open an issue if we need to refine this export map. #### New icons 🎨 - `triangle-dashed` ([#&#8203;2652](https://github.com/lucide-icons/lucide/issues/2652)) by [@&#8203;Yohh](https://github.com/Yohh) ### [`v0.470.0`](https://github.com/lucide-icons/lucide/releases/tag/0.470.0): New icons 0.470.0 [Compare Source](https://github.com/lucide-icons/lucide/compare/0.469.0...0.470.0) #### New icons 🎨 - `house-wifi` ([#&#8203;2723](https://github.com/lucide-icons/lucide/issues/2723)) by [@&#8203;akshaymemane](https://github.com/akshaymemane) #### Modified Icons 🔨 - `rat` ([#&#8203;2692](https://github.com/lucide-icons/lucide/issues/2692)) by [@&#8203;jguddas](https://github.com/jguddas) ### [`v0.469.0`](https://github.com/lucide-icons/lucide/releases/tag/0.469.0): New icons 0.469.0 [Compare Source](https://github.com/lucide-icons/lucide/compare/0.468.0...0.469.0) #### Modified Icons 🔨 - `snowflake` ([#&#8203;2610](https://github.com/lucide-icons/lucide/issues/2610)) by [@&#8203;karsa-mistmere](https://github.com/karsa-mistmere) - `sun-snow` ([#&#8203;2610](https://github.com/lucide-icons/lucide/issues/2610)) by [@&#8203;karsa-mistmere](https://github.com/karsa-mistmere) - `thermometer-snowflake` ([#&#8203;2610](https://github.com/lucide-icons/lucide/issues/2610)) by [@&#8203;karsa-mistmere](https://github.com/karsa-mistmere) ### [`v0.468.0`](https://github.com/lucide-icons/lucide/releases/tag/0.468.0): New icons 0.468.0 [Compare Source](https://github.com/lucide-icons/lucide/compare/0.467.0...0.468.0) #### New icons 🎨 - `waves-ladder` ([#&#8203;2529](https://github.com/lucide-icons/lucide/issues/2529)) by [@&#8203;jguddas](https://github.com/jguddas) ### [`v0.467.0`](https://github.com/lucide-icons/lucide/releases/tag/0.467.0): New icons 0.467.0 [Compare Source](https://github.com/lucide-icons/lucide/compare/0.466.0...0.467.0) #### New icons 🎨 - `scan-heart` ([#&#8203;2385](https://github.com/lucide-icons/lucide/issues/2385)) by [@&#8203;jguddas](https://github.com/jguddas) #### Modified Icons 🔨 - `book-dashed` ([#&#8203;2399](https://github.com/lucide-icons/lucide/issues/2399)) by [@&#8203;jguddas](https://github.com/jguddas) ### [`v0.466.0`](https://github.com/lucide-icons/lucide/releases/tag/0.466.0): New icons 0.466.0 [Compare Source](https://github.com/lucide-icons/lucide/compare/0.465.0...0.466.0) #### New icons 🎨 - `list-filter-plus` ([#&#8203;2645](https://github.com/lucide-icons/lucide/issues/2645)) by [@&#8203;abdeniz](https://github.com/abdeniz) #### Modified Icons 🔨 - `bell-dot` ([#&#8203;2656](https://github.com/lucide-icons/lucide/issues/2656)) by [@&#8203;karsa-mistmere](https://github.com/karsa-mistmere) - `bell-minus` ([#&#8203;2656](https://github.com/lucide-icons/lucide/issues/2656)) by [@&#8203;karsa-mistmere](https://github.com/karsa-mistmere) - `bell-off` ([#&#8203;2656](https://github.com/lucide-icons/lucide/issues/2656)) by [@&#8203;karsa-mistmere](https://github.com/karsa-mistmere) - `bell-plus` ([#&#8203;2656](https://github.com/lucide-icons/lucide/issues/2656)) by [@&#8203;karsa-mistmere](https://github.com/karsa-mistmere) - `bell-ring` ([#&#8203;2656](https://github.com/lucide-icons/lucide/issues/2656)) by [@&#8203;karsa-mistmere](https://github.com/karsa-mistmere) - `bell` ([#&#8203;2656](https://github.com/lucide-icons/lucide/issues/2656)) by [@&#8203;karsa-mistmere](https://github.com/karsa-mistmere) ### [`v0.465.0`](https://github.com/lucide-icons/lucide/releases/tag/0.465.0): New icons 0.465.0 [Compare Source](https://github.com/lucide-icons/lucide/compare/0.464.0...0.465.0) #### New icons 🎨 - `droplet-off` ([#&#8203;2641](https://github.com/lucide-icons/lucide/issues/2641)) by [@&#8203;jguddas](https://github.com/jguddas) #### Modified Icons 🔨 - `flask-conical-off` ([#&#8203;2659](https://github.com/lucide-icons/lucide/issues/2659)) by [@&#8203;jamiemlaw](https://github.com/jamiemlaw) - `flask-conical` ([#&#8203;2659](https://github.com/lucide-icons/lucide/issues/2659)) by [@&#8203;jamiemlaw](https://github.com/jamiemlaw) - `flask-round` ([#&#8203;2659](https://github.com/lucide-icons/lucide/issues/2659)) by [@&#8203;jamiemlaw](https://github.com/jamiemlaw) ### [`v0.464.0`](https://github.com/lucide-icons/lucide/releases/tag/0.464.0): New icons 0.464.0 [Compare Source](https://github.com/lucide-icons/lucide/compare/0.463.0...0.464.0) #### Modified Icons 🔨 - `paperclip` ([#&#8203;2482](https://github.com/lucide-icons/lucide/issues/2482)) by [@&#8203;jguddas](https://github.com/jguddas) - `picture-in-picture` ([#&#8203;2481](https://github.com/lucide-icons/lucide/issues/2481)) by [@&#8203;jguddas](https://github.com/jguddas) ### [`v0.463.0`](https://github.com/lucide-icons/lucide/releases/tag/0.463.0): New icons 0.463.0 [Compare Source](https://github.com/lucide-icons/lucide/compare/0.462.0...0.463.0) #### Modified Icons 🔨 - `layers` ([#&#8203;2596](https://github.com/lucide-icons/lucide/issues/2596)) by [@&#8203;jguddas](https://github.com/jguddas) ### [`v0.462.0`](https://github.com/lucide-icons/lucide/releases/tag/0.462.0): New icons 0.462.0 [Compare Source](https://github.com/lucide-icons/lucide/compare/0.461.0...0.462.0) #### New icons 🎨 - `image-upscale` ([#&#8203;2462](https://github.com/lucide-icons/lucide/issues/2462)) by [@&#8203;jguddas](https://github.com/jguddas) #### Modified Icons 🔨 - `grid-2x2` ([#&#8203;2628](https://github.com/lucide-icons/lucide/issues/2628)) by [@&#8203;jguddas](https://github.com/jguddas) - `ship` ([#&#8203;2548](https://github.com/lucide-icons/lucide/issues/2548)) by [@&#8203;jguddas](https://github.com/jguddas) - `shuffle` ([#&#8203;2478](https://github.com/lucide-icons/lucide/issues/2478)) by [@&#8203;jguddas](https://github.com/jguddas) - `venetian-mask` ([#&#8203;1950](https://github.com/lucide-icons/lucide/issues/1950)) by [@&#8203;jguddas](https://github.com/jguddas) ### [`v0.461.0`](https://github.com/lucide-icons/lucide/releases/tag/0.461.0): New icons 0.461.0 [Compare Source](https://github.com/lucide-icons/lucide/compare/0.460.0...0.461.0) #### New icons 🎨 - `calendar-sync` ([#&#8203;2590](https://github.com/lucide-icons/lucide/issues/2590)) by [@&#8203;chessurisme](https://github.com/chessurisme) #### Modified Icons 🔨 - `scale-3d` ([#&#8203;2627](https://github.com/lucide-icons/lucide/issues/2627)) by [@&#8203;jguddas](https://github.com/jguddas) ### [`v0.460.0`](https://github.com/lucide-icons/lucide/releases/tag/0.460.0): New icons 0.460.0 [Compare Source](https://github.com/lucide-icons/lucide/compare/0.459.0...0.460.0) #### New icons 🎨 - `toilet` ([#&#8203;2141](https://github.com/lucide-icons/lucide/issues/2141)) by [@&#8203;EthanHazel](https://github.com/EthanHazel) ### [`v0.459.0`](https://github.com/lucide-icons/lucide/releases/tag/0.459.0): New icons 0.459.0 [Compare Source](https://github.com/lucide-icons/lucide/compare/0.458.0...0.459.0) #### New icons 🎨 - `equal-approximately` ([#&#8203;2594](https://github.com/lucide-icons/lucide/issues/2594)) by [@&#8203;ksk3110](https://github.com/ksk3110) ### [`v0.458.0`](https://github.com/lucide-icons/lucide/releases/tag/0.458.0): New icons 0.458.0 [Compare Source](https://github.com/lucide-icons/lucide/compare/0.457.0...0.458.0) #### New icons 🎨 - `cloud-alert` ([#&#8203;2611](https://github.com/lucide-icons/lucide/issues/2611)) by [@&#8203;lscheibel](https://github.com/lscheibel) #### Modified Icons 🔨 - `drill` ([#&#8203;1919](https://github.com/lucide-icons/lucide/issues/1919)) by [@&#8203;jguddas](https://github.com/jguddas) #### Other Changes - feat(lucide-svelte): Aliased imports for direct imports by [@&#8203;ericfennis](https://github.com/ericfennis) in [#&#8203;2584](https://github.com/lucide-icons/lucide/pull/2584) **Full Changelog**: <https://github.com/lucide-icons/lucide/compare/0.457.0...0.458.0> ### [`v0.457.0`](https://github.com/lucide-icons/lucide/releases/tag/0.457.0): New icons 0.457.0 [Compare Source](https://github.com/lucide-icons/lucide/compare/0.456.0...0.457.0) #### New icons 🎨 - `laptop-minimal-check` ([#&#8203;2563](https://github.com/lucide-icons/lucide/issues/2563)) by [@&#8203;jguddas](https://github.com/jguddas) #### Modified Icons 🔨 - `bath` ([#&#8203;2512](https://github.com/lucide-icons/lucide/issues/2512)) by [@&#8203;jamiemlaw](https://github.com/jamiemlaw) - `cross` ([#&#8203;2578](https://github.com/lucide-icons/lucide/issues/2578)) by [@&#8203;jguddas](https://github.com/jguddas) - `hand-platter` ([#&#8203;2326](https://github.com/lucide-icons/lucide/issues/2326)) by [@&#8203;karsa-mistmere](https://github.com/karsa-mistmere) - `hard-hat` ([#&#8203;2559](https://github.com/lucide-icons/lucide/issues/2559)) by [@&#8203;jguddas](https://github.com/jguddas) - `heading-4` ([#&#8203;2546](https://github.com/lucide-icons/lucide/issues/2546)) by [@&#8203;jguddas](https://github.com/jguddas) - `puzzle` ([#&#8203;2603](https://github.com/lucide-icons/lucide/issues/2603)) by [@&#8203;jamiemlaw](https://github.com/jamiemlaw) - `school` ([#&#8203;2598](https://github.com/lucide-icons/lucide/issues/2598)) by [@&#8203;jguddas](https://github.com/jguddas) - `vegan` ([#&#8203;2556](https://github.com/lucide-icons/lucide/issues/2556)) by [@&#8203;jguddas](https://github.com/jguddas) ### [`v0.456.0`](https://github.com/lucide-icons/lucide/releases/tag/0.456.0): Choosing import name style 0.456.0 [Compare Source](https://github.com/lucide-icons/lucide/compare/0.455.0...0.456.0) #### What's Changed - ci(pull-request): Fix generate comments for empty changes by [@&#8203;ericfennis](https://github.com/ericfennis) in [#&#8203;2593](https://github.com/lucide-icons/lucide/pull/2593) - feat(lucide-react, lucide-preact, lucide-react-native, lucide-solid, lucide-vue-next): Adjustable icon naming imports by [@&#8203;ericfennis](https://github.com/ericfennis) in [#&#8203;2328](https://github.com/lucide-icons/lucide/pull/2328) - fix(icons): changed `glass-water` icon by [@&#8203;jguddas](https://github.com/jguddas) in [#&#8203;2579](https://github.com/lucide-icons/lucide/pull/2579) ### Adjustable icon naming imports Customize import name styles for `lucide-react`, `lucide-vue`, `lucide-react-native`, `lucide-preact`, to manage autocompletion in your IDE. 1. **Turn off autocomplete in your IDE**: Add the following to your `settings.json` ```json { "typescript.preferences.autoImportFileExcludePatterns": [ "lucide-react", "lucide-preact", "lucide-react-native", "lucide-vue-next" ] } ``` 2. **Create a custom module declaration file**: It allows you to choose the import name style. For React: ```ts declare module "lucide-react" { // Prefixed import names export * from "lucide-react/dist/lucide-react.prefixed"; // or // Suffixed import names export * from "lucide-react/dist/lucide-react.suffixed"; } ``` For Vue: ```ts declare module "lucide-vue-next" { // Prefixed import names export * from "lucide-vue-next/dist/lucide-vue-next.prefixed"; // or // Suffixed import names export * from "lucide-vue-next/dist/lucide-vue-next.suffixed"; } ``` ### [`v0.455.0`](https://github.com/lucide-icons/lucide/releases/tag/0.455.0): New icons 0.455.0 [Compare Source](https://github.com/lucide-icons/lucide/compare/0.454.0...0.455.0) #### New icons 🎨 - `wind-arrow-down` ([#&#8203;2554](https://github.com/lucide-icons/lucide/issues/2554)) by [@&#8203;jamiemlaw](https://github.com/jamiemlaw) #### Modified Icons 🔨 - `file-music` ([#&#8203;2536](https://github.com/lucide-icons/lucide/issues/2536)) by [@&#8203;jguddas](https://github.com/jguddas) - `slice` ([#&#8203;2500](https://github.com/lucide-icons/lucide/issues/2500)) by [@&#8203;jguddas](https://github.com/jguddas) - `undo-dot` ([#&#8203;2557](https://github.com/lucide-icons/lucide/issues/2557)) by [@&#8203;jguddas](https://github.com/jguddas) - `wind` ([#&#8203;2554](https://github.com/lucide-icons/lucide/issues/2554)) by [@&#8203;jamiemlaw](https://github.com/jamiemlaw) ### [`v0.454.0`](https://github.com/lucide-icons/lucide/releases/tag/0.454.0): New icons 0.454.0 [Compare Source](https://github.com/lucide-icons/lucide/compare/0.453.0...0.454.0) #### Modified Icons 🔨 - `pizza` ([#&#8203;2476](https://github.com/lucide-icons/lucide/issues/2476)) by [@&#8203;jamiemlaw](https://github.com/jamiemlaw) - `star-half` ([#&#8203;1987](https://github.com/lucide-icons/lucide/issues/1987)) by [@&#8203;jguddas](https://github.com/jguddas) - `star` ([#&#8203;1987](https://github.com/lucide-icons/lucide/issues/1987)) by [@&#8203;jguddas](https://github.com/jguddas) ### [`v0.453.0`](https://github.com/lucide-icons/lucide/releases/tag/0.453.0): New icons 0.453.0 [Compare Source](https://github.com/lucide-icons/lucide/compare/0.452.0...0.453.0) #### New icons 🎨 - `calendar-1` ([#&#8203;2520](https://github.com/lucide-icons/lucide/issues/2520)) by [@&#8203;peteruithoven](https://github.com/peteruithoven) ### [`v0.452.0`](https://github.com/lucide-icons/lucide/releases/tag/0.452.0): New icons 0.452.0 [Compare Source](https://github.com/lucide-icons/lucide/compare/0.451.0...0.452.0) #### Modified Icons 🔨 - `align-center` ([#&#8203;2528](https://github.com/lucide-icons/lucide/issues/2528)) by [@&#8203;jamiemlaw](https://github.com/jamiemlaw) - `align-justify` ([#&#8203;2528](https://github.com/lucide-icons/lucide/issues/2528)) by [@&#8203;jamiemlaw](https://github.com/jamiemlaw) - `align-left` ([#&#8203;2528](https://github.com/lucide-icons/lucide/issues/2528)) by [@&#8203;jamiemlaw](https://github.com/jamiemlaw) - `align-right` ([#&#8203;2528](https://github.com/lucide-icons/lucide/issues/2528)) by [@&#8203;jamiemlaw](https://github.com/jamiemlaw) - `indent-decrease` ([#&#8203;2528](https://github.com/lucide-icons/lucide/issues/2528)) by [@&#8203;jamiemlaw](https://github.com/jamiemlaw) - `indent-increase` ([#&#8203;2528](https://github.com/lucide-icons/lucide/issues/2528)) by [@&#8203;jamiemlaw](https://github.com/jamiemlaw) - `list-ordered` ([#&#8203;2528](https://github.com/lucide-icons/lucide/issues/2528)) by [@&#8203;jamiemlaw](https://github.com/jamiemlaw) - `list` ([#&#8203;2528](https://github.com/lucide-icons/lucide/issues/2528)) by [@&#8203;jamiemlaw](https://github.com/jamiemlaw) ### [`v0.451.0`](https://github.com/lucide-icons/lucide/releases/tag/0.451.0): New icons 0.451.0 [Compare Source](https://github.com/lucide-icons/lucide/compare/0.449.0...0.451.0) #### Modified Icons 🔨 - `component` ([#&#8203;2474](https://github.com/lucide-icons/lucide/issues/2474)) by [@&#8203;jguddas](https://github.com/jguddas) - `package` ([#&#8203;2499](https://github.com/lucide-icons/lucide/issues/2499)) by [@&#8203;jguddas](https://github.com/jguddas) - `parking-meter` ([#&#8203;2505](https://github.com/lucide-icons/lucide/issues/2505)) by [@&#8203;jguddas](https://github.com/jguddas) - `sandwich` ([#&#8203;2494](https://github.com/lucide-icons/lucide/issues/2494)) by [@&#8203;jamiemlaw](https://github.com/jamiemlaw) ### [`v0.449.0`](https://github.com/lucide-icons/lucide/releases/tag/0.449.0): New icons 0.449.0 [Compare Source](https://github.com/lucide-icons/lucide/compare/0.448.0...0.449.0) #### New icons 🎨 - `volleyball` ([#&#8203;1980](https://github.com/lucide-icons/lucide/issues/1980)) by [@&#8203;jguddas](https://github.com/jguddas) ### [`v0.448.0`](https://github.com/lucide-icons/lucide/releases/tag/0.448.0): New icons 0.448.0 [Compare Source](https://github.com/lucide-icons/lucide/compare/0.447.0...0.448.0) #### New icons 🎨 - `eye-closed` ([#&#8203;2349](https://github.com/lucide-icons/lucide/issues/2349)) by [@&#8203;karsa-mistmere](https://github.com/karsa-mistmere) ### [`v0.447.0`](https://github.com/lucide-icons/lucide/releases/tag/0.447.0): New icons 0.447.0 [Compare Source](https://github.com/lucide-icons/lucide/compare/0.446.0...0.447.0) ### [`v0.446.0`](https://github.com/lucide-icons/lucide/releases/tag/0.446.0): New icons 0.446.0 [Compare Source](https://github.com/lucide-icons/lucide/compare/0.445.0...0.446.0) #### New icons 🎨 - `file-user` ([#&#8203;2457](https://github.com/lucide-icons/lucide/issues/2457)) by [@&#8203;jguddas](https://github.com/jguddas) ### [`v0.445.0`](https://github.com/lucide-icons/lucide/releases/tag/0.445.0): New icons 0.445.0 [Compare Source](https://github.com/lucide-icons/lucide/compare/0.444.0...0.445.0) #### New icons 🎨 - `briefcase-conveyor-belt` ([#&#8203;2431](https://github.com/lucide-icons/lucide/issues/2431)) by [@&#8203;jguddas](https://github.com/jguddas) - `message-square-lock` ([#&#8203;2430](https://github.com/lucide-icons/lucide/issues/2430)) by [@&#8203;jguddas](https://github.com/jguddas) ### [`v0.444.0`](https://github.com/lucide-icons/lucide/releases/tag/0.444.0): New icons 0.444.0 [Compare Source](https://github.com/lucide-icons/lucide/compare/0.443.0...0.444.0) #### Modified Icons 🔨 - `loader-pinwheel` ([#&#8203;2470](https://github.com/lucide-icons/lucide/issues/2470)) by [@&#8203;jguddas](https://github.com/jguddas) ### [`v0.443.0`](https://github.com/lucide-icons/lucide/releases/tag/0.443.0): New icons 0.443.0 [Compare Source](https://github.com/lucide-icons/lucide/compare/0.442.0...0.443.0) #### Modified Icons 🔨 - `circle-stop` ([#&#8203;2479](https://github.com/lucide-icons/lucide/issues/2479)) by [@&#8203;jguddas](https://github.com/jguddas) ### [`v0.442.0`](https://github.com/lucide-icons/lucide/releases/tag/0.442.0): New icons 0.442.0 [Compare Source](https://github.com/lucide-icons/lucide/compare/0.441.0...0.442.0) #### Modified Icons 🔨 - `messages-square` ([#&#8203;2429](https://github.com/lucide-icons/lucide/issues/2429)) by [@&#8203;jguddas](https://github.com/jguddas) - `octagon-pause` ([#&#8203;2485](https://github.com/lucide-icons/lucide/issues/2485)) by [@&#8203;jguddas](https://github.com/jguddas) </details> <details> <summary>postcss/postcss (postcss)</summary> ### [`v8.5.26`](https://github.com/postcss/postcss/blob/HEAD/CHANGELOG.md#8526) [Compare Source](https://github.com/postcss/postcss/compare/8.5.25...8.5.26) - Fixed `list.split()` regression (by [@&#8203;lazerg](https://github.com/lazerg)). - Track symlinks in path protection in source map loading (by [@&#8203;drengir1](https://github.com/drengir1)). ### [`v8.5.25`](https://github.com/postcss/postcss/blob/HEAD/CHANGELOG.md#8525) [Compare Source](https://github.com/postcss/postcss/compare/8.5.24...8.5.25) - Fixed 8.5.17 visitor regression. - Fixed `list.split()` for non-string values (by [@&#8203;amir-rezaei](https://github.com/amir-rezaei)). ### [`v8.5.24`](https://github.com/postcss/postcss/blob/HEAD/CHANGELOG.md#8524) [Compare Source](https://github.com/postcss/postcss/compare/8.5.23...8.5.24) - Preserve the BOM after the processing (by [@&#8203;hdimer](https://github.com/hdimer)). ### [`v8.5.23`](https://github.com/postcss/postcss/blob/HEAD/CHANGELOG.md#8523) [Compare Source](https://github.com/postcss/postcss/compare/8.5.22...8.5.23) - Do not load source map without `opts.from` for security reasons. ### [`v8.5.22`](https://github.com/postcss/postcss/blob/HEAD/CHANGELOG.md#8522) [Compare Source](https://github.com/postcss/postcss/compare/8.5.21...8.5.22) - Fixed custom property losing semicolon before a comment (by [@&#8203;sarathfrancis90](https://github.com/sarathfrancis90)). ### [`v8.5.21`](https://github.com/postcss/postcss/blob/HEAD/CHANGELOG.md#8521) [Compare Source](https://github.com/postcss/postcss/compare/8.5.20...8.5.21) - Fixed childless at-rule losing semicolon before comment (by [@&#8203;sarathfrancis90](https://github.com/sarathfrancis90)). - Fixed docs (by [@&#8203;isker](https://github.com/isker)). ### [`v8.5.20`](https://github.com/postcss/postcss/blob/HEAD/CHANGELOG.md#8520) [Compare Source](https://github.com/postcss/postcss/compare/8.5.19...8.5.20) - Fixed missing space if `AtRule#params` is set after (by [@&#8203;sarathfrancis90](https://github.com/sarathfrancis90)). - Fixed mixing AST error on warnings (by [@&#8203;MahinAnowar](https://github.com/MahinAnowar)). ### [`v8.5.19`](https://github.com/postcss/postcss/blob/HEAD/CHANGELOG.md#8519) [Compare Source](https://github.com/postcss/postcss/compare/8.5.18...8.5.19) - Fixed cleaning `before` for new nodes inserted to `Root` (by [@&#8203;MahinAnowar](https://github.com/MahinAnowar)). ### [`v8.5.18`](https://github.com/postcss/postcss/blob/HEAD/CHANGELOG.md#8518) [Compare Source](https://github.com/postcss/postcss/compare/8.5.17...8.5.18) - Restricted loading previous source maps file to the `opts.from` folder for security reasons (use `unsafeMap: true` to disable the check). ### [`v8.5.17`](https://github.com/postcss/postcss/blob/HEAD/CHANGELOG.md#8517) [Compare Source](https://github.com/postcss/postcss/compare/8.5.16...8.5.17) - Fixed `Maximum call stack size exceeded` error. - Fixed Prototype hijacking for `postcss.fromJSON()`. - Fixed `Input#origin()` for unmapped end position (by [@&#8203;chatman-media](https://github.com/chatman-media)). ### [`v8.5.16`](https://github.com/postcss/postcss/blob/HEAD/CHANGELOG.md#8516) [Compare Source](https://github.com/postcss/postcss/compare/8.5.15...8.5.16) - Fixed `Input#origin()` position (by [@&#8203;mizdra](https://github.com/mizdra)). - Fixed `raws` after rehydrating a JSON AST (by [@&#8203;sarathfrancis90](https://github.com/sarathfrancis90)). - Fixed putting parent-less node in `nodes` of new node (by [@&#8203;MahinAnowar](https://github.com/MahinAnowar)). - Fixed computing `offset` in `positionBy()` (by [@&#8203;greymoth-jp](https://github.com/greymoth-jp)). - Fixed `rangeBy()` on `index: 0` (by [@&#8203;sarathfrancis90](https://github.com/sarathfrancis90)). ### [`v8.5.15`](https://github.com/postcss/postcss/blob/HEAD/CHANGELOG.md#8515) [Compare Source](https://github.com/postcss/postcss/compare/8.5.14...8.5.15) - Fixed declaration parsing performance (by [@&#8203;homanp](https://github.com/homanp)). </details> <details> <summary>vitest-dev/vitest (vitest)</summary> ### [`v4.1.11`](https://github.com/vitest-dev/vitest/releases/tag/v4.1.11) [Compare Source](https://github.com/vitest-dev/vitest/compare/v4.1.10...v4.1.11) #####    🐞 Bug Fixes - Revive global concurrency limit for test lifecycle \[backport to v4]  -  by [@&#8203;sheremet-va](https://github.com/sheremet-va) and [@&#8203;hi-ogawa](https://github.com/hi-ogawa) in [#&#8203;10992](https://github.com/vitest-dev/vitest/issues/10992) [<samp>(5146d)</samp>](https://github.com/vitest-dev/vitest/commit/5146df80b) - **browser**: - Encode iframeId in tester iframe URL \[backport to v4]  -  by [@&#8203;sheremet-va](https://github.com/sheremet-va), **Pduhard** and **Claude Opus 4.8** in [#&#8203;10955](https://github.com/vitest-dev/vitest/issues/10955) [<samp>(10b2c)</samp>](https://github.com/vitest-dev/vitest/commit/10b2cd201) - Trigger playwright/chromium gc on lower disk availability \[backport to v4]  -  by [@&#8203;hi-ogawa](https://github.com/hi-ogawa), **Hiroshi Ogawa** and **OpenCode** in [#&#8203;10951](https://github.com/vitest-dev/vitest/issues/10951) [<samp>(9851d)</samp>](https://github.com/vitest-dev/vitest/commit/9851dbc41) - **mocker**: - Restrict redirect mocks to the fs allowlist \[backport to v4]  -  by [@&#8203;sheremet-va](https://github.com/sheremet-va) in [#&#8203;10974](https://github.com/vitest-dev/vitest/issues/10974) [<samp>(fe5a1)</samp>](https://github.com/vitest-dev/vitest/commit/fe5a11d3c) #####     [View changes on GitHub](https://github.com/vitest-dev/vitest/compare/v4.1.10...v4.1.11) ### [`v4.1.10`](https://github.com/vitest-dev/vitest/releases/tag/v4.1.10) [Compare Source](https://github.com/vitest-dev/vitest/compare/v4.1.9...v4.1.10) #####    🐞 Bug Fixes - **browser**: Check fs access in builtin commands \[backport to v4]  -  by [@&#8203;hi-ogawa](https://github.com/hi-ogawa), **Hiroshi Ogawa** and **OpenCode (claude-opus-4-8)** in [#&#8203;10680](https://github.com/vitest-dev/vitest/issues/10680) [<samp>(5c18d)</samp>](https://github.com/vitest-dev/vitest/commit/5c18dd267) - **vm**: Fix external module resolve error with deps optimizer query for encoded URI \[backport to v4]  -  by [@&#8203;SveLil](https://github.com/SveLil) and [@&#8203;hi-ogawa](https://github.com/hi-ogawa) in [#&#8203;10661](https://github.com/vitest-dev/vitest/issues/10661) [<samp>(bae52)</samp>](https://github.com/vitest-dev/vitest/commit/bae52b511) #####     [View changes on GitHub](https://github.com/vitest-dev/vitest/compare/v4.1.9...v4.1.10) ### [`v4.1.9`](https://github.com/vitest-dev/vitest/releases/tag/v4.1.9) [Compare Source](https://github.com/vitest-dev/vitest/compare/v4.1.8...v4.1.9) ##### 🐞 Bug Fixes - Fix `importOriginal` with optimizer and query import \[backport to v4] - by **Hiroshi Ogawa**, **David Harris**, **Codex**and **Vladimir** in [#&#8203;10546](https://github.com/vitest-dev/vitest/issues/10546) [<samp>(a5180)</samp>](https://github.com/vitest-dev/vitest/commit/a5180190c) - **browser**: - Wait for orchestrator readiness before resolving browser sessions \[backport to v4] - by **Vladimir** and **Séamus O'Connor** in [#&#8203;10555](https://github.com/vitest-dev/vitest/issues/10555) [<samp>(7fb29)</samp>](https://github.com/vitest-dev/vitest/commit/7fb29651a) - Wait for iframe tester readiness before preparing \[backport to v4] - by **Vladimir** and **Séamus O'Connor** in [#&#8203;10497](https://github.com/vitest-dev/vitest/issues/10497) and [#&#8203;10556](https://github.com/vitest-dev/vitest/issues/10556) [<samp>(fbc62)</samp>](https://github.com/vitest-dev/vitest/commit/fbc626c40) - **mocker**: - Hoist vi.mock() for vite-plus/test imports \[backport to v4] - by **Hiroshi Ogawa**, **LongYinan**, **Claude Opus 4.8** and **Vladimir** in [#&#8203;10548](https://github.com/vitest-dev/vitest/issues/10548) [<samp>(2c955)</samp>](https://github.com/vitest-dev/vitest/commit/2c9559c02) - **pool**: - Prevent test run hang on worker crash \[backport to v4] - by **Ari Perkkiö** and **Jattioui Ismail** in [#&#8203;10543](https://github.com/vitest-dev/vitest/issues/10543) and [#&#8203;10564](https://github.com/vitest-dev/vitest/issues/10564) [<samp>(934b0)</samp>](https://github.com/vitest-dev/vitest/commit/934b0f587) ##### [View changes on GitHub](https://github.com/vitest-dev/vitest/compare/v4.1.8...v4.1.9) ### [`v4.1.8`](https://github.com/vitest-dev/vitest/releases/tag/v4.1.8) [Compare Source](https://github.com/vitest-dev/vitest/compare/v4.1.7...v4.1.8) #####    🐞 Bug Fixes - **browser**: - Disable client `cdp` API when `allowWrite/allowExec: false` \[backport to v4]  -  by [@&#8203;hi-ogawa](https://github.com/hi-ogawa) and **Codex** in [#&#8203;10450](https://github.com/vitest-dev/vitest/issues/10450) [<samp>(e4067)</samp>](https://github.com/vitest-dev/vitest/commit/e4067b3b1) - Remove orphaned Playwright route when same module is mocked via multiple ids \[backport to v4]  -  by [@&#8203;toxik](https://github.com/toxik) and [@&#8203;Zelys-DFKH](https://github.com/Zelys-DFKH) in [#&#8203;10474](https://github.com/vitest-dev/vitest/issues/10474) [<samp>(675b4)</samp>](https://github.com/vitest-dev/vitest/commit/675b4343f) #####     [View changes on GitHub](https://github.com/vitest-dev/vitest/compare/v4.1.7...v4.1.8) </details> --- ### Configuration 📅 **Schedule**: (UTC) - Branch creation - "before 6am on monday" - 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](https://github.com/renovatebot/renovate/discussions) if that's undesired. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0My4yNDkuNSIsInVwZGF0ZWRJblZlciI6IjQzLjI4MC4zIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119-->
fix(deps): update npm (non-major)
Some checks failed
CI / Python lint & type-check (pull_request) Failing after 54s
CI / Alembic migration check (pull_request) Failing after 1m2s
CI / Python tests (pull_request) Failing after 1m5s
CI / Frontend lint, test & build (pull_request) Failing after 53s
CI / Docker build, health smoke & E2E (pull_request) Has been skipped
CI / Dependency audit (pull_request) Failing after 1m36s
2e6f04af48
renovate-bot force-pushed renovate/npm-(non-major) from 2e6f04af48
Some checks failed
CI / Python lint & type-check (pull_request) Failing after 54s
CI / Alembic migration check (pull_request) Failing after 1m2s
CI / Python tests (pull_request) Failing after 1m5s
CI / Frontend lint, test & build (pull_request) Failing after 53s
CI / Docker build, health smoke & E2E (pull_request) Has been skipped
CI / Dependency audit (pull_request) Failing after 1m36s
to d73473276a
Some checks failed
CI / Python lint & type-check (pull_request) Failing after 50s
CI / Alembic migration check (pull_request) Failing after 1m1s
CI / Python tests (pull_request) Failing after 1m3s
CI / Frontend lint, test & build (pull_request) Failing after 57s
CI / Docker build, health smoke & E2E (pull_request) Has been skipped
CI / Dependency audit (pull_request) Failing after 1m18s
2026-07-13 11:19:47 +00:00
Compare
renovate-bot force-pushed renovate/npm-(non-major) from d73473276a
Some checks failed
CI / Python lint & type-check (pull_request) Failing after 50s
CI / Alembic migration check (pull_request) Failing after 1m1s
CI / Python tests (pull_request) Failing after 1m3s
CI / Frontend lint, test & build (pull_request) Failing after 57s
CI / Docker build, health smoke & E2E (pull_request) Has been skipped
CI / Dependency audit (pull_request) Failing after 1m18s
to c0a4f439bd
Some checks failed
CI / Alembic migration check (pull_request) Failing after 1m4s
CI / Python tests (pull_request) Failing after 1m11s
CI / Frontend lint, test & build (pull_request) Failing after 1m13s
CI / Dependency audit (pull_request) Failing after 1m41s
CI / Python lint & type-check (pull_request) Failing after 1m52s
CI / Docker build, health smoke & E2E (pull_request) Has been skipped
2026-07-14 17:21:50 +00:00
Compare
renovate-bot force-pushed renovate/npm-(non-major) from c0a4f439bd
Some checks failed
CI / Alembic migration check (pull_request) Failing after 1m4s
CI / Python tests (pull_request) Failing after 1m11s
CI / Frontend lint, test & build (pull_request) Failing after 1m13s
CI / Dependency audit (pull_request) Failing after 1m41s
CI / Python lint & type-check (pull_request) Failing after 1m52s
CI / Docker build, health smoke & E2E (pull_request) Has been skipped
to ad4aa04c02
Some checks failed
CI / Alembic migration check (pull_request) Failing after 1m0s
CI / Frontend lint, test & build (pull_request) Failing after 1m7s
CI / Dependency audit (pull_request) Failing after 1m45s
CI / Python lint & type-check (pull_request) Failing after 4m41s
CI / Python tests (pull_request) Failing after 4m42s
CI / Docker build, health smoke & E2E (pull_request) Has been skipped
2026-07-14 22:22:12 +00:00
Compare
renovate-bot force-pushed renovate/npm-(non-major) from ad4aa04c02
Some checks failed
CI / Alembic migration check (pull_request) Failing after 1m0s
CI / Frontend lint, test & build (pull_request) Failing after 1m7s
CI / Dependency audit (pull_request) Failing after 1m45s
CI / Python lint & type-check (pull_request) Failing after 4m41s
CI / Python tests (pull_request) Failing after 4m42s
CI / Docker build, health smoke & E2E (pull_request) Has been skipped
to 7955cc1ce2
Some checks failed
CI / Alembic migration check (pull_request) Failing after 1m8s
CI / Frontend lint, test & build (pull_request) Failing after 1m14s
CI / Dependency audit (pull_request) Failing after 1m41s
CI / Python lint & type-check (pull_request) Failing after 3m9s
CI / Python tests (pull_request) Failing after 3m16s
CI / Docker build, health smoke & E2E (pull_request) Has been skipped
2026-07-15 06:22:59 +00:00
Compare
renovate-bot force-pushed renovate/npm-(non-major) from 7955cc1ce2
Some checks failed
CI / Alembic migration check (pull_request) Failing after 1m8s
CI / Frontend lint, test & build (pull_request) Failing after 1m14s
CI / Dependency audit (pull_request) Failing after 1m41s
CI / Python lint & type-check (pull_request) Failing after 3m9s
CI / Python tests (pull_request) Failing after 3m16s
CI / Docker build, health smoke & E2E (pull_request) Has been skipped
to 861bb40172
Some checks failed
CI / Python lint & type-check (pull_request) Successful in 1m21s
CI / Alembic migration check (pull_request) Successful in 1m3s
CI / Frontend lint, test & build (pull_request) Successful in 1m45s
CI / Python tests (pull_request) Successful in 2m15s
CI / Dependency audit (pull_request) Successful in 1m38s
CI / Docker build, health smoke & E2E (pull_request) Failing after 15m6s
2026-07-16 05:23:30 +00:00
Compare
renovate-bot force-pushed renovate/npm-(non-major) from 861bb40172
Some checks failed
CI / Python lint & type-check (pull_request) Successful in 1m21s
CI / Alembic migration check (pull_request) Successful in 1m3s
CI / Frontend lint, test & build (pull_request) Successful in 1m45s
CI / Python tests (pull_request) Successful in 2m15s
CI / Dependency audit (pull_request) Successful in 1m38s
CI / Docker build, health smoke & E2E (pull_request) Failing after 15m6s
to 06152c8e89
Some checks failed
CI / Frontend lint, test & build (pull_request) Successful in 1m49s
CI / Python tests (pull_request) Successful in 2m36s
CI / Dependency audit (pull_request) Successful in 1m46s
CI / Python lint & type-check (pull_request) Successful in 6m3s
CI / Alembic migration check (pull_request) Successful in 6m6s
CI / Docker build, health smoke & E2E (pull_request) Failing after 17m22s
2026-07-16 06:23:20 +00:00
Compare
renovate-bot force-pushed renovate/npm-(non-major) from 06152c8e89
Some checks failed
CI / Frontend lint, test & build (pull_request) Successful in 1m49s
CI / Python tests (pull_request) Successful in 2m36s
CI / Dependency audit (pull_request) Successful in 1m46s
CI / Python lint & type-check (pull_request) Successful in 6m3s
CI / Alembic migration check (pull_request) Successful in 6m6s
CI / Docker build, health smoke & E2E (pull_request) Failing after 17m22s
to 99f7af92c2
Some checks failed
CI / Alembic migration check (pull_request) Successful in 51s
CI / Python lint & type-check (pull_request) Successful in 1m21s
CI / Frontend lint, test & build (pull_request) Successful in 1m28s
CI / Dependency audit (pull_request) Successful in 1m26s
CI / Python tests (pull_request) Successful in 2m24s
CI / Docker build, health smoke & E2E (pull_request) Failing after 3m20s
2026-07-16 07:24:27 +00:00
Compare
renovate-bot force-pushed renovate/npm-(non-major) from 99f7af92c2
Some checks failed
CI / Alembic migration check (pull_request) Successful in 51s
CI / Python lint & type-check (pull_request) Successful in 1m21s
CI / Frontend lint, test & build (pull_request) Successful in 1m28s
CI / Dependency audit (pull_request) Successful in 1m26s
CI / Python tests (pull_request) Successful in 2m24s
CI / Docker build, health smoke & E2E (pull_request) Failing after 3m20s
to 190935bd94
Some checks failed
CI / Python lint & type-check (pull_request) Successful in 1m19s
CI / Frontend lint, test & build (pull_request) Successful in 1m22s
CI / Python tests (pull_request) Successful in 2m22s
CI / Dependency audit (pull_request) Successful in 1m25s
CI / Alembic migration check (pull_request) Successful in 4m5s
CI / Docker build, health smoke & E2E (pull_request) Failing after 3m9s
2026-07-16 08:23:01 +00:00
Compare
renovate-bot force-pushed renovate/npm-(non-major) from 190935bd94
Some checks failed
CI / Python lint & type-check (pull_request) Successful in 1m19s
CI / Frontend lint, test & build (pull_request) Successful in 1m22s
CI / Python tests (pull_request) Successful in 2m22s
CI / Dependency audit (pull_request) Successful in 1m25s
CI / Alembic migration check (pull_request) Successful in 4m5s
CI / Docker build, health smoke & E2E (pull_request) Failing after 3m9s
to 47439feb6a
Some checks failed
CI / Alembic migration check (pull_request) Successful in 1m7s
CI / Python lint & type-check (pull_request) Successful in 1m29s
CI / Python tests (pull_request) Successful in 2m27s
CI / Frontend lint, test & build (pull_request) Successful in 2m46s
CI / Dependency audit (pull_request) Successful in 4m27s
CI / Docker build, health smoke & E2E (pull_request) Failing after 7m52s
2026-07-16 11:23:02 +00:00
Compare
renovate-bot force-pushed renovate/npm-(non-major) from 47439feb6a
Some checks failed
CI / Alembic migration check (pull_request) Successful in 1m7s
CI / Python lint & type-check (pull_request) Successful in 1m29s
CI / Python tests (pull_request) Successful in 2m27s
CI / Frontend lint, test & build (pull_request) Successful in 2m46s
CI / Dependency audit (pull_request) Successful in 4m27s
CI / Docker build, health smoke & E2E (pull_request) Failing after 7m52s
to 95154949d8
Some checks failed
CI / Python lint & type-check (pull_request) Successful in 1m26s
CI / Dependency audit (pull_request) Successful in 1m24s
CI / Python tests (pull_request) Successful in 2m23s
CI / Alembic migration check (pull_request) Successful in 5m25s
CI / Frontend lint, test & build (pull_request) Successful in 5m6s
CI / Docker build, health smoke & E2E (pull_request) Failing after 2m47s
2026-07-16 14:24:25 +00:00
Compare
renovate-bot force-pushed renovate/npm-(non-major) from 95154949d8
Some checks failed
CI / Python lint & type-check (pull_request) Successful in 1m26s
CI / Dependency audit (pull_request) Successful in 1m24s
CI / Python tests (pull_request) Successful in 2m23s
CI / Alembic migration check (pull_request) Successful in 5m25s
CI / Frontend lint, test & build (pull_request) Successful in 5m6s
CI / Docker build, health smoke & E2E (pull_request) Failing after 2m47s
to a5e3872d28
Some checks failed
CI / Dependency audit (pull_request) Successful in 1m45s
CI / Python lint & type-check (pull_request) Successful in 4m43s
CI / Alembic migration check (pull_request) Successful in 4m49s
CI / Frontend lint, test & build (pull_request) Successful in 4m59s
CI / Python tests (pull_request) Successful in 5m11s
CI / Docker build, health smoke & E2E (pull_request) Failing after 3m27s
2026-07-19 12:07:20 +00:00
Compare
renovate-bot force-pushed renovate/npm-(non-major) from a5e3872d28
Some checks failed
CI / Dependency audit (pull_request) Successful in 1m45s
CI / Python lint & type-check (pull_request) Successful in 4m43s
CI / Alembic migration check (pull_request) Successful in 4m49s
CI / Frontend lint, test & build (pull_request) Successful in 4m59s
CI / Python tests (pull_request) Successful in 5m11s
CI / Docker build, health smoke & E2E (pull_request) Failing after 3m27s
to b968c8ada7
Some checks failed
CI / Python lint & type-check (pull_request) Successful in 1m25s
CI / Dependency audit (pull_request) Successful in 1m40s
CI / Alembic migration check (pull_request) Successful in 3m1s
CI / Frontend lint, test & build (pull_request) Successful in 3m6s
CI / Python tests (pull_request) Successful in 3m38s
CI / Docker build, health smoke & E2E (pull_request) Failing after 19m6s
2026-07-20 12:09:28 +00:00
Compare
renovate-bot force-pushed renovate/npm-(non-major) from b968c8ada7
Some checks failed
CI / Python lint & type-check (pull_request) Successful in 1m25s
CI / Dependency audit (pull_request) Successful in 1m40s
CI / Alembic migration check (pull_request) Successful in 3m1s
CI / Frontend lint, test & build (pull_request) Successful in 3m6s
CI / Python tests (pull_request) Successful in 3m38s
CI / Docker build, health smoke & E2E (pull_request) Failing after 19m6s
to ce41324128
Some checks failed
CI / Dependency audit (pull_request) Failing after 2m4s
CI / Frontend lint, test & build (pull_request) Successful in 2m14s
CI / Alembic migration check (pull_request) Successful in 4m0s
CI / Python lint & type-check (pull_request) Successful in 4m0s
CI / Python tests (pull_request) Successful in 4m23s
CI / Docker build, health smoke & E2E (pull_request) Failing after 4m9s
2026-07-21 06:17:08 +00:00
Compare
renovate-bot force-pushed renovate/npm-(non-major) from ce41324128
Some checks failed
CI / Dependency audit (pull_request) Failing after 2m4s
CI / Frontend lint, test & build (pull_request) Successful in 2m14s
CI / Alembic migration check (pull_request) Successful in 4m0s
CI / Python lint & type-check (pull_request) Successful in 4m0s
CI / Python tests (pull_request) Successful in 4m23s
CI / Docker build, health smoke & E2E (pull_request) Failing after 4m9s
to 62898f25cd
Some checks failed
CI / Dependency audit (pull_request) Failing after 1m59s
CI / Frontend lint, test & build (pull_request) Successful in 2m10s
CI / Python lint & type-check (pull_request) Successful in 3m45s
CI / Alembic migration check (pull_request) Successful in 4m13s
CI / Python tests (pull_request) Successful in 4m50s
CI / Docker build, health smoke & E2E (pull_request) Failing after 3m4s
2026-07-21 12:10:48 +00:00
Compare
renovate-bot force-pushed renovate/npm-(non-major) from 62898f25cd
Some checks failed
CI / Dependency audit (pull_request) Failing after 1m59s
CI / Frontend lint, test & build (pull_request) Successful in 2m10s
CI / Python lint & type-check (pull_request) Successful in 3m45s
CI / Alembic migration check (pull_request) Successful in 4m13s
CI / Python tests (pull_request) Successful in 4m50s
CI / Docker build, health smoke & E2E (pull_request) Failing after 3m4s
to 04328c4ded
Some checks failed
CI / Alembic migration check (pull_request) Successful in 1m2s
CI / Python lint & type-check (pull_request) Successful in 1m42s
CI / Python tests (pull_request) Successful in 3m7s
CI / Frontend lint, test & build (pull_request) Successful in 2m1s
CI / Dependency audit (pull_request) Failing after 1m51s
CI / Docker build, health smoke & E2E (pull_request) Failing after 3m17s
2026-07-21 18:19:06 +00:00
Compare
renovate-bot force-pushed renovate/npm-(non-major) from 04328c4ded
Some checks failed
CI / Alembic migration check (pull_request) Successful in 1m2s
CI / Python lint & type-check (pull_request) Successful in 1m42s
CI / Python tests (pull_request) Successful in 3m7s
CI / Frontend lint, test & build (pull_request) Successful in 2m1s
CI / Dependency audit (pull_request) Failing after 1m51s
CI / Docker build, health smoke & E2E (pull_request) Failing after 3m17s
to a7470cb875
Some checks failed
CI / Alembic migration check (pull_request) Successful in 1m21s
CI / Python lint & type-check (pull_request) Successful in 1m50s
CI / Frontend lint, test & build (pull_request) Successful in 2m2s
CI / Python tests (pull_request) Successful in 2m42s
CI / Dependency audit (pull_request) Failing after 3m50s
CI / Docker build, health smoke & E2E (pull_request) Failing after 8m23s
2026-07-22 12:12:43 +00:00
Compare
renovate-bot force-pushed renovate/npm-(non-major) from a7470cb875
Some checks failed
CI / Alembic migration check (pull_request) Successful in 1m21s
CI / Python lint & type-check (pull_request) Successful in 1m50s
CI / Frontend lint, test & build (pull_request) Successful in 2m2s
CI / Python tests (pull_request) Successful in 2m42s
CI / Dependency audit (pull_request) Failing after 3m50s
CI / Docker build, health smoke & E2E (pull_request) Failing after 8m23s
to 1063b22c5a
Some checks failed
CI / Python lint & type-check (pull_request) Successful in 1m45s
CI / Alembic migration check (pull_request) Successful in 1m25s
CI / Python tests (pull_request) Successful in 3m52s
CI / Frontend lint, test & build (pull_request) Successful in 2m52s
CI / Docker build, health smoke & E2E (pull_request) Failing after 3m15s
CI / Dependency audit (pull_request) Failing after 9m41s
2026-07-24 18:14:12 +00:00
Compare
renovate-bot force-pushed renovate/npm-(non-major) from 1063b22c5a
Some checks failed
CI / Python lint & type-check (pull_request) Successful in 1m45s
CI / Alembic migration check (pull_request) Successful in 1m25s
CI / Python tests (pull_request) Successful in 3m52s
CI / Frontend lint, test & build (pull_request) Successful in 2m52s
CI / Docker build, health smoke & E2E (pull_request) Failing after 3m15s
CI / Dependency audit (pull_request) Failing after 9m41s
to f01fd93776
Some checks failed
CI / Python lint & type-check (pull_request) Successful in 1m28s
CI / Alembic migration check (pull_request) Successful in 1m1s
CI / Python tests (pull_request) Successful in 2m52s
CI / Dependency audit (pull_request) Failing after 1m55s
CI / Frontend lint, test & build (pull_request) Successful in 2m5s
CI / Docker build, health smoke & E2E (pull_request) Failing after 3m35s
2026-07-25 00:20:22 +00:00
Compare
renovate-bot force-pushed renovate/npm-(non-major) from f01fd93776
Some checks failed
CI / Python lint & type-check (pull_request) Successful in 1m28s
CI / Alembic migration check (pull_request) Successful in 1m1s
CI / Python tests (pull_request) Successful in 2m52s
CI / Dependency audit (pull_request) Failing after 1m55s
CI / Frontend lint, test & build (pull_request) Successful in 2m5s
CI / Docker build, health smoke & E2E (pull_request) Failing after 3m35s
to df98ed6f21
Some checks failed
CI / Python lint & type-check (pull_request) Successful in 1m35s
CI / Alembic migration check (pull_request) Successful in 51s
CI / Dependency audit (pull_request) Failing after 1m5s
CI / Python tests (pull_request) Successful in 2m41s
CI / Frontend lint, test & build (pull_request) Successful in 1m7s
CI / Docker build, health smoke & E2E (pull_request) Failing after 3m53s
2026-07-28 12:06:51 +00:00
Compare
renovate-bot force-pushed renovate/npm-(non-major) from df98ed6f21
Some checks failed
CI / Python lint & type-check (pull_request) Successful in 1m35s
CI / Alembic migration check (pull_request) Successful in 51s
CI / Dependency audit (pull_request) Failing after 1m5s
CI / Python tests (pull_request) Successful in 2m41s
CI / Frontend lint, test & build (pull_request) Successful in 1m7s
CI / Docker build, health smoke & E2E (pull_request) Failing after 3m53s
to c9ad981566
Some checks failed
CI / Python lint & type-check (pull_request) Successful in 1m7s
CI / Alembic migration check (pull_request) Successful in 36s
CI / Dependency audit (pull_request) Failing after 1m3s
CI / Frontend lint, test & build (pull_request) Successful in 1m57s
CI / Python tests (pull_request) Successful in 2m56s
CI / Docker build, health smoke & E2E (pull_request) Failing after 2m19s
2026-07-29 06:06:20 +00:00
Compare
renovate-bot force-pushed renovate/npm-(non-major) from c9ad981566
Some checks failed
CI / Python lint & type-check (pull_request) Successful in 1m7s
CI / Alembic migration check (pull_request) Successful in 36s
CI / Dependency audit (pull_request) Failing after 1m3s
CI / Frontend lint, test & build (pull_request) Successful in 1m57s
CI / Python tests (pull_request) Successful in 2m56s
CI / Docker build, health smoke & E2E (pull_request) Failing after 2m19s
to dd7b958061
Some checks failed
CI / Python lint & type-check (pull_request) Successful in 2m10s
CI / Alembic migration check (pull_request) Successful in 1m21s
CI / Dependency audit (pull_request) Failing after 1m42s
CI / Frontend lint, test & build (pull_request) Successful in 2m8s
CI / Python tests (pull_request) Successful in 3m21s
CI / Docker build, health smoke & E2E (pull_request) Failing after 7m40s
2026-07-29 18:07:36 +00:00
Compare
renovate-bot force-pushed renovate/npm-(non-major) from dd7b958061
Some checks failed
CI / Python lint & type-check (pull_request) Successful in 2m10s
CI / Alembic migration check (pull_request) Successful in 1m21s
CI / Dependency audit (pull_request) Failing after 1m42s
CI / Frontend lint, test & build (pull_request) Successful in 2m8s
CI / Python tests (pull_request) Successful in 3m21s
CI / Docker build, health smoke & E2E (pull_request) Failing after 7m40s
to 2c6c2a4288
Some checks failed
CI / Frontend lint, test & build (pull_request) Successful in 1m11s
CI / Alembic migration check (pull_request) Successful in 1m33s
CI / Python lint & type-check (pull_request) Successful in 1m55s
CI / Dependency audit (pull_request) Failing after 1m17s
CI / Python tests (pull_request) Successful in 3m22s
CI / Docker build, health smoke & E2E (pull_request) Failing after 6m28s
2026-07-30 18:06:00 +00:00
Compare
renovate-bot force-pushed renovate/npm-(non-major) from 2c6c2a4288
Some checks failed
CI / Frontend lint, test & build (pull_request) Successful in 1m11s
CI / Alembic migration check (pull_request) Successful in 1m33s
CI / Python lint & type-check (pull_request) Successful in 1m55s
CI / Dependency audit (pull_request) Failing after 1m17s
CI / Python tests (pull_request) Successful in 3m22s
CI / Docker build, health smoke & E2E (pull_request) Failing after 6m28s
to 1bb0edada2
Some checks failed
CI / Alembic migration check (pull_request) Successful in 40s
CI / Python lint & type-check (pull_request) Successful in 1m46s
CI / Frontend lint, test & build (pull_request) Successful in 1m7s
CI / Python tests (pull_request) Successful in 1m49s
CI / Dependency audit (pull_request) Failing after 1m43s
CI / Docker build, health smoke & E2E (pull_request) Failing after 5m44s
2026-08-01 06:12:04 +00:00
Compare
renovate-bot force-pushed renovate/npm-(non-major) from 1bb0edada2
Some checks failed
CI / Alembic migration check (pull_request) Successful in 40s
CI / Python lint & type-check (pull_request) Successful in 1m46s
CI / Frontend lint, test & build (pull_request) Successful in 1m7s
CI / Python tests (pull_request) Successful in 1m49s
CI / Dependency audit (pull_request) Failing after 1m43s
CI / Docker build, health smoke & E2E (pull_request) Failing after 5m44s
to d6f6839c74
Some checks failed
CI / Python lint & type-check (pull_request) Successful in 1m14s
CI / Alembic migration check (pull_request) Successful in 1m39s
CI / Frontend lint, test & build (pull_request) Successful in 2m22s
CI / Dependency audit (pull_request) Failing after 1m8s
CI / Python tests (pull_request) Successful in 3m11s
CI / Docker build, health smoke & E2E (pull_request) Failing after 2m41s
2026-08-02 06:06:52 +00:00
Compare
renovate-bot force-pushed renovate/npm-(non-major) from d6f6839c74
Some checks failed
CI / Python lint & type-check (pull_request) Successful in 1m14s
CI / Alembic migration check (pull_request) Successful in 1m39s
CI / Frontend lint, test & build (pull_request) Successful in 2m22s
CI / Dependency audit (pull_request) Failing after 1m8s
CI / Python tests (pull_request) Successful in 3m11s
CI / Docker build, health smoke & E2E (pull_request) Failing after 2m41s
to 9c623e3e41
Some checks failed
CI / Python lint & type-check (pull_request) Successful in 1m6s
CI / Alembic migration check (pull_request) Successful in 51s
CI / Frontend lint, test & build (pull_request) Successful in 1m22s
CI / Dependency audit (pull_request) Failing after 1m8s
CI / Python tests (pull_request) Successful in 3m34s
CI / Docker build, health smoke & E2E (pull_request) Failing after 7m6s
2026-08-04 00:08:43 +00:00
Compare
renovate-bot force-pushed renovate/npm-(non-major) from 9c623e3e41
Some checks failed
CI / Python lint & type-check (pull_request) Successful in 1m6s
CI / Alembic migration check (pull_request) Successful in 51s
CI / Frontend lint, test & build (pull_request) Successful in 1m22s
CI / Dependency audit (pull_request) Failing after 1m8s
CI / Python tests (pull_request) Successful in 3m34s
CI / Docker build, health smoke & E2E (pull_request) Failing after 7m6s
to 743d4343ba
Some checks failed
CI / Python lint & type-check (pull_request) Successful in 1m9s
CI / Alembic migration check (pull_request) Successful in 59s
CI / Frontend lint, test & build (pull_request) Successful in 1m12s
CI / Dependency audit (pull_request) Failing after 1m28s
CI / Python tests (pull_request) Successful in 2m36s
CI / Docker build, health smoke & E2E (pull_request) Failing after 5m47s
2026-08-04 06:12:55 +00:00
Compare
renovate-bot force-pushed renovate/npm-(non-major) from 743d4343ba
Some checks failed
CI / Python lint & type-check (pull_request) Successful in 1m9s
CI / Alembic migration check (pull_request) Successful in 59s
CI / Frontend lint, test & build (pull_request) Successful in 1m12s
CI / Dependency audit (pull_request) Failing after 1m28s
CI / Python tests (pull_request) Successful in 2m36s
CI / Docker build, health smoke & E2E (pull_request) Failing after 5m47s
to b2deb1f66d
Some checks failed
CI / Alembic migration check (pull_request) Successful in 41s
CI / Python tests (pull_request) Successful in 1m43s
CI / Python lint & type-check (pull_request) Successful in 2m12s
CI / Dependency audit (pull_request) Failing after 2m24s
CI / Frontend lint, test & build (pull_request) Successful in 2m31s
CI / Docker build, health smoke & E2E (pull_request) Failing after 6m2s
2026-08-06 12:10:59 +00:00
Compare
renovate-bot force-pushed renovate/npm-(non-major) from b2deb1f66d
Some checks failed
CI / Alembic migration check (pull_request) Successful in 41s
CI / Python tests (pull_request) Successful in 1m43s
CI / Python lint & type-check (pull_request) Successful in 2m12s
CI / Dependency audit (pull_request) Failing after 2m24s
CI / Frontend lint, test & build (pull_request) Successful in 2m31s
CI / Docker build, health smoke & E2E (pull_request) Failing after 6m2s
to 5c48aadda7
Some checks failed
CI / Python lint & type-check (pull_request) Successful in 58s
CI / Python tests (pull_request) Successful in 1m43s
CI / Alembic migration check (pull_request) Successful in 1m33s
CI / Frontend lint, test & build (pull_request) Successful in 2m8s
CI / Dependency audit (pull_request) Failing after 2m16s
CI / Docker build, health smoke & E2E (pull_request) Failing after 5m46s
2026-08-08 12:11:27 +00:00
Compare
renovate-bot force-pushed renovate/npm-(non-major) from 5c48aadda7
Some checks failed
CI / Python lint & type-check (pull_request) Successful in 58s
CI / Python tests (pull_request) Successful in 1m43s
CI / Alembic migration check (pull_request) Successful in 1m33s
CI / Frontend lint, test & build (pull_request) Successful in 2m8s
CI / Dependency audit (pull_request) Failing after 2m16s
CI / Docker build, health smoke & E2E (pull_request) Failing after 5m46s
to 5bc3859dca
Some checks failed
CI / Python lint & type-check (pull_request) Successful in 2m17s
CI / Alembic migration check (pull_request) Successful in 1m12s
CI / Python tests (pull_request) Successful in 3m50s
CI / Frontend lint, test & build (pull_request) Successful in 2m15s
CI / Dependency audit (pull_request) Failing after 2m0s
CI / Docker build, health smoke & E2E (pull_request) Failing after 4m33s
2026-08-08 18:06:52 +00:00
Compare
renovate-bot force-pushed renovate/npm-(non-major) from 5bc3859dca
Some checks failed
CI / Python lint & type-check (pull_request) Successful in 2m17s
CI / Alembic migration check (pull_request) Successful in 1m12s
CI / Python tests (pull_request) Successful in 3m50s
CI / Frontend lint, test & build (pull_request) Successful in 2m15s
CI / Dependency audit (pull_request) Failing after 2m0s
CI / Docker build, health smoke & E2E (pull_request) Failing after 4m33s
to d5e004ea00
Some checks failed
CI / Alembic migration check (pull_request) Successful in 44s
CI / Python lint & type-check (pull_request) Successful in 1m44s
CI / Python tests (pull_request) Successful in 1m56s
CI / Frontend lint, test & build (pull_request) Successful in 1m11s
CI / Dependency audit (pull_request) Failing after 2m0s
CI / Docker build, health smoke & E2E (pull_request) Failing after 7m55s
2026-08-10 00:15:55 +00:00
Compare
renovate-bot force-pushed renovate/npm-(non-major) from d5e004ea00
Some checks failed
CI / Alembic migration check (pull_request) Successful in 44s
CI / Python lint & type-check (pull_request) Successful in 1m44s
CI / Python tests (pull_request) Successful in 1m56s
CI / Frontend lint, test & build (pull_request) Successful in 1m11s
CI / Dependency audit (pull_request) Failing after 2m0s
CI / Docker build, health smoke & E2E (pull_request) Failing after 7m55s
to 362638957c
Some checks failed
CI / Alembic migration check (pull_request) Successful in 52s
CI / Python lint & type-check (pull_request) Successful in 1m1s
CI / Dependency audit (pull_request) Failing after 1m30s
CI / Frontend lint, test & build (pull_request) Successful in 1m40s
CI / Python tests (pull_request) Successful in 2m37s
CI / Docker build, health smoke & E2E (pull_request) Failing after 5m2s
2026-08-12 00:05:59 +00:00
Compare
renovate-bot force-pushed renovate/npm-(non-major) from 362638957c
Some checks failed
CI / Alembic migration check (pull_request) Successful in 52s
CI / Python lint & type-check (pull_request) Successful in 1m1s
CI / Dependency audit (pull_request) Failing after 1m30s
CI / Frontend lint, test & build (pull_request) Successful in 1m40s
CI / Python tests (pull_request) Successful in 2m37s
CI / Docker build, health smoke & E2E (pull_request) Failing after 5m2s
to c57649ec4c
Some checks failed
CI / Python lint & type-check (pull_request) Successful in 1m5s
CI / Alembic migration check (pull_request) Successful in 1m8s
CI / Frontend lint, test & build (pull_request) Successful in 1m45s
CI / Dependency audit (pull_request) Failing after 1m2s
CI / Python tests (pull_request) Successful in 2m37s
CI / Docker build, health smoke & E2E (pull_request) Failing after 3m46s
2026-08-14 06:10:41 +00:00
Compare
renovate-bot force-pushed renovate/npm-(non-major) from c57649ec4c
Some checks failed
CI / Python lint & type-check (pull_request) Successful in 1m5s
CI / Alembic migration check (pull_request) Successful in 1m8s
CI / Frontend lint, test & build (pull_request) Successful in 1m45s
CI / Dependency audit (pull_request) Failing after 1m2s
CI / Python tests (pull_request) Successful in 2m37s
CI / Docker build, health smoke & E2E (pull_request) Failing after 3m46s
to 56a6ac825f
Some checks failed
CI / Python lint & type-check (pull_request) Successful in 1m2s
CI / Python tests (pull_request) Successful in 1m46s
CI / Alembic migration check (pull_request) Successful in 1m59s
CI / Dependency audit (pull_request) Failing after 2m35s
CI / Frontend lint, test & build (pull_request) Successful in 2m44s
CI / Docker build, health smoke & E2E (pull_request) Failing after 2m4s
2026-08-16 06:08:01 +00:00
Compare
renovate-bot force-pushed renovate/npm-(non-major) from 56a6ac825f
Some checks failed
CI / Python lint & type-check (pull_request) Successful in 1m2s
CI / Python tests (pull_request) Successful in 1m46s
CI / Alembic migration check (pull_request) Successful in 1m59s
CI / Dependency audit (pull_request) Failing after 2m35s
CI / Frontend lint, test & build (pull_request) Successful in 2m44s
CI / Docker build, health smoke & E2E (pull_request) Failing after 2m4s
to c821cafb6d
Some checks failed
CI / Python lint & type-check (pull_request) Successful in 1m49s
CI / Python tests (pull_request) Successful in 2m23s
CI / Alembic migration check (pull_request) Successful in 35s
CI / Dependency audit (pull_request) Failing after 2m20s
CI / Frontend lint, test & build (pull_request) Successful in 2m26s
CI / Docker build, health smoke & E2E (pull_request) Failing after 4m37s
2026-08-18 06:08:07 +00:00
Compare
renovate-bot force-pushed renovate/npm-(non-major) from c821cafb6d
Some checks failed
CI / Python lint & type-check (pull_request) Successful in 1m49s
CI / Python tests (pull_request) Successful in 2m23s
CI / Alembic migration check (pull_request) Successful in 35s
CI / Dependency audit (pull_request) Failing after 2m20s
CI / Frontend lint, test & build (pull_request) Successful in 2m26s
CI / Docker build, health smoke & E2E (pull_request) Failing after 4m37s
to 8a9f40f5f0
Some checks failed
CI / Alembic migration check (pull_request) Successful in 1m1s
CI / Python lint & type-check (pull_request) Successful in 1m27s
CI / Frontend lint, test & build (pull_request) Successful in 1m41s
CI / Dependency audit (pull_request) Failing after 1m2s
CI / Python tests (pull_request) Successful in 2m30s
CI / Docker build, health smoke & E2E (pull_request) Failing after 3m41s
2026-08-18 18:05:43 +00:00
Compare
renovate-bot force-pushed renovate/npm-(non-major) from 8a9f40f5f0
Some checks failed
CI / Alembic migration check (pull_request) Successful in 1m1s
CI / Python lint & type-check (pull_request) Successful in 1m27s
CI / Frontend lint, test & build (pull_request) Successful in 1m41s
CI / Dependency audit (pull_request) Failing after 1m2s
CI / Python tests (pull_request) Successful in 2m30s
CI / Docker build, health smoke & E2E (pull_request) Failing after 3m41s
to f48d6c6ca1
Some checks failed
CI / Python lint & type-check (pull_request) Successful in 54s
CI / Alembic migration check (pull_request) Successful in 43s
CI / Dependency audit (pull_request) Failing after 1m0s
CI / Frontend lint, test & build (pull_request) Successful in 1m24s
CI / Python tests (pull_request) Successful in 1m38s
CI / Docker build, health smoke & E2E (pull_request) Failing after 2m7s
2026-08-19 06:08:36 +00:00
Compare
renovate-bot force-pushed renovate/npm-(non-major) from f48d6c6ca1
Some checks failed
CI / Python lint & type-check (pull_request) Successful in 54s
CI / Alembic migration check (pull_request) Successful in 43s
CI / Dependency audit (pull_request) Failing after 1m0s
CI / Frontend lint, test & build (pull_request) Successful in 1m24s
CI / Python tests (pull_request) Successful in 1m38s
CI / Docker build, health smoke & E2E (pull_request) Failing after 2m7s
to df1a7c5fcb
Some checks failed
CI / Python lint & type-check (pull_request) Successful in 1m4s
CI / Alembic migration check (pull_request) Successful in 37s
CI / Python tests (pull_request) Successful in 1m43s
CI / Frontend lint, test & build (pull_request) Successful in 1m11s
CI / Dependency audit (pull_request) Failing after 1m6s
CI / Docker build, health smoke & E2E (pull_request) Failing after 7m13s
2026-08-22 06:29:46 +00:00
Compare
renovate-bot force-pushed renovate/npm-(non-major) from df1a7c5fcb
Some checks failed
CI / Python lint & type-check (pull_request) Successful in 1m4s
CI / Alembic migration check (pull_request) Successful in 37s
CI / Python tests (pull_request) Successful in 1m43s
CI / Frontend lint, test & build (pull_request) Successful in 1m11s
CI / Dependency audit (pull_request) Failing after 1m6s
CI / Docker build, health smoke & E2E (pull_request) Failing after 7m13s
to d321c23764
Some checks failed
CI / Alembic migration check (pull_request) Successful in 48s
CI / Python lint & type-check (pull_request) Successful in 55s
CI / Dependency audit (pull_request) Failing after 1m28s
CI / Python tests (pull_request) Successful in 1m38s
CI / Frontend lint, test & build (pull_request) Successful in 1m39s
CI / Docker build, health smoke & E2E (pull_request) Failing after 4m12s
2026-08-23 00:07:33 +00:00
Compare
renovate-bot force-pushed renovate/npm-(non-major) from d321c23764
Some checks failed
CI / Alembic migration check (pull_request) Successful in 48s
CI / Python lint & type-check (pull_request) Successful in 55s
CI / Dependency audit (pull_request) Failing after 1m28s
CI / Python tests (pull_request) Successful in 1m38s
CI / Frontend lint, test & build (pull_request) Successful in 1m39s
CI / Docker build, health smoke & E2E (pull_request) Failing after 4m12s
to 930927853c
Some checks failed
CI / Alembic migration check (pull_request) Successful in 50s
CI / Python lint & type-check (pull_request) Successful in 58s
CI / Dependency audit (pull_request) Failing after 1m28s
CI / Frontend lint, test & build (pull_request) Successful in 1m39s
CI / Python tests (pull_request) Successful in 1m40s
CI / Docker build, health smoke & E2E (pull_request) Failing after 2m23s
2026-08-23 12:07:30 +00:00
Compare
renovate-bot force-pushed renovate/npm-(non-major) from 930927853c
Some checks failed
CI / Alembic migration check (pull_request) Successful in 50s
CI / Python lint & type-check (pull_request) Successful in 58s
CI / Dependency audit (pull_request) Failing after 1m28s
CI / Frontend lint, test & build (pull_request) Successful in 1m39s
CI / Python tests (pull_request) Successful in 1m40s
CI / Docker build, health smoke & E2E (pull_request) Failing after 2m23s
to 270fc3ad61
Some checks failed
CI / Alembic migration check (pull_request) Successful in 48s
CI / Dependency audit (pull_request) Failing after 1m5s
CI / Frontend lint, test & build (pull_request) Successful in 1m10s
CI / Python lint & type-check (pull_request) Successful in 1m18s
CI / Python tests (pull_request) Successful in 2m12s
CI / Docker build, health smoke & E2E (pull_request) Failing after 2m25s
2026-08-23 18:06:50 +00:00
Compare
renovate-bot force-pushed renovate/npm-(non-major) from 270fc3ad61
Some checks failed
CI / Alembic migration check (pull_request) Successful in 48s
CI / Dependency audit (pull_request) Failing after 1m5s
CI / Frontend lint, test & build (pull_request) Successful in 1m10s
CI / Python lint & type-check (pull_request) Successful in 1m18s
CI / Python tests (pull_request) Successful in 2m12s
CI / Docker build, health smoke & E2E (pull_request) Failing after 2m25s
to b71e2dc84d
Some checks failed
CI / Alembic migration check (pull_request) Successful in 2m37s
CI / Python lint & type-check (pull_request) Successful in 3m0s
CI / Frontend lint, test & build (pull_request) Successful in 3m15s
CI / Dependency audit (pull_request) Failing after 1m20s
CI / Python tests (pull_request) Successful in 4m9s
CI / Docker build, health smoke & E2E (pull_request) Failing after 4m56s
2026-08-25 00:06:56 +00:00
Compare
renovate-bot force-pushed renovate/npm-(non-major) from b71e2dc84d
Some checks failed
CI / Alembic migration check (pull_request) Successful in 2m37s
CI / Python lint & type-check (pull_request) Successful in 3m0s
CI / Frontend lint, test & build (pull_request) Successful in 3m15s
CI / Dependency audit (pull_request) Failing after 1m20s
CI / Python tests (pull_request) Successful in 4m9s
CI / Docker build, health smoke & E2E (pull_request) Failing after 4m56s
to b924f0bccd
Some checks failed
CI / Python lint & type-check (pull_request) Successful in 58s
CI / Alembic migration check (pull_request) Successful in 35s
CI / Frontend lint, test & build (pull_request) Successful in 1m8s
CI / Dependency audit (pull_request) Failing after 1m19s
CI / Python tests (pull_request) Successful in 2m24s
CI / Docker build, health smoke & E2E (pull_request) Failing after 4m7s
2026-08-25 06:09:41 +00:00
Compare
renovate-bot force-pushed renovate/npm-(non-major) from b924f0bccd
Some checks failed
CI / Python lint & type-check (pull_request) Successful in 58s
CI / Alembic migration check (pull_request) Successful in 35s
CI / Frontend lint, test & build (pull_request) Successful in 1m8s
CI / Dependency audit (pull_request) Failing after 1m19s
CI / Python tests (pull_request) Successful in 2m24s
CI / Docker build, health smoke & E2E (pull_request) Failing after 4m7s
to 442569d089
Some checks failed
CI / Alembic migration check (pull_request) Successful in 43s
CI / Python lint & type-check (pull_request) Successful in 1m12s
CI / Dependency audit (pull_request) Failing after 1m5s
CI / Frontend lint, test & build (pull_request) Successful in 1m9s
CI / Python tests (pull_request) Successful in 2m13s
CI / Docker build, health smoke & E2E (pull_request) Failing after 5m1s
2026-08-26 00:07:33 +00:00
Compare
renovate-bot force-pushed renovate/npm-(non-major) from 442569d089
Some checks failed
CI / Alembic migration check (pull_request) Successful in 43s
CI / Python lint & type-check (pull_request) Successful in 1m12s
CI / Dependency audit (pull_request) Failing after 1m5s
CI / Frontend lint, test & build (pull_request) Successful in 1m9s
CI / Python tests (pull_request) Successful in 2m13s
CI / Docker build, health smoke & E2E (pull_request) Failing after 5m1s
to 12d1b4e964
Some checks failed
CI / Python lint & type-check (pull_request) Successful in 54s
CI / Alembic migration check (pull_request) Successful in 48s
CI / Frontend lint, test & build (pull_request) Successful in 1m7s
CI / Dependency audit (pull_request) Failing after 1m28s
CI / Python tests (pull_request) Successful in 2m34s
CI / Docker build, health smoke & E2E (pull_request) Failing after 3m40s
2026-08-26 12:07:12 +00:00
Compare
renovate-bot force-pushed renovate/npm-(non-major) from 12d1b4e964
Some checks failed
CI / Python lint & type-check (pull_request) Successful in 54s
CI / Alembic migration check (pull_request) Successful in 48s
CI / Frontend lint, test & build (pull_request) Successful in 1m7s
CI / Dependency audit (pull_request) Failing after 1m28s
CI / Python tests (pull_request) Successful in 2m34s
CI / Docker build, health smoke & E2E (pull_request) Failing after 3m40s
to ff2e1b67d2
Some checks failed
CI / Alembic migration check (pull_request) Successful in 59s
CI / Python lint & type-check (pull_request) Successful in 1m34s
CI / Frontend lint, test & build (pull_request) Successful in 1m11s
CI / Dependency audit (pull_request) Failing after 1m19s
CI / Python tests (pull_request) Successful in 2m39s
CI / Docker build, health smoke & E2E (pull_request) Failing after 3m6s
2026-08-27 00:07:05 +00:00
Compare
renovate-bot force-pushed renovate/npm-(non-major) from ff2e1b67d2
Some checks failed
CI / Alembic migration check (pull_request) Successful in 59s
CI / Python lint & type-check (pull_request) Successful in 1m34s
CI / Frontend lint, test & build (pull_request) Successful in 1m11s
CI / Dependency audit (pull_request) Failing after 1m19s
CI / Python tests (pull_request) Successful in 2m39s
CI / Docker build, health smoke & E2E (pull_request) Failing after 3m6s
to 57ff7aad28
Some checks failed
CI / Alembic migration check (pull_request) Successful in 1m5s
CI / Dependency audit (pull_request) Failing after 1m23s
CI / Python lint & type-check (pull_request) Successful in 1m32s
CI / Frontend lint, test & build (pull_request) Successful in 1m50s
CI / Python tests (pull_request) Successful in 2m47s
CI / Docker build, health smoke & E2E (pull_request) Failing after 2m25s
2026-08-27 12:06:05 +00:00
Compare
renovate-bot force-pushed renovate/npm-(non-major) from 57ff7aad28
Some checks failed
CI / Alembic migration check (pull_request) Successful in 1m5s
CI / Dependency audit (pull_request) Failing after 1m23s
CI / Python lint & type-check (pull_request) Successful in 1m32s
CI / Frontend lint, test & build (pull_request) Successful in 1m50s
CI / Python tests (pull_request) Successful in 2m47s
CI / Docker build, health smoke & E2E (pull_request) Failing after 2m25s
to d40c54f91e
Some checks failed
CI / Python lint & type-check (pull_request) Successful in 1m34s
CI / Alembic migration check (pull_request) Successful in 33s
CI / Python tests (pull_request) Successful in 1m52s
CI / Frontend lint, test & build (pull_request) Successful in 1m56s
CI / Dependency audit (pull_request) Failing after 1m38s
CI / Docker build, health smoke & E2E (pull_request) Failing after 3m23s
2026-08-27 18:06:32 +00:00
Compare
renovate-bot force-pushed renovate/npm-(non-major) from d40c54f91e
Some checks failed
CI / Python lint & type-check (pull_request) Successful in 1m34s
CI / Alembic migration check (pull_request) Successful in 33s
CI / Python tests (pull_request) Successful in 1m52s
CI / Frontend lint, test & build (pull_request) Successful in 1m56s
CI / Dependency audit (pull_request) Failing after 1m38s
CI / Docker build, health smoke & E2E (pull_request) Failing after 3m23s
to 1f06edb463
Some checks failed
CI / Alembic migration check (pull_request) Successful in 36s
CI / Dependency audit (pull_request) Failing after 1m2s
CI / Frontend lint, test & build (pull_request) Successful in 1m7s
CI / Python lint & type-check (pull_request) Successful in 1m40s
CI / Python tests (pull_request) Successful in 2m42s
CI / Docker build, health smoke & E2E (pull_request) Failing after 5m28s
2026-08-29 18:12:05 +00:00
Compare
renovate-bot force-pushed renovate/npm-(non-major) from 1f06edb463
Some checks failed
CI / Alembic migration check (pull_request) Successful in 36s
CI / Dependency audit (pull_request) Failing after 1m2s
CI / Frontend lint, test & build (pull_request) Successful in 1m7s
CI / Python lint & type-check (pull_request) Successful in 1m40s
CI / Python tests (pull_request) Successful in 2m42s
CI / Docker build, health smoke & E2E (pull_request) Failing after 5m28s
to 871cd3a9f1
Some checks failed
renovate/stability-days Updates have met minimum release age requirement
CI / Python tests (pull_request) Failing after 25s
CI / Python lint & type-check (pull_request) Successful in 1m6s
CI / Alembic migration check (pull_request) Successful in 33s
CI / Frontend lint, test & build (pull_request) Successful in 2m31s
CI / Docker build, health smoke & E2E (pull_request) Has been skipped
2026-08-31 06:11:05 +00:00
Compare
rbrooks force-pushed renovate/npm-(non-major) from 871cd3a9f1
Some checks failed
renovate/stability-days Updates have met minimum release age requirement
CI / Python tests (pull_request) Failing after 25s
CI / Python lint & type-check (pull_request) Successful in 1m6s
CI / Alembic migration check (pull_request) Successful in 33s
CI / Frontend lint, test & build (pull_request) Successful in 2m31s
CI / Docker build, health smoke & E2E (pull_request) Has been skipped
to 9ab8fe533a
All checks were successful
CI / Alembic migration check (pull_request) Successful in 1m7s
CI / Python lint & type-check (pull_request) Successful in 1m35s
CI / Frontend lint, test & build (pull_request) Successful in 1m46s
CI / Python tests (pull_request) Successful in 2m51s
CI / Docker build, health smoke & E2E (pull_request) Successful in 7m5s
2026-08-31 17:22:52 +00:00
Compare
claude-bot deleted branch renovate/npm-(non-major) 2026-08-31 17:36:22 +00:00
Sign in to join this conversation.
No description provided.