Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Version Packages #2115

Merged
merged 1 commit into from
Feb 5, 2024
Merged

Version Packages #2115

merged 1 commit into from
Feb 5, 2024

Conversation

github-actions[bot]
Copy link
Contributor

@github-actions github-actions bot commented Jan 30, 2024

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/config@0.30.0

Minor Changes

  • 0dd45b6: Fix issue where config changes could not be detected due to config bundling returning stale result
    sometimes.

Patch Changes

  • 74485ef: Add utils functions in the config:resolved hook, making it easy to apply transformations after all
    presets have been merged.

    For example, this could be used if you want to use most of a preset but want to completely omit a few things, while
    keeping the rest. Let's say we want to remove the stack pattern from the built-in @pandacss/preset-base:

    import { defineConfig } from '@pandacss/dev'
    
    export default defineConfig({
      // ...
      hooks: {
        'config:resolved': ({ config, utils }) => {
          return utils.omit(config, ['patterns.stack'])
        },
      },
    })
  • ab32d1d: Fix issue where errors were thrown when semantic tokens are overriden in tokens.

  • d5977c2: - Add a --logfile flag to the panda, panda codegen, panda cssgen and panda debug commands.

    • Add a logfile option to the postcss plugin

    Logs will be streamed to the file specified by the --logfile flag or the logfile option. This is useful for
    debugging issues that occur during the build process.

    panda --logfile ./logs/panda.log
    module.exports = {
      plugins: {
        '@pandacss/dev/postcss': {
          logfile: './logs/panda.log',
        },
      },
    }
  • Updated dependencies [74485ef]

  • Updated dependencies [ab32d1d]

  • Updated dependencies [49c760c]

  • Updated dependencies [d5977c2]

    • @pandacss/types@0.30.0
    • @pandacss/shared@0.30.0
    • @pandacss/logger@0.30.0
    • @pandacss/preset-base@0.30.0
    • @pandacss/preset-panda@0.30.0

@pandacss/astro-plugin-studio@0.30.0

Patch Changes

  • d5977c2: - Add a --logfile flag to the panda, panda codegen, panda cssgen and panda debug commands.

    • Add a logfile option to the postcss plugin

    Logs will be streamed to the file specified by the --logfile flag or the logfile option. This is useful for
    debugging issues that occur during the build process.

    panda --logfile ./logs/panda.log
    module.exports = {
      plugins: {
        '@pandacss/dev/postcss': {
          logfile: './logs/panda.log',
        },
      },
    }
  • Updated dependencies [05686b9]

  • Updated dependencies [ab32d1d]

  • Updated dependencies [d5977c2]

    • @pandacss/node@0.30.0

@pandacss/dev@0.30.0

Patch Changes

  • d5977c2: - Add a --logfile flag to the panda, panda codegen, panda cssgen and panda debug commands.

    • Add a logfile option to the postcss plugin

    Logs will be streamed to the file specified by the --logfile flag or the logfile option. This is useful for
    debugging issues that occur during the build process.

    panda --logfile ./logs/panda.log
    module.exports = {
      plugins: {
        '@pandacss/dev/postcss': {
          logfile: './logs/panda.log',
        },
      },
    }
  • Updated dependencies [0dd45b6]

  • Updated dependencies [05686b9]

  • Updated dependencies [74485ef]

  • Updated dependencies [ab32d1d]

  • Updated dependencies [ab32d1d]

  • Updated dependencies [49c760c]

  • Updated dependencies [d5977c2]

    • @pandacss/config@0.30.0
    • @pandacss/node@0.30.0
    • @pandacss/types@0.30.0
    • @pandacss/token-dictionary@0.30.0
    • @pandacss/shared@0.30.0
    • @pandacss/postcss@0.30.0
    • @pandacss/logger@0.30.0
    • @pandacss/preset-panda@0.30.0

@pandacss/core@0.30.0

Patch Changes

  • ab32d1d: Introduce 3 new hooks:

    tokens:created

    This hook is called when the token engine has been created. You can use this hook to add your format token names and
    variables.

    This is especially useful when migrating from other css-in-js libraries, like Stitches.

    export default defineConfig({
      // ...
      hooks: {
        'tokens:created': ({ configure }) => {
          configure({
            formatTokenName: (path) => '

@pandacss/extractor@0.30.0

Patch Changes

  • Updated dependencies [ab32d1d]
  • Updated dependencies [49c760c]
    • @pandacss/shared@0.30.0

@pandacss/generator@0.30.0

Patch Changes

  • ab32d1d: Introduce 3 new hooks:

    tokens:created

    This hook is called when the token engine has been created. You can use this hook to add your format token names and
    variables.

    This is especially useful when migrating from other css-in-js libraries, like Stitches.

    export default defineConfig({
      // ...
      hooks: {
        'tokens:created': ({ configure }) => {
          configure({
            formatTokenName: (path) => '

@pandacss/logger@0.30.0

Patch Changes

  • d5977c2: - Add a --logfile flag to the panda, panda codegen, panda cssgen and panda debug commands.

    • Add a logfile option to the postcss plugin

    Logs will be streamed to the file specified by the --logfile flag or the logfile option. This is useful for
    debugging issues that occur during the build process.

    panda --logfile ./logs/panda.log
    module.exports = {
      plugins: {
        '@pandacss/dev/postcss': {
          logfile: './logs/panda.log',
        },
      },
    }
  • Updated dependencies [74485ef]

  • Updated dependencies [ab32d1d]

  • Updated dependencies [d5977c2]

    • @pandacss/types@0.30.0

@pandacss/node@0.30.0

Patch Changes

  • 05686b9: Refactor the --cpu-prof profiler to use the node:inspector instead of relying on an external module
    (v8-profiler-next, which required node-gyp)

  • ab32d1d: Introduce 3 new hooks:

    tokens:created

    This hook is called when the token engine has been created. You can use this hook to add your format token names and
    variables.

    This is especially useful when migrating from other css-in-js libraries, like Stitches.

    export default defineConfig({
      // ...
      hooks: {
        'tokens:created': ({ configure }) => {
          configure({
            formatTokenName: (path) => '

@pandacss/parser@0.30.0

Patch Changes

  • d5977c2: - Add a --logfile flag to the panda, panda codegen, panda cssgen and panda debug commands.

    • Add a logfile option to the postcss plugin

    Logs will be streamed to the file specified by the --logfile flag or the logfile option. This is useful for
    debugging issues that occur during the build process.

    panda --logfile ./logs/panda.log
    module.exports = {
      plugins: {
        '@pandacss/dev/postcss': {
          logfile: './logs/panda.log',
        },
      },
    }
  • Updated dependencies [0dd45b6]

  • Updated dependencies [74485ef]

  • Updated dependencies [ab32d1d]

  • Updated dependencies [ab32d1d]

  • Updated dependencies [49c760c]

  • Updated dependencies [d5977c2]

    • @pandacss/config@0.30.0
    • @pandacss/types@0.30.0
    • @pandacss/shared@0.30.0
    • @pandacss/core@0.30.0
    • @pandacss/logger@0.30.0
    • @pandacss/extractor@0.30.0

@pandacss/postcss@0.30.0

Patch Changes

  • d5977c2: - Add a --logfile flag to the panda, panda codegen, panda cssgen and panda debug commands.

    • Add a logfile option to the postcss plugin

    Logs will be streamed to the file specified by the --logfile flag or the logfile option. This is useful for
    debugging issues that occur during the build process.

    panda --logfile ./logs/panda.log
    module.exports = {
      plugins: {
        '@pandacss/dev/postcss': {
          logfile: './logs/panda.log',
        },
      },
    }
  • Updated dependencies [05686b9]

  • Updated dependencies [ab32d1d]

  • Updated dependencies [d5977c2]

    • @pandacss/node@0.30.0

@pandacss/preset-atlaskit@0.30.0

Patch Changes

  • Updated dependencies [74485ef]
  • Updated dependencies [ab32d1d]
  • Updated dependencies [d5977c2]
    • @pandacss/types@0.30.0

@pandacss/preset-base@0.30.0

Patch Changes

  • Updated dependencies [74485ef]
  • Updated dependencies [ab32d1d]
  • Updated dependencies [d5977c2]
    • @pandacss/types@0.30.0

@pandacss/preset-open-props@0.30.0

Patch Changes

  • Updated dependencies [74485ef]
  • Updated dependencies [ab32d1d]
  • Updated dependencies [d5977c2]
    • @pandacss/types@0.30.0

@pandacss/preset-panda@0.30.0

Patch Changes

  • Updated dependencies [74485ef]
  • Updated dependencies [ab32d1d]
  • Updated dependencies [d5977c2]
    • @pandacss/types@0.30.0

@pandacss/shared@0.30.0

Patch Changes

  • ab32d1d: Introduce 3 new hooks:

    tokens:created

    This hook is called when the token engine has been created. You can use this hook to add your format token names and
    variables.

    This is especially useful when migrating from other css-in-js libraries, like Stitches.

    export default defineConfig({
      // ...
      hooks: {
        'tokens:created': ({ configure }) => {
          configure({
            formatTokenName: (path) => '

@pandacss/studio@0.30.0

Patch Changes

  • ab32d1d: Introduce 3 new hooks:

    tokens:created

    This hook is called when the token engine has been created. You can use this hook to add your format token names and
    variables.

    This is especially useful when migrating from other css-in-js libraries, like Stitches.

    export default defineConfig({
      // ...
      hooks: {
        'tokens:created': ({ configure }) => {
          configure({
            formatTokenName: (path) => '

@pandacss/token-dictionary@0.30.0

Patch Changes

  • ab32d1d: Introduce 3 new hooks:

    tokens:created

    This hook is called when the token engine has been created. You can use this hook to add your format token names and
    variables.

    This is especially useful when migrating from other css-in-js libraries, like Stitches.

    export default defineConfig({
      // ...
      hooks: {
        'tokens:created': ({ configure }) => {
          configure({
            formatTokenName: (path) => '

@pandacss/types@0.30.0

Patch Changes

  • 74485ef: Add utils functions in the config:resolved hook, making it easy to apply transformations after all
    presets have been merged.

    For example, this could be used if you want to use most of a preset but want to completely omit a few things, while
    keeping the rest. Let's say we want to remove the stack pattern from the built-in @pandacss/preset-base:

    import { defineConfig } from '@pandacss/dev'
    
    export default defineConfig({
      // ...
      hooks: {
        'config:resolved': ({ config, utils }) => {
          return utils.omit(config, ['patterns.stack'])
        },
      },
    })
  • ab32d1d: Introduce 3 new hooks:

    tokens:created

    This hook is called when the token engine has been created. You can use this hook to add your format token names and
    variables.

    This is especially useful when migrating from other css-in-js libraries, like Stitches.

    export default defineConfig({
      // ...
      hooks: {
        'tokens:created': ({ configure }) => {
          configure({
            formatTokenName: (path) => '

@pandacss/is-valid-prop@0.30.0

@pandacss/fixture@0.30.0

Patch Changes

  • ab32d1d: Introduce 3 new hooks:

    tokens:created

    This hook is called when the token engine has been created. You can use this hook to add your format token names and
    variables.

    This is especially useful when migrating from other css-in-js libraries, like Stitches.

    export default defineConfig({
      // ...
      hooks: {
        'tokens:created': ({ configure }) => {
          configure({
            formatTokenName: (path) => '

Copy link

vercel bot commented Jan 30, 2024

The latest updates on your projects. Learn more about Vercel for Git ↗︎

Name Status Preview Updated (UTC)
panda-docs ✅ Ready (Inspect) Visit Preview Feb 5, 2024 5:43pm
panda-playground ✅ Ready (Inspect) Visit Preview Feb 5, 2024 5:43pm
panda-studio ✅ Ready (Inspect) Visit Preview Feb 5, 2024 5:43pm

@github-actions github-actions bot force-pushed the changeset-release/main branch 2 times, most recently from 02164d8 to 5f0227a Compare February 5, 2024 14:53
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.

1 participant