Skip to content

Version Packages#3495

Open
github-actions[bot] wants to merge 1 commit intomainfrom
changeset-release/main
Open

Version Packages#3495
github-actions[bot] wants to merge 1 commit intomainfrom
changeset-release/main

Conversation

@github-actions
Copy link
Contributor

@github-actions github-actions bot commented Mar 17, 2026

This PR was opened by the Changesets release GitHub action. When you're ready to do a release, you can merge this and the packages will be published to npm automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to main, this PR will be updated.

Releases

@pandacss/astro-plugin-studio@1.9.1

Patch Changes

  • Updated dependencies [8fda1a5]
    • @pandacss/core@1.9.1
    • @pandacss/node@1.9.1

@pandacss/dev@1.9.1

Patch Changes

  • Updated dependencies [d02fcf6]
  • Updated dependencies [028e755]
    • @pandacss/token-dictionary@1.9.1
    • @pandacss/preset-base@1.9.1
    • @pandacss/mcp@1.9.1
    • @pandacss/node@1.9.1
    • @pandacss/config@1.9.1
    • @pandacss/postcss@1.9.1
    • @pandacss/logger@1.9.1
    • @pandacss/preset-panda@1.9.1
    • @pandacss/shared@1.9.1
    • @pandacss/types@1.9.1

@pandacss/config@1.9.1

Patch Changes

  • Updated dependencies [028e755]
    • @pandacss/preset-base@1.9.1
    • @pandacss/logger@1.9.1
    • @pandacss/preset-panda@1.9.1
    • @pandacss/shared@1.9.1
    • @pandacss/types@1.9.1

@pandacss/core@1.9.1

Patch Changes

  • 8fda1a5: Fix pseudo-element conditions (::before, ::after) being placed before pseudo-class selectors in generated CSS

    When a pseudo-element condition like _before was combined with a mixed condition like _hover (defined as an array
    with a media query + selector), the pseudo-element would incorrectly appear before the pseudo-class in the generated
    CSS selector.

    Before (broken): .class::before:is(:hover, ...) - invalid CSS After (fixed):
    .class:is(:hover, ...)::before - valid CSS

    The fix ensures pseudo-element selectors are always sorted last in the condition chain, matching the CSS specification
    requirement that pseudo-elements must appear at the end of a selector.

  • Updated dependencies [d02fcf6]

    • @pandacss/token-dictionary@1.9.1
    • @pandacss/is-valid-prop@1.9.1
    • @pandacss/logger@1.9.1
    • @pandacss/shared@1.9.1
    • @pandacss/types@1.9.1

@pandacss/extractor@1.9.1

Patch Changes

  • @pandacss/shared@1.9.1

@pandacss/generator@1.9.1

Patch Changes

  • Updated dependencies [d02fcf6]
  • Updated dependencies [8fda1a5]
    • @pandacss/token-dictionary@1.9.1
    • @pandacss/core@1.9.1
    • @pandacss/is-valid-prop@1.9.1
    • @pandacss/logger@1.9.1
    • @pandacss/shared@1.9.1
    • @pandacss/types@1.9.1

@pandacss/logger@1.9.1

Patch Changes

  • @pandacss/types@1.9.1

@pandacss/mcp@1.9.1

Patch Changes

  • Updated dependencies [d02fcf6]
    • @pandacss/token-dictionary@1.9.1
    • @pandacss/node@1.9.1
    • @pandacss/logger@1.9.1
    • @pandacss/types@1.9.1

@pandacss/node@1.9.1

Patch Changes

  • Updated dependencies [d02fcf6]
  • Updated dependencies [8fda1a5]
    • @pandacss/token-dictionary@1.9.1
    • @pandacss/core@1.9.1
    • @pandacss/generator@1.9.1
    • @pandacss/reporter@1.9.1
    • @pandacss/config@1.9.1
    • @pandacss/parser@1.9.1
    • @pandacss/logger@1.9.1
    • @pandacss/shared@1.9.1
    • @pandacss/types@1.9.1

@pandacss/parser@1.9.1

Patch Changes

  • Updated dependencies [8fda1a5]
    • @pandacss/core@1.9.1
    • @pandacss/config@1.9.1
    • @pandacss/extractor@1.9.1
    • @pandacss/logger@1.9.1
    • @pandacss/shared@1.9.1
    • @pandacss/types@1.9.1

@pandacss/postcss@1.9.1

Patch Changes

  • @pandacss/node@1.9.1

@pandacss/preset-atlaskit@1.9.1

Patch Changes

  • @pandacss/types@1.9.1

@pandacss/preset-base@1.9.1

Patch Changes

  • 028e755: Fix Spacer pattern not resolving spacing tokens for the size prop.

    Previously, <Spacer size="5" /> would generate invalid CSS (flex: 0 0 5) instead of resolving the spacing token.
    Now it correctly outputs flex: 0 0 var(--spacing-5, 5).

    Before (broken): flex: 0 0 5 — raw value, not a valid CSS length After (fixed):
    flex: 0 0 var(--spacing-5, 5) — resolved spacing token

    Closes Spacer pattern does not apply spacing tokens to size prop #3490

    • @pandacss/types@1.9.1

@pandacss/preset-open-props@1.9.1

Patch Changes

  • @pandacss/types@1.9.1

@pandacss/preset-panda@1.9.1

Patch Changes

  • @pandacss/types@1.9.1

@pandacss/reporter@1.9.1

Patch Changes

  • Updated dependencies [8fda1a5]
    • @pandacss/core@1.9.1
    • @pandacss/generator@1.9.1
    • @pandacss/logger@1.9.1
    • @pandacss/shared@1.9.1
    • @pandacss/types@1.9.1

@pandacss/studio@1.9.1

Patch Changes

  • Updated dependencies [d02fcf6]
    • @pandacss/token-dictionary@1.9.1
    • @pandacss/astro-plugin-studio@1.9.1
    • @pandacss/config@1.9.1
    • @pandacss/logger@1.9.1
    • @pandacss/shared@1.9.1
    • @pandacss/types@1.9.1

@pandacss/token-dictionary@1.9.1

Patch Changes

  • d02fcf6: Fix duplicate token references with special characters resolving incorrectly in composite values

    When the same token reference containing special characters (e.g. {sizes.0.5}) appeared more than once in a
    composite value, only the first occurrence was resolved correctly. The second occurrence produced a malformed CSS
    variable name.

    This was caused by String.replace() only replacing the first match. Changed to String.replaceAll() in
    Token.expandReferences() and expandReferences() utility.

    Before (broken): --shadows-control-accent: 0 var(--sizes-0\.5) var(--sizes-0-5) rgba(92, 225, 113, 0.25)

    After (fixed): --shadows-control-accent: 0 var(--sizes-0\.5) var(--sizes-0\.5) rgba(92, 225, 113, 0.25)

    • @pandacss/logger@1.9.1
    • @pandacss/shared@1.9.1
    • @pandacss/types@1.9.1

@pandacss/is-valid-prop@1.9.1

@pandacss/shared@1.9.1

@pandacss/types@1.9.1

@vercel
Copy link

vercel bot commented Mar 17, 2026

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

Project Deployment Actions Updated (UTC)
panda-docs Ready Ready Preview Mar 22, 2026 0:27am
panda-playground Ready Ready Preview Mar 22, 2026 0:27am
panda-studio Ready Ready Preview Mar 22, 2026 0:27am

Request Review

@github-actions github-actions bot force-pushed the changeset-release/main branch from 0fa109a to 6572a58 Compare March 17, 2026 15:05
@github-actions github-actions bot force-pushed the changeset-release/main branch from 6572a58 to f68e242 Compare March 17, 2026 15:21
@github-actions github-actions bot force-pushed the changeset-release/main branch from f68e242 to 226ed30 Compare March 17, 2026 15:36
@github-actions github-actions bot force-pushed the changeset-release/main branch from 226ed30 to 19e45b5 Compare March 22, 2026 12:15
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.

Spacer pattern does not apply spacing tokens to size prop

0 participants