Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Oct 15, 2025

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

Updates @biomejs/biome from 2.2.5 to 2.2.6

Release notes

Sourced from @​biomejs/biome's releases.

Biome CLI v2.2.6

2.2.6

Patch Changes

  • #7071 a8e7301 Thanks @​ptkagori! - Added the useQwikMethodUsage lint rule for the Qwik domain.

    This rule validates Qwik hook usage. Identifiers matching useXxx must be called only within serialisable reactive contexts (for example, inside component$, route loaders/actions, or within other Qwik hooks), preventing common Qwik antipatterns.

    Invalid:

    // Top-level hook call is invalid.
    const state = useStore({ count: 0 });
    function helper() {
    // Calling a hook in a non-reactive function is invalid.
    const loc = useLocation();
    }

    Valid:

    component$(() => {
      const state = useStore({ count: 0 }); // OK inside component$.
      return <div>{state.count}</div>;
    });
    const handler = $(() => {
    const loc = useLocation(); // OK inside a $-wrapped closure.
    console.log(loc.params);
    });

  • #7685 52071f5 Thanks @​denbezrukov! - Fixed #6981: The NoUnknownPseudoClass rule no longer reports local pseudo-classes when CSS Modules are used.

  • #7640 899f7b2 Thanks @​arendjr! - Fixed #7638: useImportExtensions no longer emits diagnostics on valid import paths that end with a query or hash.

    Example

    // This no longer warns if `index.css` exists:
    import style from "../theme/index.css?inline";
  • #7071 a8e7301 Thanks @​ptkagori! - Added the useQwikValidLexicalScope rule to the Qwik domain.

    This rule helps you avoid common bugs in Qwik components by checking that your variables and functions are declared in the correct place.

... (truncated)

Changelog

Sourced from @​biomejs/biome's changelog.

2.2.6

Patch Changes

  • #7071 a8e7301 Thanks @​ptkagori! - Added the useQwikMethodUsage lint rule for the Qwik domain.

    This rule validates Qwik hook usage. Identifiers matching useXxx must be called only within serialisable reactive contexts (for example, inside component$, route loaders/actions, or within other Qwik hooks), preventing common Qwik antipatterns.

    Invalid:

    // Top-level hook call is invalid.
    const state = useStore({ count: 0 });
    function helper() {
    // Calling a hook in a non-reactive function is invalid.
    const loc = useLocation();
    }

    Valid:

    component$(() => {
      const state = useStore({ count: 0 }); // OK inside component$.
      return <div>{state.count}</div>;
    });
    const handler = $(() => {
    const loc = useLocation(); // OK inside a $-wrapped closure.
    console.log(loc.params);
    });

  • #7685 52071f5 Thanks @​denbezrukov! - Fixed #6981: The NoUnknownPseudoClass rule no longer reports local pseudo-classes when CSS Modules are used.

  • #7640 899f7b2 Thanks @​arendjr! - Fixed #7638: useImportExtensions no longer emits diagnostics on valid import paths that end with a query or hash.

    Example

    // This no longer warns if `index.css` exists:
    import style from "../theme/index.css?inline";
  • #7071 a8e7301 Thanks @​ptkagori! - Added the useQwikValidLexicalScope rule to the Qwik domain.

    This rule helps you avoid common bugs in Qwik components by checking that your variables and functions are declared in the correct place.

    Invalid:

... (truncated)

Commits

Updates openai from 6.1.0 to 6.3.0

Release notes

Sourced from openai's releases.

v6.3.0

6.3.0 (2025-10-10)

Full Changelog: v6.2.0...v6.3.0

Features

  • api: comparison filter in/not in (1a733c6)

Chores

  • internal: use npm pack for build uploads (a532410)

v6.2.0

6.2.0 (2025-10-06)

Full Changelog: v6.1.0...v6.2.0

Features

  • api: dev day 2025 launches (f2816db)

Chores

  • internal: codegen related update (b6f64b7)
  • jsdoc: fix @​link annotations to refer only to parts of the package‘s public interface (73e465d)
Changelog

Sourced from openai's changelog.

6.3.0 (2025-10-10)

Full Changelog: v6.2.0...v6.3.0

Features

  • api: comparison filter in/not in (1a733c6)

Chores

  • internal: use npm pack for build uploads (a532410)

6.2.0 (2025-10-06)

Full Changelog: v6.1.0...v6.2.0

Features

  • api: dev day 2025 launches (f2816db)

Chores

  • internal: codegen related update (b6f64b7)
  • jsdoc: fix @​link annotations to refer only to parts of the package‘s public interface (73e465d)
Commits
  • 86f85b0 release: 6.3.0
  • 1013c14 feat(api): comparison filter in/not in
  • 5c53725 chore(internal): use npm pack for build uploads
  • c8ee824 release: 6.2.0
  • 0eaecf3 chore(internal): codegen related update
  • 1e40c3d feat(api): dev day 2025 launches
  • 2ad6c4d chore(jsdoc): fix @​link annotations to refer only to parts of the package‘s p...
  • See full diff in compare view

Updates textlint from 15.2.2 to 15.2.3

Commits
  • bfb6099 v15.2.3 (#1780)
  • 7f8c4ba feat: add npm OIDC Trusted Publisher support (#1779)
  • 72aa5c8 refactor(kernel): improve plugin preProcess results (#1778)
  • 488b9f5 chore(deps): update node.js to v22.20.0 (#1759)
  • c378f05 chore(deps): update dependency @​eslint/js to ^9.37.0 (#1777)
  • 5a1a81f chore(deps): update softprops/action-gh-release action to v2.3.4 (#1776)
  • 1718ae2 fix(deps): update dependency @​modelcontextprotocol/sdk to ^1.19.1 (#1775)
  • ccce0a9 chore(deps): update pnpm to v10.18.0 (#1774)
  • 4c3efbe chore(deps): update github/codeql-action action to v3.30.6 (#1773)
  • 22b1d93 fix(deps): update patch updates (patch) (#1772)
  • Additional commits viewable in compare view
Maintainer changes

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


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 3 updates

Bumps the npm-development group with 3 updates in the / directory: [@biomejs/biome](https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome), [openai](https://github.com/openai/openai-node) and [textlint](https://github.com/textlint/textlint).


Updates `@biomejs/biome` from 2.2.5 to 2.2.6
- [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/[email protected]/packages/@biomejs/biome)

Updates `openai` from 6.1.0 to 6.3.0
- [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.1.0...v6.3.0)

Updates `textlint` from 15.2.2 to 15.2.3
- [Release notes](https://github.com/textlint/textlint/releases)
- [Commits](textlint/textlint@v15.2.2...v15.2.3)

---
updated-dependencies:
- dependency-name: "@biomejs/biome"
  dependency-version: 2.2.6
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm-development
- dependency-name: openai
  dependency-version: 6.3.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm-development
- dependency-name: textlint
  dependency-version: 15.2.3
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm-development
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Oct 15, 2025
@dependabot dependabot bot requested a review from virgofx as a code owner October 15, 2025 03:01
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Oct 15, 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-10-15)

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

tf-modules-vpc-endpoint-v1.0.0 (2025-10-15)

  • 🔀PR #294 - build(deps-dev): bump the npm-development group across 1 directory with 3 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 4537869 into main Oct 16, 2025
28 checks passed
@virgofx virgofx deleted the dependabot/npm_and_yarn/npm-development-8ace77364d branch October 16, 2025 03:27
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