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

build(dev-deps): update all non-major dependencies #162

Merged
merged 1 commit into from
Nov 3, 2024

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Sep 30, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update
@biomejs/biome (source) 1.8.3 -> 1.9.4 age adoption passing confidence devDependencies minor
@commitlint/cli (source) 19.4.1 -> 19.5.0 age adoption passing confidence devDependencies minor
@commitlint/config-conventional (source) 19.4.1 -> 19.5.0 age adoption passing confidence devDependencies minor
@faker-js/faker (source) 9.0.0 -> 9.1.0 age adoption passing confidence devDependencies minor
@fontsource/poppins (source) 5.0.16 -> 5.1.0 age adoption passing confidence dependencies minor
@fontsource/reddit-mono (source) 5.0.5 -> 5.1.0 age adoption passing confidence dependencies minor
@storybook/addon-essentials (source) 8.3.0 -> 8.4.1 age adoption passing confidence devDependencies minor
@storybook/addon-interactions (source) 8.3.0 -> 8.4.1 age adoption passing confidence devDependencies minor
@storybook/addon-links (source) 8.3.0 -> 8.4.1 age adoption passing confidence devDependencies minor
@storybook/addon-themes (source) 8.3.0 -> 8.4.1 age adoption passing confidence devDependencies minor
@storybook/blocks (source) 8.3.0 -> 8.4.1 age adoption passing confidence devDependencies minor
@storybook/react (source) 8.3.0 -> 8.4.1 age adoption passing confidence devDependencies minor
@storybook/react-vite (source) 8.3.0 -> 8.4.1 age adoption passing confidence devDependencies minor
@storybook/test (source) 8.3.0 -> 8.4.1 age adoption passing confidence devDependencies minor
@swc/core (source) 1.7.24 -> 1.7.42 age adoption passing confidence devDependencies patch
@swc/jest (source) 0.2.36 -> 0.2.37 age adoption passing confidence devDependencies patch
@testing-library/jest-dom 6.5.0 -> 6.6.3 age adoption passing confidence devDependencies minor
@types/jest (source) 29.5.12 -> 29.5.14 age adoption passing confidence devDependencies patch
@types/node (source) 20.16.5 -> 20.17.5 age adoption passing confidence devDependencies minor
@types/react (source) 18.3.5 -> 18.3.12 age adoption passing confidence devDependencies patch
@types/react-dom (source) 18.3.0 -> 18.3.1 age adoption passing confidence devDependencies patch
@uiw/codemirror-extensions-langs (source) 4.23.1 -> 4.23.6 age adoption passing confidence dependencies patch
@uiw/codemirror-themes (source) 4.23.1 -> 4.23.6 age adoption passing confidence dependencies patch
@uiw/react-codemirror (source) 4.23.1 -> 4.23.6 age adoption passing confidence dependencies patch
@vitejs/plugin-react (source) 4.3.1 -> 4.3.3 age adoption passing confidence devDependencies patch
execa 9.3.1 -> 9.5.1 age adoption passing confidence devDependencies minor
husky 9.1.5 -> 9.1.6 age adoption passing confidence devDependencies patch
ora 8.1.0 -> 8.1.1 age adoption passing confidence devDependencies patch
serde (source) 1.0.209 -> 1.0.214 age adoption passing confidence dependencies patch
storybook (source) 8.3.0 -> 8.4.1 age adoption passing confidence devDependencies minor
tokio (source) 1.40.0 -> 1.41.0 age adoption passing confidence dependencies patch
tokio-tungstenite 0.23.1 -> 0.24.0 age adoption passing confidence dependencies minor
typescript (source) 5.5.4 -> 5.6.3 age adoption passing confidence dependencies minor
use-debounce 10.0.3 -> 10.0.4 age adoption passing confidence devDependencies patch
vite (source) 5.4.6 -> 5.4.10 age adoption passing confidence devDependencies patch
yarn (source) 4.4.1 -> 4.5.1 age adoption passing confidence packageManager minor

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

v1.9.3

Compare Source

CLI
New features
  • GritQL queries that match functions or methods will now match async functions or methods as well.

    If this is not what you want, you can capture the async keyword (or its absence) in a metavariable and assert its emptiness:

    $async function foo() {} where $async <: .
    

    Contributed by @​arendjr

Bug fixes
  • Fix #​4077: Grit queries no longer need to match the statement's trailing semicolon. Contributed by @​arendjr

  • Fix #​4102. Now the CLI command lint doesn't exit with an error code when using --write/--fix. Contributed by @​ematipico

Configuration
Bug fixes
  • Fix #​4125, where noLabelWithoutControl options where incorrectly marked as mandatory. Contributed by @​ematipico
Editors
  • Fix a case where CSS files weren't correctly linted using the default configuration. Contributed by @​ematipico
Formatter
Bug fixes
  • Fix #​3924 where GraphQL formatter panics in block comments with empty line. Contributed by @​vohoanglong0107

  • Fix a case where raw values inside url() functions weren't properly trimmed.

    .value {
    -  background: url(
    -   whitespace-around-string
    -  );
    + background: url(whitespace-around-string);
    }

    Contributed by @​ematipico

  • Fixed #​4076, where a media query wasn't correctly formatted:

    .class {
    -  @&#8203;media (1024px <= width <=1280px) {
    +  @&#8203;media (1024px <= width <= 1280px) {
       color: red;
       }
    }

    Contributed by @​blaze-d83

JavaScript API
Bug fixes
Linter
New features
Enhancements
Bug fixes
Parser
Bug fixes
  • Forbid undefined as type name for typescript parser. Contributed by @​fireairforce

v1.9.2

Compare Source

CLI
New features
Bug fixes
  • Fix #​3917, where the fixed files were incorrectly computed. Contributed by @​ematipico
  • Fixed an issue that caused GritQL contains queries to report false positives when the matched
    node appeared inside a sibling node. Contributed by @​arendjr
Editors
Bug fixes
  • Fix #​3923. Now the .editorconfig is correctly parsed by the LSP, and the options are correctly applied to files when formatting is triggered.
    Plus, the Biome LSP now watches for any change to the .editorconfig, and updates the formatting settings.

  • Reduced the number of log files generated by the LSP server. Now the maximum number of logs saved on disk is seven. Contributed by @​ematipico

  • Fix the code actions capabilities available in the LSP Biome server. Before, the LSP was using the default capabilities, which resulted in pulling code actions even when they were disabled by the editor.

    This means that the code actions are pulled by the client only when the editor enables quickfix.biome, source.organizeImports.biome and source.fixAll.biome.

    Now, if you enable organizeImports.enabled: true in the biome.json, and then you configure your editor with the following code action source.organizeImports.biome: false, the editor won't sort the imports.

    Contributed by @​ematipico

Linter
New features
Bug fixes
Parser
Bug fixes
  • useStrictMode now reports Script files with some directives, but without the use strict directive. Contributed by @​Conaclos

  • The CSS parser now accepts the characters U+FFDCF and U+FFFD in identifiers. Contributed by @​Conaclos

v1.9.1

Compare Source

Analyzer
CLI
Bug fixes
  • useEditorConfig now loads the editorconfig when running biome ci #​3864. Contributed by @​dyc3

  • Revert #​3731 to fix broken quick fixes and code actions. Contributed by @​nhedger

Configuration
Editors
Formatter
JavaScript APIs
Linter
New Features
Bug fixes
Parser

v1.9.0

Compare Source

Analyzer
CLI
New features
  • Add --graphql-linter-enabled option, to control whether the linter should be enabled or not for GraphQL files. Contributed by @​ematipico

  • New EXPERIMENTAL search command. The search command allows you to search a Biome project using GritQL syntax.

    GritQL is a powerful language that lets you do structural searches on your codebase. This means that trivia such as whitespace or even the type of strings quotes used will be ignored in your search query. It also has many features for querying the structure of your code, making it much more elegant for searching code than regular expressions.

    While we believe this command may already be useful to users in some situations (especially when integrated in the IDE extensions!), we also had an ulterior motive for adding this command: We intend to utilize GritQL for our plugin efforts, and by allowing our users to try it out in a first iteration, we hope to gain insight in the type of queries you want to do, as well as the bugs we need to focus on.

    For now, the search command is explicitly marked as EXPERIMENTAL, since many bugs remain. Keep this in mind when you try it out, and please let us know your issues!

    Note: GritQL escapes code snippets using backticks, but most shells interpret backticks as command invocations. To avoid this, it's best to put single quotes around your Grit queries.

    biome search '`console.log($message)`' # find all `console.log` invocations

    Contributed by @​arendjr and @​BackupMiles

  • The option --max-diagnostics now accept a none value, which lifts the limit of diagnostics shown. Contributed by @​ematipico


Configuration

📅 Schedule: Branch creation - "before 4am on the first day of the month" in timezone Europe/Paris, Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Never, 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.

@renovate renovate bot added the internal Internal issues and tasks. No direct impact on end-user. label Sep 30, 2024
@codecov-commenter
Copy link

codecov-commenter commented Sep 30, 2024

Codecov Report

All modified and coverable lines are covered by tests ✅

Project coverage is 32.29%. Comparing base (f0586d6) to head (731876d).

Additional details and impacted files
@@           Coverage Diff           @@
##             main     #162   +/-   ##
=======================================
  Coverage   32.29%   32.29%           
=======================================
  Files          33       33           
  Lines         870      870           
  Branches       15       15           
=======================================
  Hits          281      281           
+ Misses        589      585    -4     
- Partials        0        4    +4     
Flag Coverage Δ
core 33.58% <ø> (ø)
webview 20.68% <ø> (ø)

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

@renovate renovate bot force-pushed the renovate/all-minor-patch branch from a539beb to 731876d Compare November 3, 2024 01:36
@ivangabriele ivangabriele merged commit ba68867 into main Nov 3, 2024
18 checks passed
@ivangabriele ivangabriele deleted the renovate/all-minor-patch branch November 3, 2024 16:58
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
internal Internal issues and tasks. No direct impact on end-user.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants