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

chore(deps): update dependency @vanilla-extract/vite-plugin to v5 #1533

Merged
merged 4 commits into from
Jan 30, 2025

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jan 30, 2025

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@vanilla-extract/vite-plugin (source) ^4.0.2 -> ^5.0.0 age adoption passing confidence

Release Notes

vanilla-extract-css/vanilla-extract (@​vanilla-extract/vite-plugin)

v5.0.0

Compare Source

Major Changes
  • #​1537 7810b7c Thanks @​askoufis! - Change the plugin name from "vanilla-extract" to the more conventional "vite-plugin-vanilla-extract"

  • #​1529 d5b6e70 Thanks @​askoufis! - Update vite peer dependency range to ^5.0.0 || ^6.0.0

    BREAKING CHANGE: Vite 4 is no longer supported. Please upgrade to at least Vite 5.

  • #​1537 7810b7c Thanks @​askoufis! - BREAKING CHANGE: User-configured vite plugins are no longer forwarded through to the Vanilla Extract compiler by default. This should not affect most consumers.

    Previously, all vite plugins except for a select few incompatible plugins were forwarded through. This resulted in a constant game of whack-a-mole as new plugins were added to the list of incompatible plugins as issues were discovered.

    Framework-specific plugins, as well as plugins that handle assets and build output, tend not to be relevant to Vanilla Extract code, and in some cases cause more harm than good.

    For that reason, in this release only the vite-tsconfig-paths plugin is fowarded through by default. This is a relatively common plugin that is know to be compatible with the Vanilla Extract compiler.

    In most cases users should not need to forward any additional plugins through to the Vanilla Extract compiler. However, if such a case arises, a plugin filter function can be provided via the unstable_pluginFilter option:

    // vite.config.ts
    
    import { vanillaExtractPlugin } from '@​vanilla-extract/vite-plugin';
    import { vitePluginFoo } from 'vite-plugin-foo';
    
    export default defineConfig({
      plugins: [
        vitePluginFoo(),
        vanillaExtractPlugin({
          // Only forward the `vite-plugin-foo` plugin through to the Vanilla Extract compiler
          unstable_pluginFilter: ({ name, mode }) =>
            plugin.name === 'vite-plugin-foo'
        })
      ]
    });

    When providing a plugin filter function, the vite-tsconfig-paths plugin will no longer be forwarded through by default. If you wish to forward this plugin, you must include it in your filter function.

    NOTE: The unstable_pluginFilter API is considered unstable and may be changed or removed without notice in a future non-major version.

Patch Changes

v4.0.20

Compare Source

Patch Changes

v4.0.19

Compare Source

Patch Changes

v4.0.18

Compare Source

Patch Changes

Configuration

📅 Schedule: Branch creation - "* 0-3 1 * *" (UTC), 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.

🔕 Ignore: Close this PR and you won't be reminded about this update 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 requested a review from a team as a code owner January 30, 2025 15:02
Copy link

changeset-bot bot commented Jan 30, 2025

⚠️ No Changeset found

Latest commit: 7c90df0

Merging this PR will not cause a version bump for any packages. If these changes should not result in a new version, you're good to go. If these changes should result in a version bump, you need to add a changeset.

This PR includes no changesets

When changesets are added to this PR, you'll see the packages that this PR includes changesets for and the associated semver types

Click here to learn what changesets are, and how to add one.

Click here if you're a maintainer who wants to add a changeset to this PR

Copy link
Contributor

github-actions bot commented Jan 30, 2025

Size Change: 0 B

Total Size: 539 kB

ℹ️ View Unchanged
Filename Size
apps/vscode/dist/client.js 111 kB
apps/vscode/dist/server.js 245 kB
packages/alert/dist/index.es.js 1.32 kB
packages/alert/dist/index.js 1.39 kB
packages/alert/dist/style.css 897 B
packages/avatar/dist/index.es.js 1.16 kB
packages/avatar/dist/index.js 1.23 kB
packages/avatar/dist/style.css 411 B
packages/banner/dist/index.es.js 624 B
packages/banner/dist/index.js 695 B
packages/banner/dist/style.css 474 B
packages/box/dist/index.es.js 6.86 kB
packages/box/dist/index.js 6.98 kB
packages/box/dist/style.css 2.65 kB
packages/button/dist/index.es.js 1.87 kB
packages/button/dist/index.js 1.94 kB
packages/button/dist/style.css 3 kB
packages/card/dist/index.es.js 688 B
packages/card/dist/index.js 754 B
packages/card/dist/style.css 666 B
packages/chip/dist/index.es.js 674 B
packages/chip/dist/index.js 745 B
packages/chip/dist/style.css 532 B
packages/clipboard/dist/index.es.js 1.49 kB
packages/clipboard/dist/index.js 1.57 kB
packages/clipboard/dist/style.css 750 B
packages/collapsible/dist/index.es.js 856 B
packages/collapsible/dist/index.js 926 B
packages/collapsible/dist/style.css 81 B
packages/columns/dist/index.es.js 579 B
packages/columns/dist/index.js 651 B
packages/columns/dist/style.css 281 B
packages/components/dist/index.es.js 12.8 kB
packages/components/dist/index.js 12.7 kB
packages/components/dist/style.css 7.26 kB
packages/core/dist/index.es.js 961 B
packages/core/dist/index.js 1.29 kB
packages/counter/dist/index.es.js 330 B
packages/counter/dist/index.js 397 B
packages/counter/dist/style.css 248 B
packages/drawer/dist/index.es.js 1.7 kB
packages/drawer/dist/index.js 2.25 kB
packages/drawer/dist/style.css 490 B
packages/dropdown/dist/index.es.js 1.19 kB
packages/dropdown/dist/index.js 1.25 kB
packages/filter/dist/index.es.js 2.26 kB
packages/filter/dist/index.js 2.33 kB
packages/filter/dist/style.css 907 B
packages/focus-trap/dist/index.es.js 267 B
packages/focus-trap/dist/index.js 333 B
packages/form/dist/index.es.js 4.13 kB
packages/form/dist/index.js 4.24 kB
packages/form/dist/style.css 2.21 kB
packages/icons/dist/index.es.js 1.27 kB
packages/icons/dist/index.js 1.34 kB
packages/icons/dist/style.css 549 B
packages/inline-edit/dist/index.es.js 1.57 kB
packages/inline-edit/dist/index.js 1.65 kB
packages/inline-edit/dist/style.css 329 B
packages/inline/dist/index.es.js 572 B
packages/inline/dist/index.js 643 B
packages/inline/dist/style.css 243 B
packages/markdown/dist/index.es.js 967 B
packages/markdown/dist/index.js 1.04 kB
packages/markdown/dist/style.css 217 B
packages/menu/dist/index.es.js 3.82 kB
packages/menu/dist/index.js 3.9 kB
packages/menu/dist/style.css 861 B
packages/modal/dist/index.es.js 2.97 kB
packages/modal/dist/index.js 3.54 kB
packages/modal/dist/style.css 892 B
packages/navigation/dist/index.es.js 2.73 kB
packages/navigation/dist/index.js 2.8 kB
packages/navigation/dist/style.css 866 B
packages/overlay/dist/index.es.js 1.03 kB
packages/overlay/dist/index.js 1.09 kB
packages/pagination/dist/index.es.js 1.15 kB
packages/pagination/dist/index.js 1.23 kB
packages/pagination/dist/style.css 299 B
packages/popover/dist/index.es.js 3.12 kB
packages/popover/dist/index.js 3.62 kB
packages/popover/dist/style.css 523 B
packages/portal/dist/index.es.js 398 B
packages/portal/dist/index.js 457 B
packages/progress-bubbles/dist/index.es.js 1.74 kB
packages/progress-bubbles/dist/index.js 1.81 kB
packages/progress-bubbles/dist/style.css 813 B
packages/progress/dist/index.es.js 1.07 kB
packages/progress/dist/index.js 1.14 kB
packages/progress/dist/style.css 267 B
packages/stack/dist/index.es.js 464 B
packages/stack/dist/index.js 535 B
packages/stack/dist/style.css 181 B
packages/tab-list/dist/index.es.js 728 B
packages/tab-list/dist/index.js 801 B
packages/tab-list/dist/style.css 410 B
packages/table/dist/index.es.js 931 B
packages/table/dist/index.js 1.01 kB
packages/table/dist/style.css 689 B
packages/tag/dist/index.es.js 2.86 kB
packages/tag/dist/index.js 2.94 kB
packages/tag/dist/style.css 743 B
packages/tokens/dist/fonts.css 183 B
packages/tokens/dist/index.css 2.35 kB
packages/tokens/dist/index.es.js 2.89 kB
packages/tokens/dist/index.js 2.94 kB
packages/tokens/dist/media-queries.css 113 B
packages/tokens/dist/themes.css 1.11 kB
packages/tooltip/dist/index.es.js 506 B
packages/tooltip/dist/index.js 581 B
packages/tooltip/dist/style.css 326 B
packages/vars/dist/index.es.js 2.4 kB
packages/vars/dist/index.js 2.47 kB

compressed-size-action

Copy link
Contributor Author

renovate bot commented Jan 30, 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.

@Niznikr Niznikr added the skip changeset To indicate a pull request does not need a changeset label Jan 30, 2025
@Niznikr Niznikr merged commit df37366 into main Jan 30, 2025
17 of 18 checks passed
@Niznikr Niznikr deleted the renovate/vanilla-extract-vite-plugin-5.x branch January 30, 2025 15:51
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
skip changeset To indicate a pull request does not need a changeset
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant