Skip to content

chore(deps-dev): bump the dev-dependencies group with 3 updates#55

Open
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/npm_and_yarn/dev-dependencies-43d726880c
Open

chore(deps-dev): bump the dev-dependencies group with 3 updates#55
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/npm_and_yarn/dev-dependencies-43d726880c

Conversation

@dependabot
Copy link

@dependabot dependabot bot commented on behalf of github Mar 7, 2026

Bumps the dev-dependencies group with 3 updates: @hey-api/openapi-ts, @types/node and @typescript/native-preview.

Updates @hey-api/openapi-ts from 0.93.1 to 0.94.0

Release notes

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

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

Minor Changes

Patch Changes

Updated Dependencies:

  • @​hey-api/shared@​0.2.2
  • @​hey-api/codegen-core@​0.7.1
Commits
  • 60fc6a9 Merge pull request #3478 from hey-api/changeset-release/main
  • 7fcee0c ci: release
  • 3324e94 Merge pull request #3500 from hey-api/fix/typescript-enum-ref
  • 127e67b fix: reference enum object when creating enum types
  • f38367d Merge pull request #3499 from hey-api/feat/tanstack-preact-query
  • 873839e feat: add @​tanstack/preact-query plugin
  • e2643c1 chore(docs): update contributors list
  • f4ab416 Merge pull request #3498 from hey-api/fix/dev-mode-check
  • ea2538b fix: simplify dev mode check
  • 3ae2b77 Merge pull request #3497 from hey-api/copilot/expand-metadata-option-zod-valibot
  • Additional commits viewable in compare view

Updates @types/node from 25.3.3 to 25.3.5

Commits

Updates @typescript/native-preview from 7.0.0-dev.20260303.1 to 7.0.0-dev.20260307.1

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 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 dev-dependencies group with 3 updates: [@hey-api/openapi-ts](https://github.com/hey-api/openapi-ts), [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) and [@typescript/native-preview](https://github.com/microsoft/typescript-go).


Updates `@hey-api/openapi-ts` from 0.93.1 to 0.94.0
- [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.93.1...@hey-api/openapi-ts@0.94.0)

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

Updates `@typescript/native-preview` from 7.0.0-dev.20260303.1 to 7.0.0-dev.20260307.1
- [Changelog](https://github.com/microsoft/typescript-go/blob/main/CHANGES.md)
- [Commits](https://github.com/microsoft/typescript-go/commits)

---
updated-dependencies:
- dependency-name: "@hey-api/openapi-ts"
  dependency-version: 0.94.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: "@types/node"
  dependency-version: 25.3.5
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
- dependency-name: "@typescript/native-preview"
  dependency-version: 7.0.0-dev.20260307.1
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-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 Mar 7, 2026
@@ -54,11 +54,11 @@
"zod": "^4.3.6"
},
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Bug: Bumping @hey-api/openapi-ts without regenerating the client code creates a version mismatch. The build will fail when the code is inevitably regenerated by CI or another developer.
Severity: CRITICAL

Suggested Fix

Regenerate the client code by running the appropriate build command (e.g., pnpm run generate or pnpm run build) and commit the resulting changes to the .gen.ts files. This will synchronize the generated code with the tool version and allow for proper review of the breaking changes.

Prompt for AI Agent
Review the code at the location below. A potential bug has been identified by an AI
agent.
Verify if this is a real issue. If it is, propose a fix; if not, explain why it's not
valid.

Location: package.json#L55

Potential issue: This PR updates the `@hey-api/openapi-ts` dev dependency to a version
with a breaking change in its `buildUrl()` function. However, the generated client code
(`.gen.ts` files) has not been regenerated and committed as part of this change. This
creates a mismatch between the tool version in `package.json` and the committed code.
When the CI pipeline runs upon merge or a developer runs the build locally, the code
will be regenerated using the new tool version. This will likely cause build failures or
runtime errors due to incompatibility with the existing client's axios configuration,
which sets `baseURL: ""`.

Did we get this right? 👍 / 👎 to inform future reviews.

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