Skip to content

chore(deps): update all non-major dependencies (patch) - autoclosed

Alexandre Boucey requested to merge renovate/patch-all-minor-patch into main

This MR contains the following updates:

Package Type Update Change
@types/node (source) devDependencies patch 18.17.18 -> 18.17.19
github.com/go-playground/validator/v10 require patch v10.15.4 -> v10.15.5
gorm.io/driver/postgres require patch v1.5.2 -> v1.5.4
gorm.io/driver/sqlite require patch v1.5.3 -> v1.5.4
gorm.io/gen require patch v0.3.23 -> v0.3.25
gorm.io/gorm require patch v1.25.4 -> v1.25.6
pinia dependencies patch 2.1.6 -> 2.1.7
prettier (source) devDependencies patch 3.0.1 -> 3.0.3
vue (source) dependencies patch 3.3.4 -> 3.3.13
vue-tsc (source) devDependencies patch 1.8.13 -> 1.8.27
yarn (source) packageManager patch 3.6.3 -> 3.6.4

Release Notes

go-playground/validator (github.com/go-playground/validator/v10)

v10.15.5: Release 10.15.5

Compare Source

What was fixed?

Fixed CIDRIPv4 validation, ty @​martinlehoux for the MR

go-gorm/postgres (gorm.io/driver/postgres)

v1.5.4

Compare Source

v1.5.3

Compare Source

go-gorm/sqlite (gorm.io/driver/sqlite)

v1.5.4

Compare Source

go-gorm/gen (gorm.io/gen)

v0.3.25

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/go-gorm/gen/compare/v0.3.24...v0.3.25

v0.3.24

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/go-gorm/gen/compare/v0.3.23...v0.3.24

go-gorm/gorm (gorm.io/gorm)

v1.25.6

Compare Source

v1.25.5

Compare Source

vuejs/pinia (pinia)

v2.1.7

Compare Source

Please refer to CHANGELOG.md for details.

prettier/prettier (prettier)

v3.0.3

Compare Source

diff

Add preferUnplugged: true to package.json (#​15169 by @​fisker and @​so1ve)

Prettier v3 uses dynamic imports, user will need to unplug Prettier when Yarn's PnP mode is enabled, add preferUnplugged: true to package.json, so Yarn will install Prettier as unplug by default.

Support shared config that forbids require() (#​15233 by @​fisker)

If an external shared config package is used, and the package exports don't have require or default export.

In Prettier 3.0.2 Prettier fails when attempt to require() the package, and throws an error.

Error [ERR_PACKAGE_PATH_NOT_EXPORTED]: No "exports" main defined in <packageName>/package.json
Allow argument of require() to break (#​15256 by @​fisker)
// Input
const plugin = require(
  global.STANDALONE
    ? path.join(__dirname, "../standalone.js")
    : path.join(__dirname, "..")
);

// Prettier 3.0.2
const plugin = require(global.STANDALONE
  ? path.join(__dirname, "../standalone.js")
  : path.join(__dirname, ".."));

// Prettier 3.0.3
const plugin = require(
  global.STANDALONE
    ? path.join(__dirname, "../standalone.js")
    : path.join(__dirname, "..")
);
Do not print trailing commas in arrow function type parameter lists in ts code blocks (#​15286 by @​sosukesuzuki)
<!-- Input -->
```ts
const foo = <T>() => {}
```

<!-- Prettier 3.0.2 -->
```ts
const foo = <T,>() => {}
```

<!-- Prettier 3.0.3 -->
```ts
const foo = <T>() => {}
```
Support TypeScript 5.2 using / await using declaration (#​15321 by @​sosukesuzuki)

Support for the upcoming Explicit Resource Management feature in ECMAScript. using / await using declaration

{
   using foo = new Foo();
   await using bar = new Bar();
}

v3.0.2

Compare Source

diff

Break after = of assignment if RHS is poorly breakable AwaitExpression or YieldExpression (#​15204 by @​seiyab)
// Input
const { section, rubric, authors, tags } = await utils.upsertCommonData(mainData);

// Prettier 3.0.1
const { section, rubric, authors, tags } = await utils.upsertCommonData(
  mainData,
);

// Prettier 3.0.2
const { section, rubric, authors, tags } =
  await utils.upsertCommonData(mainData);
Do not add trailing comma for grouped scss comments (#​15217 by @​auvred)
/* Input */
$foo: (
	'property': (),
	// comment 1
	// comment 2
)

/* Prettier 3.0.1 */
$foo: (
  "property": (),
  // comment 1
  // comment 2,
);

/* Prettier 3.0.2 */
$foo: (
  "property": (),
  // comment 1
  // comment 2
);
Print declare and export keywords for nested namespace (#​15249 by @​sosukesuzuki)
// Input
declare namespace abc1.def {}
export namespace abc2.def {}

// Prettier 3.0.1
namespace abc1.def {}
namespace abc2.def {}

// Prettier 3.0.2
declare namespace abc1.def {}
export namespace abc2.def {}
vuejs/core (vue)

v3.3.13

Compare Source

Bug Fixes

v3.3.12

Compare Source

Bug Fixes

v3.3.11

Compare Source

Bug Fixes

v3.3.10

Compare Source

Bug Fixes
Performance Improvements
  • optimize on* prop check (38aaa8c)
  • runtime-dom: cache modifier wrapper functions (da4a4fb), closes #​8882
  • v-on: constant handlers with modifiers should not be treated as dynamic (4d94ebf)

v3.3.9

Compare Source

Bug Fixes

v3.3.8

Compare Source

Bug Fixes

v3.3.7

Compare Source

Please refer to CHANGELOG.md for details.

v3.3.6

Compare Source

Please refer to CHANGELOG.md for details.

v3.3.5

Compare Source

Please refer to CHANGELOG.md for details.

vuejs/language-tools (vue-tsc)

v1.8.27

Compare Source

v1.8.26

Compare Source

v1.8.25

Compare Source

  • fix(component-type-helpers): correct type inference for FunctionalComponent (#​3766) - thanks @​pinguet62
  • fix(language-core): camelize props for dynamic component (#​3774) - thanks @​so1ve

v1.8.24

Compare Source

  • refactor(component-type-helpers): vue 2 types now move to vue-component-type-helpers/vue2 (#​3404)
  • feat(language-core): expose defineEmits's arg and typeArg in parseScriptSetupRanges (#​3710) - thanks @​so1ve
  • fix(language-core): strictTemplates fails to report unknown components (#​3539)
  • fix(language-core): script syntax breaks if script options does not have trailing comma (#​3755)
  • fix(language-core): script syntax breaks if options are enclosed in parentheses (#​3756)
  • fix(language-core): allow using as with multiple <script> blocks (#​3733) - thanks @​so1ve
  • fix(language-core): component type narrowing not working in template
  • fix(language-core): incremental insertion incorrect if input <script setup> tag above <script> tag (#​3743) - thanks @​so1ve
  • fix(language-core): don't camelize attributes for plain elements (#​3750) - thanks @​rchl
  • fix(vscode): syntax highlighting for .prop shorthand (#​3729) - thanks @​so1ve
Volar.js 1.11.1 updates:

v1.8.22

Compare Source

  • fix: experimentalResolveStyleCssClasses: "always" not working (#​3689) - thanks @​maIIady
  • fix: __VLS_Prettify missing for dts build when uses withDefaults() (#​3691)

v1.8.21

Compare Source

Volar.js 1.10.5 updates:

v1.8.20

Compare Source

  • feat: added Italian integration documentation
  • feat: enforce v-bind argument to be an object (#​3666) - thanks @​so1ve
  • fix: JSDoc comments not emitted when using type-only defineProps macro (#​3645)
  • fix: autocomplete for directive comments without a space (#​3665) - thanks @​so1ve
  • fix: fix slot type when using a interpolation in template string (#​3657) - thanks @​so1ve
  • fix: add autocomplete for v-slot parameters (#​3661) - thanks @​so1ve
  • fix: export correct SlotsPropertyName for vue2 (#​3669) - thanks @​zhiyuanzmj
  • fix(types): infer discriminated unions in child component props (#​3672) - thanks @​davidmatter
  • fix: access to slots directly (#​3671) - thanks @​so1ve
  • fix: autocomplete not working for $event (#​3668) - thanks @​so1ve
  • perf: remove duplicate virtual code for native tags
  • chore: rename volar to vue in diagnostics (#​3667) - thanks @​so1ve
  • chore: publish ts plugin to open-vsx (#​3589) - thanks @​brc-dd

v1.8.19

Compare Source

  • feat: no longer checking save time (#​3650)
  • fix(ts-plugin): tsserver doesnt have updated list of external files when new vue files are added (required TS 5.3) (#​3555) (#​3649)
  • fix: false positive error when accessing local variables in defineProps parameter (#​3643) (#​3644) - thanks @​so1ve

v1.8.18

Compare Source

Upgrade required VSCode version to 1.82.0 (#​3642)

v1.8.17

Compare Source

v1.8.16

Compare Source

  • fix: merge default export's properties properly (#​3600) - thanks @​so1ve
  • fix: accurate exposed type with refs in generic component (#​3604) - thanks @​so1ve
  • fix: make emits type correct when user assigns emit function a custom name (#​3624) - thanks @​so1ve
Volar.js 1.10.3 updates:

v1.8.15

Compare Source

  • fix: props type missing in JS component context (#​3592)
  • fix: ignore $emit return type for Vue 2 (#​3596)

v1.8.14

Compare Source

yarnpkg/berry (yarn)

v3.6.4

Compare Source


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

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

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


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

This MR has been generated by Renovate Bot.

Merge request reports