Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Dec 22, 2025

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Change Age Confidence
@hey-api/openapi-ts (source) ^0.77.0^0.92.0 age confidence

Release Notes

hey-api/openapi-ts (@​hey-api/openapi-ts)

v0.92.3

Compare Source

Patch Changes

v0.92.2

Minor Changes
Updated Symbol interface

The exportFrom property has been replaced with the getExportFromFilePath() function. This allows you to dynamically determine export paths based on symbol properties. This is a low-level feature, so you're most likely unaffected.

Patch Changes
Updated Dependencies:

v0.91.1

Compare Source

Patch Changes
Updated Dependencies:

v0.91.0

Compare Source

Minor Changes
Removed CommonJS (CJS) support

@hey-api/openapi-ts is now ESM-only. This change simplifies the codebase, improves tree-shaking, and enables better integration with modern bundlers and TypeScript tooling.

CommonJS entry points (require(), module.exports) are no longer supported. If you are in a CJS environment, you can still load the package dynamically using import() like:

const { defineConfig } = await import('@​hey-api/openapi-ts');

If you have previously written:

const { defineConfig } = require('@​hey-api/openapi-ts');

Migrate by updating your static imports:

import { defineConfig } from '@​hey-api/openapi-ts';

If your environment cannot use ESM, pin to a previous version.

Patch Changes
Updated Dependencies:

v0.90.10

Compare Source

Patch Changes

v0.90.9

Compare Source

Patch Changes
Updated Dependencies:

v0.90.8

Compare Source

Patch Changes
Updated Dependencies:

v0.90.7

Compare Source

Patch Changes
Updated Dependencies:

v0.90.6

Patch Changes

v0.90.4

Compare Source

Patch Changes

v0.90.3

Compare Source

Patch Changes

v0.90.2

Compare Source

Patch Changes
Updated Dependencies:

v0.90.1

Compare Source

Patch Changes

The SDK plugin can generate ready-to-use code examples for each operation, showing how to call the SDK methods with proper parameters and setup.

Learn how to generate examples on the SDK plugin page.

Source is a copy of the input specification used to generate your output. It can be used to power documentation tools or to persist a stable snapshot alongside your generated files.

Learn how to use the source on the Output page.

Updated Dependencies:

v0.90.0

Compare Source

Minor Changes

The Resolvers API has been simplified and expanded to provide a more consistent behavior across plugins. You can view a few common examples on the Resolvers page.

Structure API

The SDK plugin now implements the Structure API, enabling more complex structures and fixing several known issues.

Some Structure APIs are incompatible with the previous configuration, most notably the methodNameBuilder function, which accepted the operation object as an argument. You can read the SDK Output section to familiarize yourself with the Structure API.

Please open an issue if you're unable to migrate your configuration to the new syntax.

The Resolvers API has been simplified and expanded to provide a more consistent behavior across plugins. You can view a few common examples on the Resolvers page.

Structure API

The Angular plugin now implements the Structure API, enabling more complex structures and fixing several known issues.

Some Structure APIs are incompatible with the previous configuration, most notably the methodNameBuilder function, which accepted the operation object as an argument. You can read the SDK Output section to familiarize yourself with the Structure API.

Please open an issue if you're unable to migrate your configuration to the new syntax.

Patch Changes
Updated Dependencies:

v0.89.2

Compare Source

Patch Changes

v0.89.1

Compare Source

Patch Changes

v0.89.0

Compare Source

Minor Changes
Prefer named exports

This release changes the default for index.ts to prefer named exports. Named exports may lead to better IDE and bundler performance compared to asterisk (*) as your tooling doesn't have to inspect the underlying module to discover exports.

While this change is merely cosmetic, you can set output.preferExportAll to true if you prefer to use the asterisk.

export default {
  input: 'hey-api/backend', // sign up at app.heyapi.dev
  output: {
    path: 'src/client',
    preferExportAll: true,
  },
};
Removed symbol:setValue:* events

These events have been removed in favor of node:set:* events.

Patch Changes

v0.88.2

Compare Source

Patch Changes

v0.88.1

Compare Source

Patch Changes

v0.88.0

Compare Source

Minor Changes
Removed compiler and tsc exports

This release removes the compiler utility functions. Instead, it introduces a new TypeScript DSL exposed under the $ symbol. All plugins now use this interface, so you may notice slight changes in the generated output.

v0.87.5

Compare Source

Patch Changes

v0.87.4

Compare Source

Patch Changes

v0.87.3

Compare Source

Patch Changes

v0.87.2

Compare Source

Patch Changes

v0.87.1

Compare Source

Patch Changes

v0.87.0

Compare Source

Minor Changes
Removed legacy clients

This release removes support for legacy clients and plugins. Please migrate to the new clients if you haven't done so yet. If you're unable to do so due to a missing feature, let us know on GitHub.

v0.86.12

Compare Source

Patch Changes
Updated Dependencies:

v0.86.11

Compare Source

Patch Changes

v0.86.10

Compare Source

Patch Changes

v0.86.9

Compare Source

Patch Changes
Updated Dependencies:

v0.86.8

Compare Source

Patch Changes

v0.86.7

Compare Source

Patch Changes

v0.86.6

Compare Source

Patch Changes

v0.86.5

Compare Source

Patch Changes

v0.86.4

Compare Source

Patch Changes

v0.86.3

Compare Source

Patch Changes

v0.86.2

Compare Source

Patch Changes
Updated Dependencies:

v0.86.1

Compare Source

Patch Changes

v0.86.0

Compare Source

Minor Changes
Patch Changes
Updated Dependencies:

v0.85.2

Compare Source

Patch Changes

v0.85.1

Compare Source

Patch Changes

v0.85.0

Compare Source

Minor Changes
Updated output options

We made the output configuration more consistent by using null to represent disabled options. This change does not affect boolean options.

export default {
  input: 'hey-api/backend', // sign up at app.heyapi.dev
  output: {
    format: null,
    lint: null,
    path: 'src/client',
    tsConfigPath: null,
  },
};
Patch Changes
Updated Pinia Colada query options

Pinia Colada query options now use defineQueryOptions to improve reactivity support. Instead of calling the query options function, you can use one of the following approaches.

No params
useQuery(getPetsQuery);
Constant
useQuery(getPetByIdQuery, () => ({
  path: {
    petId: 1,
  },
}));
Reactive
const petId = ref<number | null>(1);

useQuery(getPetByIdQuery, () => ({
  path: {
    petId: petId.value,
  },
}));
Properties
const petId = ref<number | null>(1);

useQuery(() => ({
  ...getPetByIdQuery({
    path: { petId: petId.value as number },
  }),
  enabled: () => petId.value != null,
}));

v0.84.4

Compare Source

Patch Changes

v0.84.3

Compare Source

Patch Changes
  • fix(validators): escaping slashes in regular expressions (#​2692) ([`d

Configuration

📅 Schedule: Branch creation - Between 12:00 AM and 03:59 AM, only on Monday ( * 0-3 * * 1 ) (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot force-pushed the renovate/hey-api-openapi-ts-0.x branch from 13f3857 to 001b8c4 Compare January 5, 2026 18:30
@renovate renovate bot changed the title chore(deps): update dependency @hey-api/openapi-ts to ^0.89.0 chore(deps): update dependency @hey-api/openapi-ts to ^0.90.0 Jan 5, 2026
@renovate renovate bot force-pushed the renovate/hey-api-openapi-ts-0.x branch 2 times, most recently from 726c295 to 9eb2613 Compare January 14, 2026 14:11
@renovate renovate bot force-pushed the renovate/hey-api-openapi-ts-0.x branch 3 times, most recently from 2b67cb4 to 68bfc92 Compare January 24, 2026 22:01
@renovate renovate bot force-pushed the renovate/hey-api-openapi-ts-0.x branch from 68bfc92 to ecbaac7 Compare February 1, 2026 00:42
@renovate renovate bot changed the title chore(deps): update dependency @hey-api/openapi-ts to ^0.90.0 chore(deps): update dependency @hey-api/openapi-ts to ^0.91.0 Feb 1, 2026
@renovate renovate bot force-pushed the renovate/hey-api-openapi-ts-0.x branch from ecbaac7 to 64d009f Compare February 2, 2026 20:45
@renovate renovate bot force-pushed the renovate/hey-api-openapi-ts-0.x branch from 64d009f to 285545d Compare February 8, 2026 08:44
@renovate renovate bot changed the title chore(deps): update dependency @hey-api/openapi-ts to ^0.91.0 chore(deps): update dependency @hey-api/openapi-ts to ^0.92.0 Feb 8, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants