Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Feb 1, 2026

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Change Age Confidence Type Update
@antfu/eslint-config 6.2.06.7.3 age confidence devDependencies minor
@hey-api/openapi-ts (source) ^0.88.0^0.92.0 age confidence devDependencies minor
buf.build/go/protovalidate v1.0.1v1.1.2 age confidence require minor
eslint (source) 9.39.19.39.2 age confidence devDependencies patch
eslint-plugin-format 1.0.21.4.0 age confidence devDependencies minor
github.com/go-viper/mapstructure/v2 v2.4.0v2.5.0 age confidence require minor
github.com/grpc-ecosystem/grpc-gateway/v2 v2.27.3v2.27.8 age confidence require patch
github.com/labstack/echo/v4 v4.13.4v4.15.0 age confidence require minor
github.com/spf13/cobra v1.10.1v1.10.2 age confidence require patch
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.63.0v0.65.0 age confidence require minor
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.63.0v0.65.0 age confidence require minor
go.opentelemetry.io/contrib/instrumentation/runtime v0.63.0v0.65.0 age confidence require minor
go.opentelemetry.io/otel v1.38.0v1.40.0 age confidence require minor
go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetrichttp v1.38.0v1.40.0 age confidence require minor
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.38.0v1.40.0 age confidence require minor
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.38.0v1.40.0 age confidence require minor
go.opentelemetry.io/otel/exporters/stdout/stdoutmetric v1.38.0v1.40.0 age confidence require minor
go.opentelemetry.io/otel/exporters/stdout/stdouttrace v1.38.0v1.40.0 age confidence require minor
go.opentelemetry.io/otel/sdk v1.38.0v1.40.0 age confidence require minor
go.opentelemetry.io/otel/sdk/metric v1.38.0v1.40.0 age confidence require minor
golang 1.251.26 age confidence stage minor
golang 1.25.51.26.0 age confidence minor
golangci-lint 2.6.22.9.0 age confidence minor
golangci/golangci-lint-action v9.1.0v9.2.0 age confidence action minor
google.golang.org/grpc v1.77.0v1.78.0 age confidence require minor
google.golang.org/protobuf v1.36.10v1.36.11 age confidence require patch
pnpm (source) 10.24.010.29.3 age confidence packageManager minor
tsdown (source) ^0.16.0^0.20.0 age confidence devDependencies minor

Release Notes

antfu/eslint-config (@​antfu/eslint-config)

v6.7.3

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v6.7.2

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v6.7.1

Compare Source

   🐞 Bug Fixes
  • pnpm: Do not set catalogMode when catalogs is not enabled  -  by @​antfu (0471e)
    View changes on GitHub

v6.7.0

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v6.6.1

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v6.6.0

Compare Source

   🐞 Bug Fixes
  • pnpm: Enforce catalog usage based on smart detection  -  by @​antfu (654c0)
    View changes on GitHub

v6.5.1

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v6.5.0

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v6.4.2

Compare Source

   🐞 Bug Fixes
  • pnpm: Move pnpm-workspace.yaml sorting config from yaml to pnpm  -  by @​antfu (fc2b1)
    View changes on GitHub

v6.4.1

Compare Source

No significant changes

    View changes on GitHub

v6.3.0

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub
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
bufbuild/protovalidate-go (buf.build/go/protovalidate)

v1.1.2

Compare Source

What's Changed

Full Changelog: bufbuild/protovalidate-go@v1.1.1...v1.1.2

v1.1.1

Compare Source

This release is compatible with the v1.1.0 release of Protovalidate.

What's Changed

Full Changelog: bufbuild/protovalidate-go@v1.1.0...v1.1.1

v1.1.0

Compare Source

This release is compatible with the v1.1.0 release of Protovalidate.

What's Changed

Full Changelog: bufbuild/protovalidate-go@v1.0.1...v1.1.0

eslint/eslint (eslint)

v9.39.2

Compare Source

antfu/eslint-plugin-format (eslint-plugin-format)

v1.4.0

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v1.3.1

Compare Source

   🚀 Features
    View changes on GitHub

v1.3.0

Compare Source

   🚀 Features
    View changes on GitHub

v1.2.0

Compare Source

   🚀 Features
    View changes on GitHub

v1.1.0

Compare Source

   🚀 Features
    View changes on GitHub
go-viper/mapstructure (github.com/go-viper/mapstructure/v2)

v2.5.0

Compare Source

What's Changed

  • Print qualified type name when ErrorUnused=true causes errors for unused keys in embedded fields by @​jmacd in #​113
  • build(deps): bump github/codeql-action from 3.29.2 to 3.29.5 by @​dependabot[bot] in #​126
  • build(deps):

Configuration

📅 Schedule: Branch creation - Between 12:00 AM and 03:59 AM, on day 1 of the month ( * 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.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


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

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

@renovate
Copy link
Contributor Author

renovate bot commented Feb 1, 2026

ℹ️ Artifact update notice

File name: go.mod

In order to perform the update(s) described in the table above, Renovate ran the go get command, which resulted in the following additional change(s):

  • 13 additional dependencies were updated

Details:

Package Change
google.golang.org/genproto/googleapis/api v0.0.0-20251124214823-79d6a2a48846 -> v0.0.0-20260209200024-4cfbd4190f57
buf.build/gen/go/bufbuild/protovalidate/protocolbuffers/go v1.36.10-20250912141014-52f32327d4b0.1 -> v1.36.11-20251209175733-2a1774d88802.1
go.opentelemetry.io/otel/metric v1.38.0 -> v1.40.0
go.opentelemetry.io/otel/trace v1.38.0 -> v1.40.0
go.opentelemetry.io/proto/otlp v1.7.1 -> v1.9.0
golang.org/x/crypto v0.44.0 -> v0.47.0
golang.org/x/mod v0.30.0 -> v0.32.0
golang.org/x/net v0.47.0 -> v0.49.0
golang.org/x/sync v0.18.0 -> v0.19.0
golang.org/x/sys v0.38.0 -> v0.40.0
golang.org/x/text v0.31.0 -> v0.34.0
golang.org/x/tools v0.39.0 -> v0.41.0
google.golang.org/genproto/googleapis/rpc v0.0.0-20251111163417-95abcf5c77ba -> v0.0.0-20260209200024-4cfbd4190f57

@renovate renovate bot force-pushed the renovate/all-minor-patch branch 9 times, most recently from 803dffb to 06ad154 Compare February 9, 2026 06:06
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 5 times, most recently from 3a18407 to 518fbe8 Compare February 11, 2026 17:38
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 518fbe8 to 4b80cbb Compare February 12, 2026 00:43
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants