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 #1509

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
@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
nx (source) 20.0.0 -> 20.0.3 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

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

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
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 aquamarine-blini-95325f ready!

Name Link
🔨 Latest commit 4bc9d6c
🔍 Latest deploy log https://app.netlify.com/sites/aquamarine-blini-95325f/deploys/6715b04640cdac00080a2c1e
😎 Deploy Preview https://deploy-preview-1509--aquamarine-blini-95325f.netlify.app
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.
Lighthouse
Lighthouse
1 paths audited
Performance: 96 (🟢 up 2 from production)
Accessibility: 97 (no change from production)
Best Practices: 92 (no change from production)
SEO: 92 (no change from production)
PWA: -
View the detailed breakdown and full score reports

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

@Timeless0911 Timeless0911 merged commit 2c9169a into main Oct 21, 2024
8 checks passed
@Timeless0911 Timeless0911 deleted the renovate/all-patch branch October 21, 2024 04:07
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