Skip to content
This repository has been archived by the owner on Dec 24, 2024. It is now read-only.

fix(deps): update all dependencies #248

Merged
merged 1 commit into from
Dec 23, 2024
Merged

fix(deps): update all dependencies #248

merged 1 commit into from
Dec 23, 2024

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Dec 22, 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
@commitlint/cli (source) ^19.5.0 -> ^19.6.1 age adoption passing confidence
@​content-collections/core ^0.7.2 -> ^0.8.0 age adoption passing confidence
@​content-collections/next ^0.2.3 -> ^0.2.4 age adoption passing confidence
@emotion/react (source) ^11.13.3 -> ^11.14.0 age adoption passing confidence
@emotion/styled (source) ^11.13.0 -> ^11.14.0 age adoption passing confidence
@types/node (source) ^22.7.5 -> ^22.10.2 age adoption passing confidence
@vercel/speed-insights (source) ^1.0.12 -> ^1.1.0 age adoption passing confidence
@vitest/coverage-v8 (source) ^2.1.3 -> ^2.1.8 age adoption passing confidence
@vitest/ui (source) ^2.1.3 -> ^2.1.8 age adoption passing confidence
cmdk (source) ^1.0.0 -> ^1.0.4 age adoption passing confidence
husky ^9.1.6 -> ^9.1.7 age adoption passing confidence
knip (source) ^5.33.3 -> ^5.41.1 age adoption passing confidence
lint-staged ^15.2.10 -> ^15.2.11 age adoption passing confidence
react-icons ^5.3.0 -> ^5.4.0 age adoption passing confidence
react-syntax-highlighter ^15.5.0 -> ^15.6.1 age adoption passing confidence
sass ^1.79.5 -> ^1.83.0 age adoption passing confidence
typescript (source) ^5.6.3 -> ^5.7.2 age adoption passing confidence
vitest (source) ^2.1.3 -> ^2.1.8 age adoption passing confidence
zod (source) ^3.23.8 -> ^3.24.1 age adoption passing confidence
zustand ^5.0.0 -> ^5.0.2 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

conventional-changelog/commitlint (@​commitlint/cli)

v19.6.1

Compare Source

Note: Version bump only for package @​commitlint/cli

v19.6.0

Compare Source

Note: Version bump only for package @​commitlint/cli

emotion-js/emotion (@​emotion/react)

v11.14.0

Compare Source

Minor Changes
  • #​3284 a19d019 Thanks @​Andarist! - Source code has been migrated to TypeScript. From now on type declarations will be emitted based on that, instead of being hand-written.
Patch Changes

v11.13.5

Compare Source

vercel/speed-insights (@​vercel/speed-insights)

v1.1.0

Compare Source

What's Changed

Full Changelog: vercel/speed-insights@1.0.14...1.1.0

v1.0.14

Compare Source

What's Changed

Full Changelog: vercel/speed-insights@1.0.13...1.0.14

v1.0.13

Compare Source

What's Changed

New Contributors

Full Changelog: vercel/speed-insights@1.0.12...1.0.13

vitest-dev/vitest (@​vitest/coverage-v8)

v2.1.8

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v2.1.7

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v2.1.6

Compare Source

🚀 Features

  • Support VIte 6
    View changes on GitHub

v2.1.5

Compare Source

   🐞 Bug Fixes
   🏎 Performance
    View changes on GitHub

v2.1.4

Compare Source

   🚀 Features
   🐞 Bug Fixes
   🏎 Performance
    View changes on GitHub
pacocoursey/cmdk (cmdk)

v1.0.4

Compare Source

What's Changed

New Contributors

Full Changelog: pacocoursey/cmdk@v1.0.3...v1.0.4

v1.0.3

Compare Source

  • Fix use-sync-external-store shim for compatibility with Next.js 15 and React 19 RC

v1.0.2

Compare Source

  • Remove use-sync-external-store shim to support Next.js 15 and React 19 RC

Full Changelog: pacocoursey/cmdk@v1.0.1...v1.0.2

v1.0.1

Compare Source

What's Changed

New Contributors

Full Changelog: pacocoursey/cmdk@v1.0.0...v1.0.1

typicode/husky (husky)

v9.1.7

Compare Source

webpro-nl/knip (knip)

v5.41.1

Compare Source

v5.41.0

Compare Source

v5.40.0

Compare Source

v5.39.4

Compare Source

  • Ignore ignore patterns in vite test.include patterns (df390a0)
  • Stop using package.json as fallback containingFilePath (de6682b)

v5.39.3

Compare Source

  • Doc edits (0f640e1)
  • feat: update mdx detection dependency list and update custom compiler… (#​875) (055a2e3)
  • Add new content configuration entry for Astro (#​872) (c80ac0e)

v5.39.2

Compare Source

v5.39.1

Compare Source

  • Fix case sensitivity in package name check (resolves #​869) (d6dab3d)

v5.39.0

Compare Source

v5.38.4

Compare Source


Configuration

📅 Schedule: Branch creation - "before 1am on Monday" in timezone Asia/Jakarta, 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

vercel bot commented Dec 22, 2024

The latest updates on your projects. Learn more about Vercel for Git ↗︎

Name Status Preview Comments Updated (UTC)
agustinusnathaniel.com-2020 ✅ Ready (Inspect) Visit Preview 💬 Add feedback Dec 22, 2024 5:08pm

Copy link

New and removed dependencies detected. Learn more about Socket for GitHub ↗︎

Package New capabilities Transitives Size Publisher
npm/@biomejs/[email protected] shell 0 210 kB dominionl
npm/@commitlint/[email protected] Transitive: environment, eval, filesystem, shell, unsafe +71 3.48 MB escapedcat
npm/@content-collections/[email protected] environment, eval, filesystem, unsafe Transitive: network, shell +19 1.75 MB sdorra
npm/@content-collections/[email protected] None +1 27.2 kB sdorra
npm/@emotion/[email protected] Transitive: environment, filesystem +59 8.72 MB
npm/@emotion/[email protected] Transitive: environment, filesystem +55 8.65 MB
npm/@types/[email protected] None 0 2.28 MB types
npm/@vercel/[email protected] None 0 285 kB vercel-release-bot
npm/@vitest/[email protected] Transitive: environment, filesystem +21 7.16 MB vitestbot
npm/@vitest/[email protected] Transitive: environment +6 2.02 MB vitestbot
npm/[email protected] Transitive: environment +24 683 kB paco
npm/[email protected] None 0 4.04 kB typicode
npm/[email protected] environment, eval Transitive: filesystem, shell, unsafe +32 3.04 MB webpro
npm/[email protected] Transitive: environment, filesystem, shell +29 1.26 MB okonet
npm/[email protected] None 0 86.2 MB kamijin_fanta

🚮 Removed packages: npm/@biomejs/[email protected], npm/@commitlint/[email protected], npm/@content-collections/[email protected], npm/@content-collections/[email protected], npm/@emotion/[email protected], npm/@emotion/[email protected], npm/@types/[email protected], npm/@vercel/[email protected], npm/@vitest/[email protected], npm/@vitest/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected]

View full report↗︎

@agustinusnathaniel agustinusnathaniel merged commit c4b5190 into main Dec 23, 2024
9 checks passed
@renovate renovate bot deleted the renovate/all branch December 23, 2024 02:11
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant