Closed renovate[bot] closed 2 weeks ago
Name | Link |
---|---|
Latest commit | 8cae64746b23d796d9594679575f811e62e13b98 |
Latest deploy log | https://app.netlify.com/sites/rslib/deploys/6715d56a386307000853a84a |
Deploy Preview | https://deploy-preview-310--rslib.netlify.app |
Preview on mobile | Toggle QR Code...Use your smartphone camera to open QR code link. |
To edit notification comments on pull requests, go to your Netlify site configuration.
Comparing renovate/all-patch
(8cae647) with main
(a51d4bd)
✅ 5
untouched benchmarks
This PR contains the following updates:
^1.9.3
->^1.9.4
^7.47.9
->^7.47.11
1.48.0
->1.48.1
~1.0.14
->~1.0.16
^1.0.4
->^1.0.5
^1.0.3
->^1.0.4
^4.17.10
->^4.17.12
1.0.6
->1.0.7
^20.0.0
->^20.0.3
1.1.0
->1.1.1
0.0.12
->0.0.13
^3.4.13
->^3.4.14
^2.1.2
->^2.1.3
Release Notes
biomejs/biome (@biomejs/biome)
### [`v1.9.4`](https://redirect.github.com/biomejs/biome/blob/HEAD/CHANGELOG.md#v194-2024-10-17) [Compare Source](https://redirect.github.com/biomejs/biome/compare/3d498ed6399dc642d045f9bb9e9782a88c6bd4c9...fa93a147abe64e9c85908d317a8dd1de343ad132) ##### Analyzer ##### Bug fixes - Implement [GraphQL suppression action](https://redirect.github.com/biomejs/biome/pull/4312). Contributed by [@vohoanglong0107](https://redirect.github.com/vohoanglong0107) - Improved the message for unused suppression comments. Contributed by [@dyc3](https://redirect.github.com/dyc3) - Fix [#4228](https://redirect.github.com/biomejs/biome/issues/4228), where the rule `a11y/noInteractiveElementToNoninteractiveRole` incorrectly reports a `role` for non-interactive elements. Contributed by [@eryue0220](https://redirect.github.com/eryue0220) - `noSuspiciousSemicolonInJsx` now catches suspicious semicolons in React fragments. Contributed by [@vasucp1207](https://redirect.github.com/vasucp1207) ##### CLI ##### Enhancements - The `--summary` reporter now reports parsing diagnostics too. Contributed by [@ematipico](https://redirect.github.com/ematipico) - Improved performance of GritQL queries by roughly 25-30%. Contributed by [@arendjr](https://redirect.github.com/arendjr) ##### Configuration ##### Bug fixes - Fix an issue where the JSON schema marked lint rules options as mandatory. Contributed by [@ematipico](https://redirect.github.com/ematipico) ##### Editors ##### Formatter ##### Bug fixes - Fix [#4121](https://redirect.github.com/biomejs/biome/issues/4121). Respect line width when printing multiline strings. Contributed by [@ah-yu](https://redirect.github.com/ah-yu) ##### JavaScript APIs ##### Linter ##### New features - Add [useGuardForIn](https://biomejs.dev/linter/rules/use-guard-for-in/). Contributed by [@fireairforce](https://redirect.github.com/fireairforce) - Add [noDocumentCookie](https://biomejs.dev/linter/rules/no-document-cookie/). Contributed by [@tunamaguro](https://redirect.github.com/tunamaguro) - Add [noDocumentImportInPage](https://biomejs.dev/linter/rules/no-document-import-in-page/). Contributed by [@kaioduarte](https://redirect.github.com/kaioduarte) - Add [noDuplicateProperties](https://biomejs.dev/linter/rules/no-duplicate-properties/). Contributed by [@togami2864](https://redirect.github.com/togami2864) - Add [noHeadElement](https://biomejs.dev/linter/rules/no-head-element/). Contributed by [@kaioduarte](https://redirect.github.com/kaioduarte) - Add [noHeadImportInDocument](https://biomejs.dev/linter/rules/no-head-import-in-document/). Contributed by [@kaioduarte](https://redirect.github.com/kaioduarte) - Add [noImgElement](https://biomejs.dev/linter/rules/no-img-element/). Contributed by [@kaioduarte](https://redirect.github.com/kaioduarte) - Add [noUnknownTypeSelector](https://biomejs.dev/linter/rules/no-unknown-type-selector/). Contributed by [@Kazuhiro-Mimaki](https://redirect.github.com/Kazuhiro-Mimaki) - Add [useAtIndex](https://biomejs.dev/linter/rules/use-at-index/). Contributed by [@GunseiKPaseri](https://redirect.github.com/GunseiKPaseri) - Add [noUselessStringRaw](https://biomejs.dev/linter/rules/no-useless-string-raw/). Contributed by [@fireairforce](https://redirect.github.com/fireairforce) - Add [nursery/useCollapsedIf](https://biomejs.dev/linter/rules/use-collapsed-if/). Contributed by [@siketyan](https://redirect.github.com/siketyan) - Add [useGoogleFontDisplay](https://biomejs.dev/linter/rules/use-google-font-display/). Contributed by [@kaioduarte](https://redirect.github.com/kaioduarte) ##### Bug Fixes - Biome no longer crashes when it encounters a string that contain a multibyte character ([#4181](https://redirect.github.com/biomejs/biome/issues/4181)). This fixes a regression introduced in Biome 1.9.3 The regression affected the following linter rules: - `nursery/useSortedClasses` - `nursery/useTrimStartEnd` - `style/useTemplate` - `suspicious/noMisleadingCharacterClass` Contributed by [@Conaclos](https://redirect.github.com/Conaclos) - Fix [#4190](https://redirect.github.com/biomejs/biome/issues/4190), where the rule `noMissingVarFunction` wrongly reported a variable as missing when used inside a `var()` function that was a newline. Contributed by [@ematipico](https://redirect.github.com/ematipico) - Fix [#4041](https://redirect.github.com/biomejs/biome/issues/4041). Now the rule `useSortedClasses` won't be triggered if `className` is composed only by inlined variables. Contributed by [@ematipico](https://redirect.github.com/ematipico) - [useImportType](https://biomejs.dev/linter/rules/use-import-type/) and [useExportType](https://biomejs.dev/linter/rules/use-export-type/) now report useless inline type qualifiers ([#4178](https://redirect.github.com/biomejs/biome/issues/4178)). The following fix is now proposed: ```diff - import type { type A, B } from ""; + import type { A, B } from ""; - export type { type C, D }; + export type { C, D }; ``` Contributed by [@Conaclos](https://redirect.github.com/Conaclos) - [useExportType](https://biomejs.dev/linter/rules/use-export-type/) now reports ungrouped `export from`. The following fix is now proposed: ```diff - export { type A, type B } from ""; + export type { A, B } from ""; ``` Contributed by [@Conaclos](https://redirect.github.com/Conaclos) - [noVoidTypeReturn](https://biomejs.dev/linter/rules/no-void-type-return/) now accepts `void` expressions in return position ([#4173](https://redirect.github.com/biomejs/biome/issues/4173)). The following code is now accepted: ```ts function f(): void { return void 0; } ``` Contributed by [@Conaclos](https://redirect.github.com/Conaclos) - [noUselessFragments](https://biomejs.dev/linter/rules/no-useless-fragments/) now correctly handles fragments containing HTML escapes (e.g. ` `) inside expression escapes `{ ... }` ([#4059](https://redirect.github.com/biomejs/biome/issues/4059)). The following code is no longer reported: ```jsx function Component() { return (microsoft/rushstack (@microsoft/api-extractor)
### [`v7.47.11`](https://redirect.github.com/microsoft/rushstack/blob/HEAD/apps/api-extractor/CHANGELOG.md#74711) [Compare Source](https://redirect.github.com/microsoft/rushstack/compare/@microsoft/api-extractor_v7.47.10...@microsoft/api-extractor_v7.47.11) Thu, 17 Oct 2024 08:35:06 GMT *Version update only* ### [`v7.47.10`](https://redirect.github.com/microsoft/rushstack/blob/HEAD/apps/api-extractor/CHANGELOG.md#74710) [Compare Source](https://redirect.github.com/microsoft/rushstack/compare/@microsoft/api-extractor_v7.47.9...@microsoft/api-extractor_v7.47.10) Tue, 15 Oct 2024 00:12:31 GMT ##### Patches - Fix a compatibility issue with usage of `getModeForUsageLocation` in TypeScript 5.6microsoft/playwright (@playwright/test)
### [`v1.48.1`](https://redirect.github.com/microsoft/playwright/releases/tag/v1.48.1) [Compare Source](https://redirect.github.com/microsoft/playwright/compare/v1.48.0...v1.48.1) ##### Highlights [https://github.com/microsoft/playwright/issues/33023](https://redirect.github.com/microsoft/playwright/issues/33023) - \[Bug]: command line flag --headed has no effect in ui mode[https://github.com/microsoft/playwright/issues/33107](https://redirect.github.com/microsoft/playwright/issues/33107)7 - \[REGRESSION]: page.waitForRequest does not get resolved since 1.48.[https://github.com/microsoft/playwright/issues/33085](https://redirect.github.com/microsoft/playwright/issues/33085)85 - \[Bug]: WebSocket route does not handle full URLs in Playwrig[https://github.com/microsoft/playwright/issues/33052](https://redirect.github.com/microsoft/playwright/issues/33052)052 - \[Regression]: Inspector not showing recorded st[https://github.com/microsoft/playwright/issues/33132](https://redirect.github.com/microsoft/playwright/issues/33132)3132 - \[Bug]: Wrong Ubuntu release name in Dockerfile.n[https://github.com/microsoft/playwright/pull/32996](https://redirect.github.com/microsoft/playwright/pull/32996)32996 - \[BUG] Trace attachments have small unusable height #### Browser Versions - Chromium 130.0.6723.19 - Mozilla Firefox 130.0 - WebKit 18.0 This version was also tested against the following stable channels: - Google Chrome 129 - Microsoft Edge 129web-infra-dev/rsbuild (@rsbuild/core)
### [`v1.0.16`](https://redirect.github.com/web-infra-dev/rsbuild/releases/tag/v1.0.16) [Compare Source](https://redirect.github.com/web-infra-dev/rsbuild/compare/v1.0.15...v1.0.16) ##### What's Changed ##### New Features 🎉 - feat: add appendRules util to `tools.rspack` config by [@9aoy](https://redirect.github.com/9aoy) in [https://github.com/web-infra-dev/rsbuild/pull/3755](https://redirect.github.com/web-infra-dev/rsbuild/pull/3755) - feat: `output.filename.css` allow function by [@gaoachao](https://redirect.github.com/gaoachao) in [https://github.com/web-infra-dev/rsbuild/pull/3752](https://redirect.github.com/web-infra-dev/rsbuild/pull/3752) - feat(create-rsbuild): support for both svelte4 and svelte5 by [@chenjiahan](https://redirect.github.com/chenjiahan) in [https://github.com/web-infra-dev/rsbuild/pull/3771](https://redirect.github.com/web-infra-dev/rsbuild/pull/3771) ##### Bug Fixes 🐞 - fix: use `getCompilationHooks` of HTML plugin by [@chenjiahan](https://redirect.github.com/chenjiahan) in [https://github.com/web-infra-dev/rsbuild/pull/3750](https://redirect.github.com/web-infra-dev/rsbuild/pull/3750) - fix: revert to the `getHooks` of HTML plugin by [@chenjiahan](https://redirect.github.com/chenjiahan) in [https://github.com/web-infra-dev/rsbuild/pull/3753](https://redirect.github.com/web-infra-dev/rsbuild/pull/3753) - fix: configure the default assetPrefix for MF apps correctly by [@chenjiahan](https://redirect.github.com/chenjiahan) in [https://github.com/web-infra-dev/rsbuild/pull/3757](https://redirect.github.com/web-infra-dev/rsbuild/pull/3757) ##### Document 📖 - docs: improve `output.filename` function type by [@chenjiahan](https://redirect.github.com/chenjiahan) in [https://github.com/web-infra-dev/rsbuild/pull/3764](https://redirect.github.com/web-infra-dev/rsbuild/pull/3764) - docs: fix proxy links in features.mdx by [@s-chance](https://redirect.github.com/s-chance) in [https://github.com/web-infra-dev/rsbuild/pull/3767](https://redirect.github.com/web-infra-dev/rsbuild/pull/3767) - docs: update framework guides by [@chenjiahan](https://redirect.github.com/chenjiahan) in [https://github.com/web-infra-dev/rsbuild/pull/3772](https://redirect.github.com/web-infra-dev/rsbuild/pull/3772) ##### Other Changes - chore(CI): fix eco-ci ref & release checkout branch by [@9aoy](https://redirect.github.com/9aoy) in [https://github.com/web-infra-dev/rsbuild/pull/3746](https://redirect.github.com/web-infra-dev/rsbuild/pull/3746) - chore(deps): update dependency terser to v5.36.0 by [@renovate](https://redirect.github.com/renovate) in [https://github.com/web-infra-dev/rsbuild/pull/3761](https://redirect.github.com/web-infra-dev/rsbuild/pull/3761) - chore(deps): update dependency sass-embedded to ^1.80.3 by [@renovate](https://redirect.github.com/renovate) in [https://github.com/web-infra-dev/rsbuild/pull/3763](https://redirect.github.com/web-infra-dev/rsbuild/pull/3763) - chore(deps): update rspress to v1.34.1 by [@renovate](https://redirect.github.com/renovate) in [https://github.com/web-infra-dev/rsbuild/pull/3762](https://redirect.github.com/web-infra-dev/rsbuild/pull/3762) - chore(deps): update dependency sass to ^1.80.3 by [@renovate](https://redirect.github.com/renovate) in [https://github.com/web-infra-dev/rsbuild/pull/3760](https://redirect.github.com/web-infra-dev/rsbuild/pull/3760) - chore(deps): update dependency path-serializer to v0.2.2 by [@renovate](https://redirect.github.com/renovate) in [https://github.com/web-infra-dev/rsbuild/pull/3768](https://redirect.github.com/web-infra-dev/rsbuild/pull/3768) - chore(deps): bump svelte to v5 by [@chenjiahan](https://redirect.github.com/chenjiahan) in [https://github.com/web-infra-dev/rsbuild/pull/3770](https://redirect.github.com/web-infra-dev/rsbuild/pull/3770) ##### New Contributors - [@gaoachao](https://redirect.github.com/gaoachao) made their first contribution in [https://github.com/web-infra-dev/rsbuild/pull/3752](https://redirect.github.com/web-infra-dev/rsbuild/pull/3752) - [@s-chance](https://redirect.github.com/s-chance) made their first contribution in [https://github.com/web-infra-dev/rsbuild/pull/3767](https://redirect.github.com/web-infra-dev/rsbuild/pull/3767) **Full Changelog**: https://github.com/web-infra-dev/rsbuild/compare/v1.0.15...v1.0.16 ### [`v1.0.15`](https://redirect.github.com/web-infra-dev/rsbuild/releases/tag/v1.0.15) [Compare Source](https://redirect.github.com/web-infra-dev/rsbuild/compare/v1.0.14...v1.0.15) ##### What's Changed ##### New Features 🎉 - feat(webpack-swc): use Rslib to bundle by [@chenjiahan](https://redirect.github.com/chenjiahan) in [https://github.com/web-infra-dev/rsbuild/pull/3726](https://redirect.github.com/web-infra-dev/rsbuild/pull/3726) - feat(assets-retry): use Rslib to bundle by [@chenjiahan](https://redirect.github.com/chenjiahan) in [https://github.com/web-infra-dev/rsbuild/pull/3727](https://redirect.github.com/web-infra-dev/rsbuild/pull/3727) - feat: add rawPublicVars for `loadEnv` by [@chenjiahan](https://redirect.github.com/chenjiahan) in [https://github.com/web-infra-dev/rsbuild/pull/3732](https://redirect.github.com/web-infra-dev/rsbuild/pull/3732) - feat(plugin-react): allow to disable fast refresh by [@chenjiahan](https://redirect.github.com/chenjiahan) in [https://github.com/web-infra-dev/rsbuild/pull/3738](https://redirect.github.com/web-infra-dev/rsbuild/pull/3738) - feat(deps): bump rspack 1.0.13 by [@9aoy](https://redirect.github.com/9aoy) in [https://github.com/web-infra-dev/rsbuild/pull/3743](https://redirect.github.com/web-infra-dev/rsbuild/pull/3743) ##### Bug Fixes 🐞 - fix: allow to print URLs when HTML is disabled by [@chenjiahan](https://redirect.github.com/chenjiahan) in [https://github.com/web-infra-dev/rsbuild/pull/3737](https://redirect.github.com/web-infra-dev/rsbuild/pull/3737) ##### Document 📖 - docs: add note for destructuring of `process.env` to CRA guide by [@chenjiahan](https://redirect.github.com/chenjiahan) in [https://github.com/web-infra-dev/rsbuild/pull/3734](https://redirect.github.com/web-infra-dev/rsbuild/pull/3734) - docs: fix lazy compilation typo by [@9aoy](https://redirect.github.com/9aoy) in [https://github.com/web-infra-dev/rsbuild/pull/3736](https://redirect.github.com/web-infra-dev/rsbuild/pull/3736) - docs: add `process.env.NODE_ENV` inject tip by [@9aoy](https://redirect.github.com/9aoy) in [https://github.com/web-infra-dev/rsbuild/pull/3744](https://redirect.github.com/web-infra-dev/rsbuild/pull/3744) ##### Other Changes - release: 1.0.14 by [@chenjiahan](https://redirect.github.com/chenjiahan) in [https://github.com/web-infra-dev/rsbuild/pull/3717](https://redirect.github.com/web-infra-dev/rsbuild/pull/3717) - chore(deps): update rspress 1.33.1 by [@SoonIter](https://redirect.github.com/SoonIter) in [https://github.com/web-infra-dev/rsbuild/pull/3719](https://redirect.github.com/web-infra-dev/rsbuild/pull/3719) - ci: enhance Rsbuild ecosystem CI by [@9aoy](https://redirect.github.com/9aoy) in [https://github.com/web-infra-dev/rsbuild/pull/3712](https://redirect.github.com/web-infra-dev/rsbuild/pull/3712) - ci: should update eco-ci result in comment by [@9aoy](https://redirect.github.com/9aoy) in [https://github.com/web-infra-dev/rsbuild/pull/3722](https://redirect.github.com/web-infra-dev/rsbuild/pull/3722) - ci: not run eco-ci when only docs changed by [@9aoy](https://redirect.github.com/9aoy) in [https://github.com/web-infra-dev/rsbuild/pull/3735](https://redirect.github.com/web-infra-dev/rsbuild/pull/3735) - chore(deps): update the path-serializer by [@SoonIter](https://redirect.github.com/SoonIter) in [https://github.com/web-infra-dev/rsbuild/pull/3739](https://redirect.github.com/web-infra-dev/rsbuild/pull/3739) - chore(deps): update dependency terser to v5.35.0 by [@renovate](https://redirect.github.com/renovate) in [https://github.com/web-infra-dev/rsbuild/pull/3741](https://redirect.github.com/web-infra-dev/rsbuild/pull/3741) - release: 1.0.15 by [@9aoy](https://redirect.github.com/9aoy) in [https://github.com/web-infra-dev/rsbuild/pull/3745](https://redirect.github.com/web-infra-dev/rsbuild/pull/3745) **Full Changelog**: https://github.com/web-infra-dev/rsbuild/compare/v1.0.14...v1.0.15rspack-contrib/create-rstack (create-rstack)
### [`v1.0.7`](https://redirect.github.com/rspack-contrib/create-rstack/releases/tag/v1.0.7) [Compare Source](https://redirect.github.com/rspack-contrib/create-rstack/compare/v1.0.6...v1.0.7) #### What's Changed - chore(deps): bump rslib v0.0.12 by [@fi3ework](https://redirect.github.com/fi3ework) in [https://github.com/rspack-contrib/create-rstack/pull/14](https://redirect.github.com/rspack-contrib/create-rstack/pull/14) - fix: types in [@clack/prompts](https://redirect.github.com/clack/prompts) should be bundled by [@fi3ework](https://redirect.github.com/fi3ework) in [https://github.com/rspack-contrib/create-rstack/pull/15](https://redirect.github.com/rspack-contrib/create-rstack/pull/15) #### New Contributors - [@fi3ework](https://redirect.github.com/fi3ework) made their first contribution in [https://github.com/rspack-contrib/create-rstack/pull/14](https://redirect.github.com/rspack-contrib/create-rstack/pull/14) **Full Changelog**: https://github.com/rspack-contrib/create-rstack/compare/v1.0.6...v1.0.7nrwl/nx (nx)
### [`v20.0.3`](https://redirect.github.com/nrwl/nx/releases/tag/20.0.3) [Compare Source](https://redirect.github.com/nrwl/nx/compare/20.0.2...20.0.3) #### 20.0.3 (2024-10-19) ##### 🩹 Fixes - **module-federation:** normalize hypen names for runtime library control plugin [#28497](https://redirect.github.com/nrwl/nx/issues/28497) ([#28512](https://redirect.github.com/nrwl/nx/pull/28512), [#28497](https://redirect.github.com/nrwl/nx/issues/28497)) - **react:** ensure rspack react app is added to exclude on rspack plugin [#28464](https://redirect.github.com/nrwl/nx/issues/28464) ([#28515](https://redirect.github.com/nrwl/nx/pull/28515), [#28464](https://redirect.github.com/nrwl/nx/issues/28464)) ##### ❤️ Thank You - Colum Ferry [@Coly010](https://redirect.github.com/Coly010) ### [`v20.0.2`](https://redirect.github.com/nrwl/nx/releases/tag/20.0.2) [Compare Source](https://redirect.github.com/nrwl/nx/compare/20.0.1...20.0.2) ##### 20.0.2 (2024-10-18) ##### 🚀 Features - **nx-dev:** add live stream notifier ([#28260](https://redirect.github.com/nrwl/nx/pull/28260)) - **nx-dev:** update home hero & livestream notifier ([#28403](https://redirect.github.com/nrwl/nx/pull/28403)) - **nx-dev:** add contact link on powerpack page ([#28458](https://redirect.github.com/nrwl/nx/pull/28458)) ##### 🩹 Fixes - **core:** repair SIGINT signals on windows ([#28496](https://redirect.github.com/nrwl/nx/pull/28496)) - **core:** neverConnectToCloud should disable connecting to nxCloud ([#28501](https://redirect.github.com/nrwl/nx/pull/28501)) - **expo:** pnpm+workspace build ([#28209](https://redirect.github.com/nrwl/nx/pull/28209)) - **graph:** make sure disabledTaskSyncGenerators can be set correctly from nx console ([#28466](https://redirect.github.com/nrwl/nx/pull/28466)) - **js:** change verdaccio childProcess kill order ([#28364](https://redirect.github.com/nrwl/nx/pull/28364)) - **nx-dev:** fix tabs logic ([#28470](https://redirect.github.com/nrwl/nx/pull/28470)) - **react:** update rspack to include styles in the main bundle ([#28478](https://redirect.github.com/nrwl/nx/pull/28478)) - **release:** ensure plan subcommand works with object config ([#28460](https://redirect.github.com/nrwl/nx/pull/28460)) - **rspack:** replace DefinePlugin with EnvironmentPlugin ([#28252](https://redirect.github.com/nrwl/nx/pull/28252)) - **rspack:** make rspack dev server respect port ([#28251](https://redirect.github.com/nrwl/nx/pull/28251)) - **rspack:** add dependency-checks lint rule ([#28225](https://redirect.github.com/nrwl/nx/pull/28225)) - **vite:** add vite temp files to gitignore [#28371](https://redirect.github.com/nrwl/nx/issues/28371) ([#28443](https://redirect.github.com/nrwl/nx/pull/28443), [#28371](https://redirect.github.com/nrwl/nx/issues/28371)) - **vite:** use resolveConfig instead of loadConfigFromFile to ensure node env set [#27627](https://redirect.github.com/nrwl/nx/issues/27627) ([#28444](https://redirect.github.com/nrwl/nx/pull/28444), [#27627](https://redirect.github.com/nrwl/nx/issues/27627)) ##### ❤️ Thank You - Alan Pazetto [@alancpazetto](https://redirect.github.com/alancpazetto) - Benjamin Cabanes [@bcabanes](https://redirect.github.com/bcabanes) - Colum Ferry [@Coly010](https://redirect.github.com/Coly010) - Igor Loskutov [@dearlordylord](https://redirect.github.com/dearlordylord) - Isaac Mann [@isaacplmann](https://redirect.github.com/isaacplmann) - James Henry [@JamesHenry](https://redirect.github.com/JamesHenry) - Juri Strumpflohner [@juristr](https://redirect.github.com/juristr) - MaxKless [@MaxKless](https://redirect.github.com/MaxKless) - Nicholas Cunningham [@ndcunningham](https://redirect.github.com/ndcunningham) - Phillip Barta [@Phillip9587](https://redirect.github.com/Phillip9587) - Sam Tsai [@samtsai](https://redirect.github.com/samtsai) ### [`v20.0.1`](https://redirect.github.com/nrwl/nx/releases/tag/20.0.1) [Compare Source](https://redirect.github.com/nrwl/nx/compare/20.0.0...20.0.1) ##### 20.0.1 (2024-10-15) ##### 🩹 Fixes - **angular:** ensure provideStore is provided before storeDevTools [#28107](https://redirect.github.com/nrwl/nx/issues/28107) ([#28428](https://redirect.github.com/nrwl/nx/pull/28428), [#28107](https://redirect.github.com/nrwl/nx/issues/28107)) - **angular:** add missing package version bump for zone.js ([#28430](https://redirect.github.com/nrwl/nx/pull/28430)) - **core:** support `NX_NO_CLOUD` ([#28366](https://redirect.github.com/nrwl/nx/pull/28366)) - **core:** add busy handler for sqlite ([#28390](https://redirect.github.com/nrwl/nx/pull/28390)) - **core:** handle `neverConnectToCloud` property ([#28452](https://redirect.github.com/nrwl/nx/pull/28452)) - **core:** add migration to set `useLegacyCache` by default ([#28454](https://redirect.github.com/nrwl/nx/pull/28454)) - **js:** improve @nx/js/typescript plugin and typescript-sync generator performance ([#28379](https://redirect.github.com/nrwl/nx/pull/28379)) - **linter:** scope js and ts shared configs to js and ts files ([#28381](https://redirect.github.com/nrwl/nx/pull/28381)) - **module-federation:** ensure mf-manifest supported and tspaths are added with snake_case ([#28244](https://redirect.github.com/nrwl/nx/pull/28244)) - **module-federation:** remote names should follow JS variable naming schema ([#28401](https://redirect.github.com/nrwl/nx/pull/28401)) - **react:** depends on migration should ignore configs that point to [@nx/react](https://redirect.github.com/nx/react) [#28377](https://redirect.github.com/nrwl/nx/issues/28377) ([#28382](https://redirect.github.com/nrwl/nx/pull/28382), [#28377](https://redirect.github.com/nrwl/nx/issues/28377)) - **rspack:** log compilation errors [#28179](https://redirect.github.com/nrwl/nx/issues/28179) ([#28429](https://redirect.github.com/nrwl/nx/pull/28429), [#28179](https://redirect.github.com/nrwl/nx/issues/28179)) - **rspack:** do not select char from string when mapping remotes ([#28441](https://redirect.github.com/nrwl/nx/pull/28441)) ##### ❤️ Thank You - Colum Ferry [@Coly010](https://redirect.github.com/Coly010) - Jonathan Cammisuli - Leosvel Pérez Espinosa [@leosvelperez](https://redirect.github.com/leosvelperez)alexeyraspopov/picocolors (picocolors)
### [`v1.1.1`](https://redirect.github.com/alexeyraspopov/picocolors/blob/HEAD/CHANGELOG.md#v111) [Compare Source](https://redirect.github.com/alexeyraspopov/picocolors/compare/v1.1.0...v1.1.1) - Moved TypeScript declarations to a `d.ts` file ([#82](https://redirect.github.com/alexeyraspopov/picocolors/pull/82)) - Reworked color detection algorithm to properly work with empty strings in `NO_COLOR` and `FORCE_COLOR` env variables ([#87](https://redirect.github.com/alexeyraspopov/picocolors/pull/87)) - Eliminated `require()` call to make the package compatible with some tools ([#87](https://redirect.github.com/alexeyraspopov/picocolors/pull/87))web-infra-dev/rslib (rslib)
### [`v0.0.13`](https://redirect.github.com/web-infra-dev/rslib/releases/tag/v0.0.13) [Compare Source](https://redirect.github.com/web-infra-dev/rslib/compare/v0.0.12...v0.0.13) ##### What's Changed ##### New Features 🎉 - feat: support "umd" format by [@fi3ework](https://redirect.github.com/fi3ework) in [https://github.com/web-infra-dev/rslib/pull/299](https://redirect.github.com/web-infra-dev/rslib/pull/299) - feat: support Module Federation format by [@nyqykk](https://redirect.github.com/nyqykk) in [https://github.com/web-infra-dev/rslib/pull/240](https://redirect.github.com/web-infra-dev/rslib/pull/240) ##### Performance 🚀 - perf(deps): replace fast-glob with tinyglobby by [@chenjiahan](https://redirect.github.com/chenjiahan) in [https://github.com/web-infra-dev/rslib/pull/307](https://redirect.github.com/web-infra-dev/rslib/pull/307) ##### Bug Fixes 🐞 - fix: correct ECMA version browserslist mapping by [@fi3ework](https://redirect.github.com/fi3ework) in [https://github.com/web-infra-dev/rslib/pull/301](https://redirect.github.com/web-infra-dev/rslib/pull/301) ##### Other Changes - chore: bump Rslib 0.0.12 and adjust dirname/filename by [@Timeless0911](https://redirect.github.com/Timeless0911) in [https://github.com/web-infra-dev/rslib/pull/297](https://redirect.github.com/web-infra-dev/rslib/pull/297) - chore(deps): bump path-serializer by [@SoonIter](https://redirect.github.com/SoonIter) in [https://github.com/web-infra-dev/rslib/pull/300](https://redirect.github.com/web-infra-dev/rslib/pull/300) - chore: should check deps of all package.json by [@Timeless0911](https://redirect.github.com/Timeless0911) in [https://github.com/web-infra-dev/rslib/pull/302](https://redirect.github.com/web-infra-dev/rslib/pull/302) - chore: remove duplicated workspace definitions by [@fi3ework](https://redirect.github.com/fi3ework) in [https://github.com/web-infra-dev/rslib/pull/306](https://redirect.github.com/web-infra-dev/rslib/pull/306) ##### New Contributors - [@nyqykk](https://redirect.github.com/nyqykk) made their first contribution in [https://github.com/web-infra-dev/rslib/pull/240](https://redirect.github.com/web-infra-dev/rslib/pull/240) **Full Changelog**: https://github.com/web-infra-dev/rslib/compare/v0.0.12...v0.0.13tailwindlabs/tailwindcss (tailwindcss)
### [`v3.4.14`](https://redirect.github.com/tailwindlabs/tailwindcss/releases/tag/v3.4.14) [Compare Source](https://redirect.github.com/tailwindlabs/tailwindcss/compare/v3.4.13...v3.4.14) ##### Fixed - Don't set `display: none` on elements that use `hidden="until-found"` ([#14625](https://redirect.github.com/tailwindlabs/tailwindcss/pull/14625))vitest-dev/vitest (vitest)
### [`v2.1.3`](https://redirect.github.com/vitest-dev/vitest/releases/tag/v2.1.3) [Compare Source](https://redirect.github.com/vitest-dev/vitest/compare/v2.1.2...v2.1.3) ##### 🐞 Bug Fixes - Fix error diff of `toBeNaN, toBeUndefined, toBeNull, toBeTruthy, toBeFalsy` - by [@hi-ogawa](https://redirect.github.com/hi-ogawa) in [https://github.com/vitest-dev/vitest/issues/6697](https://redirect.github.com/vitest-dev/vitest/issues/6697) [(e0027)](https://redirect.github.com/vitest-dev/vitest/commit/e002758c) - **browser**: - Provide aria role intellisense - by [@sheremet-va](https://redirect.github.com/sheremet-va) in [https://github.com/vitest-dev/vitest/issues/6629](https://redirect.github.com/vitest-dev/vitest/issues/6629) [(f36ea)](https://redirect.github.com/vitest-dev/vitest/commit/f36eac77) - Not.toBeInTheDocument works with locators API - by [@sheremet-va](https://redirect.github.com/sheremet-va) in [https://github.com/vitest-dev/vitest/issues/6634](https://redirect.github.com/vitest-dev/vitest/issues/6634) [(8bef5)](https://redirect.github.com/vitest-dev/vitest/commit/8bef5d2b) - Use `/mockServiceWorker.js` instead of `/__vitest_msw__` - by [@sheremet-va](https://redirect.github.com/sheremet-va) in [https://github.com/vitest-dev/vitest/issues/6687](https://redirect.github.com/vitest-dev/vitest/issues/6687) [(4b2ce)](https://redirect.github.com/vitest-dev/vitest/commit/4b2ce07f) - Don't override the esbuild option in the browser mode - by [@sheremet-va](https://redirect.github.com/sheremet-va) in [https://github.com/vitest-dev/vitest/issues/6692](https://redirect.github.com/vitest-dev/vitest/issues/6692) [(d131f)](https://redirect.github.com/vitest-dev/vitest/commit/d131fd64) - **expect**: - Preserve prototype in `toMatchObject` diff - by [@hi-ogawa](https://redirect.github.com/hi-ogawa) in [https://github.com/vitest-dev/vitest/issues/6620](https://redirect.github.com/vitest-dev/vitest/issues/6620) [(d289e)](https://redirect.github.com/vitest-dev/vitest/commit/d289e7eb) - **mocker**: - Specify correct spy dependency - by [@sheremet-va](https://redirect.github.com/sheremet-va) [(7e958)](https://redirect.github.com/vitest-dev/vitest/commit/7e9584aa) - **runner**: - Ensure sequential suite overrides sequence.concurrent - by [@dsyddall](https://redirect.github.com/dsyddall) and [@hi-ogawa](https://redirect.github.com/hi-ogawa) in [https://github.com/vitest-dev/vitest/issues/6653](https://redirect.github.com/vitest-dev/vitest/issues/6653) [(5e6de)](https://redirect.github.com/vitest-dev/vitest/commit/5e6de274) - **vitest**: - Deprecate UserConfig in favor of ViteUserConfig - by [@sheremet-va](https://redirect.github.com/sheremet-va) in [https://github.com/vitest-dev/vitest/issues/6626](https://redirect.github.com/vitest-dev/vitest/issues/6626) [(496bd)](https://redirect.github.com/vitest-dev/vitest/commit/496bd251) - Don't hang with maxConcurrency 0 - by [@sheremet-va](https://redirect.github.com/sheremet-va) in [https://github.com/vitest-dev/vitest/issues/6627](https://redirect.github.com/vitest-dev/vitest/issues/6627) [(946d8)](https://redirect.github.com/vitest-dev/vitest/commit/946d8bb1) - Deprecate old task types and node-reliant types - by [@sheremet-va](https://redirect.github.com/sheremet-va) in [https://github.com/vitest-dev/vitest/issues/6632](https://redirect.github.com/vitest-dev/vitest/issues/6632) [(00045)](https://redirect.github.com/vitest-dev/vitest/commit/000459a9) - Fix `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 was generated by Mend Renovate. View the repository job log.