Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Mar 24, 2025

This PR contains the following updates:

Package Change Age Confidence
@chakra-ui/cli 3.13.0 -> 3.25.0 age confidence
@chakra-ui/react (source) 3.13.0 -> 3.25.0 age confidence
@eslint/js (source) 9.23.0 -> 9.34.0 age confidence
@supabase/supabase-js 2.49.1 -> 2.56.0 age confidence
@testing-library/jest-dom 6.6.3 -> 6.8.0 age confidence
@testing-library/react 16.2.0 -> 16.3.0 age confidence
@types/react (source) 19.0.12 -> 19.1.11 age confidence
@types/react-dom (source) 19.0.4 -> 19.1.7 age confidence
@vitejs/plugin-react-swc (source) 3.8.1 -> 3.11.0 age confidence
@vitest/coverage-v8 (source) 3.0.9 -> 3.2.4 age confidence
eslint (source) 9.23.0 -> 9.34.0 age confidence
framer-motion 12.5.0 -> 12.23.12 age confidence
globals 16.0.0 -> 16.3.0 age confidence
jsdom 26.0.0 -> 26.1.0 age confidence
prettier (source) 3.5.3 -> 3.6.2 age confidence
react-i18next 15.4.1 -> 15.7.2 age confidence
react-router-dom (source) 7.4.0 -> 7.8.2 age confidence
tsx (source) 4.19.3 -> 4.20.5 age confidence
typescript (source) ~5.8.0 -> ~5.9.0 age confidence
typescript-eslint (source) 8.27.0 -> 8.40.0 age confidence
vite (source) 6.2.2 -> 6.3.5 age confidence
vitest (source) 3.0.9 -> 3.2.4 age confidence

Release Notes

chakra-ui/chakra-ui (@​chakra-ui/cli)

v3.25.0

Compare Source

v3.24.2

Compare Source

v3.24.1

Compare Source

v3.24.0

Compare Source

v3.23.0

Compare Source

v3.22.0

Compare Source

v3.21.1

Compare Source

Patch Changes
  • 517ba37
    Thanks @​segunadebayo! - Fix issue where
    typegen command fails silently with misleading console output when prettier
    exits with a formatting error

v3.21.0

Compare Source

v3.20.0

Compare Source

v3.19.2

Compare Source

Patch Changes

v3.19.1

Compare Source

v3.19.0

Compare Source

v3.18.0

Compare Source

v3.17.0

Compare Source

v3.16.1

Compare Source

v3.16.0

Compare Source

v3.15.1

Compare Source

Patch Changes

v3.15.0

Compare Source

v3.14.2

Compare Source

v3.14.1

Compare Source

v3.14.0

Compare Source

chakra-ui/chakra-ui (@​chakra-ui/react)

v3.25.0

Compare Source

Minor Changes
  • #​10254
    3fb9d7c
    Thanks @​segunadebayo! - Add new scroll area
    component

    <ScrollArea.Root>
      <ScrollArea.Viewport>
        <ScrollArea.Content>{/* Scrolling content */}</ScrollArea.Content>
      </ScrollArea.Viewport>
      <ScrollArea.Scrollbar>
        <ScrollArea.Thumb />
      </ScrollArea.Scrollbar>
      <ScrollArea.Corner />
    </ScrollArea.Root>
Patch Changes
  • d3a1064
    Thanks @​segunadebayo! - Fix nested token
    override issue during theme merging

    const defaultConfig = {
      theme: {
        tokens: {
          colors: {
            black: { value: "#&#8203;000000" },
          },
        },
      },
    }
    
    const userConfig = {
      theme: {
        tokens: {
          colors: {
            black: {
              100: { value: "#EE0F0F" },
              200: { value: "#CC0C0C" },
            },
          },
        },
      },
    }
    
    // Before: This would return undefined
    const system = createSystem(defaultConfig, userConfig)
    system.token("colors.black.100") // undefined
    
    // After: This will return merged correctly, preserving the default value
    system.token("colors.black.100") // "#EE0F0F"
    system.token("colors.black.200") // "#CC0C0C"
    system.token("colors.black") // "#&#8203;000000"
  • #​10244
    9501179
    Thanks @​isBatak! - - System: Implement
    preset for table border-spacing property and improve documentation

    • Menu
      • Fix issue where onCheckedChange could be called twice on checkbox or
        radio item
      • Add data-state attribute for context menu trigger
      • Fix context menu positioning bug where reopening at the same coordinates
        fails to reposition
    • Radio Group: Fixed issue where arrow key navigation doesn't apply
      data-focus-visible on the newly focused item.
    • Highlight: Add exactMatch prop that enables whole-word matching using
      regex word boundaries.

v3.24.2

Compare Source

Patch Changes
  • 333b063
    Thanks @​segunadebayo! - Fix issue where
    using asChild with invalid child elements or React.lazy components would
    throw an error.

    This issue more commonly occurs when composing with Next.js Link
    component.

    import { Breadcrumb } from "@&#8203;chakra-ui/react"
    import Link from "next/link"
    
    export default function Page() {
      return (
        <Breadcrumb.Root>
          {/* 🧨 Throws an error */}
          <Breadcrumb.Link asChild>
            <Link href="#">aaaa</Link>
          </Breadcrumb.Link>
        </Breadcrumb.Root>
      )
    }

v3.24.1

Compare Source

Patch Changes

v3.24.0

Compare Source

Minor Changes
  • #​10164
    79971c0
    Thanks @​segunadebayo! - Add new codeblock
    component with support for highlight.js and shiki.

    <CodeBlock.AdapterProvider value={shikiAdapter}>
      <CodeBlock.Root code="console.log('Hello, world!')" language="tsx">
        <CodeBlock.Content>
          <CodeBlock.Code>
            <CodeBlock.CodeText />
          </CodeBlock.Code>
        </CodeBlock.Content>
      </CodeBlock.Root>
    </CodeBlock.AdapterProvider>
Patch Changes

v3.23.0

Compare Source

Minor Changes
  • 86ca96a
    Thanks @​segunadebayo! - - System: Add
    unstyled prop support to compound component children to opt-out of recipe
    styles per component.

    <Accordion.Root defaultValue={["a"]}>
      <Accordion.Item value="a">
        {/* Opt-out of recipe styles */}
        <Accordion.ItemTrigger unstyled bg="red.500" />
        <Accordion.ItemContent>
          <Accordion.ItemBody />
        </Accordion.ItemContent>
      </Accordion.Item>
    </Accordion.Root>
    • Group: Add support changing group gap globally via --group-gap CSS
      variable
Patch Changes
  • dd3af62
    Thanks @​segunadebayo! - - Tree View

    • Fixed issue where tree view doesn't scroll into view when content overflows
    • Fix issue where the filter method completely deletes the children key from
      the node when there are no matching children
    • File Upload
      • Add support for programmatically controlling the accepted files via
        acceptedFiles and defaultAcceptedFiles
      • Export FileError, FileMimeType, and FileRejection types and fix
        validation issues
  • dc02076
    Thanks @​segunadebayo! - Fix HTML semantic
    structure for Breadcrumb.Ellipsis component by changing the underlying
    element from <span> to <li>.

    // Before: <span> inside <ol> (invalid HTML)
    <Breadcrumb.List>
      <Breadcrumb.Ellipsis /> {/* rendered as <span> */}
    </Breadcrumb.List>
    
    // After: <li> inside <ol> (valid HTML)
    <Breadcrumb.List>
      <Breadcrumb.Ellipsis /> {/* now renders as <li> */}
    </Breadcrumb.List>
  • 4da48e3
    Thanks @​segunadebayo! - - Tabs: Export
    missing types

    • Hooks: Export entrypoint for better tree-shaking
      @chakra-ui/react/hooks
    • Theme: Expose smaller bits of the theme in the entrypoint for better
      tree-shaking @chakra-ui/react/theme. We now expose recipes,
      slotRecipes, breakpoints, keyframes, textStyles, layerStyles,
      animationStyles, globalCss, cssVarsPrefix, cssVarsRoot,
      semanticTokens, tokens as dedicated modules.
    • Dialog: Use dvh and dvw units instead of vh and vw to
      dynamically adjust to viewport size changes.
    • Native Select: Ensure height is consistent with input and select across
      sizes.

v3.22.0

Compare Source

Minor Changes
Patch Changes
  • #​10126
    ca40993
    Thanks @​isBatak! - - Clipboard: Fix issue
    where clipboardAnatomy was not exported from @chakra-ui/react/anatomy
    • Combobox
      • Expose reason to onOpenChange and onInputValueChange callbacks
      • Expose api.clearHighlightedValue function to clear highlighted value
    • Toast: Fix issue where toast title or description could not accept
      React element
    • Progress: Improve valueAsString formatting
    • Select
      • Select highlighted item only if it exists in the collection
      • Expose api.clearHighlightedValue function to clear highlighted value
    • ClientOnly: Support children as a function

v3.21.1

Compare Source

Patch Changes
  • 8ddeb0b
    Thanks @​segunadebayo! - - Popover:
    Fixed issue where onOpenChange could be called twice when controlled

    • Combobox
      • Fixed issue where onInputValueChange could be called twice when
        selecting an item
      • Fixed issue where combobox with allowCustomValue: true used within in a
        form requires two enter keypress to submit
    • Progress
      • Fix issue where setting orientation to vertical don't work
      • Fix issue where setting defaultValue to null doesn't show
        indeterminate state
    • Toast: Fix issue where app crashes when toaster.promise is called
      without loading option. The loading option is now required. A warning will
      be logged if it is not provided
    • Combobox, Select, Listbox: Fix issue where rehydrating defaultValue or
      value after fetching items doesn't update the valueAsString
  • #​10119
    6cf8cc6
    Thanks @​isBatak! - - improve Drawer recipe to
    better support conditional variants.

    • add Drawer conditional variants example to the docs and storybook.
  • #​10101
    2b4fa6d
    Thanks @​isBatak! - - Select: Export missing
    SelectRootComponent type export

  • d7914ad
    Thanks @​segunadebayo! - Fix inconsistent
    handling of null and undefined for skipping breakpoints using array syntax

v3.21.0

Compare Source

Minor Changes
  • 3df43ba
    Thanks @​segunadebayo! - Add support new
    entrypoint for /theme which allows for incremental loading of component
    recipes to avoid bloating the theme with unused components.

    This is mostly for bundle size optimization.

    For example, if you want just the button recipe to be included in your
    bundle, you can cherry-pick the recipe you need like this:

    import { createSystem, defaultBaseConfig } from "@&#8203;chakra-ui/react"
    import { buttonRecipe } from "@&#8203;chakra-ui/react/theme"
    
    export const system = createSystem(defaultBaseConfig, {
      theme: {
        recipes: {
          button: buttonRecipe,
        },
      },
    })
Patch Changes
  • 010f256
    Thanks @​segunadebayo! - - File Upload:
    Prevented undefined in acceptedFiles when no files accepted
    • Select: Fixed issue where highlighted item could be cleared when
      navigating up/down the list with keyboard
    • Tabs: Fixed issue where tabs with links should not trigger tab change
      upon cmd/middle click
    • Menu: Fixed issue where Menu.ItemText could not be used with
      Menu.Item

v3.20.0

Compare Source

Minor Changes
  • 65020dd
    Thanks @​segunadebayo! - - System: Allow
    undefined for optional properties in CSS and recipe types
    • Color Picker: Fixed issue where value change end event is invoked when
      committing via an input.

    • Toast: Fixed issue where calling toast.remove() without an id shows a
      TypeScript error.

    • Field: Fixed issue where helper text and error text could not be
      detected in shadow DOM environments.

    • Slider

      • Fixed issue where minStepsBetweenThumbs isn't computed correctly when
        interacting with pointer or keyboard.
      • Fixed issue where Shift + ArrowRight set value to 0 instead of max
        when step is too large (e.g. 20).
      • Fixed issue where onValueChangeEnd doesn't return the latest value when
        dragging very fast.
      • Fixed issue where slider could throw a error when rendered in an popover
        or dialog.
    • File Upload: Added support for transforming uploaded files via
      transformFiles context property.

    • Combobox: Fixed issue where onInputValueChange doesn't get called when
      autoFocus is set to true

    • Pin Input: Fixed issue where input padding could cause clipping of the
      text when fontSize is increased.

Patch Changes

v3.19.2

Compare Source

Patch Changes
  • #​10059
    a289c3c
    Thanks @​isBatak! - - System: add explicit
    undefined to generated types to support TS exactOptionalPropertyTypes

  • #​10064
    10d0a8e
    Thanks @​mhsattarian! - - Drawer: Fix
    drawer close animation in RTL

    • Button
      • Fix layout issue when in loading state with icons by using
        display: contents and visibility: hidden
      • Add data-loading attribute when loading is true so allow styling
        loading state with _loading pseudo prop

v3.19.1

Compare Source

Patch Changes
  • aa9c2b0
    Thanks @​segunadebayo! - - System: Fix
    issue where some svg element props tend to be treated as style props
    • Checkbox: Use consistent cursor for checkbox and radio group

v3.19.0

Compare Source

Minor Changes
  • #​9464
    d860d48
    Thanks @​segunadebayo! - - [New]
    Combobox
    Add combobox component for autocomplete text entry.
    • Progress Circle: Make progress circle transition smoother.

v3.18.0

Compare Source

Minor Changes
  • e91ec7e
    Thanks @​segunadebayo! - - DownloadTrigger
    [New]
    Add DownloadTrigger component to help download file contents.
    • System

      • Fix issue where passing d prop to chakra.path adds it to styles not as
        a direct attribute.
      • Fix issue where responsive semantic tokens did not get applied.
    • Select: Fix issue where indicator group doesn't align correctly in RTL
      layouts.

v3.17.0

Compare Source

Minor Changes
  • #​9977
    ad8cc44
    Thanks @​seongminn! - - Breadcrumb: Prevent
    screen reader from reading the separator
    • Toast: Added toast queuing when the max limit is reached:

      • New toasts were queued instead of dropped
      • Queued toasts were shown when space became available
      • Queue cleared when all toasts were removed
    • SegmentGroup: Fix issue where disabled prop was not being applied to
      SegmentGroup.Items

    • RatingGroup: Fix issue where half-filled icons were not being displayed
      correctly in RTL

    • Collapsible: Fixed issue in React.js <= v18.x where collapse animation
      might not work as expected

v3.16.1

Compare Source

Patch Changes
  • 46075ba
    Thanks @​segunadebayo! - - Dialog,
    Drawer
    : Use correct z-index for dialog and drawer backdrop
    • SegmentGroup: Fix issue where orientation prop to SegmentGroup.Root
      doesn't work as expected

v3.16.0

Compare Source

Minor Changes
  • 529244d
    Thanks @​segunadebayo! - - Global CSS:
    Improve text selection contrast
    • System

      • Fix issue where borderEnd shorthand was not working despite
        borderStart being present
      • Fix issue where system.cva return type was incorrect
      • Soften the focus ring for all color palettes
    • Dialog, Drawer: Fix issue where z-index was not being applied
      correctly

    • [Beta] createOverlay: Add createOverlay utility for programmatically
      controlling overlay components (Dialog, Drawer, etc.)

v3.15.1

Compare Source

Patch Changes
  • e3d7db7
    Thanks @​segunadebayo! - - Fix issue where
    backdrop could overlap positioner when reopened quickly
    • Ensure types are consistent with React 19

v3.15.0

Compare Source

Minor Changes
  • 2f4ea3b
    Thanks @​segunadebayo! - -
    useMediaQuery: Fix type signature to allow skipping the second argument
    • RadioCard: Fix accessibility issue due to html structure

    • Slider

      • Add support for origin: end to align the thumb to the end of the track.
      • Expose thumbSize as CSS variables in the root element. Can be useful for
        styling the slider.
    • Menu

      • Added onSelect event to the Menu.Item component.
      • Ensure menu items have unique IDs to improve accessibility and HTML
        validation.

v3.14.2

Compare Source

Patch Changes

v3.14.1

Compare Source

Patch Changes
  • 0eb769e
    Thanks @​segunadebayo! - - System: Fix
    issue where output of <system>.css(...) from Chakra UI can't be assigned to
    Interpolation<Theme> from @emotion/react.
    • General: Bump @ark-ui/react to latest version.

v3.14.0

Compare Source

Minor Changes
  • 354eaa6
    Thanks @​segunadebayo! - Improve render
    performance by upgrading to the latest Ark UI v5.

    This brings a 1.5x–4x performance improvements across components. Learn
    more from the
    Ark UI v5 changelog.

eslint/eslint (@​eslint/js)

v9.34.0

Compare Source

v9.33.0

Compare Source

v9.32.0

Compare Source

v9.31.0

Compare Source

v9.30.1

Compare Source

v9.30.0

Compare Source

v9.29.0

Compare Source

v9.28.0

Compare Source

v9.27.0

Compare Source

v9.26.0

Compare Source

Features
Bug Fixes
  • 96e84de fix: check cache file existence before deletion (#​19648) (sethamus)
  • d683aeb fix: don't crash on tests with circular references in RuleTester (#​19664) (Milos Djermanovic)
  • 9736d5d fix: add namespace to Plugin.meta type (#​19661) (Milos Djermanovic)
  • 17bae69 fix: update RuleTester.run() type (#​19634) (Nitin Kumar)
Documentation
  • dd98d63 docs: Update README (GitHub Actions Bot)
  • c25e858 docs: Update README (GitHub Actions Bot)
  • b2397e9 docs: Update README (GitHub Actions Bot)
  • addd0a6 docs: fix formatting of unordered lists in Markdown (#​19660) (Milos Djermanovic)
  • a21b38d docs: Update README (GitHub Actions Bot)
  • c0721a7 docs: fix double space in command (#​19657) (CamWass)
Chores

v9.25.1

Compare Source

Bug Fixes

  • cdc8e8c fix: revert directive detection in no-unused-expressions (#​19639) (sethamus)

Chores

v9.25.0

Compare Source

Features
  • dcd95aa feat: support TypeScript syntax in no-empty-function rule (#​19551) (sethamus)
  • 77d6d5b feat: support TS syntax in no-unused-expressions (#​19564) (Sweta Tanwar)
  • 90228e5 feat: support JSRuleDefinition type (#​19604) (루밀LuMir)
  • 59ba6b7 feat: add allowObjects option to no-restricted-properties (#​19607) (sethamus)
  • db650a0 feat: support TypeScript syntax in no-invalid-this rule (#​19532) (Tanuj Kanti)
  • 9535cff feat: support TS syntax in no-loop-func (#​19559) (Nitin Kumar)
Bug Fixes
  • 910bd13 fix: nodeTypeKey not being used in NodeEventGenerator (#​19631) (StyleShit)
Documentation
  • ca7a735 docs: update no-undef-init when not to use section (#​19624) (Tanuj Kanti)
  • 1b870c9 docs: use eslint-config-xo in the getting started guide (#​19629) (Nitin Kumar)
  • 5d4af16 docs: add types for multiple rule options (#​19616) (Tanuj Kanti)
  • e8f8d57 docs: Update README (GitHub Actions Bot)
  • a40348f docs: no-use-before-define tweaks (#​19622) (Kirk Waiblinger)
  • 0ba3ae3 docs: Update README (GitHub Actions Bot)
  • 865dbfe docs: ensure "learn more" deprecation links point to useful resource (#​19590) (Kirk Waiblinger)
  • f80b746 docs: add known limitations for no-self-compare (#​19612) (Nitin Kumar)
  • 865aed6 docs: Update README (GitHub Actions Bot)
Chores

v9.24.0

Compare Source

Features

  • 556c25b feat: support loading TS config files using --experimental-strip-types (#​19401) (Arya Emami)
  • 72650ac feat: support TS syntax in init-declarations (#​19540)

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

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

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@vercel
Copy link

vercel bot commented Mar 24, 2025

The latest updates on your projects. Learn more about Vercel for GitHub.

Project Deployment Preview Comments Updated (UTC)
leikkipuistokartta Ready Ready Preview Comment Aug 24, 2025 9:55am

@renovate renovate bot force-pushed the renovate/all-minor-updates branch from f97db47 to b366b5e Compare March 24, 2025 21:53
@renovate renovate bot changed the title Update all minor updates to v3.14.0 Update all minor updates Mar 24, 2025
@renovate renovate bot force-pushed the renovate/all-minor-updates branch from b366b5e to 5c50596 Compare March 25, 2025 01:58
@renovate renovate bot force-pushed the renovate/all-minor-updates branch from 5c50596 to 60b4583 Compare March 25, 2025 16:52
@renovate renovate bot force-pushed the renovate/all-minor-updates branch from 60b4583 to 2ca7585 Compare March 26, 2025 12:48
@renovate renovate bot force-pushed the renovate/all-minor-updates branch from 2ca7585 to 6e8a22c Compare March 26, 2025 19:32
@renovate renovate bot force-pushed the renovate/all-minor-updates branch from 6e8a22c to 773fc4e Compare March 29, 2025 22:40
@renovate renovate bot force-pushed the renovate/all-minor-updates branch from 773fc4e to 931c37b Compare March 31, 2025 10:43
@renovate renovate bot force-pushed the renovate/all-minor-updates branch from 931c37b to 2834038 Compare March 31, 2025 19:28
@renovate renovate bot force-pushed the renovate/all-minor-updates branch from 2834038 to 16cfa6c Compare April 1, 2025 19:30
@renovate renovate bot force-pushed the renovate/all-minor-updates branch from 16cfa6c to 3efa34c Compare April 2, 2025 10:41
@renovate renovate bot force-pushed the renovate/all-minor-updates branch from 3efa34c to 49c34de Compare April 2, 2025 18:33
@renovate renovate bot force-pushed the renovate/all-minor-updates branch from 49c34de to b71bd10 Compare April 4, 2025 23:23
@renovate renovate bot force-pushed the renovate/all-minor-updates branch from b71bd10 to 7df1517 Compare April 7, 2025 19:49
@renovate renovate bot force-pushed the renovate/all-minor-updates branch from 7df1517 to 61cba13 Compare April 9, 2025 12:06
@renovate renovate bot force-pushed the renovate/all-minor-updates branch from 46028a0 to 00fd1d0 Compare August 12, 2025 12:50
@renovate renovate bot force-pushed the renovate/all-minor-updates branch from 00fd1d0 to 671273b Compare August 13, 2025 13:42
@renovate renovate bot force-pushed the renovate/all-minor-updates branch from 671273b to 2d39ff6 Compare August 13, 2025 22:23
@renovate renovate bot force-pushed the renovate/all-minor-updates branch from 2d39ff6 to 209084e Compare August 15, 2025 21:10
@renovate renovate bot force-pushed the renovate/all-minor-updates branch from 209084e to 2d0caf6 Compare August 18, 2025 19:34
@renovate renovate bot force-pushed the renovate/all-minor-updates branch from 2d0caf6 to 3374bb5 Compare August 20, 2025 20:14
@renovate renovate bot force-pushed the renovate/all-minor-updates branch from 3374bb5 to c5d1927 Compare August 20, 2025 22:46
@renovate renovate bot force-pushed the renovate/all-minor-updates branch from c5d1927 to e870fd1 Compare August 21, 2025 17:52
@renovate renovate bot force-pushed the renovate/all-minor-updates branch from e870fd1 to 836475f Compare August 21, 2025 23:01
@renovate renovate bot force-pushed the renovate/all-minor-updates branch from 836475f to d32682b Compare August 22, 2025 19:47
@renovate renovate bot force-pushed the renovate/all-minor-updates branch from d32682b to c615c1f Compare August 22, 2025 22:45
@renovate renovate bot force-pushed the renovate/all-minor-updates branch from c615c1f to 1aaabbd Compare August 23, 2025 22:13
@renovate
Copy link
Contributor Author

renovate bot commented Aug 23, 2025

⚠️ Artifact update problem

Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: package-lock.json
npm warn Unknown env config "store". This will stop working in the next major version of npm.
npm error code ERESOLVE
npm error ERESOLVE unable to resolve dependency tree
npm error
npm error While resolving: [email protected]
npm error Found: [email protected]
npm error node_modules/i18next
npm error   dev i18next@"^24.2.2" from the root project
npm error
npm error Could not resolve dependency:
npm error peer i18next@">= 25.4.1" from [email protected]
npm error node_modules/react-i18next
npm error   react-i18next@"^15.4.0" from the root project
npm error
npm error Fix the upstream dependency conflict, or retry
npm error this command with --force or --legacy-peer-deps
npm error to accept an incorrect (and potentially broken) dependency resolution.
npm error
npm error
npm error For a full report see:
npm error /runner/cache/others/npm/_logs/2025-08-24T05_59_57_675Z-eresolve-report.txt
npm error A complete log of this run can be found in: /runner/cache/others/npm/_logs/2025-08-24T05_59_57_675Z-debug-0.log

@renovate
Copy link
Contributor Author

renovate bot commented Aug 24, 2025

Edited/Blocked Notification

Renovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR.

You can manually request rebase by checking the rebase/retry box above.

⚠️ Warning: custom changes will be lost.

@jopppis jopppis merged commit bceedf0 into develop Aug 24, 2025
2 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants