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

Update all non-major dependencies #5

Merged
merged 2 commits into from
Apr 25, 2024
Merged

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Apr 25, 2024

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@​egoist/tailwindcss-icons ^1.7.2 -> ^1.7.4 age adoption passing confidence
@iconify-json/heroicons ^1.1.19 -> ^1.1.20 age adoption passing confidence
@iconify-json/lucide ^1.1.154 -> ^1.1.185 age adoption passing confidence
@nuxt/devtools (source) ^1.1.5 -> ^1.2.0 age adoption passing confidence
@nuxt/eslint-config (source) ^0.3.6 -> ^0.3.9 age adoption passing confidence
@tailwindcss/typography ^0.5.10 -> ^0.5.12 age adoption passing confidence
tailwind-merge ^2.2.2 -> ^2.3.0 age adoption passing confidence
tailwindcss (source) ^3.4.1 -> ^3.4.3 age adoption passing confidence
vitest (source) ^1.4.0 -> ^1.5.2 age adoption passing confidence
vue-sonner ^1.0.3 -> ^1.1.2 age adoption passing confidence
zod (source) ^3.22.4 -> ^3.23.4 age adoption passing confidence

Release Notes

nuxt/devtools (@​nuxt/devtools)

v1.2.0

Compare Source

Bug Fixes

1.1.5 (2024-03-28)

Features

1.1.4 (2024-03-26)

Bug Fixes

1.1.3 (2024-03-21)

Bug Fixes

1.1.2 (2024-03-21)

Bug Fixes
Features

1.1.1 (2024-03-20)

Bug Fixes
nuxt/eslint (@​nuxt/eslint-config)

v0.3.9

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v0.3.8

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v0.3.7

Compare Source

   🚀 Features
    View changes on GitHub
tailwindlabs/tailwindcss-typography (@​tailwindcss/typography)

v0.5.12

Compare Source

Added
  • Use logical properties for better RTL support (#​323)

v0.5.11

Compare Source

Added
Fixed
  • Fix space between <figcaption> and <video> (#​339)
dcastil/tailwind-merge (tailwind-merge)

v2.3.0

Compare Source

New Features
Documentation

Full Changelog: dcastil/tailwind-merge@v2.2.2...v2.3.0

Thanks to @​brandonmcconnell, @​manavm1990, @​langy and @​jamesreaco for sponsoring tailwind-merge! ❤️

tailwindlabs/tailwindcss (tailwindcss)

v3.4.3

Compare Source

v3.4.2

Compare Source

Fixed
  • Ensure max specificity of 0,0,1 for button and input Preflight rules (#​12735)
  • Improve glob handling for folders with (, ), [ or ] in the file path (#​12715)
  • Split :has rules when using experimental.optimizeUniversalDefaults (#​12736)
  • Sort arbitrary properties alphabetically across multiple class lists (#​12911)
  • Add mix-blend-plus-darker utility (#​12923)
  • Ensure dashes are allowed in variant modifiers (#​13303)
  • Fix crash showing completions in Intellisense when using a custom separator (#​13306)
  • Transpile import.meta.url in config files (#​13322)
  • Reset letter spacing for form elements (#​13150)
  • Fix missing xx-large and remove double x-large absolute size (#​13324)
  • Don't error when encountering nested CSS unless trying to @apply a class that uses nesting (#​13325)
  • Ensure that arbitrary properties respect important configuration (#​13353)
  • Change dark mode selector so @apply works correctly with pseudo elements (#​13379)
vitest-dev/vitest (vitest)

v1.5.2

   🐞 Bug Fixes
    View changes on GitHub

v1.5.1

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v1.5.0

Compare Source

xiaoluoboding/vue-sonner (vue-sonner)

v1.1.2

Compare Source

Bug Fixes
  • changing index operator, adding '?' operator (c03d9dc)
  • resolve #​56 via checking for array type (9e6d7e5)

v1.1.1

Compare Source

Features
  • add @microsoft/api-extractor to merge all types files in one d.ts file (83f27fa)

v1.1.0

Compare Source

Bug Fixes
  • fixed the close button do not have fade animation bug (6288840)
  • fixed the default toast render the icon element bug (0f57a19)

1.0.4 (2024-02-29)

Bug Fixes
  • blurry text in chromium (c9aa8ba)
Features
  • allow setting position when creating a toast (0326cea)
  • change the style (4b73c89)

1.0.3 (2024-01-24)

Bug Fixes
Features
  • inject-css with simple vite plugin API inspired by bunchee inline-css (f0ca814)
  • add base @vue/tsconfig, cjs instead of umd.cjs (c0a4d5c)
  • generate declaration files with vue-tsc (76311fb)

1.0.2 (2023-11-07)

Bug Fixes

1.0.1 (2023-11-03)

Features
  • make promise return promise (9608865)

v1.0.4

Compare Source

Bug Fixes
  • blurry text in chromium (c9aa8ba)
Features
  • allow setting position when creating a toast (0326cea)
  • change the style (4b73c89)
colinhacks/zod (zod)

v3.23.4

Compare Source

Commits:

v3.23.3

Compare Source

v3.23.2

Compare Source

Commits:

v3.23.1

Compare Source

v3.23.0

Compare Source

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()

Zod can now validate ISO 8601 date strings. Thanks @​igalklebanov! https://github.com/colinhacks/zod/pull/1766

const schema = z.string().date();
schema.parse("2022-01-01"); // OK
z.string().time()

Zod can now validate ISO 8601 time strings. Thanks @​igalklebanov! https://github.com/colinhacks/zod/pull/1766

const schema = z.string().time();
schema.parse("12:00:00"); // OK

You can specify sub-second precision using the precision option:

const schema = z.string().time({ precision: 3 });
schema.parse("12:00:00.123"); // OK
schema.parse("12:00:00.123456"); // Error
schema.parse("12:00:00"); // Error
z.string().duration()

Zod can now validate ISO 8601 duration strings. Thanks @​mastermatt! https://github.com/colinhacks/zod/pull/3265

const schema = z.string().duration();
schema.parse("P3Y6M4DT12H30M5S"); // OK
Improvements to z.string().datetime()

Thanks @​bchrobot https://github.com/colinhacks/zod/pull/2522

You can now allow unqualified (timezone-less) datetimes using the local: true flag.

const schema = z.string().datetime({ local: true });
schema.parse("2022-01-01T12:00:00"); // OK

Plus, Zod now validates the day-of-month correctly to ensure no invalid dates (e.g. February 30th) pass validation. Thanks @​szamanr! https://github.com/colinhacks/zod/pull/3391

z.string().base64()

Zod can now validate base64 strings. Thanks @​StefanTerdell! https://github.com/colinhacks/zod/pull/3047

const schema = z.string().base64();
schema.parse("SGVsbG8gV29ybGQ="); // OK
Improved discriminated unions

The following can now be used as discriminator keys in z.discriminatedUnion():

  • ZodOptional
  • ZodNullable
  • ZodReadonly
  • ZodBranded
  • ZodCatch
const schema = z.discriminatedUnion("type", [
  z.object({ type: z.literal("A").optional(), value: z.number() }),
  z.object({ type: z.literal("B").nullable(), value: z.string() }),
  z.object({ type: z.literal("C").readonly(), value: z.boolean() }),
  z.object({ type: z.literal("D").brand<"D">(), value: z.boolean() }),
  z.object({ type: z.literal("E").catch("E"), value: z.unknown() }),
]);
Misc

Breaking changes

There are no breaking changes to the public API of Zod. However some changes can impact ecosystem tools that rely on Zod internals.

ZodFirstPartySchemaTypes

Three new types have been added to the ZodFirstPartySchemaTypes union. This may impact some codegen libraries. https://github.com/colinhacks/zod/pull/3247

+  | ZodPipeline<any, any>
+  | ZodReadonly<any>
+  | ZodSymbol;
Default generics in ZodType

The third argument of the ZodType base class now defaults to unknown. This makes it easier to define recursive schemas and write generic functions that accept Zod schemas.

- class ZodType<Output = any, Def extends ZodTypeDef = ZodTypeDef, Input = Output> {}
+ class ZodType<Output = unknown, Def extends ZodTypeDef = ZodTypeDef, Input = unknown> {}
Unrecognized keys in .pick() and .omit()

This version fixes a bug where unknown keys were accidentally accepted in .pick() and omit(). This has been fixed, which could cause compiler errors in some user code. https://github.com/colinhacks/zod/pull/3255

z.object({ 
  name: z.string() 
}).pick({
  notAKey: true // no longer allowed
})

Bugfixes and performance

Docs and ecosystem

New Contributors

Full Changelog: colinhacks/zod@v3.22.4...v3.23.0

v3.22.5

Compare Source


Configuration

📅 Schedule: Branch creation - "after 2am and before 3am" (UTC), Automerge - "after 1am and before 2am" (UTC).

🚦 Automerge: Enabled.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


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

This PR has been generated by Mend Renovate. View repository job log here.

@renovate renovate bot force-pushed the renovate/all-minor-patch branch from c2cc291 to 026b476 Compare April 25, 2024 10:11
Copy link

Hey there and thank you for opening this pull request! 👋🏼

We require pull request titles to follow the Conventional Commits specification and it looks like your proposed title needs to be adjusted.

Details:

No release type found in pull request title "Update all non-major dependencies". Add a prefix to indicate what kind of release this pull request corresponds to. For reference, see https://www.conventionalcommits.org/

Available types:
 - breaking
 - feat
 - fix
 - build
 - ci
 - docs
 - enhancement
 - chore
 - performance
 - style
 - test
 - refactor
 - revert

@HugoRCD HugoRCD merged commit d56d9cf into main Apr 25, 2024
2 of 4 checks passed
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