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 all non-major dependencies #1216

Merged
merged 4 commits into from
Feb 7, 2024

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jan 8, 2024

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@nuxt/kit (source) 3.10.0 -> 3.10.1 age adoption passing confidence
@nuxt/kit (source) ^3.10.0 -> ^3.10.1 age adoption passing confidence
@nuxt/schema (source) 3.10.0 -> 3.10.1 age adoption passing confidence
@​nuxt/ui-pro 0.7.5-28454083.00e791c -> 0.7.5-28455036.3e69602 age adoption passing confidence
joi ^17.11.1 -> ^17.12.1 age adoption passing confidence
nuxt (source) ^3.10.0 -> ^3.10.1 age adoption passing confidence
prettier (source) ^3.2.4 -> ^3.2.5 age adoption passing confidence
scule ^1.2.0 -> ^1.3.0 age adoption passing confidence
ufo ^1.3.2 -> ^1.4.0 age adoption passing confidence
valibot (source) ^0.25.0 -> ^0.28.1 age adoption passing confidence

Release Notes

nuxt/nuxt (@​nuxt/kit)

v3.10.1

Compare Source

3.10.1 is a regularly-scheduled patch release.

✅ Upgrading

As usual, our recommendation for upgrading is to run:

nuxi upgrade --force

This will refresh your lockfile as well, and ensures that you pull in updates from other dependencies that Nuxt relies on, particularly in the vue and unjs ecosystems.

👉 Changelog

compare changes

🔥 Performance
  • nuxt: Clear route meta build cache when pages change (#​25514)
🩹 Fixes
  • nuxt: Fix syntax error when serializing route meta (#​25515)
  • nuxt: Only request animation frame on client (#​25569)
  • schema: Correctly set value for app.viewTransition (#​25581)
  • nuxt: Correct return type of refresh functions (#​25568)
  • nuxt: Broadcast cookie change in correct format (#​25598)
  • nuxt: Generate typed route declarations when building (#​25593)
  • nuxt: Remove key from useId type signature (#​25614)
  • nuxt: Remove $ from generated id in useId (#​25615)
  • nuxt: Don't set default rel for same-site external links (#​25600)
  • nuxt: Warn if inheritAttrs: false when using useId (#​25616)
  • nuxt: Fetch non-server rendered islands when hydrating (#​25613)
  • nuxt: Don't check page/layout usage when redirecting (#​25628)
💅 Refactors
📖 Documentation
  • Correct typo (#​25523)
  • Add and link to a section on Nuxt context (#​23546)
  • Explain how to set <NuxtLink> defaults in nuxt config (#​25610)
🏡 Chore
  • Use pathe in internal tests (e33cec958)
  • nuxt: Rename nuxt -> nuxtApp internally for consistency (c5d5932f5)
🤖 CI
  • Fix playwright cache (#​25527)
  • Retry flaky test when running in Windows with Webpack (#​25536)
  • Retry flaky test when running in Windows with Webpack (#​25543)
  • Retry flaky test when using Webpack (#​25550)
  • Simplify label PR workflow (#​25579)
❤️ Contributors
prettier/prettier (prettier)

v3.2.5

Compare Source

diff

Support Angular inline styles as single template literal (#​15968 by @​sosukesuzuki)

Angular v17 supports single string inline styles.

// Input
@&#8203;Component({
  template: `<div>...</div>`,
  styles: `h1 { color: blue; }`,
})
export class AppComponent {}

// Prettier 3.2.4
@&#8203;Component({
  template: `<div>...</div>`,
  styles: `h1 { color: blue; }`,
})
export class AppComponent {}

// Prettier 3.2.5
@&#8203;Component({
  template: `<div>...</div>`,
  styles: `
    h1 {
      color: blue;
    }
  `,
})
export class AppComponent {}
Unexpected embedded formatting for Angular template (#​15969 by @​JounQin)

Computed template should not be considered as Angular component template

// Input
const template = "foobar";

@&#8203;Component({
  [template]: `<h1>{{       hello }}</h1>`,
})
export class AppComponent {}

// Prettier 3.2.4
const template = "foobar";

@&#8203;Component({
  [template]: `<h1>{{ hello }}</h1>`,
})
export class AppComponent {}

// Prettier 3.2.5
const template = "foobar";

@&#8203;Component({
  [template]: `<h1>{{       hello }}</h1>`,
})
export class AppComponent {}
Use "json" parser for tsconfig.json by default (#​16012 by @​sosukesuzuki)

In v2.3.0, we introduced "jsonc" parser which adds trialing comma by default.

When adding a new parser we also define how it will be used based on the linguist-languages data.

tsconfig.json is a special file used by TypeScript, it uses .json file extension, but it actually uses the JSON with Comments syntax. However, we found that there are many third-party tools not recognize it correctly because of the confusing .json file extension.

We decide to treat it as a JSON file for now to avoid the extra configuration step.

To keep using the "jsonc" parser for your tsconfig.json files, add the following to your .pretterrc file

{
  "overrides": [
    {
      "files": ["tsconfig.json", "jsconfig.json"],
      "options": {
        "parser": "jsonc"
      }
    }
  ]
}
unjs/scule (scule)

v1.3.0

Compare Source

compare changes

🚀 Enhancements
🏡 Chore
❤️ Contributors
unjs/ufo (ufo)

v1.4.0

Compare Source

compare changes

🚀 Enhancements
  • Add withFragment utility (#​193)
  • Add withoutFragment util (#​199)
🔥 Performance
  • withFragment: Early return when no hash changes required (d6ce037)
🩹 Fixes
  • encodeQueryValue: Encode the slash character (#​198)
  • Stringify protocol-relative URLs (#​207)
  • withFragment: Use encodeHash for encoding (48237ab)
💅 Refactors
  • resolveUrl: Decouple from $URL (#​186)
  • Deprecate $URL and createURL (f1af9b3)
  • normalizeURL: Decouple from $URL (9013029)
  • withoutFragment: Decouple from withFragment (712b8d5)
📖 Documentation
🏡 Chore
  • Update dependencies and lockfile (21e644e)
  • Format readme with prettier (6b00230)
  • Gitignore vitest temp files (89be2d1)
  • Update docs (5ab6d16)
❤️ Contributors
  • Pooya Parsa (@​pi0)
  • Daniel Acuña
  • Diptesh Choudhuri <ignisda2001@​gmail.com>
  • Daniel Roe (@​danielroe)
  • Petr Kolonicz
fabian-hiller/valibot (valibot)

v0.28.1

Compare Source

Many thanks to @​compulim for contributing to this release.

  • Fix bug in union and unionAsync schema for transformed inputs (issue #​420)

v0.28.0

Compare Source

Many thanks to @​LorisSigrist, @​samuelstroschein, @​gmaxlev, @​thundermiracle, @​ivanhofer, @​CanRau, @​zkulbeda, @​lucaschultz, @​paoloricciuti, @​hyunbinseo, and @​bertez for contributing to this release.

Note: The library has been revised and refactored. Therefore, not every change is listed in detail.

  • Add i18n feature, global configurations and improve error messages (pull request #​397)
  • Add number and bigint to PicklistOptions type (issue #​378)
  • Fix missing export of forwardAsync method (issue #​412)

v0.27.1

Compare Source

Many thanks to @​Omochice for contributing to this release.

  • Fix missing file extension for Deno (pull request #​387)

v0.27.0

Compare Source

Many thanks to @​pschiffmann for contributing to this release.

  • Remove NonNullable, NonNullish and NonOptional type
  • Add NonNullableInput, NonNullableOutput, NonNullishInput, NonNullishOutput, NonOptionalInput and NonOptionalOutput type
  • Improve type signature of omit, omitAsync, pick and pickAsync schema to also allow read-only object keys (issue #​380)
  • Fix type of pipe argument at intersect and intersectAsync schema

v0.26.0

Compare Source

Many thanks to @​WtfJoke, @​dboune, @​alexabw and @​aypotu for contributing to this release.

  • Improve performance of enum_ and enumAsync schema by caching values
  • Change ISO timestamp regex to support timestamps with lower and higher millisecond accuracy (pull request #​353)
  • Change issue handling of union, unionAsync, variant and variantAsync schema to improve developer experience
  • Fix bug in getDefaults, getDefaultsAsync, getFallbacks and getFallbacksAsync schema for falsy but not undefined values (issue #​356)
  • Fix type of pipe argument at union, unionAsync, variant and variantAsync schema
  • Fix bug that broke pipeline execution in union, unionAsync, variant and variantAsync schema (issue #​364)
  • Fix typo in type name of startsWith validation action (pull request #​375)

Migration guide

The changes in union, unionAsync, variant and variantAsync are breaking changes and may result in different behavior when returning issues. Please create an issue if you have questions about this.

import * as v from 'valibot';

// Change this
const UnionSchema = v.union(
  [v.string([v.email()]), v.literal('')],
  'Not a valid email'
);

// To that
const UnionSchema = v.union([
  v.string([v.email('Not a valid email')]),
  v.literal(''),
]);

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), 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.

👻 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.

Copy link

vercel bot commented Jan 8, 2024

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

Name Status Preview Updated (UTC)
ui ✅ Ready (Inspect) Visit Preview Feb 7, 2024 3:01pm

@renovate renovate bot force-pushed the renovate/all-minor-patch branch from f736eb9 to a563d4e Compare January 8, 2024 16:30
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from a563d4e to 7a3e4d8 Compare January 9, 2024 01:00
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 7a3e4d8 to 5c49195 Compare January 9, 2024 11:12
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 5c49195 to b3504f5 Compare January 9, 2024 16:14
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from b3504f5 to a4c2860 Compare January 9, 2024 18:57
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from a4c2860 to 10f9dfe Compare January 10, 2024 15:21
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 10f9dfe to 41e02ed Compare January 10, 2024 20:28
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 41e02ed to 3edcca9 Compare January 11, 2024 12:41
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 3edcca9 to b52a999 Compare January 11, 2024 17:21
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from b52a999 to 78f36e5 Compare January 12, 2024 10:53
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 78f36e5 to 0ee059c Compare January 12, 2024 14:36
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 0ee059c to b0cb262 Compare January 12, 2024 17:09
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from b0cb262 to a2fdd93 Compare January 12, 2024 20:31
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from a2fdd93 to 4b1f9cc Compare January 13, 2024 04:42
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 5053150 to 0d10371 Compare February 5, 2024 17:07
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 0d10371 to 9b8ef38 Compare February 6, 2024 03:14
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 9b8ef38 to b54a530 Compare February 6, 2024 09:51
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from b54a530 to 45749ee Compare February 6, 2024 11:43
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 45749ee to 7227c99 Compare February 6, 2024 12:07
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 7227c99 to aa40cad Compare February 6, 2024 13:22
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from aa40cad to 315a7fe Compare February 6, 2024 15:14
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 315a7fe to 1ff36ee Compare February 6, 2024 18:52
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 1ff36ee to 4a0f364 Compare February 7, 2024 00:33
Copy link
Contributor Author

renovate bot commented Feb 7, 2024

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.

@benjamincanac benjamincanac merged commit 98a2d0f into dev Feb 7, 2024
2 checks passed
@benjamincanac benjamincanac deleted the renovate/all-minor-patch branch February 7, 2024 15:03
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