Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update all patch dependencies #310

Merged
merged 1 commit into from
Oct 21, 2024
Merged

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Oct 21, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@biomejs/biome (source) ^1.9.3 -> ^1.9.4 age adoption passing confidence
@microsoft/api-extractor (source) ^7.47.9 -> ^7.47.11 age adoption passing confidence
@playwright/test (source) 1.48.0 -> 1.48.1 age adoption passing confidence
@rsbuild/core (source) ~1.0.14 -> ~1.0.16 age adoption passing confidence
@rsbuild/plugin-react (source) ^1.0.4 -> ^1.0.5 age adoption passing confidence
@rsbuild/plugin-sass (source) ^1.0.3 -> ^1.0.4 age adoption passing confidence
@types/lodash (source) ^4.17.10 -> ^4.17.12 age adoption passing confidence
create-rstack 1.0.6 -> 1.0.7 age adoption passing confidence
nx (source) ^20.0.0 -> ^20.0.3 age adoption passing confidence
picocolors 1.1.0 -> 1.1.1 age adoption passing confidence
rslib (source) 0.0.12 -> 0.0.13 age adoption passing confidence
tailwindcss (source) ^3.4.13 -> ^3.4.14 age adoption passing confidence
vitest (source) ^2.1.2 -> ^2.1.3 age adoption passing confidence

Release Notes

biomejs/biome (@​biomejs/biome)

v1.9.4

Compare Source

Analyzer
Bug fixes
CLI
Enhancements
  • The --summary reporter now reports parsing diagnostics too. Contributed by @​ematipico

  • Improved performance of GritQL queries by roughly 25-30%. Contributed by @​arendjr

Configuration
Bug fixes
  • Fix an issue where the JSON schema marked lint rules options as mandatory. Contributed by @​ematipico
Editors
Formatter
Bug fixes
  • Fix #​4121. Respect line width when printing multiline strings. Contributed by @​ah-yu
JavaScript APIs
Linter
New features
Bug Fixes
  • Biome no longer crashes when it encounters a string that contain a multibyte character (#​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

  • Fix #​4190, where the rule noMissingVarFunction wrongly reported a variable as missing when used inside a var() function that was a newline. Contributed by @​ematipico

  • Fix #​4041. Now the rule useSortedClasses won't be triggered if className is composed only by inlined variables. Contributed by @​ematipico

  • useImportType and useExportType now report useless inline type qualifiers (#​4178).

    The following fix is now proposed:

    - import type { type A, B } from "";
    + import type { A, B } from "";
    
    - export type { type C, D };
    + export type { C, D };

    Contributed by @​Conaclos

  • useExportType now reports ungrouped export from.

    The following fix is now proposed:

    - export { type A, type B } from "";
    + export type { A, B } from "";

    Contributed by @​Conaclos

  • noVoidTypeReturn now accepts void expressions in return position (#​4173).

    The following code is now accepted:

    function f(): void {
      return void 0;
    }

    Contributed by @​Conaclos

  • noUselessFragments now correctly handles fragments containing HTML escapes (e.g.  ) inside expression escapes { ... } (#​4059).

    The following code is no longer reported:

    function Component() {
      return (
        <div key={index}>{line || <>&nbsp;</>}</div>
      )
    }

    Contributed by @​fireairforce

  • noUnusedFunctionParameters and noUnusedVariables no longer reports a parameter as unused when another parameter has a constructor type with the same parameter name (#​4227).

    In the following code, the name parameter is no longer reported as unused.

    export class Foo {
      bar(name: string, _class: new (name: string) => any) {
        return name
      }
    }

    Contributed by @​Conaclos

  • noUndeclaredDependencies now accepts dependency names with dots. Contributed by @​Conaclos

  • useFilenamingConvention now correctly handles renamed exports (#​4254).

    The rule allows the filename to be named as one of the exports of the module.
    For instance, the file containing the following export can be named Button.

    class Button {}
    export { Button }

    The rule now correctly handles the renaming of an export.
    For example, the file containing the following export can only be named Button.
    Previously the rule expected the file to be named A.

    class A {}
    export { A as Button }

    Contributed by @​Conaclos

  • useConsistentMemberAccessibility now ignore private class members such as #property (#​4276). Contributed by @​Conaclos

  • noUnknownFunction correctly handles calc-size function (#​4212).

    The following code calc-size is no longer reported as unknown:

    .a { height: calc-size(0px); }

    Contributed by @​fireairforce

  • useNamingConvention now allows configuring conventions for readonly index signatures.

Contributed by @​sepruko

  • noDuplicateCustomProperties now correctly handles custom properties and ignores non-custom properties.
    Previously, the rule incorrectly reported duplicates for all properties, including non-custom ones. Contributed by @​togami2864
Parser
Bug Fixes
  • The CSS parser now accepts more emoji in identifiers (#​3627).

    Browsers accept more emoji than the standard allows.
    Biome now accepts these additional emojis.

    The following code is now correctly parsed:

    p {
      ---color: red;
      color: var(--✨-color);
    }

    Contributed by @​Conaclos

  • Add support for parsing typescript's resolution-mode in Import Types(#​2115)

    export type Fs = typeof import('fs', { with: { 'resolution-mode': 'import' } });
    export type TypeFromRequire =
      import("pkg", { with: { "resolution-mode": "require" } }).TypeFromRequire;
    export type TypeFromImport =
      import("pkg", { with: { "resolution-mode": "import" } }).TypeFromImport;

    Contributed by @​fireairforce

microsoft/rushstack (@​microsoft/api-extractor)

v7.47.11

Compare Source

Thu, 17 Oct 2024 08:35:06 GMT

Version update only

v7.47.10

Compare Source

Tue, 15 Oct 2024 00:12:31 GMT

Patches
  • Fix a compatibility issue with usage of getModeForUsageLocation in TypeScript 5.6
microsoft/playwright (@​playwright/test)

v1.48.1

Compare Source

Highlights

https://github.com/microsoft/playwright/issues/33023 - [Bug]: command line flag --headed has no effect in ui modehttps://github.com/microsoft/playwright/issues/331077 - [REGRESSION]: page.waitForRequest does not get resolved since 1.48.https://github.com/microsoft/playwright/issues/3308585 - [Bug]: WebSocket route does not handle full URLs in Playwrighttps://github.com/microsoft/playwright/issues/33052052 - [Regression]: Inspector not showing recorded sthttps://github.com/microsoft/playwright/issues/331323132 - [Bug]: Wrong Ubuntu release name in Dockerfile.nhttps://github.com/microsoft/playwright/pull/3299632996 - [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 129
web-infra-dev/rsbuild (@​rsbuild/core)

v1.0.16

Compare Source

What's Changed
New Features 🎉
Bug Fixes 🐞
Document 📖
Other Changes
New Contributors

Full Changelog: web-infra-dev/rsbuild@v1.0.15...v1.0.16

v1.0.15

Compare Source

What's Changed
New Features 🎉
Bug Fixes 🐞
Document 📖
Other Changes

Full Changelog: web-infra-dev/rsbuild@v1.0.14...v1.0.15

rspack-contrib/create-rstack (create-rstack)

v1.0.7

Compare Source

What's Changed

New Contributors

Full Changelog: rspack-contrib/create-rstack@v1.0.6...v1.0.7

nrwl/nx (nx)

v20.0.3

Compare Source

20.0.3 (2024-10-19)

🩹 Fixes
❤️ Thank You

v20.0.2

Compare Source

20.0.2 (2024-10-18)
🚀 Features
  • nx-dev: add live stream notifier (#​28260)
  • nx-dev: update home hero & livestream notifier (#​28403)
  • nx-dev: add contact link on powerpack page (#​28458)
🩹 Fixes
  • core: repair SIGINT signals on windows (#​28496)
  • core: neverConnectToCloud should disable connecting to nxCloud (#​28501)
  • expo: pnpm+workspace build (#​28209)
  • graph: make sure disabledTaskSyncGenerators can be set correctly from nx console (#​28466)
  • js: change verdaccio childProcess kill order (#​28364)
  • nx-dev: fix tabs logic (#​28470)
  • react: update rspack to include styles in the main bundle (#​28478)
  • release: ensure plan subcommand works with object config (#​28460)
  • rspack: replace DefinePlugin with EnvironmentPlugin (#​28252)
  • rspack: make rspack dev server respect port (#​28251)
  • rspack: add dependency-checks lint rule (#​28225)
  • vite: add vite temp files to gitignore #​28371 (#​28443, #​28371)
  • vite: use resolveConfig instead of loadConfigFromFile to ensure node env set #​27627 (#​28444, #​27627)
❤️ Thank You

v20.0.1

Compare Source

20.0.1 (2024-10-15)
🩹 Fixes
  • angular: ensure provideStore is provided before storeDevTools #​28107 (#​28428, #​28107)
  • angular: add missing package version bump for zone.js (#​28430)
  • core: support NX_NO_CLOUD (#​28366)
  • core: add busy handler for sqlite (#​28390)
  • core: handle neverConnectToCloud property (#​28452)
  • core: add migration to set useLegacyCache by default (#​28454)
  • js: improve @​nx/js/typescript plugin and typescript-sync generator performance (#​28379)
  • linter: scope js and ts shared configs to js and ts files (#​28381)
  • module-federation: ensure mf-manifest supported and tspaths are added with snake_case (#​28244)
  • module-federation: remote names should follow JS variable naming schema (#​28401)
  • react: depends on migration should ignore configs that point to @​nx/react #​28377 (#​28382, #​28377)
  • rspack: log compilation errors #​28179 (#​28429, #​28179)
  • rspack: do not select char from string when mapping remotes (#​28441)
❤️ Thank You
alexeyraspopov/picocolors (picocolors)

v1.1.1

Compare Source

  • Moved TypeScript declarations to a d.ts file (#​82)
  • Reworked color detection algorithm to properly work with empty strings in NO_COLOR and FORCE_COLOR env variables (#​87)
  • Eliminated require() call to make the package compatible with some tools (#​87)
web-infra-dev/rslib (rslib)

v0.0.13

Compare Source

What's Changed
New Features 🎉
Performance 🚀
Bug Fixes 🐞
Other Changes
New Contributors

Full Changelog: v0.0.12...v0.0.13

tailwindlabs/tailwindcss (tailwindcss)

v3.4.14

Compare Source

Fixed
  • Don't set display: none on elements that use hidden="until-found" (#​14625)
vitest-dev/vitest (vitest)

v2.1.3

Compare Source

   🐞 Bug Fixes
   🏎 Performance
    View changes on GitHub

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.


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

This PR was generated by Mend Renovate. View the repository job log.

Copy link

netlify bot commented Oct 21, 2024

Deploy Preview for rslib ready!

Name Link
🔨 Latest commit 8cae647
🔍 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...

QR Code

Use your smartphone camera to open QR code link.

To edit notification comments on pull requests, go to your Netlify site configuration.

@renovate renovate bot force-pushed the renovate/all-patch branch 2 times, most recently from 14e1e6e to 00f7ba0 Compare October 21, 2024 04:02
Copy link

codspeed-hq bot commented Oct 21, 2024

CodSpeed Performance Report

Merging #310 will not alter performance

Comparing renovate/all-patch (8cae647) with main (a51d4bd)

Summary

✅ 5 untouched benchmarks

@Timeless0911 Timeless0911 merged commit b448c80 into main Oct 21, 2024
19 checks passed
@Timeless0911 Timeless0911 deleted the renovate/all-patch branch October 21, 2024 04:24
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant