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鈥檒l occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: bump the nuxt group across 1 directory with 4 updates #2406

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github May 2, 2024

Bumps the nuxt group with 4 updates in the / directory: @nuxtjs/tailwindcss, zod, @bg-dev/nuxt-naiveui and vite.

Updates @nuxtjs/tailwindcss from 6.11.4 to 6.12.0

Release notes

Sourced from @鈥媙uxtjs/tailwindcss's releases.

v6.12.0

compare changes

It's here. First-class HMR 馃敟

After working on rewriting how the config gets loaded, the module went through a big internal rewrite for us to support native module invalidation for your configuration files; this means that you can make changes to your Tailwind configuration files without restarting your Nuxt server. This comes with ZERO breaking changes, but you may face a warning in your console that may not allow you to use this latest feature:

image

To eliminate this, check where you are using Tailwind plugins in your project (either in nuxt.config, a hook, or a module such as nuxt/ui), and rather than passing these plugins into the inline module configuration, create a separate config file that you can pass to the configPath option of the module (not required if you provide this in tailwind.config as the module already picks that). If you are unable to resolve this, you can also specify quiet: true to the module configuration while a dependency module may provide a release with this update.

We have tested this rewrite intensively and will appreciate feedback on these changes, delivering any bugfixes with this as soon as possible. Thank you for your patience 鉂わ笍

馃殌 Enhancements

  • First class HMR (#818)

馃摉 Documentation

  • Update configuration docs (#827)
  • Use new nuxi module add command in installation (#829)
  • Update classRegex, closes #824 (#824)

馃彙 Chore

  • Remove unneeded postcss-custom-properties plugin (#836)
  • Migrate to eslint v9 (#834)
  • Update deps (87fb919)

鉂わ笍 Contributors

Changelog

Sourced from @鈥媙uxtjs/tailwindcss's changelog.

v6.12.0

compare changes

馃殌 Enhancements

  • First class hmr (#818)

馃拝 Refactors

  • First class HMR support (#795)
  • First class HMR support " (#795, #817)

馃摉 Documentation

  • Update configuration docs (#827)
  • Use new nuxi module add command in installation (#829)
  • Update classRegex, closes #824 (#824)

馃彙 Chore

  • Remove unneeded postcss-custom-properties plugin (#836)
  • Migrate to eslint v9 (#834)
  • Update deps (87fb919)

鉂わ笍 Contributors

Commits

Updates zod from 3.22.4 to 3.23.5

Release notes

Sourced from zod's releases.

v3.23.5

Commits:

  • 110b8211f991b3e060ab2da4fec7b63d600439ad Update README_ZH.md (#3433)
  • c1910bdfc98709b8f14231e2cefc5a3be401e3ee Made ZodEnum take readonly string array (#3444)
  • 541a862e978f96eb391849a6bf16be84231aa1b3 3.23.5

v3.23.4

Commits:

  • 157b18d742c86d85b26a8421af46ad6d6d6b6ea7 Add 3.23 announcement
  • aedf93f1435a29463d915c3be45b4dcbeefa8cc1 Revert change to default Input
  • 45107f7a7230fe48ee24dc37e621422c9dc64ec4 v3.23.4

v3.23.3

Commits:

  • 103d2436f85872ca0e0e6247652989cc93d46a39 3.23.3

v3.23.2

Commits:

  • c340558d14f5222a2ca177e0591463c06cc5edc3 Update protocol
  • ef588d036f3e98b832796e9a681dbaf097631ea0 Fix t3env
  • 9df70dd71195df951c43f180fbe5e64ea1f835df 3.23.2

v3.23.1

This changes the default generics back to any to prevent breakages with common packager like @hookform/resolvers:

- class ZodType<Output = unknown, Def extends ZodTypeDef = ZodTypeDef, Input = unknown> {}
+ class ZodType<Output = any, Def extends ZodTypeDef = ZodTypeDef, Input = any> {}

Commits:

  • 59f48723d36c423d9e10b3bd52325a7998314230 Change unknown -> any for ZodType defaults
  • 2ff5ceb428634de0ea4501495039c05a8e95b60a 3.23.1

v3.23.0

Zod 3.23 is now available. This is the final 3.x release before Zod 4.0. To try it out:

npm install zod

Features

z.string().date()

... (truncated)

Commits

Updates @bg-dev/nuxt-naiveui from 1.13.0 to 1.13.1

Release notes

Sourced from @鈥媌g-dev/nuxt-naiveui's releases.

v1.13.1

compare changes

馃┕ Fixes

  • dark theme: Change active tab opacity (5109fe3)
  • dark theme: Change alert opacity (9cdd652)

馃拝 Refactors

  • theme generator: Change default colors (1a0256d)

馃摝 Build

  • icons: Change default collection url (#70)

馃寠 Types

  • Use vue-router route type in navigation components (#69)

鉂わ笍 Contributors

Changelog

Sourced from @鈥媌g-dev/nuxt-naiveui's changelog.

v1.13.1

compare changes

馃┕ Fixes

  • dark theme: Change active tab opacity (5109fe3)
  • dark theme: Change alert background opacity (9cdd652)

馃拝 Refactors

  • No significant change (356ad3c)
  • theme generator: Change default colors (1a0256d)

馃摝 Build

  • icons: Change default collection url (#70)

馃寠 Types

  • Use vue-router route type in navigation components (#69)

馃彙 Chore

  • playground: Add components (1f717d1)

鉂わ笍 Contributors

Commits
  • a54a275 chore(release): v1.13.1
  • d2bfc6e build(icons): change default collection url (#70)
  • 1f717d1 chore(playground): add components
  • 9cdd652 fix(dark theme): change alert background opacity
  • 5109fe3 fix(dark theme): change active tab opacity
  • 1a0256d refactor(theme generator): change default colors
  • 356ad3c refactor: no significant change
  • 2de1c2d types: use vue-router route type in navigation components (#69)
  • 78daaea chore(release): v1.13.0
  • a599da6 build(icons): resolve public dir relative to srcDir not rootDir
  • See full diff in compare view

Updates vite from 5.2.8 to 5.2.10

Changelog

Sourced from vite's changelog.

5.2.10 (2024-04-20)

5.2.9 (2024-04-15)

Commits

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/nuxt-491a5ac7e1 branch from 88b3e54 to b12b48f Compare May 2, 2024 05:27
Copy link

github-actions bot commented May 2, 2024

Bumps the nuxt group with 4 updates in the / directory: [@nuxtjs/tailwindcss](https://github.com/nuxt-modules/tailwindcss), [zod](https://github.com/colinhacks/zod), [@bg-dev/nuxt-naiveui](https://github.com/becem-gharbi/nuxt-naiveui) and [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite).


Updates `@nuxtjs/tailwindcss` from 6.11.4 to 6.12.0
- [Release notes](https://github.com/nuxt-modules/tailwindcss/releases)
- [Changelog](https://github.com/nuxt-modules/tailwindcss/blob/main/CHANGELOG.md)
- [Commits](nuxt-modules/tailwindcss@v6.11.4...v6.12.0)

Updates `zod` from 3.22.4 to 3.23.5
- [Release notes](https://github.com/colinhacks/zod/releases)
- [Changelog](https://github.com/colinhacks/zod/blob/master/CHANGELOG.md)
- [Commits](colinhacks/zod@v3.22.4...v3.23.5)

Updates `@bg-dev/nuxt-naiveui` from 1.13.0 to 1.13.1
- [Release notes](https://github.com/becem-gharbi/nuxt-naiveui/releases)
- [Changelog](https://github.com/becem-gharbi/nuxt-naiveui/blob/main/CHANGELOG.md)
- [Commits](becem-gharbi/nuxt-naiveui@v1.13.0...v1.13.1)

Updates `vite` from 5.2.8 to 5.2.10
- [Release notes](https://github.com/vitejs/vite/releases)
- [Changelog](https://github.com/vitejs/vite/blob/main/packages/vite/CHANGELOG.md)
- [Commits](https://github.com/vitejs/vite/commits/v5.2.10/packages/vite)

---
updated-dependencies:
- dependency-name: "@nuxtjs/tailwindcss"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: nuxt
- dependency-name: zod
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: nuxt
- dependency-name: "@bg-dev/nuxt-naiveui"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: nuxt
- dependency-name: vite
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: nuxt
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/nuxt-491a5ac7e1 branch from b12b48f to 09fb074 Compare May 2, 2024 05:55
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.

None yet

0 participants