Skip to content

chore(deps-dev): bump the minor-development-deps group with 8 updates#1315

Closed
dependabot[bot] wants to merge 1 commit intonextfrom
dependabot/npm_and_yarn/minor-development-deps-839123f196
Closed

chore(deps-dev): bump the minor-development-deps group with 8 updates#1315
dependabot[bot] wants to merge 1 commit intonextfrom
dependabot/npm_and_yarn/minor-development-deps-839123f196

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot bot commented on behalf of github Aug 1, 2025

Bumps the minor-development-deps group with 8 updates:

Package From To
@biomejs/biome 2.1.2 2.1.3
@readme/oas-examples 6.1.2 6.1.4
@readme/standards 1.0.0 1.2.0
knip 5.61.3 5.62.0
nock 14.0.5 14.0.7
oclif 4.20.6 4.22.5
rollup 4.45.0 4.46.2
typescript 5.8.3 5.9.2

Updates @biomejs/biome from 2.1.2 to 2.1.3

Release notes

Sourced from @​biomejs/biome's releases.

Biome CLI v2.1.3

2.1.3

Patch Changes

  • #7057 634a667 Thanks @​mdevils! - Added the rule noVueReservedKeys, which prevents the use of reserved Vue keys.

    It prevents the use of Vue reserved keys such as those starting with # @biomejs/biome (like $el, $data, $props) and keys starting with _` in data properties, which can cause conflicts and unexpected behavior in Vue components.

    Invalid example
    <script>
    export default {
      data: {
        $el: "",
        _foo: "bar",
      },
    };
    </script>
    <script>
    export default {
      computed: {
        $data() {
          return this.someData;
        },
      },
    };
    </script>
    Valid examples
    <script>
    export default {
      data() {
        return {
          message: "Hello Vue!",
          count: 0,
        };
      },
    };
    </script>

... (truncated)

Changelog

Sourced from @​biomejs/biome's changelog.

2.1.3

Patch Changes

  • #7057 634a667 Thanks @​mdevils! - Added the rule noVueReservedKeys, which prevents the use of reserved Vue keys.

    It prevents the use of Vue reserved keys such as those starting with like $el, $data, $props) and keys starting with \_ in data properties, which can cause conflicts and unexpected behavior in Vue components.

    Invalid example
    <script>
    export default {
      data: {
        $el: "",
        _foo: "bar",
      },
    };
    </script>
    <script>
    export default {
      computed: {
        $data() {
          return this.someData;
        },
      },
    };
    </script>
    Valid examples
    <script>
    export default {
      data() {
        return {
          message: "Hello Vue!",
          count: 0,
        };
      },
    };
    </script>
    <script>

... (truncated)

Commits

Updates @readme/oas-examples from 6.1.2 to 6.1.4

Commits

Updates @readme/standards from 1.0.0 to 1.2.0

Commits
  • c327ab7 chore(release): publish
  • 1f27149 chore(biome): enabling nursery/noTsIgnore
  • ac5fae0 chore(deps-dev): bump form-data from 4.0.2 to 4.0.4 (#1005)
  • 0c886f8 chore(release): publish
  • bb55afe feat(standards): adding a couple new rules into our Biome config
  • See full diff in compare view

Updates knip from 5.61.3 to 5.62.0

Release notes

Sourced from knip's releases.

Release 5.62.0

  • Support .ts extension in toLilconfigutility for default TS configs (#1157) (cbfb9c3b1c6fd4f77b5e5f0987e0f027ee609feb) - thanks @​what1s1ove!
  • Update reporters to have the correct name for the default reporter (#1165) (bf811460b57a5c6ce1773dae3956edf62f50ce81) - thanks @​gavinhenderson!
  • Add audit as a valid command for bun (#1168) (014cbaac78e1ccd09830b7e5bbe8389035f82880) - thanks @​carlosedp!
  • Fix Angular plugin to allow for @​angular/build (#1175) (0754130ed26cb4cba6a15bcc708836e1218a4aae) - thanks @​davidlj95!
  • Correctly detect used/unused namespace exports that begin with double underscores (#1180) (259a2f693be762cb3459a7756ee8fad20075c5e3) - thanks @​akallem!
  • Rename tsconfig-loader.ts → load-tsconfig.ts (61280b0ef37161b889959062dbbd750783c8e7a2)
  • Support absolute path for config argument (b6066816cc1950515af8c76f956e06d23b4e6784)
  • Fix formatting (ebc9202f7ae303edafd01921d26b11c871f90ac7)
  • Add bun.lock support in @​knip/create-config (#1182) (da80ab33cccf611143e44d81eb78680e960cce33) - thanks @​ShooTeX!
  • Support new biome config extends definition (#1177) (07439ef3af85dab40df7596f2c0ae5d392e16b3f) - thanks @​Thomascogez!
  • Support Vitest projects configuration for dynamic project discovery (#1171) (cd0ed32c66c310db835210fd50f579cb54641d23) - thanks @​yyxi!
  • Fix up ESLint flat config resolution (replace #1173) (021ecfff467ce6fa8d23fe3e046364807006cbcd)
  • Reuse existing entry/production patterns in astro plugin (e65f7099facb55d28c305051c04f2fabfba58d07)
  • Edit docs (10f8a4f3ec850624d91c87d0187a9326142af12d)
Commits
  • 723d7e0 Release 5.62.0
  • e65f709 Reuse existing entry/production patterns in astro plugin
  • 021ecff Fix up ESLint flat config resolution (replace #1173)
  • cd0ed32 Support Vitest projects configuration for dynamic project discovery (#1171)
  • 07439ef Support new biome config extends definition (#1177)
  • ebc9202 Fix formatting
  • b606681 Support absolute path for config argument
  • 61280b0 Rename tsconfig-loader.ts → load-tsconfig.ts
  • 259a2f6 Correctly detect used/unused namespace exports that begin with double undersc...
  • 0754130 Fix Angular plugin to allow for @​angular/build (#1175)
  • Additional commits viewable in compare view

Updates nock from 14.0.5 to 14.0.7

Release notes

Sourced from nock's releases.

v14.0.7

14.0.7 (2025-07-26)

Bug Fixes

  • address timeout issue with mocked timers (#2880) (fb112f3)

v14.0.6

14.0.6 (2025-07-19)

Bug Fixes

Commits

Updates oclif from 4.20.6 to 4.22.5

Release notes

Sourced from oclif's releases.

4.22.5

Bug Fixes

  • deps: bump @​oclif/core from 4.5.1 to 4.5.2 (2c0c985)

4.22.4

Bug Fixes

  • deps: bump @​aws-sdk/client-cloudfront from 3.844.0 to 3.850.0 (b227d3f)

4.22.3

Bug Fixes

  • deps: bump @​oclif/plugin-not-found from 3.2.59 to 3.2.61 (e95ed25)

4.22.2

Bug Fixes

  • deps: bump @​aws-sdk/client-s3 from 3.848.0 to 3.850.0 (a4d0203)

4.22.1

Bug Fixes

4.22.0

Features

4.21.2

Bug Fixes

  • deps: bump @​aws-sdk/client-s3 from 3.842.0 to 3.848.0 (6b7b17d)

4.21.1

Bug Fixes

  • deps: bump @​oclif/plugin-warn-if-update-available (6846387)

4.21.0

Features

4.20.8

Bug Fixes

  • deps: bump @​aws-sdk/client-cloudfront from 3.840.0 to 3.844.0 (#1809) (ddd4510)

... (truncated)

Changelog

Sourced from oclif's changelog.

4.22.5 (2025-07-27)

Bug Fixes

  • deps: bump @​oclif/core from 4.5.1 to 4.5.2 (2c0c985)

4.22.4 (2025-07-27)

Bug Fixes

  • deps: bump @​aws-sdk/client-cloudfront from 3.844.0 to 3.850.0 (b227d3f)

4.22.3 (2025-07-27)

Bug Fixes

  • deps: bump @​oclif/plugin-not-found from 3.2.59 to 3.2.61 (e95ed25)

4.22.2 (2025-07-27)

Bug Fixes

  • deps: bump @​aws-sdk/client-s3 from 3.848.0 to 3.850.0 (a4d0203)

4.22.1 (2025-07-23)

Bug Fixes

4.22.0 (2025-07-21)

Features

4.21.2 (2025-07-20)

Bug Fixes

  • deps: bump @​aws-sdk/client-s3 from 3.842.0 to 3.848.0 (6b7b17d)

4.21.1 (2025-07-20)

Bug Fixes

  • deps: bump @​oclif/plugin-warn-if-update-available (6846387)

4.21.0 (2025-07-17)

... (truncated)

Commits
  • fa973d0 chore(release): 4.22.5 [skip ci]
  • 5bde53c Merge pull request #1828 from oclif/dependabot-npm_and_yarn-oclif-core-4.5.2
  • 1dc891b chore(release): 4.22.4 [skip ci]
  • 7bc05d4 Merge pull request #1829 from oclif/dependabot-npm_and_yarn-aws-sdk-client-cl...
  • 2c0c985 fix(deps): bump @​oclif/core from 4.5.1 to 4.5.2
  • 91f85e3 chore(release): 4.22.3 [skip ci]
  • 891e2ab Merge pull request #1830 from oclif/dependabot-npm_and_yarn-oclif-plugin-not-...
  • b227d3f fix(deps): bump @​aws-sdk/client-cloudfront from 3.844.0 to 3.850.0
  • c4e01c8 chore(release): 4.22.2 [skip ci]
  • 6f5b732 Merge pull request #1831 from oclif/dependabot-npm_and_yarn-aws-sdk-client-s3...
  • Additional commits viewable in compare view

Updates rollup from 4.45.0 to 4.46.2

Release notes

Sourced from rollup's releases.

v4.46.2

4.46.2

2025-07-29

Bug Fixes

  • Fix in-operator handling for external namespace and when the left side cannot be analyzed (#6041)

Pull Requests

v4.46.1

4.46.1

2025-07-28

Bug Fixes

  • Do not fail when using the in operator on external namespaces (#6036)

Pull Requests

  • #6036: disables optimization for external namespace when using the in operator (@​TrickyPi)

v4.46.0

4.46.0

2025-07-27

Features

  • Optimize in checks on namespaces to keep them treeshake-able (#6029)

Pull Requests

v4.45.3

4.45.3

2025-07-26

Bug Fixes

  • Do not fail build if a const is reassigned but warn instead (#6020)
  • Fail with a helpful error message if an exported binding is not defined (#6023)

... (truncated)

Changelog

Sourced from rollup's changelog.

4.46.2

2025-07-29

Bug Fixes

  • Fix in-operator handling for external namespace and when the left side cannot be analyzed (#6041)

Pull Requests

4.46.1

2025-07-28

Bug Fixes

  • Do not fail when using the in operator on external namespaces (#6036)

Pull Requests

  • #6036: disables optimization for external namespace when using the in operator (@​TrickyPi)

4.46.0

2025-07-27

Features

  • Optimize in checks on namespaces to keep them treeshake-able (#6029)

Pull Requests

4.45.3

2025-07-26

Bug Fixes

  • Do not fail build if a const is reassigned but warn instead (#6020)
  • Fail with a helpful error message if an exported binding is not defined (#6023)

Pull Requests

  • #6014: chore(deps): update dependency @​vue/language-server to v3 (@​renovate[bot])

... (truncated)

Commits

Updates typescript from 5.8.3 to 5.9.2

Release notes

Sourced from typescript's releases.

TypeScript 5.9

Release notes pending.

Downloads are available on:

TypeScript 5.9 RC

For release notes, check out the release announcement

Downloads are available on:

TypeScript 5.9 Beta

For release notes, check out the release announcement.

Downloads are available on:

Commits
  • be86783 Give more specific errors for verbatimModuleSyntax (#62113)
  • 22ef577 LEGO: Pull request from lego/hb_5378966c-b857-470a-8675-daebef4a6da1_20250714...
  • d5a414c Don't use noErrorTruncation when printing types with maximumLength set (#...
  • f14b5c8 Remove unused and confusing dom.iterable.d.ts file (#62037)
  • 2778e84 Restore AbortSignal.abort (#62086)
  • 65cb4bd LEGO: Pull request from lego/hb_5378966c-b857-470a-8675-daebef4a6da1_20250710...
  • 9e20e03 Clear out checker-level stacks on pop (#62016)
  • 87740bc Fix for Issue 61081 (#61221)
  • 833a8d4 Fix Symbol completion priority and cursor positioning (#61945)
  • 0018c9f LEGO: Pull request from lego/hb_5378966c-b857-470a-8675-daebef4a6da1_20250702...
  • Additional commits viewable in compare view

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

Bumps the minor-development-deps group with 8 updates:

| Package | From | To |
| --- | --- | --- |
| [@biomejs/biome](https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome) | `2.1.2` | `2.1.3` |
| [@readme/oas-examples](https://github.com/readmeio/oas/tree/HEAD/packages/oas-examples) | `6.1.2` | `6.1.4` |
| [@readme/standards](https://github.com/readmeio/standards) | `1.0.0` | `1.2.0` |
| [knip](https://github.com/webpro-nl/knip/tree/HEAD/packages/knip) | `5.61.3` | `5.62.0` |
| [nock](https://github.com/nock/nock) | `14.0.5` | `14.0.7` |
| [oclif](https://github.com/oclif/oclif) | `4.20.6` | `4.22.5` |
| [rollup](https://github.com/rollup/rollup) | `4.45.0` | `4.46.2` |
| [typescript](https://github.com/microsoft/TypeScript) | `5.8.3` | `5.9.2` |


Updates `@biomejs/biome` from 2.1.2 to 2.1.3
- [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.1.3/packages/@biomejs/biome)

Updates `@readme/oas-examples` from 6.1.2 to 6.1.4
- [Release notes](https://github.com/readmeio/oas/releases)
- [Commits](https://github.com/readmeio/oas/commits/@readme/oas-examples@6.1.4/packages/oas-examples)

Updates `@readme/standards` from 1.0.0 to 1.2.0
- [Release notes](https://github.com/readmeio/standards/releases)
- [Commits](https://github.com/readmeio/standards/compare/@readme/standards@1.0.0...@readme/standards@1.2.0)

Updates `knip` from 5.61.3 to 5.62.0
- [Release notes](https://github.com/webpro-nl/knip/releases)
- [Changelog](https://github.com/webpro-nl/knip/blob/main/packages/knip/.release-it.json)
- [Commits](https://github.com/webpro-nl/knip/commits/5.62.0/packages/knip)

Updates `nock` from 14.0.5 to 14.0.7
- [Release notes](https://github.com/nock/nock/releases)
- [Changelog](https://github.com/nock/nock/blob/main/CHANGELOG.md)
- [Commits](nock/nock@v14.0.5...v14.0.7)

Updates `oclif` from 4.20.6 to 4.22.5
- [Release notes](https://github.com/oclif/oclif/releases)
- [Changelog](https://github.com/oclif/oclif/blob/main/CHANGELOG.md)
- [Commits](oclif/oclif@4.20.6...4.22.5)

Updates `rollup` from 4.45.0 to 4.46.2
- [Release notes](https://github.com/rollup/rollup/releases)
- [Changelog](https://github.com/rollup/rollup/blob/master/CHANGELOG.md)
- [Commits](rollup/rollup@v4.45.0...v4.46.2)

Updates `typescript` from 5.8.3 to 5.9.2
- [Release notes](https://github.com/microsoft/TypeScript/releases)
- [Changelog](https://github.com/microsoft/TypeScript/blob/main/azure-pipelines.release-publish.yml)
- [Commits](microsoft/TypeScript@v5.8.3...v5.9.2)

---
updated-dependencies:
- dependency-name: "@biomejs/biome"
  dependency-version: 2.1.3
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-development-deps
- dependency-name: "@readme/oas-examples"
  dependency-version: 6.1.4
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-development-deps
- dependency-name: "@readme/standards"
  dependency-version: 1.2.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-development-deps
- dependency-name: knip
  dependency-version: 5.62.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-development-deps
- dependency-name: nock
  dependency-version: 14.0.7
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-development-deps
- dependency-name: oclif
  dependency-version: 4.22.5
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-development-deps
- dependency-name: rollup
  dependency-version: 4.46.2
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-development-deps
- dependency-name: typescript
  dependency-version: 5.9.2
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-development-deps
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Aug 1, 2025
@dependabot dependabot bot requested a review from kanadgupta as a code owner August 1, 2025 03:04
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Aug 1, 2025
@dependabot @github
Copy link
Copy Markdown
Contributor Author

dependabot bot commented on behalf of github Aug 2, 2025

Looks like these dependencies are no longer updatable, so this is no longer needed.

@dependabot dependabot bot closed this Aug 2, 2025
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/minor-development-deps-839123f196 branch August 2, 2025 00:49
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

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants