Skip to content

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Aug 2, 2025

Note

Mend has cancelled the proposed renaming of the Renovate GitHub app being renamed to mend[bot].

This notice will be removed on 2025-10-07.


This PR contains the following updates:

Package Change Age Confidence
@chakra-ui/cli 2.1.8 -> 3.27.0 age confidence
@chakra-ui/react (source) 2.4.1 -> 3.27.0 age confidence

Release Notes

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

v3.27.0

Compare Source

Minor Changes
  • #​10299
    27b920a
    Thanks @​segunadebayo! - Add new blocks
    command to add chakra pro blocks to your project.

    This command requires valid Chakra Pro license and API key in the
    CHAKRA_UI_PRO_API_KEY environment variable.

Interactive block selection

npx @​chakra-ui/cli blocks add

Add all variants of a specific block

npx @​chakra-ui/cli blocks add hero

Add a specific variant of a block

npx @​chakra-ui/cli blocks add hero --variant "simple"

List available blocks

npx @​chakra-ui/cli blocks list

List blocks in a specific category

npx @​chakra-ui/cli blocks list --category "marketing"
```

v3.26.0

Compare Source

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

v3.13.0

Compare Source

v3.12.0

Compare Source

v3.11.0

Compare Source

v3.10.0

Compare Source

v3.9.0

Compare Source

v3.8.2

Compare Source

v3.8.1

Compare Source

v3.8.0

Compare Source

v3.7.0

Compare Source

v3.6.0

Compare Source

Patch Changes
  • 07f2c56
    Thanks @​segunadebayo! - Fix issue where CLI
    doesn't properly check for existing files when adding snippets.

v3.5.1

Compare Source

v3.5.0

Compare Source

v3.4.0

Compare Source

v3.3.3

Compare Source

v3.3.2

Compare Source

v3.3.1

Compare Source

v3.3.0

Compare Source

Minor Changes
  • e5ecd91
    Thanks @​segunadebayo! - Add support for
    --tsx flag in the snippet add command to allow explicitly specifying
    tsx/jsx file generation.

v3.2.5

Compare Source

v3.2.4

Compare Source

v3.2.3

Compare Source

v3.2.2

Compare Source

Patch Changes

v3.2.1

Compare Source

Patch Changes
  • c79b7bf
    Thanks @​segunadebayo! - - Fix issue where
    npmDependencies for snippets were not auto-installed
    • Support React Router 7 framework detection

v3.2.0

Compare Source

Minor Changes
  • 069e39d
    Thanks @​segunadebayo! - Add support for
    --all flag to add all snippets. By default, we only install a
    minimal/recommended set of snippets.

    Recommended snippets: provider, avatar, button, checkbox, radio,
    input-group, slider, popover, dialog, drawer, tooltip, field

    If you want to add all snippets, you can use the --all flag.

Patch Changes
  • a3ba8e6
    Thanks @​segunadebayo! - Fix issue where
    typegen doesn't work when CLI installed globally or run using npx

v3.1.2

Compare Source

v3.1.1

Compare Source

v3.1.0

Compare Source

Patch Changes
  • baa3cb1
    Thanks @​segunadebayo! - Fix issue where
    adding a snippet with --outdir still creates snippets a src/components/ui
    directory.

v3.0.2

Compare Source

Patch Changes

v3.0.1

Compare Source

v3.0.0

Compare Source

Minor Changes
  • 758f226
    Thanks @​segunadebayo! - Add support for
    composition command in CLI to import ready-made compositions for faster
    development experience.

    Usage: chakra-ui composition [options] [command]
    
    Add compositions to your project for better DX
    
    Options:
      -h, --help                     display help for command
    
    Commands:
      add [options] [components...]  Add a new composition for better DX
      list                           List all compositions
      help [command]                 display help for command
  • bfb68dc
    Thanks @​segunadebayo! - Add eject command
    to import default theme into project

  • 085cacd
    Thanks @​segunadebayo! - Add support for
    installing required NPM dependencies for compositions

  • 77fe01d
    Thanks @​segunadebayo! - Change CLI name and
    command structure.

    • Change the CLI name from chakra-cli to chakra.
    • Change tokens command to typegen to better reflect its purpose since its
      generates types for more than just the tokens.
    • Scaffold new composition command to help users scaffold new compositions
      easily. Compositions are snippets of Chakra UI component composition them
      easier to reuse across projects.
  • 8fc7b49
    Thanks @​segunadebayo! - - Add support for
    conditional value in variant props.

    • Add @default JSDoc comment for defaultVariants in generated types.
  • 4ff153f
    Thanks @​segunadebayo! - Speed up
    intellisence for style props, and add support for strictTokens in the CLI.

  • d50d72c
    Thanks @​segunadebayo! - Rename
    compositions command to snippet for better intuitiveness

  • #​8569
    eb26857
    Thanks @​isBatak! - Fix the boxSize type to
    allow number values.

  • 14b6a45
    Thanks @​segunadebayo! - Show the number of
    skipped snippets that already exists in outdir

Patch Changes

v2.5.8

Compare Source

v2.5.7

Compare Source

v2.5.6

Compare Source

v2.5.5

Compare Source

v2.5.4

Compare Source

v2.5.3

Compare Source

v2.5.2

Compare Source

v2.5.1

Compare Source

v2.5.0

Compare Source

v2.4.1

Compare Source

Patch Changes

v2.4.0

Minor Changes
  • #​7494
    27dcf2f56
    Thanks @​kuroppe1819! - Add support for
    nested semantic tokens in theme. It is now possible to declare semantic tokens
    by nesting objects.

    BEFORE:

    const theme = {
      semanticTokens: {
        colors: {
          "background.pressed.base": { default: "blue.800", _dark: "blue.300" },
          "background.pressed.subtle": { default: "blue.300", _dark: "blue.700" },
        },
      },
    }

    AFTER:

    const theme = {
      semanticTokens: {
        colors: {
          background: {
            pressed: {
              base: { default: "blue.800", _dark: "blue.300" },
              subtle: { default: "blue.300", _dark: "blue.700" },
            },
          },
        },
      },
    }

    This allows for cleaner grouping and organization of tokens.

v2.3.0

Compare Source

Minor Changes
  • #​7127
    ffc73f393
    Thanks @​lexanth! - - Added support for
    generating theme typings to use via module augmentation of the
    @chakra-ui/styled-system package.

    To use this feature, run the following command:

    chakra-cli tokens --template augmentation --out ./types/chakra-ui__styled-system.d.ts

v2.2.1

Compare Source

Patch Changes

v2.2.0

Compare Source

Minor Changes
  • #​5701
    eb3bfe66d
    Thanks @​lexanth! - Add the flag
    --strict-token-types for @chakra-ui/cli tokens to generate strict types
    for theme tokens (e.g. color, spacing)

    chakra-cli tokens --strict-token-types
    // before
    <Box padding="abc" />
    // valid type, but "abc" is not available in the theme
    
    // after
    <Box padding="abc" /> // invalid
    // Type '"abc"' is not assignable to type '"1" | "2" | ... | undefined'.
chakra-ui/chakra-ui (@​chakra-ui/react)

v3.27.0

Compare Source

Minor Changes
  • 16fb3cc
    Thanks @​segunadebayo! - Enhanced
    composition types with comprehensive CSS property support

    Text Style Properties: Added these properties to theme.textStyles:

    • Basic properties (color, direction, font, fontFamily,
      fontFeatureSettings, fontKerning, fontLanguageOverride,
      fontOpticalSizing, fontPalette)
    • Typography properties (hangingPunctuation, hyphens,
      hyphenateCharacter, hyphenateLimitChars, lineBreak, quotes,
      overflowWrap, tabSize)
    • Text alignment (textAlign, textAlignLast, textCombineUpright,
      textJustify)
    • Text decoration (textDecorationSkip, textDecorationSkipBox,
      textDecorationSkipInk, textDecorationSkipInset,
      textDecorationThickness, textEmphasis)
    • Text formatting (textShadow, textStroke, textStrokeColor,
      textStrokeWidth, textUnderlineOffset, textUnderlinePosition,
      textWrap, textWrapMode, textWrapStyle)
    • Text layout (unicodeBidi, verticalAlign, whiteSpace, wordBreak,
      wordSpacing, writingMode)

    Layer Style Properties: Added these properties to theme.layerStyles:

    • Layout properties (aspectRatio, display, contain, contentVisibility,
      isolation)
    • Visual effects (clipPath, mixBlendMode, maskClip, maskComposite,
      maskImage, maskMode, maskOrigin, maskPosition, maskRepeat,
      maskSize)
    • Modern properties (objectFit, objectPosition, pointerEvents, resize,
      visibility, willChange)
    • Border properties (borderImage, borderImageOutset, borderImageRepeat,
      borderImageSlice, borderImageSource, borderImageWidth)
    • Overflow properties (overflow, overflowX, overflowY)
Patch Changes
  • c741fe9
    Thanks @​segunadebayo! - - CodeBlock:
    Fix issue where Line numbers display incorrectly when meta.wordWrap is true
    in code blocks

    • Hover Card: Change default delay values for hover card to improve
      accessibility.
      • openDelay: from 700ms to 600ms
    • Tooltip: Change default delay values for tooltip to improve
      accessibility.
      Learn more
      • openDelay: from 1000ms to 400ms
      • closeDelay: from 500ms to 150ms
    • Menu
      • Fix issue where keyboard activation of menu items with target="_blank"
        would open two tabs
      • Fix issue where hovering a partially visible item with pointer causes it
        to scroll into view
    • Combobox: Add alwaysSubmitOnEnter prop to allow forcing the form to be
      submitted immediately on Enter press.
  • #​10312
    6189068
    Thanks @​itushh! - - CodeBlock: Allow
    horizontal scrolling when code block overflows

v3.26.0

Compare Source

Minor Changes
  • b9eede5
    Thanks @​segunadebayo! - - Listbox
    [New]
    : Add new component with support for single/multi-select, grouping,
    virtualization, controlled state, icons, descriptions, and accessibility
    features.

    This component can be used to build command palettes, dropdowns with search,
    and much more.

    <Listbox.Root collection={frameworks} width="320px">
      <Listbox.Label>Select framework</Listbox.Label>
      <Listbox.Content>
        {frameworks.items.map((framework) => (
          <Listbox.Item item={framework} key={framework.value}>
            <Listbox.ItemText>{framework.label}</Listbox.ItemText>
            <Listbox.ItemIndicator />
          </Listbox.Item>
        ))}
      </Listbox.Content>
    </Listbox.Root>
    • Hover Card: Add support for disabled prop
    • Select, Menu: Fix issue where disabled items could be reached via
      typeahead
    • Color Picker: Fix issue where color picker was not working correctly in
      RTL mode
    • Number Input
      • Omit the input pattern when formatOptions is provided. This prevents
        native pattern validation from conflicting with formatted values (e.g.,
        currency or percent).
      • Handle empty values consistently across all format options.
      • Add data-scrubbing attribute to the number input parts.
Patch Changes
  • b9eede5
    Thanks @​segunadebayo! - CodeBlock: Add
    configurable theme support and sync loading for Shiki adapter

    • Theme configuration is now required - The theme property must be
      explicitly provided to createShikiAdapter
    • Removed hard-coded theme fallbacks - Missing themes now throw
      descriptive errors
    • Optional sync loading with loadSync method for better performance
    // Before
    const adapter = createShikiAdapter({
      async load() { /* ... */ },
    })
    
    // After
    const adapter = createShikiAdapter({
      async load() { /* ... */ },
      theme: {
        light: "github-light",
        dark: "github-dark",
      },
    })

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](https://redirect.github.com/chakra-ui/chakra-ui/com


Configuration

📅 Schedule: Branch creation - At 12:00 AM through 04:59 AM and 10:00 PM through 11:59 PM, Monday through Friday ( * 0-4,22-23 * * 1-5 ), Only on Sunday and Saturday ( * * * * 0,6 ) in timezone UTC, Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about these updates again.


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

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

@renovate renovate bot enabled auto-merge (squash) August 2, 2025 16:17
renovate-approve[bot]
renovate-approve bot previously approved these changes Aug 2, 2025
Copy link

vercel bot commented Aug 2, 2025

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

Project Deployment Preview Updated (UTC)
template-ecommerce-webapp-nextjs Error Error Oct 3, 2025 6:32am

renovate-approve[bot]
renovate-approve bot previously approved these changes Aug 2, 2025
renovate-approve[bot]
renovate-approve bot previously approved these changes Aug 3, 2025
renovate-approve[bot]
renovate-approve bot previously approved these changes Aug 3, 2025
renovate-approve[bot]
renovate-approve bot previously approved these changes Aug 3, 2025
renovate-approve[bot]
renovate-approve bot previously approved these changes Aug 5, 2025
renovate-approve[bot]
renovate-approve bot previously approved these changes Aug 6, 2025
@renovate renovate bot force-pushed the renovate/main-major-chakra-ui-monorepo branch from b5d7770 to 7d1e6c1 Compare September 20, 2025 02:15
renovate-approve[bot]
renovate-approve bot previously approved these changes Sep 20, 2025
renovate-approve[bot]
renovate-approve bot previously approved these changes Sep 29, 2025
renovate-approve[bot]
renovate-approve bot previously approved these changes Sep 30, 2025
renovate-approve[bot]
renovate-approve bot previously approved these changes Oct 2, 2025
@renovate renovate bot force-pushed the renovate/main-major-chakra-ui-monorepo branch from a710630 to 7b32754 Compare October 3, 2025 06:27
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants