Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Nov 24, 2025

Bumps the development-dependencies group with 5 updates in the / directory:

Package From To
@biomejs/biome 1.9.4 2.3.7
openapi-typescript 7.7.0 7.10.1
prettier 3.5.3 3.6.2
prettier-plugin-organize-imports 4.1.0 4.3.0
typescript-json-schema 0.65.1 0.66.0

Updates @biomejs/biome from 1.9.4 to 2.3.7

Release notes

Sourced from @​biomejs/biome's releases.

Biome CLI v2.3.7

2.3.7

Patch Changes

  • #8169 7fdcec8 Thanks @​arendjr! - Fixed #7999: Correctly place await after leading comment in auto-fix action from noFloatingPromises rule.

  • #8157 12d5b42 Thanks @​Conaclos! - Fixed #8148. noInvalidUseBeforeDeclaration no longer reports some valid use before declarations.

    The following code is no longer reported as invalid:

    class classA {
      C = C;
    }
    const C = 0;
  • #8178 6ba4157 Thanks @​dyc3! - Fixed #8174, where the HTML parser would parse 2 directives as a single directive because it would not reject whitespace in Vue directives. This would cause the formatter to erroneously merge the 2 directives into one, resulting in broken code.

    - <Component v-else:property="123" />
    + <Component v-else :property="123" />
  • #8088 0eb08e8 Thanks @​db295! - Fixed #7876: The noUnusedImports rule now ignores imports that are used by @​linkcode and @​linkplain (previously supported @​link and @​see).

    The following code will no longer be a false positive:

    import type { a } from "a"
    /**
    
    {@​linkcode a}
    */
    function func() {}
  • #8119 8d64655 Thanks @​ematipico! - Improved the detection of the rule noUnnecessaryConditions. Now the rule isn't triggered for variables that are mutated inside a module.

    This logic deviates from the original rule, hence noUnnecessaryConditions is now marked as "inspired".

    In the following example, hey starts as false, but then it's assigned to a string. The rule isn't triggered inside the if check.

    let hey = false;
    function test() {
    hey = "string";

  • ... (truncated)

    Changelog

    Sourced from @​biomejs/biome's changelog.

    2.3.7

    Patch Changes

    • #8169 7fdcec8 Thanks @​arendjr! - Fixed #7999: Correctly place await after leading comment in auto-fix action from noFloatingPromises rule.

    • #8157 12d5b42 Thanks @​Conaclos! - Fixed #8148. noInvalidUseBeforeDeclaration no longer reports some valid use before declarations.

      The following code is no longer reported as invalid:

      class classA {
        C = C;
      }
      const C = 0;
    • #8178 6ba4157 Thanks @​dyc3! - Fixed #8174, where the HTML parser would parse 2 directives as a single directive because it would not reject whitespace in Vue directives. This would cause the formatter to erroneously merge the 2 directives into one, resulting in broken code.

      - <Component v-else:property="123" />
      + <Component v-else :property="123" />
    • #8088 0eb08e8 Thanks @​db295! - Fixed #7876: The noUnusedImports rule now ignores imports that are used by @​linkcode and @​linkplain (previously supported @​link and @​see).

      The following code will no longer be a false positive:

      import type { a } from "a"
      /**
      
      {@​linkcode a}
      */
      function func() {}
  • #8119 8d64655 Thanks @​ematipico! - Improved the detection of the rule noUnnecessaryConditions. Now the rule isn't triggered for variables that are mutated inside a module.

    This logic deviates from the original rule, hence noUnnecessaryConditions is now marked as "inspired".

    In the following example, hey starts as false, but then it's assigned to a string. The rule isn't triggered inside the if check.

    let hey = false;
    function test() {
    hey = "string";
    }

  • ... (truncated)

    Commits
    Maintainer changes

    This version was pushed to npm by [GitHub Actions](https://www.npmjs.com/~GitHub Actions), a new releaser for @​biomejs/biome since your current version.


    Updates openapi-typescript from 7.7.0 to 7.10.1

    Release notes

    Sourced from openapi-typescript's releases.

    openapi-typescript@7.10.1

    Patch Changes

    openapi-typescript@7.10.0

    Minor Changes

    openapi-typescript@7.9.1

    Patch Changes

    openapi-typescript@7.9.0

    Minor Changes

    openapi-typescript@7.8.0

    Minor Changes

    openapi-typescript@7.7.3

    Patch Changes

    openapi-typescript@7.7.2

    Patch Changes

    openapi-typescript@7.7.1

    Patch Changes

    • #2260 7205e12 Thanks @​zrosenbauer! - Prevents a TypeError due to a bad in operator for type: "array" when a boolean is set on items
    Changelog

    Sourced from openapi-typescript's changelog.

    7.10.1

    Patch Changes

    7.10.0

    Minor Changes

    7.9.1

    Patch Changes

    7.9.0

    Minor Changes

    7.8.0

    Minor Changes

    7.7.3

    Patch Changes

    7.7.2

    Patch Changes

    7.7.1

    Patch Changes

    ... (truncated)

    Commits

    Updates prettier from 3.5.3 to 3.6.2

    Release notes

    Sourced from prettier's releases.

    3.6.2

    What's Changed

    🔗 Changelog

    3.6.1

    • Fix "Warning: File descriptor 39 closed but not opened in unmanaged mode" error when running --experimental-cli

    🔗 Changelog

    3.6.0

    diff

    🔗 Release note "Prettier 3.6: Experimental fast CLI and new OXC and Hermes plugins!"

    Changelog

    Sourced from prettier's changelog.

    3.6.2

    diff

    Markdown: Add missing blank line around code block (#17675 by @​fisker)

    <!-- Input -->
    1. Some text, and code block below, with newline after code block
    ---
    foo: bar
    
    
    Another
    List
    
    <!-- Prettier 3.6.1 -->
    
    
    Some text, and code block below, with newline after code block
    ---
    foo: bar
    
    
    Another
    List
    
    
    
    <!-- Prettier 3.6.2 -->
    
    
    Some text, and code block below, with newline after code block
    ---
    foo: bar
    
    
    Another
    List

    3.6.1

    diff

    TypeScript: Allow const without initializer (#17650, #17654 by @​fisker)

    // Input
    </tr></table> 

    ... (truncated)

    Commits
    • 7a8b05f Release 3.6.2
    • 46526b4 Add missing blank line around code block (#17675)
    • a04ec11 chore(deps): update babel to v7.27.7 (#17684)
    • 32be5b6 chore(deps): update dependency flow-parser to v0.274.1 (#17676)
    • b55e777 Update docs about "TypeScript Configuration Files" (#17677)
    • b197c99 chore(deps): update dependency @​vitejs/plugin-react to v4.6.0 (#17674)
    • 1185f83 chore(deps): update dependency @​angular/compiler to v20.0.5 (#17680)
    • aa1316f chore(deps): update dependency browserslist to v4.25.1 (#17671)
    • c468d33 chore(deps): update dependency oxc-parser to v0.75.0 (#17672)
    • 3f46d91 chore(deps): update dependency vite to v7 (#17673)
    • Additional commits viewable in compare view

    Updates prettier-plugin-organize-imports from 4.1.0 to 4.3.0

    Release notes

    Sourced from prettier-plugin-organize-imports's releases.

    4.3.0

    What's Changed

    Full Changelog: simonhaenisch/prettier-plugin-organize-imports@v4.2.0...v4.3.0

    4.2.0

    • fix: use getDefaultCompilerOptions from vue-tsc instead of the deprecated resolveVueCompilerOptions (858cbbe)
    • feat: allow vue-tsc version 3 as peer dependency (c777cd8)
    • chore: update all dev dependencies (253d1bf)
    Commits
    • f354c0e 4.3.0
    • 98d053a chore: update dev dependencies
    • bc4d8fa feat: allow configuration of organizeImportsTypeOrder (#152)
    • ed9c19a docs: update changelog
    • 93df501 4.2.0
    • 253d1bf chore: update all dev dependencies
    • 858cbbe fix: use getDefaultCompilerOptions from vue-tsc instead of the deprecated `...
    • c777cd8 feat: allow vue-tsc 3 as peer dependency
    • e79ed64 chore(ci): remove check-types step (part of test now)
    • See full diff in compare view

    Updates typescript-json-schema from 0.65.1 to 0.66.0

    Commits

    Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot merge will merge this PR after your CI passes on it
    • @dependabot squash and merge will squash and merge this PR after your CI passes on it
    • @dependabot cancel merge will cancel a previously requested merge and block automerging
    • @dependabot reopen will reopen this PR if it is closed
    • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
    • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
    • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
    • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
    • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
    • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

    …ectory with 5 updates
    
    Bumps the development-dependencies group with 5 updates in the / directory:
    
    | Package | From | To |
    | --- | --- | --- |
    | [@biomejs/biome](https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome) | `1.9.4` | `2.3.7` |
    | [openapi-typescript](https://github.com/openapi-ts/openapi-typescript/tree/HEAD/packages/openapi-typescript) | `7.7.0` | `7.10.1` |
    | [prettier](https://github.com/prettier/prettier) | `3.5.3` | `3.6.2` |
    | [prettier-plugin-organize-imports](https://github.com/simonhaenisch/prettier-plugin-organize-imports) | `4.1.0` | `4.3.0` |
    | [typescript-json-schema](https://github.com/YousefED/typescript-json-schema) | `0.65.1` | `0.66.0` |
    
    
    
    Updates `@biomejs/biome` from 1.9.4 to 2.3.7
    - [Release notes](https://github.com/biomejs/biome/releases)
    - [Changelog](https://github.com/biomejs/biome/blob/main/packages/@biomejs/biome/CHANGELOG.md)
    - [Commits](https://github.com/biomejs/biome/commits/@biomejs/biome@2.3.7/packages/@biomejs/biome)
    
    Updates `openapi-typescript` from 7.7.0 to 7.10.1
    - [Release notes](https://github.com/openapi-ts/openapi-typescript/releases)
    - [Changelog](https://github.com/openapi-ts/openapi-typescript/blob/main/packages/openapi-typescript/CHANGELOG.md)
    - [Commits](https://github.com/openapi-ts/openapi-typescript/commits/openapi-typescript@7.10.1/packages/openapi-typescript)
    
    Updates `prettier` from 3.5.3 to 3.6.2
    - [Release notes](https://github.com/prettier/prettier/releases)
    - [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md)
    - [Commits](prettier/prettier@3.5.3...3.6.2)
    
    Updates `prettier-plugin-organize-imports` from 4.1.0 to 4.3.0
    - [Release notes](https://github.com/simonhaenisch/prettier-plugin-organize-imports/releases)
    - [Changelog](https://github.com/simonhaenisch/prettier-plugin-organize-imports/blob/master/changelog.md)
    - [Commits](simonhaenisch/prettier-plugin-organize-imports@v4.1.0...v4.3.0)
    
    Updates `typescript-json-schema` from 0.65.1 to 0.66.0
    - [Commits](YousefED/typescript-json-schema@v0.65.1...v0.66.0)
    
    ---
    updated-dependencies:
    - dependency-name: "@biomejs/biome"
      dependency-version: 2.3.7
      dependency-type: direct:development
      update-type: version-update:semver-major
      dependency-group: development-dependencies
    - dependency-name: openapi-typescript
      dependency-version: 7.10.1
      dependency-type: direct:development
      update-type: version-update:semver-minor
      dependency-group: development-dependencies
    - dependency-name: prettier
      dependency-version: 3.6.2
      dependency-type: direct:development
      update-type: version-update:semver-minor
      dependency-group: development-dependencies
    - dependency-name: prettier-plugin-organize-imports
      dependency-version: 4.3.0
      dependency-type: direct:development
      update-type: version-update:semver-minor
      dependency-group: development-dependencies
    - dependency-name: typescript-json-schema
      dependency-version: 0.66.0
      dependency-type: direct:development
      update-type: version-update:semver-minor
      dependency-group: development-dependencies
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    @dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Nov 24, 2025
    Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

    Labels

    dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code

    Projects

    None yet

    Development

    Successfully merging this pull request may close these issues.

    2 participants