batijs / bati

Next-gen scaffolder. Get started with fully-functional apps, and choose any tool you want.
https://batijs.dev
MIT License
194 stars 11 forks source link

chore(deps): update all non-major dependencies #270

Closed renovate[bot] closed 2 weeks ago

renovate[bot] commented 2 weeks ago

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@biomejs/biome (source) 1.8.0 -> 1.8.1 age adoption passing confidence
@eslint/js (source) ^9.4.0 -> ^9.5.0 age adoption passing confidence
@hono/node-server ^1.11.2 -> ^1.11.3 age adoption passing confidence
@hono/vite-dev-server ^0.12.1 -> ^0.12.2 age adoption passing confidence
@typescript-eslint/eslint-plugin (source) ^7.12.0 -> ^7.13.0 age adoption passing confidence
@typescript-eslint/parser (source) ^7.12.0 -> ^7.13.0 age adoption passing confidence
@typescript-eslint/utils (source) ^7.12.0 -> ^7.13.0 age adoption passing confidence
@vue/compiler-sfc (source) ^3.4.27 -> ^3.4.29 age adoption passing confidence
@vue/server-renderer (source) ^3.4.27 -> ^3.4.29 age adoption passing confidence
drizzle-kit ^0.22.6 -> ^0.22.7 age adoption passing confidence
fastify (source) ^4.27.0 -> ^4.28.0 age adoption passing confidence
globals ^15.4.0 -> ^15.6.0 age adoption passing confidence
hono (source) ^4.4.4 -> ^4.4.6 age adoption passing confidence
prettier (source) ^3.3.1 -> ^3.3.2 age adoption passing confidence
tsx (source) ^4.15.1 -> ^4.15.6 age adoption passing confidence
turbo (source) ^2.0.3 -> ^2.0.4 age adoption passing confidence
typescript-eslint (source) ^7.12.0 -> ^7.13.0 age adoption passing confidence
vike ^0.4.174 -> ^0.4.176 age adoption passing confidence
vike-react ^0.4.13 -> ^0.4.14 age adoption passing confidence
vike-vue ^0.7.2 -> ^0.7.3 age adoption passing confidence
vite (source) ^5.2.13 -> ^5.3.1 age adoption passing confidence
vue (source) ^3.4.27 -> ^3.4.29 age adoption passing confidence

Release Notes

biomejs/biome (@​biomejs/biome) ### [`v1.8.1`](https://togithub.com/biomejs/biome/blob/HEAD/CHANGELOG.md#v181-2024-06-10) [Compare Source](https://togithub.com/biomejs/biome/compare/378c05edd47608a1b8cba725564c807b2e772bd6...39db99b1cd087d6aa46ecfecba6adbfa0d45a303) ##### Analyzer ##### CLI ##### Bug fixes - Fix [#​3069](https://togithub.com/biomejs/biome/issues/3069), prevent overwriting paths when using `--staged` or `--changed` options. Contributed by [@​unvalley](https://togithub.com/unvalley) - Fix a case where the file link inside a diagnostic wasn't correctly displayed inside a terminal run by VSCode. Contributed by [@​uncenter](https://togithub.com/uncenter) ##### Configuration ##### Bug fixes - Fix [#​3067](https://togithub.com/biomejs/biome/issues/3067), by assigning the correct default value to `indentWidth`. Contributed by [@​ematipico](https://togithub.com/ematipico) ##### Editors ##### Formatter ##### Bug fixes - Fix the bug where whitespace after the & character in CSS nesting was incorrectly trimmed, ensuring proper targeting of child classes [#​3061](https://togithub.com/biomejs/biome/issues/3061). Contributed by [@​denbezrukov](https://togithub.com/denbezrukov) - Fix [#​3068](https://togithub.com/biomejs/biome/issues/3068) where the CSS formatter was inadvertently converting variable declarations and function calls to lowercase. Contributed by [@​denbezrukov](https://togithub.com/denbezrukov) - Fix the formatting of CSS grid layout properties. Contributed by [@​denbezrukov](https://togithub.com/denbezrukov) ##### JavaScript APIs ##### Linter ##### Bug fixes - The `noEmptyBlock` css lint rule now treats empty blocks containing comments as valid ones. Contributed by [@​Sec-ant](https://togithub.com/Sec-ant) - [useLiteralKeys](https://biomejs.dev/linter/rules/use-literal-keys/) no longer reports quoted member names ([#​3085](https://togithub.com/biomejs/biome/issues/3085)). Previously [useLiteralKeys](https://biomejs.dev/linter/rules/use-literal-keys/) reported quoted member names that can be unquoted. For example, the rule suggested the following fix: ```diff - const x = { "prop": 0 }; + const x = { prop: 0 }; ``` This conflicted with the option [quoteProperties](https://biomejs.dev/reference/configuration/#javascriptformatterquoteproperties) of our formatter. The rule now ignores quoted member names. Contributed by [@​Conaclos](https://togithub.com/Conaclos) - [noEmptyInterface](https://biomejs.dev/linter/rules/no-empty-interface/) now ignores empty interfaces in ambient modules ([#​3110](https://togithub.com/biomejs/biome/issues/3110)). Contributed by [@​Conaclos](https://togithub.com/Conaclos) - [noUnusedVariables](https://biomejs.dev/linter/rules/no-unused-variables/) and [noUnusedFunctionParameters](https://biomejs.dev/linter/rules/no-unused-function-parameters/) no longer report the parameters of a constructor type ([#​3135](https://togithub.com/biomejs/biome/issues/3135)). Previously, `arg` was reported as unused in a constructor type like: ```ts export type Classlike = new (arg: unknown) => string; ``` Contributed by [@​Conaclos](https://togithub.com/Conaclos) - [noStringCaseMismatch](https://biomejs.dev/linter/rules/no-string-case-mismatch/) now ignores escape sequences ([#​3134](https://togithub.com/biomejs/biome/issues/3134)). The following code is no longer reported by the rule: ```js s.toUpperCase() === "\u001b"; ``` Contributed by [@​Conaclos](https://togithub.com/Conaclos) ##### Parser ##### New features - Implemented CSS Unknown At-Rule parsing, allowing the parser to gracefully handle unsupported or unrecognized CSS at-rules. Contributed by [@​denbezrukov](https://togithub.com/denbezrukov) ##### Bug fixes - Fix [#​3055](https://togithub.com/biomejs/biome/issues/3055) CSS: Layout using named grid lines is now correctly parsed. Contributed by [@​denbezrukov](https://togithub.com/denbezrukov) - Fix [#​3091](https://togithub.com/biomejs/biome/issues/3091). Allows the parser to handle nested style rules and at-rules properly, enhancing the parser's compatibility with the CSS Nesting Module. Contributed by [@​denbezrukov](https://togithub.com/denbezrukov)
eslint/eslint (@​eslint/js) ### [`v9.5.0`](https://togithub.com/eslint/eslint/releases/tag/v9.5.0) [Compare Source](https://togithub.com/eslint/eslint/compare/v9.4.0...v9.5.0) #### Features - [`b2d256c`](https://togithub.com/eslint/eslint/commit/b2d256c7356838f908c4a5762d6dc64b41bbce5d) feat: `no-sparse-arrays` report on "comma" instead of the whole array ([#​18579](https://togithub.com/eslint/eslint/issues/18579)) (fisker Cheung) #### Bug Fixes - [`6880286`](https://togithub.com/eslint/eslint/commit/6880286e17375b08323512f38ea59fed440a4fb5) fix: treat `*` as a universal pattern ([#​18586](https://togithub.com/eslint/eslint/issues/18586)) (Milos Djermanovic) - [`7fbe211`](https://togithub.com/eslint/eslint/commit/7fbe211427432aba5fa972252b9b6b5cf9866624) fix: message template for all files ignored ([#​18564](https://togithub.com/eslint/eslint/issues/18564)) (Milos Djermanovic) - [`469cb36`](https://togithub.com/eslint/eslint/commit/469cb363f87564bafb8e628e738e01b53f4d6911) fix: Don't lint the same file multiple times ([#​18552](https://togithub.com/eslint/eslint/issues/18552)) (Milos Djermanovic) - [`5cff638`](https://togithub.com/eslint/eslint/commit/5cff638c03183204d09eb0a7a8bd2e032630db17) fix: improve message for ignored files without a matching config ([#​18404](https://togithub.com/eslint/eslint/issues/18404)) (Francesco Trotta) #### Documentation - [`455f7fd`](https://togithub.com/eslint/eslint/commit/455f7fd1662069e9e0f4dc912ecda72962679fbe) docs: add section about including `.gitignore` files ([#​18590](https://togithub.com/eslint/eslint/issues/18590)) (Milos Djermanovic) - [`721eafe`](https://togithub.com/eslint/eslint/commit/721eafeae45b33b95addf385c23eca1e2f8017d0) docs: update info about universal `files` patterns ([#​18587](https://togithub.com/eslint/eslint/issues/18587)) (Francesco Trotta) - [`8127127`](https://togithub.com/eslint/eslint/commit/8127127386180a2882bb1b75a8fbc7ffda78dce1) docs: Update README (GitHub Actions Bot) - [`55c2a66`](https://togithub.com/eslint/eslint/commit/55c2a6621cc403f2fc11eb4ad762eadc70a54874) docs: Update README (GitHub Actions Bot) - [`eb76282`](https://togithub.com/eslint/eslint/commit/eb76282e0a2db8aa10a3d5659f5f9237d9729121) docs: Update README (GitHub Actions Bot) - [`ff6e96e`](https://togithub.com/eslint/eslint/commit/ff6e96ec30862a4eb77a201551ec8c618335bfc2) docs: `baseConfig` and `overrideConfig` can be arrays ([#​18571](https://togithub.com/eslint/eslint/issues/18571)) (Milos Djermanovic) - [`d2d83e0`](https://togithub.com/eslint/eslint/commit/d2d83e045ad03f024d1679275708054d789ebe20) docs: Add mention of eslint-transforms to v9 migration guide ([#​18566](https://togithub.com/eslint/eslint/issues/18566)) (Nicholas C. Zakas) - [`9ce6832`](https://togithub.com/eslint/eslint/commit/9ce6832578d5798b591f490a8609c87235e881c7) docs: add callout box for unintuitive behavior ([#​18567](https://togithub.com/eslint/eslint/issues/18567)) (Ben McCann) - [`b8db99c`](https://togithub.com/eslint/eslint/commit/b8db99c575c75edc9b42e6333e1b0aa7d26d9a01) docs: Add VS Code info to config migration guide ([#​18555](https://togithub.com/eslint/eslint/issues/18555)) (Nicholas C. Zakas) - [`518a35c`](https://togithub.com/eslint/eslint/commit/518a35c8fa9161522cbe9066d48e6c6fcd8aadf3) docs: Mention config migrator ([#​18561](https://togithub.com/eslint/eslint/issues/18561)) (Nicholas C. Zakas) - [`eb440fc`](https://togithub.com/eslint/eslint/commit/eb440fcf16bd2f62d58b7aa9bbaf546cd94e9918) docs: specifying files with arbitrary or no extension ([#​18539](https://togithub.com/eslint/eslint/issues/18539)) (Francesco Trotta) - [`38c159e`](https://togithub.com/eslint/eslint/commit/38c159e7dda812ce6dfdbf8c5b78db7cdd676c62) docs: Provide example of reading package.json for plugins meta ([#​18530](https://togithub.com/eslint/eslint/issues/18530)) (Nicholas C. Zakas) - [`d16a659`](https://togithub.com/eslint/eslint/commit/d16a6599cad35726f62eb230bb95af463611c6c6) docs: add link to migration guide for `--ext` CLI option ([#​18537](https://togithub.com/eslint/eslint/issues/18537)) (Milos Djermanovic) - [`73408de`](https://togithub.com/eslint/eslint/commit/73408de08dbe1873bf6b5564533c0d81134cfeee) docs: add link to configuration file docs before examples ([#​18535](https://togithub.com/eslint/eslint/issues/18535)) (Milos Djermanovic) #### Chores - [`f588160`](https://togithub.com/eslint/eslint/commit/f588160c2f9996c9c62b787f1fe678f71740ec43) chore: upgrade [@​eslint/js](https://togithub.com/eslint/js)[@​9](https://togithub.com/9).5.0 ([#​18591](https://togithub.com/eslint/eslint/issues/18591)) (Milos Djermanovic) - [`5890841`](https://togithub.com/eslint/eslint/commit/58908415c3e9e7924d39a2ff96573f7677ddb806) chore: package.json update for [@​eslint/js](https://togithub.com/eslint/js) release (Jenkins) - [`e9f4ccd`](https://togithub.com/eslint/eslint/commit/e9f4ccd8a182801e08d96d4246df10246ea82a58) chore: remove unused eslint-disable directive ([#​18589](https://togithub.com/eslint/eslint/issues/18589)) (Milos Djermanovic) - [`4b23ffd`](https://togithub.com/eslint/eslint/commit/4b23ffd6454cfb1a269430f5fe28e7d1c37b9d3e) refactor: Move JS parsing logic into JS language ([#​18448](https://togithub.com/eslint/eslint/issues/18448)) (Nicholas C. Zakas) - [`1495b93`](https://togithub.com/eslint/eslint/commit/1495b93d6fac4d7b6c9efa24c46b613f47feb1d4) chore: update WebdriverIO packages ([#​18558](https://togithub.com/eslint/eslint/issues/18558)) (Christian Bromann) - [`cea7ede`](https://togithub.com/eslint/eslint/commit/cea7ede4618d789180d37ee12a57939b30a5c4ee) chore: add website donate link instead of opencollective ([#​18582](https://togithub.com/eslint/eslint/issues/18582)) (Strek) - [`ec94880`](https://togithub.com/eslint/eslint/commit/ec948803c99ab1b001f093c7a2c412945fbb385f) chore: package.json update for eslint-config-eslint release (Jenkins) - [`6912586`](https://togithub.com/eslint/eslint/commit/69125865b058c08ded162d4395d606dd22acb77d) chore: extract formatting rules into separate config ([#​18560](https://togithub.com/eslint/eslint/issues/18560)) (Milos Djermanovic) - [`9738f7e`](https://togithub.com/eslint/eslint/commit/9738f7e9dee49a9a3a7b8bfce87eb236ede6f572) ci: fix CLI flags for c8, raise thresholds ([#​18554](https://togithub.com/eslint/eslint/issues/18554)) (Francesco Trotta) - [`c6de7bb`](https://togithub.com/eslint/eslint/commit/c6de7bba57054efd4620e0630c23e2c63b1927b2) chore: update dependency markdownlint-cli to ^0.41.0 ([#​18538](https://togithub.com/eslint/eslint/issues/18538)) (renovate\[bot]) - [`2c8fd34`](https://togithub.com/eslint/eslint/commit/2c8fd34bf1471efbd6e616b50d4e25ea858a6989) ci: pin [@​wdio/browser-runner](https://togithub.com/wdio/browser-runner) v8.36.0 ([#​18540](https://togithub.com/eslint/eslint/issues/18540)) (唯然)
honojs/node-server (@​hono/node-server) ### [`v1.11.3`](https://togithub.com/honojs/node-server/releases/tag/v1.11.3) [Compare Source](https://togithub.com/honojs/node-server/compare/v1.11.2...v1.11.3) #### What's Changed - Update readme with an example of proper "root" when using serveStatic by [@​brettimus](https://togithub.com/brettimus) in [https://github.com/honojs/node-server/pull/173](https://togithub.com/honojs/node-server/pull/173) - fix: avoid error when using TRACE method by [@​usualoma](https://togithub.com/usualoma) in [https://github.com/honojs/node-server/pull/175](https://togithub.com/honojs/node-server/pull/175) #### New Contributors - [@​brettimus](https://togithub.com/brettimus) made their first contribution in [https://github.com/honojs/node-server/pull/173](https://togithub.com/honojs/node-server/pull/173) **Full Changelog**: https://github.com/honojs/node-server/compare/v1.11.2...v1.11.3
honojs/vite-plugins (@​hono/vite-dev-server) ### [`v0.12.2`](https://togithub.com/honojs/vite-plugins/releases/tag/%40hono/vite-dev-server%400.12.2) [Compare Source](https://togithub.com/honojs/vite-plugins/compare/@hono/vite-dev-server@0.12.1...@hono/vite-dev-server@0.12.2) ##### Patch Changes - [#​144](https://togithub.com/honojs/vite-plugins/pull/144) [`728099d899fab5ff81adb126fcd39e47e7f13051`](https://togithub.com/honojs/vite-plugins/commit/728099d899fab5ff81adb126fcd39e47e7f13051) Thanks [@​yusukebe](https://togithub.com/yusukebe)! - fix: handler cloudflare dispose error
typescript-eslint/typescript-eslint (@​typescript-eslint/eslint-plugin) ### [`v7.13.0`](https://togithub.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/eslint-plugin/CHANGELOG.md#7130-2024-06-10) [Compare Source](https://togithub.com/typescript-eslint/typescript-eslint/compare/v7.12.0...v7.13.0) ##### 🚀 Features - **typescript-estree:** require `import = require()` argument to be a string literal - **typescript-estree:** forbid `.body`, `.async`, `.generator` on `declare function` - **eslint-plugin:** \[no-dynamic-delete] allow all string literals as index ##### 🩹 Fixes - **ast-spec:** function-call-like callee should be Expression not LeftHandSideExpression - **scope-manager:** handle index signature in class - **eslint-plugin:** \[init-declarations] refine report locations - **eslint-plugin:** \[no-base-to-string] make error message more nuanced - **eslint-plugin:** \[no-unsafe-assignment] be more specific about error types - **eslint-plugin:** \[no-magic-numbers] fix implementation of the `ignore` option ##### ❤️ Thank You - Fotis Papadogeorgopoulos - Joshua Chen - Kirk Waiblinger - Tobiloba Adedeji - Vinccool96 - YeonJuan You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website.
typescript-eslint/typescript-eslint (@​typescript-eslint/parser) ### [`v7.13.0`](https://togithub.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/parser/CHANGELOG.md#7130-2024-06-10) [Compare Source](https://togithub.com/typescript-eslint/typescript-eslint/compare/v7.12.0...v7.13.0) ##### 🚀 Features - **parser, typescript-estree:** export withoutProjectParserOptions utility ##### ❤️ Thank You - Fotis Papadogeorgopoulos - Joshua Chen - Kirk Waiblinger - Tobiloba Adedeji - Vinccool96 - YeonJuan You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website.
typescript-eslint/typescript-eslint (@​typescript-eslint/utils) ### [`v7.13.0`](https://togithub.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/utils/CHANGELOG.md#7130-2024-06-10) [Compare Source](https://togithub.com/typescript-eslint/typescript-eslint/compare/v7.12.0...v7.13.0) This was a version bump only for utils to align it with other projects, there were no code changes. You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website.
vuejs/core (@​vue/compiler-sfc) ### [`v3.4.29`](https://togithub.com/vuejs/core/blob/HEAD/CHANGELOG.md#3429-2024-06-14) [Compare Source](https://togithub.com/vuejs/core/compare/v3.4.28...v3.4.29) ##### Bug Fixes - **build:** fix accidental inclusion of runtime-core in server-renderer cjs build ([11cc12b](https://togithub.com/vuejs/core/commit/11cc12b915edfe0e4d3175e57464f73bc2c1cb04)), closes [#​11137](https://togithub.com/vuejs/core/issues/11137) - **compiler-sfc:** fix missing scope for extends error message ([4ec387b](https://togithub.com/vuejs/core/commit/4ec387b100985b008cdcc4cd883a5b6328c05766)) - **compiler-sfc:** fix parsing of mts, d.mts, and mtsx files ([a476692](https://togithub.com/vuejs/core/commit/a476692ed2d7308f2742d8ff3554cf97a392b0b7)) - **compiler-sfc:** support [@​vue-ignore](https://togithub.com/vue-ignore) comment on more type sources ([a23e99b](https://togithub.com/vuejs/core/commit/a23e99bedf1d65841d162951f10ce35b907a5680)) - **custom-element:** support same direct setup function signature in defineCustomElement ([7c8b126](https://togithub.com/vuejs/core/commit/7c8b12620aad4969b8dc4944d4fc486d16c3033c)), closes [#​11116](https://togithub.com/vuejs/core/issues/11116) - **reactivity:** avoid infinite loop when render access a side effect computed ([#​11135](https://togithub.com/vuejs/core/issues/11135)) ([8296e19](https://togithub.com/vuejs/core/commit/8296e19855e369a7826f5ea26540a6da01dc7093)), closes [#​11121](https://togithub.com/vuejs/core/issues/11121) ### [`v3.4.28`](https://togithub.com/vuejs/core/blob/HEAD/CHANGELOG.md#3428-2024-06-14) [Compare Source](https://togithub.com/vuejs/core/compare/v3.4.27...v3.4.28) ##### Bug Fixes - **compat:** correctly transform non-identifier expressions in legacy filter syntax ([#​10896](https://togithub.com/vuejs/core/issues/10896)) ([07b3c4b](https://togithub.com/vuejs/core/commit/07b3c4b7860009e19446f3d78571556c5737d82a)), closes [#​10852](https://togithub.com/vuejs/core/issues/10852) - **compat:** ensure proper handling of render fuction from SFC using Vue.extend ([#​7781](https://togithub.com/vuejs/core/issues/7781)) ([c73847f](https://togithub.com/vuejs/core/commit/c73847f2becc20f03cb9c68748eea92455e688ee)), closes [#​7766](https://togithub.com/vuejs/core/issues/7766) - **compat:** only warn ATTR_FALSE_VALUE when enabled ([04729ba](https://togithub.com/vuejs/core/commit/04729ba2163d840f0ca7866bc964696eb5557804)), closes [#​11126](https://togithub.com/vuejs/core/issues/11126) - **compile-sfc:** register props destructure rest id as setup bindings ([#​10888](https://togithub.com/vuejs/core/issues/10888)) ([b2b5f57](https://togithub.com/vuejs/core/commit/b2b5f57c2c945edd0eebc1b545ec1b7568e51484)), closes [#​10885](https://togithub.com/vuejs/core/issues/10885) - **compile-sfc:** Support project reference with folder, ([#​10908](https://togithub.com/vuejs/core/issues/10908)) ([bdeac37](https://togithub.com/vuejs/core/commit/bdeac377c7b85888193b49ac187e927636cc40bc)), closes [#​10907](https://togithub.com/vuejs/core/issues/10907) - **compiler-core:** allow unicode to appear in simple identifiers ([#​6765](https://togithub.com/vuejs/core/issues/6765)) ([3ea9644](https://togithub.com/vuejs/core/commit/3ea964473d3ac0ba3e7b0b2c22d71f23d0f69123)), closes [#​6367](https://togithub.com/vuejs/core/issues/6367) - **compiler-core:** change v-for key type to match Object.keys ([#​10963](https://togithub.com/vuejs/core/issues/10963)) ([9fead52](https://togithub.com/vuejs/core/commit/9fead5234320848f8be82275c6b5dd0a290f2cca)), closes [#​8819](https://togithub.com/vuejs/core/issues/8819) - **compiler-core:** emit TS-compatible function declaration when requested ([#​9363](https://togithub.com/vuejs/core/issues/9363)) ([5d25850](https://togithub.com/vuejs/core/commit/5d258502a0faffc8a451b8701f13a31b2566d068)) - **compiler-core:** fix :key shorthand on v-for ([#​10942](https://togithub.com/vuejs/core/issues/10942)) ([29425df](https://togithub.com/vuejs/core/commit/29425df1acb9e520c6ae894d06bcff73fde90edd)), closes [#​10882](https://togithub.com/vuejs/core/issues/10882) [#​10939](https://togithub.com/vuejs/core/issues/10939) - **compiler-core:** make `ForIteratorExpression`'s `returns` property optional ([#​11011](https://togithub.com/vuejs/core/issues/11011)) ([5b8c1af](https://togithub.com/vuejs/core/commit/5b8c1afb74e39045fcb53a011420d26e3f67eab4)) - **compiler-core:** should set `` tag as block to retain MathML namespace after patching ([#​10891](https://togithub.com/vuejs/core/issues/10891)) ([87c5443](https://togithub.com/vuejs/core/commit/87c54430448005294c41803f07f517fef848f917)) - **compiler-core:** v-for expression missing source with spaces should emit error ([#​5821](https://togithub.com/vuejs/core/issues/5821)) ([b9ca202](https://togithub.com/vuejs/core/commit/b9ca202f477be595477e182972ee9bae3f2b9f74)), closes [#​5819](https://togithub.com/vuejs/core/issues/5819) - **compiler-sfc:** improve type resolving for the keyof operator ([#​10921](https://togithub.com/vuejs/core/issues/10921)) ([293cf4e](https://togithub.com/vuejs/core/commit/293cf4e131b6d4606e1de2cd7ea87814e2544952)), closes [#​10920](https://togithub.com/vuejs/core/issues/10920) [#​11002](https://togithub.com/vuejs/core/issues/11002) - **compiler-sfc:** support as keyword with template literal types ([#​11100](https://togithub.com/vuejs/core/issues/11100)) ([2594b1d](https://togithub.com/vuejs/core/commit/2594b1df57f672ac6621ac2880645e975fea581c)), closes [#​10962](https://togithub.com/vuejs/core/issues/10962) - **compiler-sfc:** support type resolve for keyof for intersection & union types ([#​11132](https://togithub.com/vuejs/core/issues/11132)) ([495263a](https://togithub.com/vuejs/core/commit/495263a9cb356861e58a4364f2570608265486b5)), closes [#​11129](https://togithub.com/vuejs/core/issues/11129) - **compiler-sfc:** throw error when import macro as alias ([#​11041](https://togithub.com/vuejs/core/issues/11041)) ([34a97ed](https://togithub.com/vuejs/core/commit/34a97edd2c8273c213599c44770accdb0846da8e)) - correct the type of `
`'s `onToggle` event handler ([#​10938](https://togithub.com/vuejs/core/issues/10938)) ([fd18ce7](https://togithub.com/vuejs/core/commit/fd18ce70b1a260a2485c9cd7faa30193da4b79f5)), closes [#​10928](https://togithub.com/vuejs/core/issues/10928) - **custom-element:** disconnect MutationObserver in nextTick in case that custom elements are moved ([#​10613](https://togithub.com/vuejs/core/issues/10613)) ([bbb5be2](https://togithub.com/vuejs/core/commit/bbb5be299b500a00e60c757118c846c3b5ddd8e0)), closes [#​10610](https://togithub.com/vuejs/core/issues/10610) - **custom-elements:** compatibility of createElement in older versions of Chrome ([#​9615](https://togithub.com/vuejs/core/issues/9615)) ([a88295d](https://togithub.com/vuejs/core/commit/a88295dc076ee867939d8b0ee2225e63c5ffb0ca)), closes [#​9614](https://togithub.com/vuejs/core/issues/9614) - **hmr:** avoid infinite recursion when reloading hmr components ([#​6936](https://togithub.com/vuejs/core/issues/6936)) ([36bd9b0](https://togithub.com/vuejs/core/commit/36bd9b0a1fb83e61731fb80d66e265dccbedcfa8)), closes [#​6930](https://togithub.com/vuejs/core/issues/6930) - **hydration:** log hydration error even when using async components ([#​9403](https://togithub.com/vuejs/core/issues/9403)) ([5afc76c](https://togithub.com/vuejs/core/commit/5afc76c229f9ad30eef07f34c7b65e8fe427e637)), closes [#​9369](https://togithub.com/vuejs/core/issues/9369) - **KeepAlive:** properly cache nested Suspense subtree ([#​10912](https://togithub.com/vuejs/core/issues/10912)) ([07764fe](https://togithub.com/vuejs/core/commit/07764fe330692fadf0fc9fb9e92cb5b111df33be)) - **npm:** explicitly add `@vue/reactivity` as dependency of `@vue/runtime-dom` ([#​10468](https://togithub.com/vuejs/core/issues/10468)) ([ec424f6](https://togithub.com/vuejs/core/commit/ec424f6cd96b7e6ba74fc244c484c00fa5590aac)) - **reactivity:** pass oldValue in debug info when triggering refs ([#​8210](https://togithub.com/vuejs/core/issues/8210)) ([3b0a56a](https://togithub.com/vuejs/core/commit/3b0a56a9c4d162ec3bd725a4f2dfd776b045e727)), closes [vuejs/pinia#2061](https://togithub.com/vuejs/pinia/issues/2061) - **runtime-core:** avoid traversing static children for vnodes w/ PatchFlags.BAIL ([#​11115](https://togithub.com/vuejs/core/issues/11115)) ([b557d3f](https://togithub.com/vuejs/core/commit/b557d3fb8ae1e4e926c4ad0fbb2fa7abe50fd661)), closes [#​10547](https://togithub.com/vuejs/core/issues/10547) - **runtime-core:** do not fire mount/activated hooks if unmounted before mounted ([#​9370](https://togithub.com/vuejs/core/issues/9370)) ([aa156ed](https://togithub.com/vuejs/core/commit/aa156ed5c4dc0d33ff37e201a7e89d5e0e29160e)), closes [#​8898](https://togithub.com/vuejs/core/issues/8898) [#​9264](https://togithub.com/vuejs/core/issues/9264) [#​9617](https://togithub.com/vuejs/core/issues/9617) - **runtime-core:** ensure suspense creates dep component's render effect with correct optimized flag ([#​7689](https://togithub.com/vuejs/core/issues/7689)) ([c521f95](https://togithub.com/vuejs/core/commit/c521f956e1697cda36a7f1b913599e5e2004f7ba)), closes [#​7688](https://togithub.com/vuejs/core/issues/7688) - **runtime-core:** fix missed updates when passing text vnode to `` ([#​8304](https://togithub.com/vuejs/core/issues/8304)) ([b310ec3](https://togithub.com/vuejs/core/commit/b310ec389d9738247e5b0f01711186216eb49955)), closes [#​8298](https://togithub.com/vuejs/core/issues/8298) - **runtime-core:** fix stale v-memo after v-if toggle ([#​6606](https://togithub.com/vuejs/core/issues/6606)) ([edf2638](https://togithub.com/vuejs/core/commit/edf263847eddc910f4d2de68287d84b8c66c3860)), closes [#​6593](https://togithub.com/vuejs/core/issues/6593) - **runtime-core:** fix Transition for components with root-level v-if ([#​7678](https://togithub.com/vuejs/core/issues/7678)) ([ef2e737](https://togithub.com/vuejs/core/commit/ef2e737577de42ea38771403f8a4dee8c892daa5)), closes [#​7649](https://togithub.com/vuejs/core/issues/7649) - **runtime-dom:** also set attribute for form element state ([537a571](https://togithub.com/vuejs/core/commit/537a571f8cf09dfe0a020e9e8891ecdd351fc3e4)), closes [#​6007](https://togithub.com/vuejs/core/issues/6007) [#​6012](https://togithub.com/vuejs/core/issues/6012) - **runtime-dom:** support Symbol for input value bindings ([#​10608](https://togithub.com/vuejs/core/issues/10608)) ([188f3ae](https://togithub.com/vuejs/core/commit/188f3ae533fd340603068a516a8fecc5d57426c5)), closes [#​10597](https://togithub.com/vuejs/core/issues/10597) - **shared:** ensure invokeArrayFns handles undefined arguments ([#​10869](https://togithub.com/vuejs/core/issues/10869)) ([9b40d0f](https://togithub.com/vuejs/core/commit/9b40d0f25da868a83b0d6bf99dbbdb3ca68bb700)), closes [#​10863](https://togithub.com/vuejs/core/issues/10863) - **ssr:** directive binding.instance should respect exposed during ssr ([df686ab](https://togithub.com/vuejs/core/commit/df686abb4f0ac9d898e4fd93751e860f8cbbdbea)), closes [#​7499](https://togithub.com/vuejs/core/issues/7499) [#​7502](https://togithub.com/vuejs/core/issues/7502) - **ssr:** fix hydration for node with empty text node ([#​7216](https://togithub.com/vuejs/core/issues/7216)) ([d1011c0](https://togithub.com/vuejs/core/commit/d1011c07a957d858cb37725b13bc8e4d7a395490)) - **ssr:** fix the bug that multi slot scope id does not work on component ([#​6100](https://togithub.com/vuejs/core/issues/6100)) ([4c74302](https://togithub.com/vuejs/core/commit/4c74302aae64c118752db7fc2a2c229a11ebaead)), closes [#​6093](https://togithub.com/vuejs/core/issues/6093) - **teleport:** do not throw target warning when teleport is disabled ([#​9818](https://togithub.com/vuejs/core/issues/9818)) ([15ee43f](https://togithub.com/vuejs/core/commit/15ee43f66ad2485ac212b02b444345d867b3c060)) - **transition:** ensure Transition enterHooks are updated after clone ([#​11066](https://togithub.com/vuejs/core/issues/11066)) ([671cf29](https://togithub.com/vuejs/core/commit/671cf297a550d15b19fa3fecce1b30e26cad8154)), closes [#​11061](https://togithub.com/vuejs/core/issues/11061) - **types/apiWatch:** correct type inference for reactive array ([#​11036](https://togithub.com/vuejs/core/issues/11036)) ([aae2d78](https://togithub.com/vuejs/core/commit/aae2d78875daa476280a45e71c2f38292964efae)), closes [#​9416](https://togithub.com/vuejs/core/issues/9416) - **types:** improve `app.provide` type checking ([#​10603](https://togithub.com/vuejs/core/issues/10603)) ([612bbf0](https://togithub.com/vuejs/core/commit/612bbf0507cbe39d701acc5dff11824802078063)), closes [#​10602](https://togithub.com/vuejs/core/issues/10602) - **types:** support generic argument in setup context expose method ([#​8507](https://togithub.com/vuejs/core/issues/8507)) ([635a59b](https://togithub.com/vuejs/core/commit/635a59b96fe6be445525c6595ca27da7ef7c1feb)) - **v-model:** fix the lazy modifier is not reset by other modifications ([#​8547](https://togithub.com/vuejs/core/issues/8547)) ([a52a02f](https://togithub.com/vuejs/core/commit/a52a02f43fdf73d8aaad99c9cafed07f12ee422a)), closes [#​8546](https://togithub.com/vuejs/core/issues/8546) [#​6564](https://togithub.com/vuejs/core/issues/6564) [#​6773](https://togithub.com/vuejs/core/issues/6773) - **watch:** support traversing symbol properties in deep watcher ([#​10969](https://togithub.com/vuejs/core/issues/10969)) ([a3e8aaf](https://togithub.com/vuejs/core/commit/a3e8aafbcc82003a66caded61143eb64c4ef02cd)), closes [#​402](https://togithub.com/vuejs/core/issues/402)
drizzle-team/drizzle-kit-mirror (drizzle-kit) ### [`v0.22.7`](https://togithub.com/drizzle-team/drizzle-kit-mirror/compare/v0.22.6...db013f5eb7bfb7098bb443493640c79ad0eb8259) [Compare Source](https://togithub.com/drizzle-team/drizzle-kit-mirror/compare/v0.22.6...db013f5eb7bfb7098bb443493640c79ad0eb8259)
fastify/fastify (fastify) ### [`v4.28.0`](https://togithub.com/fastify/fastify/releases/tag/v4.28.0) [Compare Source](https://togithub.com/fastify/fastify/compare/v4.27.0...v4.28.0) #### What's Changed - test: fix closing - pipelining by [@​climba03003](https://togithub.com/climba03003) in [https://github.com/fastify/fastify/pull/5486](https://togithub.com/fastify/fastify/pull/5486) - refactor(backport v4.x): change `reply.redirect()` signature ([#​5483](https://togithub.com/fastify/fastify/issues/5483)) by [@​gurgunday](https://togithub.com/gurgunday) in [https://github.com/fastify/fastify/pull/5484](https://togithub.com/fastify/fastify/pull/5484) - refactor(backport v4.x): hasRoute method comparison with case insensitive by [@​SMNBLMRR](https://togithub.com/SMNBLMRR) in [https://github.com/fastify/fastify/pull/5513](https://togithub.com/fastify/fastify/pull/5513) - fix: (backport) Type inferrence with auxilliary hook handlers by [@​aadito123](https://togithub.com/aadito123) in [https://github.com/fastify/fastify/pull/5518](https://togithub.com/fastify/fastify/pull/5518) **Full Changelog**: https://github.com/fastify/fastify/compare/v4.27.0...v4.28.0
sindresorhus/globals (globals) ### [`v15.6.0`](https://togithub.com/sindresorhus/globals/compare/v15.5.0...5261dd91292dd48e1d7eb2f36f680c970d6d0a1a) [Compare Source](https://togithub.com/sindresorhus/globals/compare/v15.5.0...v15.6.0) ### [`v15.5.0`](https://togithub.com/sindresorhus/globals/releases/tag/v15.5.0) [Compare Source](https://togithub.com/sindresorhus/globals/compare/v15.4.0...v15.5.0) - Update globals ([#​254](https://togithub.com/sindresorhus/globals/issues/254)) [`19ea4cf`](https://togithub.com/sindresorhus/globals/commit/19ea4cf)
honojs/hono (hono) ### [`v4.4.6`](https://togithub.com/honojs/hono/releases/tag/v4.4.6) [Compare Source](https://togithub.com/honojs/hono/compare/v4.4.5...v4.4.6) ##### What's Changed - fix(aws-lambda): handle multiple cookies in streaming responses by [@​KnisterPeter](https://togithub.com/KnisterPeter) in [https://github.com/honojs/hono/pull/2926](https://togithub.com/honojs/hono/pull/2926) **Full Changelog**: https://github.com/honojs/hono/compare/v4.4.5...v4.4.6 ### [`v4.4.5`](https://togithub.com/honojs/hono/releases/tag/v4.4.5) [Compare Source](https://togithub.com/honojs/hono/compare/v4.4.4...v4.4.5) ##### What's Changed - fix(cors): allow custom vary header by [@​fzn0x](https://togithub.com/fzn0x) in [https://github.com/honojs/hono/pull/2934](https://togithub.com/honojs/hono/pull/2934) - fix(jsx): rename `Hono` to `JSX` and export `JSX` namespace by [@​yusukebe](https://togithub.com/yusukebe) in [https://github.com/honojs/hono/pull/2937](https://togithub.com/honojs/hono/pull/2937) - refactor(hono-base): make 2nd arg of `app.route()` required by [@​yusukebe](https://togithub.com/yusukebe) in [https://github.com/honojs/hono/pull/2945](https://togithub.com/honojs/hono/pull/2945) - refactor(hono-base): don't check 1st argument of `app.on()` by [@​yusukebe](https://togithub.com/yusukebe) in [https://github.com/honojs/hono/pull/2946](https://togithub.com/honojs/hono/pull/2946) - refactor(context): remove unnecessary initialization add add tests for Context by [@​yusukebe](https://togithub.com/yusukebe) in [https://github.com/honojs/hono/pull/2949](https://togithub.com/honojs/hono/pull/2949) - test(hono-base): add tests for covering 100% by [@​yusukebe](https://togithub.com/yusukebe) in [https://github.com/honojs/hono/pull/2952](https://togithub.com/honojs/hono/pull/2952) - fix(context): default JSONRespond and TextRespond StatusCode generic arg by [@​EdamAme-x](https://togithub.com/EdamAme-x) in [https://github.com/honojs/hono/pull/2954](https://togithub.com/honojs/hono/pull/2954) - refactor(request): shorten `parseBody` and remove unnecessary check by [@​yusukebe](https://togithub.com/yusukebe) in [https://github.com/honojs/hono/pull/2947](https://togithub.com/honojs/hono/pull/2947) - refactor(jsx): reduce code size and improve maintainability by [@​usualoma](https://togithub.com/usualoma) in [https://github.com/honojs/hono/pull/2956](https://togithub.com/honojs/hono/pull/2956) **Full Changelog**: https://github.com/honojs/hono/compare/v4.4.4...v4.4.5
prettier/prettier (prettier) ### [`v3.3.2`](https://togithub.com/prettier/prettier/blob/HEAD/CHANGELOG.md#332) [Compare Source](https://togithub.com/prettier/prettier/compare/3.3.1...3.3.2) [diff](https://togithub.com/prettier/prettier/compare/3.3.1...3.3.2) ##### Fix handlebars path expressions starts with `@` ([#​16358](https://togithub.com/prettier/prettier/pull/16358) by [@​Princeyadav05](https://togithub.com/Princeyadav05)) ```hbs {{! Input }}
{{@​x.y.z}}
{{! Prettier 3.3.1 }}
{{@​x}}
{{! Prettier 3.3.2 }}
{{@​x.y.z}}
```
privatenumber/tsx (tsx) ### [`v4.15.6`](https://togithub.com/privatenumber/tsx/releases/tag/v4.15.6) [Compare Source](https://togithub.com/privatenumber/tsx/compare/v4.15.5...v4.15.6) ##### Bug Fixes - minimum Node version in warning for `module.register()` ([#​592](https://togithub.com/privatenumber/tsx/issues/592)) ([cb27d4d](https://togithub.com/privatenumber/tsx/commit/cb27d4dfe7670e6cf50f09b48cbd37ac73aa064a)) *** This release is also available on: - [npm package (@​latest dist-tag)](https://www.npmjs.com/package/tsx/v/4.15.6) ### [`v4.15.5`](https://togithub.com/privatenumber/tsx/releases/tag/v4.15.5) [Compare Source](https://togithub.com/privatenumber/tsx/compare/v4.15.4...v4.15.5) ##### Bug Fixes - **cjs:** make transformers overwritable ([c22fa7d](https://togithub.com/privatenumber/tsx/commit/c22fa7d1a90fa34983caddda91b5c1c10e1a4b6c)) *** This release is also available on: - [npm package (@​latest dist-tag)](https://www.npmjs.com/package/tsx/v/4.15.5) ### [`v4.15.4`](https://togithub.com/privatenumber/tsx/releases/tag/v4.15.4) [Compare Source](https://togithub.com/privatenumber/tsx/compare/v4.15.3...v4.15.4) ##### Bug Fixes - **cjs:** handle re-exports from relative paths ([5166122](https://togithub.com/privatenumber/tsx/commit/5166122cff67c42fb0692ced05df9a2447299d70)) *** This release is also available on: - [npm package (@​latest dist-tag)](https://www.npmjs.com/package/tsx/v/4.15.4) ### [`v4.15.3`](https://togithub.com/privatenumber/tsx/releases/tag/v4.15.3) [Compare Source](https://togithub.com/privatenumber/tsx/compare/v4.15.2...v4.15.3) ##### Bug Fixes - **cjs:** load json with namespace ([6b03a38](https://togithub.com/privatenumber/tsx/commit/6b03a38443035f377281c5122eee4c56fefea179)) *** This release is also available on: - [npm package (@​latest dist-tag)](https://www.npmjs.com/package/tsx/v/4.15.3) ### [`v4.15.2`](https://togithub.com/privatenumber/tsx/releases/tag/v4.15.2) [Compare Source](https://togithub.com/privatenumber/tsx/compare/v4.15.1...v4.15.2) ##### Bug Fixes - **esm:** resolve implicit extension in package subpath ([7e1fe22](https://togithub.com/privatenumber/tsx/commit/7e1fe22e142643afc2226a2f1c0d1579c949f0c6)) *** This release is also available on: - [npm package (@​latest dist-tag)](https://www.npmjs.com/package/tsx/v/4.15.2)
vercel/turbo (turbo) ### [`v2.0.4`](https://togithub.com/vercel/turbo/releases/tag/v2.0.4): Turborepo v2.0.4 [Compare Source](https://togithub.com/vercel/turbo/compare/v2.0.3...v2.0.4) #### What's Changed ##### create-turbo - Update `create-turbo` to use carat versions. by [@​anthonyshew](https://togithub.com/anthonyshew) in [https://github.com/vercel/turbo/pull/8448](https://togithub.com/vercel/turbo/pull/8448) ##### [@​turbo/codemod](https://togithub.com/turbo/codemod) - chore: bump timeout for migration by [@​chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/8463](https://togithub.com/vercel/turbo/pull/8463) - fix([@​turbo/codemode](https://togithub.com/turbo/codemode)): no-op when turbo.json already contains tasks key by [@​mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/8471](https://togithub.com/vercel/turbo/pull/8471) ##### Examples - Give examples carat versions. by [@​anthonyshew](https://togithub.com/anthonyshew) in [https://github.com/vercel/turbo/pull/8382](https://togithub.com/vercel/turbo/pull/8382) - Fix apk order in example. by [@​anthonyshew](https://togithub.com/anthonyshew) in [https://github.com/vercel/turbo/pull/8392](https://togithub.com/vercel/turbo/pull/8392) - Fix `eslint-config-turbo` configuration in examples. by [@​anthonyshew](https://togithub.com/anthonyshew) in [https://github.com/vercel/turbo/pull/8405](https://togithub.com/vercel/turbo/pull/8405) - Remove root eslintrc from basic example. by [@​anthonyshew](https://togithub.com/anthonyshew) in [https://github.com/vercel/turbo/pull/8423](https://togithub.com/vercel/turbo/pull/8423) - Consistent Node.js version in Changesets action. by [@​anthonyshew](https://togithub.com/anthonyshew) in [https://github.com/vercel/turbo/pull/8441](https://togithub.com/vercel/turbo/pull/8441) - Remove global dep from basic example. by [@​anthonyshew](https://togithub.com/anthonyshew) in [https://github.com/vercel/turbo/pull/8442](https://togithub.com/vercel/turbo/pull/8442) ##### Changelog - fix(filter): account for root internal dependencies in git based filter by [@​chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/8364](https://togithub.com/vercel/turbo/pull/8364) - Warn instead of print when no locally installed version. by [@​anthonyshew](https://togithub.com/anthonyshew) in [https://github.com/vercel/turbo/pull/8384](https://togithub.com/vercel/turbo/pull/8384) - Add CI to default passthroughs. by [@​anthonyshew](https://togithub.com/anthonyshew) in [https://github.com/ve

Configuration

📅 Schedule: Branch creation - "before 4am on Monday" (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.

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



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

github-actions[bot] commented 2 weeks ago

PR Preview Action v1.4.7 :---: :rocket: Deployed preview to https://batijs.dev/pr-preview/pr-270/ on branch gh-pages at 2024-06-17 00:37 UTC