Skip to content

chore(deps): bump the all group with 6 updates#135

Merged
github-actions[bot] merged 1 commit intomainfrom
dependabot/npm_and_yarn/all-10cdf70ae9
Aug 1, 2025
Merged

chore(deps): bump the all group with 6 updates#135
github-actions[bot] merged 1 commit intomainfrom
dependabot/npm_and_yarn/all-10cdf70ae9

Conversation

@dependabot
Copy link
Contributor

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

Bumps the all group with 6 updates:

Package From To
@hey-api/client-fetch 0.11.0 0.13.1
@hey-api/openapi-ts 0.77.0 0.80.1
@types/node 24.0.8 24.1.0
dotenv 17.0.0 17.2.1
jest 30.0.3 30.0.5
typescript 5.8.3 5.9.2

Updates @hey-api/client-fetch from 0.11.0 to 0.13.1

Release notes

Sourced from @​hey-api/client-fetch's releases.

@​hey-api/client-fetch@​0.13.1

Patch Changes

@​hey-api/client-fetch@​0.13.0

Minor Changes

@​hey-api/client-fetch@​0.12.0

Minor Changes

  • #2123 4d8c030 Thanks @​mrlubos! - feat: add responseStyle option

    BREAKING: Update @hey-api/openapi-ts to the latest version.

Commits
  • 7365e4a Merge pull request #2164 from hey-api/changeset-release/main
  • e8b6797 Version Packages
  • 1e1c40b Merge pull request #2167 from hey-api/fix/tanstack-query-name-builder
  • a46259e fix(tanstack-query): add name builder options for all generated artifacts
  • 67125d3 Merge pull request #2166 from hey-api/fix/zod-tuple
  • 594f3a6 fix(zod): support tuple types
  • 3d0aeb8 Merge pull request #2165 from hey-api/fix/client-path-param-date
  • f23f3ae fix(client): do not serialize path param name in url
  • 32a8d2c Merge pull request #2163 from hey-api/fix/zod-metadata
  • 9769998 fix(zod): add metadata option
  • Additional commits viewable in compare view

Updates @hey-api/openapi-ts from 0.77.0 to 0.80.1

Release notes

Sourced from @​hey-api/openapi-ts's releases.

@​hey-api/openapi-ts@​0.80.1

Patch Changes

@​hey-api/openapi-ts@​0.80.0

Minor Changes

  • #2341 9954bcf Thanks @​mrlubos! - feat(zod): add support for Zod 4 and Zod Mini

    Added Zod 4 and Zod Mini

    This release adds support for Zod 4 and Zod Mini. By default, the zod plugin will generate output for Zod 4. If you want to preserve the previous output for Zod 3 or use Zod Mini, set compatibilityVersion to 3 or mini.

    export default {
      input: 'https://get.heyapi.dev/hey-api/backend',
      output: 'src/client',
      plugins: [
        // ...other plugins
        {
          name: 'zod',
          compatibilityVersion: 3,
        },
      ],
    };
    export default {
      input: 'https://get.heyapi.dev/hey-api/backend',
      output: 'src/client',
      plugins: [
        // ...other plugins
        {
          name: 'zod',
          compatibilityVersion: 'mini',
        },
      ],
    };

@​hey-api/openapi-ts@​0.79.2

Patch Changes

@​hey-api/openapi-ts@​0.79.1

... (truncated)

Commits
  • 9ccd969 Merge pull request #2355 from hey-api/changeset-release/main
  • 3c5c21c Version Packages
  • d780a69 Merge pull request #2344 from Daschi1/issue-2194
  • fb7b724 Create stale-starfishes-sell.md
  • 84eea31 test(valibot): remove redundant if conditions
  • 4147808 test(valibot): remove redundant if conditions
  • d573e06 refactor(valibot): extract number helper functions to separate file
  • a7df1f2 test(valibot): remove redundant assertion checks
  • 69ec010 test(valibot): switch spec from JSON to YAML
  • 6ebc974 test: switch integer-formats spec from JSON to YAML
  • Additional commits viewable in compare view

Updates @types/node from 24.0.8 to 24.1.0

Commits

Updates dotenv from 17.0.0 to 17.2.1

Changelog

Sourced from dotenv's changelog.

17.2.1 (2025-07-24)

Changed

  • Fix clickable tip links by removing parentheses (#897)

17.2.0 (2025-07-09)

Added

  • Optionally specify DOTENV_CONFIG_QUIET=true in your environment or .env file to quiet the runtime log (#889)
  • Just like dotenv any DOTENV_CONFIG_ environment variables take precedence over any code set options like ({quiet: false})
# .env
DOTENV_CONFIG_QUIET=true
HELLO="World"
// index.js
require('dotenv').config()
console.log(`Hello ${process.env.HELLO}`)
$ node index.js
Hello World
or
$ DOTENV_CONFIG_QUIET=true node index.js

17.1.0 (2025-07-07)

Added

  • Add additional security and configuration tips to the runtime log (#884)
  • Dim the tips text from the main injection information text
const TIPS = [
  '🔐 encrypt with dotenvx: https://dotenvx.com',
  '🔐 prevent committing .env to code: https://dotenvx.com/precommit',
  '🔐 prevent building .env in docker: https://dotenvx.com/prebuild',
  '🛠️  run anywhere with `dotenvx run -- yourcommand`',
  '⚙️  specify custom .env file path with { path: \'/custom/path/.env\' }',
  '⚙️  enable debug logging with { debug: true }',
  '⚙️  override existing env vars with { override: true }',
  '⚙️  suppress all logs with { quiet: true }',
  '⚙️  write to custom object with { processEnv: myObject }',
</tr></table> 

... (truncated)

Commits

Updates jest from 30.0.3 to 30.0.5

Changelog

Sourced from jest's changelog.

30.0.5

Features

  • [jest-config] Allow testMatch to take a string value
  • [jest-worker] Let workerIdleMemoryLimit accept 0 to always restart worker child processes

Fixes

  • [expect] Fix bigint error (#15702)

30.0.4

Features

  • [expect] The Inverse type is now exported (#15714)
  • [expect] feat: support async functions in toBe (#15704)

Fixes

  • [jest] jest --onlyFailures --listTests now correctly lists only failed tests (#15700)
  • [jest-snapshot] Handle line endings in snapshots (#15708)
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 all group with 6 updates:

| Package | From | To |
| --- | --- | --- |
| [@hey-api/client-fetch](https://github.com/hey-api/openapi-ts) | `0.11.0` | `0.13.1` |
| [@hey-api/openapi-ts](https://github.com/hey-api/openapi-ts) | `0.77.0` | `0.80.1` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `24.0.8` | `24.1.0` |
| [dotenv](https://github.com/motdotla/dotenv) | `17.0.0` | `17.2.1` |
| [jest](https://github.com/jestjs/jest/tree/HEAD/packages/jest) | `30.0.3` | `30.0.5` |
| [typescript](https://github.com/microsoft/TypeScript) | `5.8.3` | `5.9.2` |


Updates `@hey-api/client-fetch` from 0.11.0 to 0.13.1
- [Release notes](https://github.com/hey-api/openapi-ts/releases)
- [Changelog](https://github.com/hey-api/openapi-ts/blob/main/docs/CHANGELOG.md)
- [Commits](https://github.com/hey-api/openapi-ts/compare/@hey-api/client-fetch@0.11.0...@hey-api/client-fetch@0.13.1)

Updates `@hey-api/openapi-ts` from 0.77.0 to 0.80.1
- [Release notes](https://github.com/hey-api/openapi-ts/releases)
- [Changelog](https://github.com/hey-api/openapi-ts/blob/main/docs/CHANGELOG.md)
- [Commits](https://github.com/hey-api/openapi-ts/compare/@hey-api/openapi-ts@0.77.0...@hey-api/openapi-ts@0.80.1)

Updates `@types/node` from 24.0.8 to 24.1.0
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node)

Updates `dotenv` from 17.0.0 to 17.2.1
- [Changelog](https://github.com/motdotla/dotenv/blob/master/CHANGELOG.md)
- [Commits](motdotla/dotenv@v17.0.0...v17.2.1)

Updates `jest` from 30.0.3 to 30.0.5
- [Release notes](https://github.com/jestjs/jest/releases)
- [Changelog](https://github.com/jestjs/jest/blob/main/CHANGELOG.md)
- [Commits](https://github.com/jestjs/jest/commits/v30.0.5/packages/jest)

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: "@hey-api/client-fetch"
  dependency-version: 0.13.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: "@hey-api/openapi-ts"
  dependency-version: 0.80.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: "@types/node"
  dependency-version: 24.1.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: dotenv
  dependency-version: 17.2.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: jest
  dependency-version: 30.0.5
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: typescript
  dependency-version: 5.9.2
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Aug 1, 2025

The reviewers field in the dependabot.yml file will be removed soon. Please use the code owners file to specify reviewers for Dependabot PRs. For more information, see this blog post.

@dependabot dependabot bot requested a review from devjiwonchoi August 1, 2025 00:32
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Aug 1, 2025
@github-actions github-actions bot merged commit b13c9cb into main Aug 1, 2025
1 check passed
@github-actions github-actions bot deleted the dependabot/npm_and_yarn/all-10cdf70ae9 branch August 1, 2025 00:32
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.

0 participants