nuxt / module-builder

Complete solution to build and ship Nuxt modules.
MIT License
212 stars 22 forks source link

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

Closed renovate[bot] closed 8 months ago

renovate[bot] commented 9 months ago

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@nuxt/kit ^3.7.4 -> ^3.8.0 age adoption passing confidence
@nuxt/schema ^3.7.4 -> ^3.8.0 age adoption passing confidence
@types/node (source) ^20.7.1 -> ^20.8.9 age adoption passing confidence
@vitest/coverage-v8 (source) ^0.34.5 -> ^0.34.6 age adoption passing confidence
eslint (source) ^8.50.0 -> ^8.52.0 age adoption passing confidence
nuxi ^3.9.0 -> ^3.9.1 age adoption passing confidence
nuxt ^3.7.4 -> ^3.8.0 age adoption passing confidence
pnpm (source) 8.8.0 -> 8.9.2 age adoption passing confidence
vitest ^0.34.5 -> ^0.34.6 age adoption passing confidence

Release Notes

nuxt/nuxt (@​nuxt/kit) ### [`v3.8.0`](https://togithub.com/nuxt/nuxt/releases/tag/v3.8.0) [Compare Source](https://togithub.com/nuxt/nuxt/compare/v3.7.4...v3.8.0) #### 👀 Highlights We have a lot of exciting features in v3.8, and can't wait for you to try it out. ##### 💻 Nuxi improvements Just to remind you, we're now using [the new Nuxt CLI](https://togithub.com/nuxt/cli) which is now versioned separately. There are some exciting improvements there to follow, so do check out the latest releases. (For example, we now share the same port with the Vite websocket, meaning better support for docker containers in development.) ##### 🚨 Built-in Nuxt DevTools Nuxt DevTools v1.0.0 is out and we now think it's ready to be shipped as a direct dependency of Nuxt. 👉 You can check out [the release notes](https://togithub.com/nuxt/devtools/releases/tag/v1.0.0) for more information - and stay tuned for an article detailing our roadmap for the future. ##### 📸 Nuxt Image auto-install We've now made `` and `` first-class built-in components, [documenting them](https://togithub.com/nuxt/nuxt/pull/23741) and auto-installing `@nuxt/image` the first time that they are used ([#​23717](https://togithub.com/nuxt/nuxt/pull/23717)). https://github.com/nuxt/nuxt/assets/28706372/597c9307-5741-4d9c-8eab-aad5bfef2ef2 We would definitely advise using `@nuxt/image` if you're using images in your site; it can apply optimisations to make your site more performant. ##### 📂 Deeper layout scanning 🚨 **This is a behaviour change so do take care with this one:** 🚨 We now support scanning layouts within subfolders in `~/layouts` in the same way as we do with `~/components`. File | Layout name \-- | -- \~/layouts/desktop/default.vue | 'desktop-default' \~/layouts/desktop-base/base.vue | 'desktop-base' \~/layouts/desktop/index.vue | 'desktop' See [#​20190](https://togithub.com/nuxt/nuxt/pull/20190) for more information ##### 📊 App Manifest We now support a built-in app manifest (see [#​21641](https://togithub.com/nuxt/nuxt/pull/21641)), which generates a manifest at `/_nuxt/builds/meta/.json`. Initially this enables loading payloads only for prerendered routes, if a site is static (preventing 404s). It also enables *client-side* route rules. To begin with, only `redirect` route rules will have an effect; they will now redirect when performing client-side navigation. (More coming soon...!) The app manifest also enables future enhancements including detection of outdated deployments by checking `/_nuxt/builds/latest.json`. You can switch off this behaviour if you need to (but do let us know if you have any issues): ```ts export default defineNuxtConfig({ experimental: { appManifest: false } }) ``` ##### 🤝 Scope and context improvements We now define a 'scope' for Nuxt composables executed in plugins ([#​23667](https://togithub.com/nuxt/nuxt/pull/23667)), which allows running synchronous cleanup before navigating away from your site, using the Vue `onScopeDispose` lifecycle method. This should fix an edge case with cookies ([#​23697](https://togithub.com/nuxt/nuxt/pull/23697)) and also improves memory management, for example in Pinia stores ([#​23650](https://togithub.com/nuxt/nuxt/issues/23650)). You can [read more about Vue effect scopes](https://vuejs.org/api/reactivity-advanced.html#effectscope). We also now support **native async context** for the *Vue composition API* ([#​23526](https://togithub.com/nuxt/nuxt/pull/23526)). In case you're unaware, we support native async context on Node and Bun, enabled with `experimental.asyncContext`. This can help address issues with missing a Nuxt instance. But it didn't previously affect missing *Vue* instances. If you experience issues with 'Nuxt instance unavailable', enabling this option may solve your issues, and once we have cross-runtime support we are likely to enable it by default. ```ts export default defineNuxtConfig({ experimental: { asyncContext: true } }) ``` ##### 🔗 NuxtLink defaults We've supported defining your own `NuxtLink` components with the `defineNuxtLink` utility. We now support customising the options for the built-in ``, directly in your `nuxt.config` file ([#​23724](https://togithub.com/nuxt/nuxt/pull/23724)). This can enable you to enforce trailing slash behaviour across your entire site, for example. ```ts export default defineNuxtConfig({ experimental: { defaults: { nuxtLink: { activeClass: 'nuxt-link-active', trailingSlash: 'append' } } } }) ``` ##### ⚡️ Data fetching improvements: deep and caching We have two very significant new features for `useAsyncData` and `useFetch`: 1. You can now set `deep: false` to prevent deep reactivity on the `data` object returned from these composables ([#​23600](https://togithub.com/nuxt/nuxt/pull/23600)). It should be a performance improvement if you are returning large arrays or objects. The object will still update when refetched; it just won't trigger reactive effects if you change a property deep within the `data`. 2. You can now use the `getCachedData` option to handle custom caching for these composables ([#​20747](https://togithub.com/nuxt/nuxt/pull/20747)) ```ts const nuxtApp = useNuxtApp() const { data } = await useAsyncData(() => { /* fetcher */ }, { // this will not refetch if the key exists in the payload getCachedData: key => nuxtApp.payload.static[key] ?? nuxtApp.payload.data[key] }) ``` We also support configuring some default values for these composables in an app-wide way ([#​23725](https://togithub.com/nuxt/nuxt/pull/20747)): ```ts export default defineNuxtConfig({ experimental: { defaults: { useAsyncData: { deep: false }, useFetch: { retry: false, retryDelay: 100, retryStatusCodes: [500], timeout: 100 } } } }) ``` ##### 🔢 Layer improvements We now more carefully load layer plugins ([#​22889](https://togithub.com/nuxt/nuxt/pull/22889) and [#​23148](https://togithub.com/nuxt/nuxt/pull/23148)) and middleware ([#​22925](https://togithub.com/nuxt/nuxt/pull/22925) and [#​23552](https://togithub.com/nuxt/nuxt/pull/23552)) in the order of the layers, always loading your own plugins and middleware last. This should mean you can rely on utilities that layers may inject. We've also added a test suite to cover these layer resolution changes. And probably one of the most significant changes - if you are using remote layers we now clone these within your `node_modules/` folder ([#​109](https://togithub.com/unjs/c12/pull/109)) so layers can use dependencies with your project. See [`c12` release notes](https://togithub.com/unjs/c12/releases/tag/v1.5.1) for full details. ##### 😴 Nightly release channel Every commit to the `main` branch of Nuxt is automatically deployed to a new release, for easier testing before releases. We've renamed this from the 'edge release channel' to the 'nightly release channel' to avoid confusion with *edge deployments*. And probably also with Microsoft Edge (though I haven't heard that anyone was confused with that one!) ➡️ `nuxt3` is now `nuxt-nightly` ➡️ `nuxi-edge` is now `nuxi-nightly` ➡️ `@​nuxt/kit-edge` is now `@​nuxt/kit-nightly` ... and so on. You can read more about [how it works](https://nuxt.com/docs/guide/going-further/nightly-release-channel#nightly-release-channel). ##### ⚗️ Nitro v2.7 Nitro v2.7 has been released with lots of improvements and bug fixes - do check out [the full changelog](https://togithub.com/unjs/nitro/releases/tag/v2.7.0). 🔥 One of the most significant is that we now save ~40% of bundle size in production by using native `fetch` (which is supported in Node 18+) ([#​1724](https://togithub.com/unjs/nitro/pull/1724)). So if possible, we'd recommend you update your Node version to at least 18. ##### 💪 Type import changes 🚨 **This is likely to need code changes in your project** 🚨 Vue requires that type imports be explicit (so that the Vue compiler can correctly optimise and resolve type imports for props and so on). See [core Vue `tsconfig.json`](https://togithub.com/vuejs/tsconfig/blob/main/tsconfig.json#L30-L33). We've therefore taken the decision to turn on `verbatimModuleSyntax` by default in Nuxt projects, which will throw a type error if types are imported without an explicit `type` import. To resolve it you will need to update your imports: ```diff - import { someFunction, SomeOptions } from 'some-library' + import { someFunction } from 'some-library' + import type { SomeOptions } from 'some-library' ``` You may also encounter modules in the Nuxt ecosystem that need to be updated; please open an issue for those modules. I'm also very happy to help if you're encountering any problems with this, if you're a module author. Just tag me and I'll take a look. If for whatever reason you need to undo this change in your project you can set the following configuration: ```ts export default defineNuxtConfig({ typescript: { tsConfig: { compilerOptions: { verbatimModuleSyntax: false } } } }) ``` However, we'd recommend only doing that temporarily, as Vue does need this option to be set for best results. #### ✅ Upgrading As usual, our recommendation for upgrading is to run: ```sh nuxi upgrade ``` #### 👉 Changelog [compare changes](https://togithub.com/nuxt/nuxt/compare/v3.7.4...v3.8.0) ##### 🚀 Enhancements - **kit:** Add `addServerImports` and `addServerImportsDir` ([#​23288](https://togithub.com/nuxt/nuxt/pull/23288)) - **nuxt:** Warn when nesting nuxt links when SSR on dev ([#​23286](https://togithub.com/nuxt/nuxt/pull/23286)) - **nuxt:** Add `prerenderRoutes` ssr composable ([#​22863](https://togithub.com/nuxt/nuxt/pull/22863)) - **nuxt:** Enable `appManifest` by default ([#​23448](https://togithub.com/nuxt/nuxt/pull/23448)) - **nuxt:** Native async-context in vue's `withAsyncContext` ([#​23526](https://togithub.com/nuxt/nuxt/pull/23526)) - **nuxt:** Auto-install optional features on StackBlitz ([#​23607](https://togithub.com/nuxt/nuxt/pull/23607)) - **kit,nuxt,vite,webpack:** Support `-nightly` extension ([#​23508](https://togithub.com/nuxt/nuxt/pull/23508)) - **nuxt:** Add `@nuxt/devtools` as dependency and enable ([#​23576](https://togithub.com/nuxt/nuxt/pull/23576)) - **nuxt:** Support `deep: false` for data composables ([#​23600](https://togithub.com/nuxt/nuxt/pull/23600)) - **nuxt:** Custom cache support for data fetching composables ([#​20747](https://togithub.com/nuxt/nuxt/pull/20747)) - **nuxt:** Scan and register layouts in nested folders ([#​20190](https://togithub.com/nuxt/nuxt/pull/20190)) - **nuxt:** Prompt to autoinstall `@nuxt/image` when it is used ([#​23717](https://togithub.com/nuxt/nuxt/pull/23717)) - **nuxt:** Allow configuring default `` options ([#​23724](https://togithub.com/nuxt/nuxt/pull/23724)) - **nuxt:** Allow customising defaults for data composables ([#​23725](https://togithub.com/nuxt/nuxt/pull/23725)) ##### 🔥 Performance - **vite:** Don't print server compressed size after vite build ([#​23359](https://togithub.com/nuxt/nuxt/pull/23359)) - **nuxt:** Verbatim module syntax + restrict type discovery ([#​23447](https://togithub.com/nuxt/nuxt/pull/23447)) ##### 🩹 Fixes - **nuxt:** Initialise `asyncData` errors with `null` ([#​23428](https://togithub.com/nuxt/nuxt/pull/23428)) - **nuxt:** Apply scoped styles to islands ([#​23386](https://togithub.com/nuxt/nuxt/pull/23386)) - **nuxt:** Rename stub to avoid shadowing `vue-router` ([#​23440](https://togithub.com/nuxt/nuxt/pull/23440)) - **nuxt:** Stringify cookie values before broadcasting them ([#​23449](https://togithub.com/nuxt/nuxt/pull/23449)) - **kit:** Don't force `config.autoImport` in `addServerImports` ([#​23472](https://togithub.com/nuxt/nuxt/pull/23472)) - **nuxt:** Ignore prefix if `clearNuxtState` called w/o keys ([#​23483](https://togithub.com/nuxt/nuxt/pull/23483)) - **nuxt:** Decrement hydration count when rendering no route ([#​23476](https://togithub.com/nuxt/nuxt/pull/23476)) - **nuxt:** Compute fetch cache key with headers ([#​23462](https://togithub.com/nuxt/nuxt/pull/23462)) - **nuxt:** Mock hookable methods on nuxt 2 ([#​23502](https://togithub.com/nuxt/nuxt/pull/23502)) - **kit:** Revert accidental change to `addPrerenderRoutes` name ([#​23509](https://togithub.com/nuxt/nuxt/pull/23509)) - **nuxt:** Use `test`/`dev` as manifest buildId when appropriate ([#​23512](https://togithub.com/nuxt/nuxt/pull/23512)) - **nuxt:** Don't print warnings for unresolved ids ([#​23604](https://togithub.com/nuxt/nuxt/pull/23604)) - **nuxt:** Use import alias when checking if plugin is wrapped ([#​23617](https://togithub.com/nuxt/nuxt/pull/23617)) - **nuxt:** Tree shake all occurrences of `` ([#​23466](https://togithub.com/nuxt/nuxt/pull/23466)) - **nuxt:** Give priority to later middleware when deduping ([#​23552](https://togithub.com/nuxt/nuxt/pull/23552)) - **nuxt:** Clear cookie BroadcastChannel when scope is disposed ([#​23664](https://togithub.com/nuxt/nuxt/pull/23664)) - **nuxt:** Provide global scope for nuxt plugin context ([#​23667](https://togithub.com/nuxt/nuxt/pull/23667)) - **nuxt:** Resolve type error in options of `useFetch` ([#​23693](https://togithub.com/nuxt/nuxt/pull/23693)) - **webpack:** Remove `lodash-es` + simplify postcss resolution ([#​23692](https://togithub.com/nuxt/nuxt/pull/23692)) - **nuxt:** Skip hydration mismatches with client components ([#​19231](https://togithub.com/nuxt/nuxt/pull/19231)) - **nuxt:** Write cookie values before navigating away ([#​23697](https://togithub.com/nuxt/nuxt/pull/23697)) - **nuxt:** Refetch both undefined/null values in `useAsyncData` ([#​23351](https://togithub.com/nuxt/nuxt/pull/23351)) - **nuxt:** Don't mark redirected routes as prerendered ([#​23707](https://togithub.com/nuxt/nuxt/pull/23707)) - **nuxt:** Respect custom export in component transform ([#​23715](https://togithub.com/nuxt/nuxt/pull/23715)) - **nuxt:** Don't use `prerenderedAt` to override app manifest ([#​23781](https://togithub.com/nuxt/nuxt/pull/23781)) - **nuxt:** Restore `prerenderedAt` behaviour pending next patch ([108b1bdf7](https://togithub.com/nuxt/nuxt/commit/108b1bdf7)) ##### 📖 Documentation - Mention `listhen` options on nuxi dev page ([#​23415](https://togithub.com/nuxt/nuxt/pull/23415)) - Add examples for index.ts files on server routes ([#​23390](https://togithub.com/nuxt/nuxt/pull/23390)) - Improve data fetching section ([#​23420](https://togithub.com/nuxt/nuxt/pull/23420)) - Remove duplicated arrows ([#​23436](https://togithub.com/nuxt/nuxt/pull/23436)) - Extend description of `handler` for `useAsyncData` ([#​23389](https://togithub.com/nuxt/nuxt/pull/23389)) - Clarify bridge needs `nitro` to use `runtimeConfig` ([#​23454](https://togithub.com/nuxt/nuxt/pull/23454)) - Fix typo in README ([#​23500](https://togithub.com/nuxt/nuxt/pull/23500)) - Clarify that `bridge.typescript` option must be set. ([#​23503](https://togithub.com/nuxt/nuxt/pull/23503)) - Use html instead of xml for highlight ([45c1e7f51](https://togithub.com/nuxt/nuxt/commit/45c1e7f51)) - Fix component library example in docs ([#​23596](https://togithub.com/nuxt/nuxt/pull/23596)) - Typo in modules ([#​23602](https://togithub.com/nuxt/nuxt/pull/23602)) - Reword local module info ([#​23557](https://togithub.com/nuxt/nuxt/pull/23557)) - Add server concept ([#​23372](https://togithub.com/nuxt/nuxt/pull/23372)) - Improve `nuxt kit` section ([#​22375](https://togithub.com/nuxt/nuxt/pull/22375)) - Update additional mentions to nightly release channel ([c63f9a95d](https://togithub.com/nuxt/nuxt/commit/c63f9a95d)) - Rename `/edge-channel` page to `/nightly-release-channel` ([#​23648](https://togithub.com/nuxt/nuxt/pull/23648)) - Add section about computed url for data fetching ([#​23605](https://togithub.com/nuxt/nuxt/pull/23605)) - Fix typo ([#​23656](https://togithub.com/nuxt/nuxt/pull/23656)) - Remove extraneous brace ([b9cb08cda](https://togithub.com/nuxt/nuxt/commit/b9cb08cda)) - Fix other issues with `routeRules` example ([818dc626c](https://togithub.com/nuxt/nuxt/commit/818dc626c)) - Fix typo ([#​23716](https://togithub.com/nuxt/nuxt/pull/23716)) - Update types for useFetch/useAsyncData ([#​23730](https://togithub.com/nuxt/nuxt/pull/23730)) - Add info about `` and `` ([#​23741](https://togithub.com/nuxt/nuxt/pull/23741)) - Update to new website ([#​23743](https://togithub.com/nuxt/nuxt/pull/23743)) - Remove redundant trailing slashes from links ([#​23744](https://togithub.com/nuxt/nuxt/pull/23744)) - Fix broken link ([#​23750](https://togithub.com/nuxt/nuxt/pull/23750)) ##### 🏡 Chore - Fix various typos and update to US English ([#​23580](https://togithub.com/nuxt/nuxt/pull/23580)) - Add description field for packages ([#​23734](https://togithub.com/nuxt/nuxt/pull/23734)) - Bump nuxt devtools to 1.0 ([#​23752](https://togithub.com/nuxt/nuxt/pull/23752)) - Allow markdownlint upgrades ([3d779fcf3](https://togithub.com/nuxt/nuxt/commit/3d779fcf3)) - Remove huntr + encourage GitHub vulnerability reporting ([#​23754](https://togithub.com/nuxt/nuxt/pull/23754)) - Refresh lockfile ([#​23755](https://togithub.com/nuxt/nuxt/pull/23755)) - Update to nitropack 2.7.0 ([#​23780](https://togithub.com/nuxt/nuxt/pull/23780)) - Upgrade to c12 1.5 with configurable layers ([#​23782](https://togithub.com/nuxt/nuxt/pull/23782)) ##### ✅ Tests - **nuxt:** Add test suite for app resolution behaviour ([#​23520](https://togithub.com/nuxt/nuxt/pull/23520)) - Update prerender test ([8d62c2add](https://togithub.com/nuxt/nuxt/commit/8d62c2add)) ##### 🤖 CI - Retry failing links 6 times ([ad2a900fd](https://togithub.com/nuxt/nuxt/commit/ad2a900fd)) - Only dedupe dependencies if they affect bundle size ([#​23736](https://togithub.com/nuxt/nuxt/pull/23736)) ##### ❤️ Contributors - Daniel Roe ([@​danielroe](https://togithub.com/danielroe)) - Pooya Parsa ([@​pi0](https://togithub.com/pi0)) - Anthony Fu ([@​antfu](https://togithub.com/antfu)) - Jianqi Pan ([@​Jannchie](https://togithub.com/Jannchie)) - Damian Głowala ([@​DamianGlowala](https://togithub.com/DamianGlowala)) - Sébastien Chopin ([@​Atinux](https://togithub.com/Atinux)) - Alexander Lichter ([@​manniL](https://togithub.com/manniL)) - [@​boc-the-git](https://togithub.com/boc-the-git) - Aleksandar Trpkovski ([@​Suv4o](https://togithub.com/Suv4o)) - Dario Ferderber ([@​darioferderber](https://togithub.com/darioferderber)) - Warflash ([@​warflash](https://togithub.com/warflash)) - Julien Huang ([@​huang-julien](https://togithub.com/huang-julien)) - Sacha Stafyniak ([@​stafyniaksacha](https://togithub.com/stafyniaksacha)) - Alex Liu ([@​Mini-ghost](https://togithub.com/Mini-ghost)) - Orocane ([@​S1RANN](https://togithub.com/S1RANN)) - Italo ([@​DarkGhostHunter](https://togithub.com/DarkGhostHunter)) - [@​maritaria](https://togithub.com/maritaria) - Andrey Yolkin ([@​Andrey](https://togithub.com/Andrey) Yolkin) - Aaron_Zhou ([@​Clarkkkk](https://togithub.com/Clarkkkk)) - Estéban ([@​Barbapapazes](https://togithub.com/Barbapapazes)) - [@​sheriffderek](https://togithub.com/sheriffderek) - Eugen Istoc ([@​genu](https://togithub.com/genu)) - Mostafa Said ([@​i-Said-Code](https://togithub.com/i-Said-Code)) - Ezra Adeyinka ([@​adeyinkaezra123](https://togithub.com/adeyinkaezra123)) - Ryota Watanabe ([@​wattanx](https://togithub.com/wattanx)) - Hendrik Heil ([@​hendrikheil](https://togithub.com/hendrikheil)) - [@​0xflotus](https://togithub.com/0xflotus) - Albert Brand ([@​AlbertBrand](https://togithub.com/AlbertBrand)) - Arsen Goian ([@​arsengoian](https://togithub.com/arsengoian)) - Maxim ([@​MaxKostenko](https://togithub.com/MaxKostenko)) - Filip Weidemann ([@​filipweidemann](https://togithub.com/filipweidemann)) - Toni Engelhardt ([@​toniengelhardt](https://togithub.com/toniengelhardt))
vitest-dev/vitest (@​vitest/coverage-v8) ### [`v0.34.6`](https://togithub.com/vitest-dev/vitest/releases/tag/v0.34.6) [Compare Source](https://togithub.com/vitest-dev/vitest/compare/v0.34.5...v0.34.6) #####    🐞 Bug Fixes - Overwrite global URL with environment's  -  by [@​sheremet-va](https://togithub.com/sheremet-va) in [https://github.com/vitest-dev/vitest/issues/4164](https://togithub.com/vitest-dev/vitest/issues/4164) [(cbe13)](https://togithub.com/vitest-dev/vitest/commit/cbe133da) - Correctly resolve external dependencies loaded by custom environments  -  by [@​sheremet-va](https://togithub.com/sheremet-va) in [https://github.com/vitest-dev/vitest/issues/4196](https://togithub.com/vitest-dev/vitest/issues/4196) [(e3408)](https://togithub.com/vitest-dev/vitest/commit/e340802f) - **runner**: The fixture of `test.extend` should be init once time in all test  -  by [@​Dunqing](https://togithub.com/Dunqing) in [https://github.com/vitest-dev/vitest/issues/4168](https://togithub.com/vitest-dev/vitest/issues/4168) [(730b2)](https://togithub.com/vitest-dev/vitest/commit/730b29ec) #####     [View changes on GitHub](https://togithub.com/vitest-dev/vitest/compare/v0.34.5...v0.34.6)
eslint/eslint (eslint) ### [`v8.52.0`](https://togithub.com/eslint/eslint/releases/tag/v8.52.0) [Compare Source](https://togithub.com/eslint/eslint/compare/v8.51.0...v8.52.0) #### Features - [`70648ee`](https://togithub.com/eslint/eslint/commit/70648ee49c07f7b533d09f6bf8a5291e5a5a8601) feat: report-unused-disable-directive to report unused eslint-enable ([#​17611](https://togithub.com/eslint/eslint/issues/17611)) (Yosuke Ota) #### Bug Fixes - [`5de9637`](https://togithub.com/eslint/eslint/commit/5de9637fc925729a83d5a5e9e868a41792a184e3) fix: Ensure shared references in rule configs are separated ([#​17666](https://togithub.com/eslint/eslint/issues/17666)) (Nicholas C. Zakas) - [`dcfe573`](https://togithub.com/eslint/eslint/commit/dcfe5739c374c9d7ed21f14027870ec0fd453661) fix: add preceding semicolon in suggestions of `no-object-constructor` ([#​17649](https://togithub.com/eslint/eslint/issues/17649)) (Francesco Trotta) #### Documentation - [`476d58a`](https://togithub.com/eslint/eslint/commit/476d58a584d5d2db003c4c22ffee90e63566164d) docs: Add note about invalid CLI flags when using flat config. ([#​17664](https://togithub.com/eslint/eslint/issues/17664)) (Nicholas C. Zakas) - [`660ed3a`](https://togithub.com/eslint/eslint/commit/660ed3afd128ad529234a855345629982caf1bc7) docs: Plugin flat config migration guide ([#​17640](https://togithub.com/eslint/eslint/issues/17640)) (Nicholas C. Zakas) - [`a58aa20`](https://togithub.com/eslint/eslint/commit/a58aa200fccedae7e2e9b6129246f2cedab14f8d) docs: fix examples for several rules ([#​17645](https://togithub.com/eslint/eslint/issues/17645)) (Milos Djermanovic) - [`179929b`](https://togithub.com/eslint/eslint/commit/179929bd46892f18f2aef0c159d5cc361cb69987) docs: Remove trailing newline from the code of Playground links ([#​17641](https://togithub.com/eslint/eslint/issues/17641)) (Francesco Trotta) - [`f8e5c30`](https://togithub.com/eslint/eslint/commit/f8e5c30636450d4a8baf51f0e227685e6d77ac64) docs: Update README (GitHub Actions Bot) - [`b7ef2f3`](https://togithub.com/eslint/eslint/commit/b7ef2f34fe12b68a366e1b4bf5f64d7332c6e72e) docs: Enable pretty code formatter output ([#​17635](https://togithub.com/eslint/eslint/issues/17635)) (Nicholas C. Zakas) - [`0bcb9a8`](https://togithub.com/eslint/eslint/commit/0bcb9a8db608a3d0bd2645f99e0707b9a9bbaaf0) docs: Fix syntax errors in rule examples ([#​17633](https://togithub.com/eslint/eslint/issues/17633)) (Francesco Trotta) - [`61b9083`](https://togithub.com/eslint/eslint/commit/61b90839633ef300ac7707a651f65f532e65f42d) docs: Make no-continue example code work ([#​17643](https://togithub.com/eslint/eslint/issues/17643)) (Zhongyuan Zhou) - [`9fafe45`](https://togithub.com/eslint/eslint/commit/9fafe450c31ed9b6bdd9dcd6c115255943b8c1c2) docs: upgrade to 11ty 2.0 ([#​17632](https://togithub.com/eslint/eslint/issues/17632)) (Percy Ma) - [`ff8e4bf`](https://togithub.com/eslint/eslint/commit/ff8e4bf327b5c92b0623b0fc5f8f101954f785db) docs: Update README (GitHub Actions Bot) - [`fab249a`](https://togithub.com/eslint/eslint/commit/fab249ae6addac2ee18cd81cee80916010bb469e) docs: Update README (GitHub Actions Bot) - [`392305b`](https://togithub.com/eslint/eslint/commit/392305bf4797e3ebc696dfca48bd874741fca845) docs: Update `no-irregular-whitespace` and fix examples ([#​17626](https://togithub.com/eslint/eslint/issues/17626)) (Francesco Trotta) - [`6b8acfb`](https://togithub.com/eslint/eslint/commit/6b8acfb770589f3941df41c3910d3b8ffc3e1e45) docs: Add real whitespace to `no-trailing-spaces` examples ([#​17630](https://togithub.com/eslint/eslint/issues/17630)) (Francesco Trotta) - [`1000187`](https://togithub.com/eslint/eslint/commit/1000187e00949332babcee4d37d46c96a6a554a8) docs: Fix examples in `unicode-bom` ([#​17631](https://togithub.com/eslint/eslint/issues/17631)) (Francesco Trotta) - [`000290c`](https://togithub.com/eslint/eslint/commit/000290c4c923cc1473e21b4bdbdc0c42765ef7dd) docs: Update README (GitHub Actions Bot) #### Chores - [`6d1f0c2`](https://togithub.com/eslint/eslint/commit/6d1f0c2da0309c06c21149b8d71a8f439a70d7e8) chore: upgrade [@​eslint/js](https://togithub.com/eslint/js)[@​8](https://togithub.com/8).52.0 ([#​17671](https://togithub.com/eslint/eslint/issues/17671)) (Milos Djermanovic) - [`d63d4fe`](https://togithub.com/eslint/eslint/commit/d63d4fe0942e6747ab60e758aa36076f43041a30) chore: package.json update for [@​eslint/js](https://togithub.com/eslint/js) release (ESLint Jenkins) - [`f30cefe`](https://togithub.com/eslint/eslint/commit/f30cefee6bda2789ede18e1664b84c2638ea1bb5) test: fix FlatESLint tests for caching ([#​17658](https://togithub.com/eslint/eslint/issues/17658)) (Milos Djermanovic) - [`ef650cb`](https://togithub.com/eslint/eslint/commit/ef650cb612510bcfa1379c1f0af56dd563b3a705) test: update tests for no-promise-executor-return ([#​17661](https://togithub.com/eslint/eslint/issues/17661)) (Milos Djermanovic) ### [`v8.51.0`](https://togithub.com/eslint/eslint/releases/tag/v8.51.0) [Compare Source](https://togithub.com/eslint/eslint/compare/v8.50.0...v8.51.0) #### Features - [`0a9c433`](https://togithub.com/eslint/eslint/commit/0a9c43339a4adef24ef83034d0b078dd279cc977) feat: Add `--no-warn-ignored` CLI option for flat config ([#​17569](https://togithub.com/eslint/eslint/issues/17569)) (Domantas Petrauskas) - [`977e67e`](https://togithub.com/eslint/eslint/commit/977e67ec274a05cb7391665b5e3453e7f72f72b2) feat: logical-assignment-operators to report expressions with 3 operands ([#​17600](https://togithub.com/eslint/eslint/issues/17600)) (Yosuke Ota) #### Bug Fixes - [`f976b2f`](https://togithub.com/eslint/eslint/commit/f976b2f7bfe7cc78bb649f8b37e90fd519ff3bcc) fix: make rule severity case-sensitive in flat config ([#​17619](https://togithub.com/eslint/eslint/issues/17619)) (Milos Djermanovic) - [`0edfe36`](https://togithub.com/eslint/eslint/commit/0edfe369aa5bd80a98053022bb4c6b1ea0155f44) fix: Ensure crash error messages are not duplicated ([#​17584](https://togithub.com/eslint/eslint/issues/17584)) (Nicholas C. Zakas) - [`dd79abc`](https://togithub.com/eslint/eslint/commit/dd79abc0c1857b1d765acc312c0d6518e40d31c9) fix: `eslint-disable` to be able to parse quoted rule names ([#​17612](https://togithub.com/eslint/eslint/issues/17612)) (Yosuke Ota) - [`d2f6801`](https://togithub.com/eslint/eslint/commit/d2f68019b8882278877801c5ef2f74d55e2a10c1) fix: Ensure correct code path for && followed by ?? ([#​17618](https://togithub.com/eslint/eslint/issues/17618)) (Nicholas C. Zakas) #### Documentation - [`ee5be81`](https://togithub.com/eslint/eslint/commit/ee5be81fa3c4fe801c2f653854f098ed6a84dcef) docs: default to `sourceType: "module"` in rule examples ([#​17615](https://togithub.com/eslint/eslint/issues/17615)) (Francesco Trotta) - [`1aa26df`](https://togithub.com/eslint/eslint/commit/1aa26df9fbcfdf5b895743c6d2d3a216479544b1) docs: Add more examples for multiline-ternary ([#​17610](https://togithub.com/eslint/eslint/issues/17610)) (George Ashiotis) - [`47d0b44`](https://togithub.com/eslint/eslint/commit/47d0b446964f44d70b9457ecc368e721e1dc7c11) docs: Update README (GitHub Actions Bot) - [`dbf831e`](https://togithub.com/eslint/eslint/commit/dbf831e31f8eea0bc94df96cd33255579324b66e) docs: use generated og image ([#​17601](https://togithub.com/eslint/eslint/issues/17601)) (Percy Ma) - [`1866da5`](https://togithub.com/eslint/eslint/commit/1866da5e1d931787256ecb825a803cac5835b71c) docs: Update README (GitHub Actions Bot) #### Chores - [`1ef39ea`](https://togithub.com/eslint/eslint/commit/1ef39ea5b884453be717ebc929155d7eb584dcbf) chore: upgrade [@​eslint/js](https://togithub.com/eslint/js)[@​8](https://togithub.com/8).51.0 ([#​17624](https://togithub.com/eslint/eslint/issues/17624)) (Milos Djermanovic) - [`f8c7403`](https://togithub.com/eslint/eslint/commit/f8c7403255c11e99c402860aef3c0179f2b16628) chore: package.json update for [@​eslint/js](https://togithub.com/eslint/js) release (ESLint Jenkins) - [`2665552`](https://togithub.com/eslint/eslint/commit/2665552ba0057e8603f9fbece0fd236f189f5cf3) test: fix flat config linter tests to use Linter in flat config mode ([#​17616](https://togithub.com/eslint/eslint/issues/17616)) (Milos Djermanovic) - [`7b77bcc`](https://togithub.com/eslint/eslint/commit/7b77bccbb51bd36b2d20fea61bc782545c4029b3) chore: Refactor CodePathState ([#​17510](https://togithub.com/eslint/eslint/issues/17510)) (Nicholas C. Zakas) - [`bc77c9a`](https://togithub.com/eslint/eslint/commit/bc77c9af12539f350ef19e30611a153a5b869c6b) chore: Document and refactor ForkContext ([#​17566](https://togithub.com/eslint/eslint/issues/17566)) (Nicholas C. Zakas) - [`24e1f14`](https://togithub.com/eslint/eslint/commit/24e1f140ec68659e55c1ace0d7500addb135a2b4) chore: Refactor and document CodePath ([#​17558](https://togithub.com/eslint/eslint/issues/17558)) (Nicholas C. Zakas)
nuxt/cli (nuxi) ### [`v3.9.1`](https://togithub.com/nuxt/cli/blob/HEAD/CHANGELOG.md#v391) [Compare Source](https://togithub.com/nuxt/cli/compare/v3.9.0...v3.9.1) [compare changes](https://togithub.com/nuxt/cli/compare/v3.9.0...v3.9.1) ##### 🩹 Fixes - Pass `baseUrl` to listen options ([#​236](https://togithub.com/nuxt/cli/pull/236)) - **dev:** Prefer `localhost` over `[::]` for internal networking ([#​242](https://togithub.com/nuxt/cli/pull/242)) - Support `-nightly` nuxt releases and publish `nuxi-nightly` ([#​248](https://togithub.com/nuxt/cli/pull/248)) ##### 🏡 Chore - **release:** V3.9.0 ([c4b90f7](https://togithub.com/nuxt/cli/commit/c4b90f7)) - Add `.devcontainer` ([b8f9fd3](https://togithub.com/nuxt/cli/commit/b8f9fd3)) - Islolate `dist` dir for dev container ([f55d0a1](https://togithub.com/nuxt/cli/commit/f55d0a1)) - Update c12 and lockfile ([f7eecc7](https://togithub.com/nuxt/cli/commit/f7eecc7)) ##### ❤️ Contributors - Pooya Parsa ([@​pi0](http://github.com/pi0)) - Daniel Roe - Warflash
pnpm/pnpm (pnpm) ### [`v8.9.2`](https://togithub.com/pnpm/pnpm/releases/tag/v8.9.2) [Compare Source](https://togithub.com/pnpm/pnpm/compare/v8.9.1...v8.9.2) ##### Patch Changes - Don't use reflink on Windows [#​7186](https://togithub.com/pnpm/pnpm/issues/7186). - Do not run node-gyp rebuild if `preinstall` lifecycle script is present [#​7206](https://togithub.com/pnpm/pnpm/pull/7206). ##### Our Gold Sponsors
##### Our Silver Sponsors
### [`v8.9.1`](https://togithub.com/pnpm/pnpm/releases/tag/v8.9.1) [Compare Source](https://togithub.com/pnpm/pnpm/compare/v8.9.0...v8.9.1) ##### Patch Changes - Optimize selection result output of `pnpm update --interactive` [7109](https://togithub.com/pnpm/pnpm/issues/7109) - When `shared-workspace-lockfile` is set to `false`, read the pnpm settings from `package.json` files that are nested. This was broken in pnpm v8.9.0 [#​7184](https://togithub.com/pnpm/pnpm/issues/7184). - Fix file cloning to `node_modules` on Windows Dev Drives [#​7186](https://togithub.com/pnpm/pnpm/issues/7186). This is a fix to a regression that was shipped with v8.9.0. - `pnpm dlx` should ignore any settings that are in a `package.json` file found in the current working directory [#​7198](https://togithub.com/pnpm/pnpm/issues/7198). ##### Our Gold Sponsors
##### Our Silver Sponsors
### [`v8.9.0`](https://togithub.com/pnpm/pnpm/releases/tag/v8.9.0) [Compare Source](https://togithub.com/pnpm/pnpm/compare/v8.8.0...v8.9.0) #### Minor Changes - **🚀Performance improvement:** Use reflinks instead of hard links by default on macOS and Windows Dev Drives [#​5001](https://togithub.com/pnpm/pnpm/issues/5001). - The list of packages that are allowed to run installation scripts now may be provided in a separate configuration file. The path to the file should be specified via the `pnpm.onlyBuiltDependenciesFile` field in `package.json`. For instance: ```json { "dependencies": { "@​my-org/policy": "1.0.0" } "pnpm": { "onlyBuiltDependenciesFile": "node_modules/@​my-org/policy/allow-build.json" } } ``` In the example above, the list is loaded from a dependency. The JSON file with the list should contain an array of package names. For instance: ```json ["esbuild", "@​reflink/reflink"] ``` With the above list, only `esbuild` and `@reflink/reflink` will be allowed to run scripts during installation. Related issue: [#​7137](https://togithub.com/pnpm/pnpm/issues/7137). - Add `disallow-workspace-cycles` option to error instead of warn about cyclic dependencies - Allow `env rm` to remove multiple node versions at once, and introduce `env add` for installing node versions without setting as default [#​7155](https://togithub.com/pnpm/pnpm/pull/7155). #### Patch Changes - Fix memory error in `pnpm why` when the dependencies tree is too big, the command will now prune the tree to just 10 end leafs and now supports `--depth` argument [#​7122](https://togithub.com/pnpm/pnpm/pull/7122). - Use `neverBuiltDependencies` and `onlyBuiltDependencies` from the root `package.json` of the workspace, when `shared-workspace-lockfile` is set to `false` [#​7141](https://togithub.com/pnpm/pnpm/pull/7141). - Optimize peers resolution to avoid out-of-memory exceptions in some rare cases, when there are too many circular dependencies and peer dependencies [#​7149](https://togithub.com/pnpm/pnpm/pull/7149). - Instead of `pnpm.overrides` replacing `resolutions`, the two are now merged. This is intended to make it easier to migrate from Yarn by allowing one to keep using `resolutions` for Yarn, but adding additional changes just for pnpm using `pnpm.overrides`. #### Our Gold Sponsors
#### Our Silver Sponsors

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.



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