Skip to content

Conversation

@dependabot
Copy link
Contributor

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

Bumps the npm-development group with 4 updates in the / directory: @biomejs/biome, js-yaml, openai and textlint.

Updates @biomejs/biome from 2.3.1 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 js-yaml from 4.1.0 to 4.1.1

    Changelog

    Sourced from js-yaml's changelog.

    [4.1.1] - 2025-11-12

    Security

    • Fix prototype pollution issue in yaml merge (<<) operator.
    Commits

    Updates openai from 6.7.0 to 6.9.1

    Release notes

    Sourced from openai's releases.

    v6.9.1

    6.9.1 (2025-11-17)

    Full Changelog: v6.9.0...v6.9.1

    Bug Fixes

    • api: align types of input items / output items for typescript (99adaa7)

    v6.9.0

    6.9.0 (2025-11-13)

    Full Changelog: v6.8.1...v6.9.0

    Features

    Chores

    • add typescript-estree dependency for jsr readme script (3759514)

    v6.8.1

    6.8.1 (2025-11-05)

    Full Changelog: v6.8.0...v6.8.1

    Bug Fixes

    • api: fix nullability of logprobs (40a403c)

    v6.8.0

    6.8.0 (2025-11-03)

    Full Changelog: v6.7.0...v6.8.0

    Features

    • api: Realtime API token_limits, Hybrid searching ranking options (6a5b48c)
    • api: remove InputAudio from ResponseInputContent (9909fef)

    Chores

    • internal: codegen related update (3ad52aa)
    Changelog

    Sourced from openai's changelog.

    6.9.1 (2025-11-17)

    Full Changelog: v6.9.0...v6.9.1

    Bug Fixes

    • api: align types of input items / output items for typescript (99adaa7)

    6.9.0 (2025-11-13)

    Full Changelog: v6.8.1...v6.9.0

    Features

    Chores

    • add typescript-estree dependency for jsr readme script (3759514)

    6.8.1 (2025-11-05)

    Full Changelog: v6.8.0...v6.8.1

    Bug Fixes

    • api: fix nullability of logprobs (40a403c)

    6.8.0 (2025-11-03)

    Full Changelog: v6.7.0...v6.8.0

    Features

    • api: Realtime API token_limits, Hybrid searching ranking options (6a5b48c)
    • api: remove InputAudio from ResponseInputContent (9909fef)

    Chores

    • internal: codegen related update (3ad52aa)
    Commits
    • c9a4d68 release: 6.9.1
    • edc0e1c fix(api): align types of input items / output items for typescript
    • 1f2d35e update zod imports to reduce esbuild bundle size by 260kb (#1703)
    • 92d65d7 release: 6.9.0
    • 7a3c26e feat(api): gpt 5.1
    • 88135c8 codegen metadata
    • cd95c0d chore: add typescript-estree dependency for jsr readme script
    • 7a97bfc release: 6.8.1
    • d1f169f fix(api): fix nullability of logprobs
    • d1c87a3 release: 6.8.0
    • Additional commits viewable in compare view

    Updates textlint from 15.2.3 to 15.4.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

    …th 4 updates
    
    Bumps the npm-development group with 4 updates in the / directory: [@biomejs/biome](https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome), [js-yaml](https://github.com/nodeca/js-yaml), [openai](https://github.com/openai/openai-node) and [textlint](https://github.com/textlint/textlint).
    
    
    Updates `@biomejs/biome` from 2.3.1 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 `js-yaml` from 4.1.0 to 4.1.1
    - [Changelog](https://github.com/nodeca/js-yaml/blob/master/CHANGELOG.md)
    - [Commits](nodeca/js-yaml@4.1.0...4.1.1)
    
    Updates `openai` from 6.7.0 to 6.9.1
    - [Release notes](https://github.com/openai/openai-node/releases)
    - [Changelog](https://github.com/openai/openai-node/blob/master/CHANGELOG.md)
    - [Commits](openai/openai-node@v6.7.0...v6.9.1)
    
    Updates `textlint` from 15.2.3 to 15.4.0
    - [Release notes](https://github.com/textlint/textlint/releases)
    - [Commits](textlint/textlint@v15.2.3...v15.4.0)
    
    ---
    updated-dependencies:
    - dependency-name: "@biomejs/biome"
      dependency-version: 2.3.7
      dependency-type: direct:development
      update-type: version-update:semver-patch
      dependency-group: npm-development
    - dependency-name: js-yaml
      dependency-version: 4.1.1
      dependency-type: direct:development
      update-type: version-update:semver-patch
      dependency-group: npm-development
    - dependency-name: openai
      dependency-version: 6.9.1
      dependency-type: direct:development
      update-type: version-update:semver-minor
      dependency-group: npm-development
    - dependency-name: textlint
      dependency-version: 15.4.0
      dependency-type: direct:development
      update-type: version-update:semver-minor
      dependency-group: npm-development
    ...
    
    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
    @dependabot dependabot bot requested a review from virgofx as a code owner November 24, 2025 00:30
    @dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Nov 24, 2025
    @github-actions
    Copy link

    📋 Release Plan

    Module Type Latest
    Version
    New
    Version
    Release
    Details
    tf-modules-kms patch v1.0.0 🆕 Initial Release
    tf-modules-vpc-endpoint patch v1.0.0 🆕 Initial Release

    📝 Changelog

    tf-modules-kms-v1.0.0 (2025-11-24)

    • 🔀PR #323 - build(deps-dev): bump the npm-development group across 1 directory with 4 updates

    tf-modules-vpc-endpoint-v1.0.0 (2025-11-24)

    • 🔀PR #323 - build(deps-dev): bump the npm-development group across 1 directory with 4 updates

    Wiki Statusℹ️

    ✅ Enabled

    Automated Tag/Release Cleanupℹ️

    ⏸️ Existing tags and releases will be preserved as the delete-legacy-tags flag is disabled.

    Powered by:   techpivot/terraform-module-releaser

    @sonarqubecloud
    Copy link

    @virgofx virgofx merged commit c85fcde into main Nov 24, 2025
    28 checks passed
    @virgofx virgofx deleted the dependabot/npm_and_yarn/npm-development-5233809fa4 branch November 24, 2025 04:06
    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