Skip to content

chore: bump the gomod-minor-and-patch group across 5 directories with 17 updates - #24

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/go_modules/gomod-minor-and-patch-c304bd64e1
Open

dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/go_modules/gomod-minor-and-patch-c304bd64e1

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Sep 21, 2026

Copy link
Copy Markdown

Bumps the gomod-minor-and-patch group with 16 updates in the / directory:

Package From To
github.com/hashicorp/hcl/v2 2.24.0 2.25.0
github.com/posthog/posthog-go 1.23.1 1.25.2
github.com/sourcegraph/jsonrpc2 0.2.2 0.2.3
github.com/speakeasy-api/openapi 1.24.1 1.25.1
github.com/speakeasy-api/sdk-gen-config 1.57.1 1.59.0
github.com/speakeasy-api/speakeasy-client-sdk-go/v3 3.26.7 3.28.1
github.com/stretchr/testify 1.12.0 1.12.1
go.opentelemetry.io/otel 1.45.0 1.46.0
go.opentelemetry.io/otel/exporters/otlp/otlptrace 1.45.0 1.46.0
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc 1.45.0 1.46.0
go.opentelemetry.io/otel/exporters/stdout/stdouttrace 1.45.0 1.46.0
go.opentelemetry.io/otel/sdk 1.45.0 1.46.0
go.opentelemetry.io/otel/trace 1.45.0 1.46.0
golang.org/x/sync 0.22.0 0.23.0
golang.org/x/text 0.41.0 0.42.0
golang.org/x/mod 0.38.0 0.41.0
github.com/speakeasy-api/openapi 1.24.1 1.25.1
github.com/speakeasy-api/sdk-gen-config 1.57.1 1.59.0
github.com/speakeasy-api/openapi 1.24.1 1.25.1

Bumps the gomod-minor-and-patch group with 1 update in the /cmd/wasm/ast directory: github.com/speakeasy-api/openapi.
Bumps the gomod-minor-and-patch group with 1 update in the /cmd/wasm/full-stack directory: github.com/speakeasy-api/sdk-gen-config.
Bumps the gomod-minor-and-patch group with 1 update in the /cmd/wasm/overlay directory: github.com/speakeasy-api/openapi.
Bumps the gomod-minor-and-patch group with 1 update in the /services/speakeasy-api-test-service directory: github.com/brianvoe/gofakeit/v7.

Updates github.com/hashicorp/hcl/v2 from 2.24.0 to 2.25.0

Release notes

Sourced from github.com/hashicorp/hcl/v2's releases.

v2.25.0

Enhancements

  • Go: Upgrade compatibility from 1.24 to 1.25 (#798)
  • hclwrite: Export LeadComments()/LineComments() (#807)
  • hclwrite: body.SetAttribute* return new attribute (#806)
  • hclwrite: Block.SetType sets type (#808)
  • Prepare for Unicode 17 support in Go 1.27 (#814)

Bug Fixes

  • DiagnosticWriter: Skip marked values when writing diagnostics (#739)
  • hclsyntax: Set CloseBraceRange to last label in error-recovered blocks (#786)
  • hclsyntax: Add partially complete items in nested ObjectConsItem on error (#785)

Internal

  • deps: bump golang.org/x/crypto from 0.38.0 to 0.45.0 (#774)
Changelog

Sourced from github.com/hashicorp/hcl/v2's changelog.

HCL Changelog

Commits
  • 00057cf Prepare for Unicode 17 support in Go 1.27 (#814)
  • 7338a7d github: Add consistency test for generated code (#834)
  • 2f8831b github: Filter out Ragel files from coverage report (#833)
  • d9882d1 hclsyntax: Update copyright year in generated files (#832)
  • 6032923 hclsyntax: Re-run stringer to update generated comments (#831)
  • 6abbb08 Merge pull request #827 from hashicorp/james-warren0/security-doc-tweaks
  • 425fdf9 Implement feedback provided in hashicorp/hcl#826
  • 2a3b672 Merge pull request #826 from hashicorp/james-warren0/security-model
  • 42ccbc0 Add security model documentation
  • 6bf1a67 Merge pull request #808 from hashicorp/bbasata/set-type
  • Additional commits viewable in compare view

Updates github.com/posthog/posthog-go from 1.23.1 to 1.25.2

Release notes

Sourced from github.com/posthog/posthog-go's releases.

1.25.2

Unreleased

1.25.1

Unreleased

1.25.0

Unreleased

1.24.4

Unreleased

1.24.3

Unreleased

1.24.2

Unreleased

1.24.1

Unreleased

1.24.0

Unreleased

Changelog

Sourced from github.com/posthog/posthog-go's changelog.

1.25.2

Patch Changes

  • 3bc1d1a: Fix local evaluation falling back to the API for gt, gte, lt and lte when the operand is stored as a string. The PostHog API stores a numeric comparison operand as a string, and its filters validation requires one, so most flags using these operators hold a string. interfaceToFloat had a case for every numeric type and none for string, so the operand was not orderable. The error it returned was not an InconclusiveMatchError, so the caller did not try other conditions either and fell back to the API for a flag it could have matched locally. A string operand is now parsed with strconv.ParseFloat, matching what the Python, Node, Ruby and PHP SDKs already do. A value that is not a finite number, including "NaN" and "Inf", stays not orderable.

1.25.1

Patch Changes

  • c159621: Fix not_regex local flag evaluation erroring on non-string/int property values. The not_regex operator used a manual string/int type switch and returned an error for other types, most notably float64, which is what JSON numbers deserialize to, so it failed on a numeric property value even though regex handled it. not_regex now coerces both sides with valueToString, mirroring regex. An explicit nil property value is represented as null, matching the feature flags evaluation service rather than Go's default <nil> representation.

1.25.0

Minor Changes

  • 897a0b4: Add the OpenTelemetry bridge for AI observability as an independently installable nested Go module.

1.24.4

Patch Changes

  • c3270b6: Align local feature flag property matching with the flags service, including boolean-array precedence, canonical JSON stringification, and operator-specific case folding.

1.24.3

Patch Changes

  • 749f1e8: Fix exact/is_not local flag evaluation to match case-insensitively and after string coercion, consistent with the other string operators here and the reference SDKs. A plain Go == made them case- and type-sensitive, so e.g. exact "US" did not match a "us" property value and exact 1 did not match a "1" property value.

1.24.2

Patch Changes

  • 360bc8d: Align local is_set and is_not_set evaluation with partial property context.

1.24.1

Patch Changes

  • 3d250c5: Return an empty feature flag snapshot without evaluating flags when FlagKeys is an explicit empty slice.

1.24.0

Minor Changes

  • 150f03e: Fall back to /flags when a requested flag is missing from loaded local definitions. This changes the earlier behavior where the key was omitted without a request.
Commits
  • 07b16ce chore: release v1.25.2 [version bump] [skip ci]
  • 3bc1d1a fix(flags): accept a numeric operand stored as a string (#319)
  • 24cd918 chore(deps): bump pnpm/setup from 2.0.2 to 2.1.0 in the github-actions group ...
  • 34299a7 ci: remove unused release workflow permissions (#315)
  • 53f5471 chore(deps): bump the github-actions group with 2 updates (#309)
  • 92ec69b chore(deps): bump the go-dependencies group in /otel with 5 updates (#307)
  • a5e539c chore: release v1.25.1 [version bump] [skip ci]
  • c159621 fix: not_regex should handle all value types like regex (#305)
  • 5056987 chore: release v1.25.0 [version bump] [skip ci]
  • 897a0b4 feat: add OpenTelemetry bridge for AI observability (#306)
  • Additional commits viewable in compare view

Updates github.com/sourcegraph/jsonrpc2 from 0.2.2 to 0.2.3

Release notes

Sourced from github.com/sourcegraph/jsonrpc2's releases.

v0.2.3

What's Changed

Full Changelog: sourcegraph/jsonrpc2@v0.2.2...v0.2.3

Commits
  • f50bb34 Bump github.com/gorilla/websocket from 1.4.1 to 1.5.3 (#102)
  • ae9a040 fix/conn: prevent close-response race panic (#104)
  • bf8fe04 docs/conn: clarify ordering guarantees for bidirectional calls (#105)
  • fb2b860 Bump actions/setup-go from 6 to 7 in the github-actions group (#101)
  • bacb7f3 Merge pull request #100 from sourcegraph/k/remove-broken-scip-upload
  • f0eebfe chore/ci: stop requiring unauthenticated SCIP uploads
  • See full diff in compare view

Updates github.com/speakeasy-api/openapi from 1.24.1 to 1.25.1

Release notes

Sourced from github.com/speakeasy-api/openapi's releases.

v1.25.1

What's Changed

New Contributors

Full Changelog: speakeasy-api/openapi@v1.25.0...v1.25.1

OpenAPI CLI v1.25.1

This release includes binaries for Linux, macOS, and Windows on both x86_64 and ARM64 architectures.

Installation

Download the appropriate binary for your platform from the assets below, extract it, and add it to your PATH.

Changes

Changelog

Bug fixes

  • 9925d69ccf10721c1e84079012c35b509409a30e fix(deps): bump jsonschema/oas3/tests/testsuite from be54236 to 6648e81 (#238)
  • ea2d24d30d873cd596fb224db46c23e9fff0e66c fix(deps): bump the go-minor-patch group across 2 directories with 6 updates (#239)
  • a1a2ace46e3d665b9d49eee6e0428b661eb67054 fix(yml): keep folded block scalars stable across encode round trips (#244)

Others

  • a9b7ba1801fcc732d4668934e8deb90045588953 ci(deps): bump jdx/mise-action from 4.2.3 to 4.2.4 in the github-actions group (#237)
  • 356660f0271d6fca66dbf70edc70fb4c72dd5ae1 test(sortfmt): remove external parity test (#242)

Full Changelog: speakeasy-api/openapi@v1.25.0...v1.25.1

Released by GoReleaser.

v1.25.0

OpenAPI CLI v1.25.0

This release includes binaries for Linux, macOS, and Windows on both x86_64 and ARM64 architectures.

Installation

Download the appropriate binary for your platform from the assets below, extract it, and add it to your PATH.

Changes

... (truncated)

Commits
  • 83ebf39 chore: update submodule dependencies to latest main (#241)
  • 9925d69 fix(deps): bump jsonschema/oas3/tests/testsuite from be54236 to 6648e81 (...
  • ea2d24d fix(deps): bump the go-minor-patch group across 2 directories with 6 updates ...
  • a1a2ace fix(yml): keep folded block scalars stable across encode round trips (#244)
  • a9b7ba1 ci(deps): bump jdx/mise-action from 4.2.3 to 4.2.4 in the github-actions grou...
  • 356660f test(sortfmt): remove external parity test (#242)
  • 7ad3474 feat: add deterministic JSON formatter (#240)
  • See full diff in compare view

Updates github.com/speakeasy-api/sdk-gen-config from 1.57.1 to 1.59.0

Release notes

Sourced from github.com/speakeasy-api/sdk-gen-config's releases.

v1.59.0

What's Changed

Full Changelog: speakeasy-api/sdk-gen-config@v1.58.0...v1.59.0

v1.58.0

What's Changed

Full Changelog: speakeasy-api/sdk-gen-config@v1.57.1...v1.58.0

Commits

Updates github.com/speakeasy-api/speakeasy-client-sdk-go/v3 from 3.26.7 to 3.28.1

Release notes

Sourced from github.com/speakeasy-api/speakeasy-client-sdk-go/v3's releases.

go - v3.28.1 - 2026-08-28 10:36:04

Generated by Speakeasy CLI

github.com/speakeasy-api/speakeasy-client-sdk-go 3.28.1

Go SDK Changes:

  • Speakeasy.Auth.GetAccess(): response Changed

Generated with Speakeasy CLI 1.796.1

Changelog

Sourced from github.com/speakeasy-api/speakeasy-client-sdk-go/v3's changelog.

Version 1.1.0

Changes

Based on:

Releases

Version 1.1.1

Changes

Based on:

Releases

Version 1.2.0

Changes

Based on:

Releases

Version 1.3.0

Changes

Based on:

Releases

Version 1.3.1

Changes

Based on:

Releases

Version 1.3.2

Changes

Based on:

Releases

... (truncated)

Commits
  • f77f00b chore: 🐝 Update SDK - Generate 3.28.1 (#54)
  • b403b59 ci: bump sdk-generation-action to v15.60.10 (#53)
  • b8cfaca Merge pull request #52 from speakeasy-api/chore/regen-post-4705
  • 846d760 chore: drop the generated test suite and mock server
  • ea65081 feat: regenerate from the post-4705 registry spec; re-enable the existing tes...
  • fedef88 Merge pull request #50 from speakeasy-api/fix/regen-and-license-jwt
  • 6ea6a42 ci: regenerate from the registry-published spec with a current CLI (v3.27.0)
  • 9d505a3 Update sdk_generation.yaml
  • See full diff in compare view

Updates github.com/stretchr/testify from 1.12.0 to 1.12.1

Release notes

Sourced from github.com/stretchr/testify's releases.

v1.12.1

This is the first release which has the minimum dependencies practical in testify v1. The last remaining dependencies are github.com/stretchr/objx which itself has no dependencies, and go.yaml.in/yaml/v3. Removing objx would require v2, it cannot be vendored. Removing YAML would require vendoring the yaml library, which would do more harm than good. It's better to become aware of vulnerabilities in the official yaml package than to attempt to maintain our own.

What's Changed

New Contributors

Full Changelog: stretchr/testify@v1.12.0...v1.12.1

What's Changed

New Contributors

Full Changelog: stretchr/testify@v1.12.0...v1.12.1

Commits

Updates go.opentelemetry.io/otel from 1.45.0 to 1.46.0

Release notes

Sourced from go.opentelemetry.io/otel's releases.

v1.46.0/v0.68.0/v0.22.0/v0.0.19

This release is the last to support Go 1.25. The next release will require at least Go 1.26.

Added

  • Support testing of Go 1.27. (#8811)
  • Support http/json protocol in go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp. (#8273, #8775, #8831)
  • Add Hasher struct and methods in go.opentelemetry.io/otel/attribute to compute authoritative Distinct hashes incrementally for attribute filtering and deduplication. (#8598)

Changed

  • Lazily evaluate filtered and dropped attributes on measurement hot paths in go.opentelemetry.io/otel/sdk/metric to avoid unnecessary attribute set allocations. (#8598)
  • Add ErrExporterShutdown to go.opentelemetry.io/otel/sdk/log and return it from the go.opentelemetry.io/otel/exporters/stdout/stdoutlog, go.opentelemetry.io/otel/exporters/otlp/otlplog/otlploggrpc, and go.opentelemetry.io/otel/exporters/otlp/otlplog/otlploghttp exporters when Export is called after Shutdown. (#8773)
  • Clarify in go.opentelemetry.io/otel/log that calling Logger.Enabled is optional and that cached results can become stale. (#8764)

Fixed

  • Export dropped attribute counts in OTLP log records from go.opentelemetry.io/otel/exporters/otlp/otlplog/otlploggrpc and go.opentelemetry.io/otel/exporters/otlp/otlplog/otlploghttp. (#8829)
  • Name span events created from OpenTracing logs after the event log field, falling back to log, instead of always using an empty name in go.opentelemetry.io/otel/bridge/opentracing. (#8648)
  • Count exception attributes omitted due to the attribute count limit as dropped in go.opentelemetry.io/otel/sdk/log. (#8796)
  • Prevent log record and instrumentation scope attributes with empty keys from reaching processors and exporters in go.opentelemetry.io/otel/sdk/log. (#8797)
  • Fix a data race when span attributes are read concurrently in go.opentelemetry.io/otel/sdk/trace. (#8706)
  • Prevent a panic in (*Set).Filter when called on a nil receiver in go.opentelemetry.io/otel/attribute. (#8792)
  • The simple span and log processors record otel.sdk.processor.{span,log}.processed when the record is submitted to the exporter instead of after the export completes, and no longer set error.type from the export outcome, in go.opentelemetry.io/otel/sdk/trace and go.opentelemetry.io/otel/sdk/log. (#8705)
  • Prevent Resource.MarshalLog from panicking on nil resources in go.opentelemetry.io/otel/sdk/resource. (#8758)

What's Changed

... (truncated)

Changelog

Sourced from go.opentelemetry.io/otel's changelog.

[1.46.0/0.68.0/0.22.0/0.0.19] - 2026-08-25

This release is the last to support [Go 1.25]. The next release will require at least [Go 1.26].

Added

  • Support testing of [Go 1.27]. (#8811)
  • Support http/json protocol in go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp. (#8273, #8775, #8831)
  • Add Hasher struct and methods in go.opentelemetry.io/otel/attribute to compute authoritative Distinct hashes incrementally for attribute filtering and deduplication. (#8598)

Changed

  • Lazily evaluate filtered and dropped attributes on measurement hot paths in go.opentelemetry.io/otel/sdk/metric to avoid unnecessary attribute set allocations. (#8598)
  • Add ErrExporterShutdown to go.opentelemetry.io/otel/sdk/log and return it from the go.opentelemetry.io/otel/exporters/stdout/stdoutlog, go.opentelemetry.io/otel/exporters/otlp/otlplog/otlploggrpc, and go.opentelemetry.io/otel/exporters/otlp/otlplog/otlploghttp exporters when Export is called after Shutdown. (#8773)
  • Clarify in go.opentelemetry.io/otel/log that calling Logger.Enabled is optional and that cached results can become stale. (#8764)

Fixed

  • Export dropped attribute counts in OTLP log records from go.opentelemetry.io/otel/exporters/otlp/otlplog/otlploggrpc and go.opentelemetry.io/otel/exporters/otlp/otlplog/otlploghttp. (#8829)
  • Name span events created from OpenTracing logs after the event log field, falling back to log, instead of always using an empty name in go.opentelemetry.io/otel/bridge/opentracing. (#8648)
  • Count exception attributes omitted due to the attribute count limit as dropped in go.opentelemetry.io/otel/sdk/log. (#8796)
  • Prevent log record and instrumentation scope attributes with empty keys from reaching processors and exporters in go.opentelemetry.io/otel/sdk/log. (#8797)
  • Fix a data race when span attributes are read concurrently in go.opentelemetry.io/otel/sdk/trace. (#8706)
  • Prevent a panic in (*Set).Filter when called on a nil receiver in go.opentelemetry.io/otel/attribute. (#8792)
  • The simple span and log processors record otel.sdk.processor.{span,log}.processed when the record is submitted to the exporter instead of after the export completes, and no longer set error.type from the export outcome, in go.opentelemetry.io/otel/sdk/trace and go.opentelemetry.io/otel/sdk/log. (#8705)
  • Prevent Resource.MarshalLog from panicking on nil resources in go.opentelemetry.io/otel/sdk/resource. (#8758)
Commits
  • 58db4c8 Release v1.46.0 (#8858)
  • 524fc3c chore(deps): update golang.org/x/telemetry digest to 1f5465a (#8853)
  • 3b8ef6f chore(deps): update codspeedhq/action action to v5.2.1 (#8854)
  • cfbeab5 attribute: clarify xxhash test purpose (#8753)
  • 3599b59 sdk/log: Add interface stability markers (#8855)
  • 08d52dc otlptracehttp: Accept quoted finite doubles in OTLP JSON (#8831)
  • d720f5a otlplog: export dropped attribute count (#8829)
  • 80fe23b chore(deps): update module honnef.co/go/tools to v0.8.1 (#8816)
  • 5337812 chore(deps): update codspeedhq/action action to v5.2.0 (#8851)
  • 2f73a3e chore(deps): update module github.com/uudashr/iface to v1.5.1 (#8841)
  • Additional commits viewable in compare view

Updates go.opentelemetry.io/otel/exporters/otlp/otlptrace from 1.45.0 to 1.46.0

Release notes

Sourced from go.opentelemetry.io/otel/exporters/otlp/otlptrace's releases.

v1.46.0/v0.68.0/v0.22.0/v0.0.19

This release is the last to support Go 1.25. The next release will require at least Go 1.26.

Added

  • Support testing of Go 1.27. (#8811)
  • Support http/json protocol in go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp. (#8273, #8775, #8831)
  • Add Hasher struct and methods in go.opentelemetry.io/otel/attribute to compute authoritative Distinct hashes incrementally for attribute filtering and deduplication. (#8598)

Changed

  • Lazily evaluate filtered and dropped attributes on measurement hot paths in go.opentelemetry.io/otel/sdk/metric to avoid unnecessary attribute set allocations. (#8598)
  • Add ErrExporterShutdown to go.opentelemetry.io/otel/sdk/log and return it from the go.opentelemetry.io/otel/exporters/stdout/stdoutlog, go.opentelemetry.io/otel/exporters/otlp/otlplog/otlploggrpc, and go.opentelemetry.io/otel/exporters/otlp/otlplog/otlploghttp exporters when Export is called after Shutdown. (#8773)
  • Clarify in go.opentelemetry.io/otel/log that calling Logger.Enabled is optional and that cached results can become stale. (#8764)

Fixed

  • Export dropped attribute counts in OTLP log records from go.opentelemetry.io/otel/exporters/otlp/otlplog/otlploggrpc and go.opentelemetry.io/otel/exporters/otlp/otlplog/otlploghttp. (#8829)
  • Name span events created from OpenTracing logs after the event log field, falling back to log, instead of always using an empty name in go.opentelemetry.io/otel/bridge/opentracing. (#8648)
  • Count exception attributes omitted due to the attribute count limit as dropped in go.opentelemetry.io/otel/sdk/log. (#8796)
  • Prevent log record and instrumentation scope attributes with empty keys from reaching processors and exporters in go.opentelemetry.io/otel/sdk/log. (#8797)
  • Fix a data race when span attributes are read concurrently in go.opentelemetry.io/otel/sdk/trace. (#8706)
  • Prevent a panic in (*Set).Filter when called on a nil receiver in go.opentelemetry.io/otel/attribute. (#8792)
  • The simple span and log processors record otel.sdk.processor.{span,log}.processed when the record is submitted to the exporter instead of after the export completes, and no longer set error.type from the export outcome, in go.opentelemetry.io/otel/sdk/trace and go.opentelemetry.io/otel/sdk/log. (#8705)
  • Prevent Resource.MarshalLog from panicking on nil resources in go.opentelemetry.io/otel/sdk/resource. (#8758)

What's Changed

... (truncated)

Changelog

Sourced from go.opentelemetry.io/otel/exporters/otlp/otlptrace's changelog.

[1.46.0/0.68.0/0.22.0/0.0.19] - 2026-08-25

This release is the last to support [Go 1.25]. The next release will require at least [Go 1.26].

Added

  • Support testing of [Go 1.27]. (#8811)
  • Support http/json protocol in go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp. (#8273, #8775, #8831)
  • Add Hasher struct and methods in go.opentelemetry.io/otel/attribute to compute authoritative Distinct hashes incrementally for attribute filtering and deduplication. (#8598)

Changed

  • Lazily evaluate filtered and dropped attributes on measurement hot paths in go.opentelemetry.io/otel/sdk/metric to avoid unnecessary attribute set allocations. (#8598)
  • Add ErrExporterShutdown to go.opentelemetry.io/otel/sdk/log and return it from the go.opentelemetry.io/otel/exporters/stdout/stdoutlog, go.opentelemetry.io/otel/exporters/otlp/otlplog/otlploggrpc, and go.opentelemetry.io/otel/exporters/otlp/otlplog/otlploghttp exporters when Export is called after Shutdown. (#8773)
  • Clarify in go.opentelemetry.io/otel/log that calling Logger.Enabled is optional and that cached results can become stale. (#8764)

Fixed

  • Export dropped attribute counts in OTLP log records from go.opentelemetry.io/otel/exporters/otlp/otlplog/otlploggrpc and go.opentelemetry.io/otel/exporters/otlp/otlplog/otlploghttp. (#8829)
  • Name span events created from OpenTracing logs after the event log field, falling back to log, instead of always using an empty name in go.opentelemetry.io/otel...

    Description has been truncated


    Summary by cubic

    Bumps the gomod-minor-and-patch group across 5 Go modules, updating 17 dependencies to their latest minor and patch versions. Notable upstream fixes include corrected PostHog local flag evaluation in github.com/posthog/posthog-go (1.23.1 → 1.25.2) and a panic fix in github.com/sourcegraph/jsonrpc2 when closing during response processing.

    Written for commit 6ed2361626eb31c38ab8f0b48363d16c87fddf01. Summary will update on new commits.

    Review in cubic

… 17 updates

Bumps the gomod-minor-and-patch group with 16 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [github.com/hashicorp/hcl/v2](https://github.com/hashicorp/hcl) | `2.24.0` | `2.25.0` |
| [github.com/posthog/posthog-go](https://github.com/posthog/posthog-go) | `1.23.1` | `1.25.2` |
| [github.com/sourcegraph/jsonrpc2](https://github.com/sourcegraph/jsonrpc2) | `0.2.2` | `0.2.3` |
| [github.com/speakeasy-api/openapi](https://github.com/speakeasy-api/openapi) | `1.24.1` | `1.25.1` |
| [github.com/speakeasy-api/sdk-gen-config](https://github.com/speakeasy-api/sdk-gen-config) | `1.57.1` | `1.59.0` |
| [github.com/speakeasy-api/speakeasy-client-sdk-go/v3](https://github.com/speakeasy-api/speakeasy-client-sdk-go) | `3.26.7` | `3.28.1` |
| [github.com/stretchr/testify](https://github.com/stretchr/testify) | `1.12.0` | `1.12.1` |
| [go.opentelemetry.io/otel](https://github.com/open-telemetry/opentelemetry-go) | `1.45.0` | `1.46.0` |
| [go.opentelemetry.io/otel/exporters/otlp/otlptrace](https://github.com/open-telemetry/opentelemetry-go) | `1.45.0` | `1.46.0` |
| [go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc](https://github.com/open-telemetry/opentelemetry-go) | `1.45.0` | `1.46.0` |
| [go.opentelemetry.io/otel/exporters/stdout/stdouttrace](https://github.com/open-telemetry/opentelemetry-go) | `1.45.0` | `1.46.0` |
| [go.opentelemetry.io/otel/sdk](https://github.com/open-telemetry/opentelemetry-go) | `1.45.0` | `1.46.0` |
| [go.opentelemetry.io/otel/trace](https://github.com/open-telemetry/opentelemetry-go) | `1.45.0` | `1.46.0` |
| [golang.org/x/sync](https://github.com/golang/sync) | `0.22.0` | `0.23.0` |
| [golang.org/x/text](https://github.com/golang/text) | `0.41.0` | `0.42.0` |
| [golang.org/x/mod](https://github.com/golang/mod) | `0.38.0` | `0.41.0` |
| [github.com/speakeasy-api/openapi](https://github.com/speakeasy-api/openapi) | `1.24.1` | `1.25.1` |
| [github.com/speakeasy-api/sdk-gen-config](https://github.com/speakeasy-api/sdk-gen-config) | `1.57.1` | `1.59.0` |
| [github.com/speakeasy-api/openapi](https://github.com/speakeasy-api/openapi) | `1.24.1` | `1.25.1` |

Bumps the gomod-minor-and-patch group with 1 update in the /cmd/wasm/ast directory: [github.com/speakeasy-api/openapi](https://github.com/speakeasy-api/openapi).
Bumps the gomod-minor-and-patch group with 1 update in the /cmd/wasm/full-stack directory: [github.com/speakeasy-api/sdk-gen-config](https://github.com/speakeasy-api/sdk-gen-config).
Bumps the gomod-minor-and-patch group with 1 update in the /cmd/wasm/overlay directory: [github.com/speakeasy-api/openapi](https://github.com/speakeasy-api/openapi).
Bumps the gomod-minor-and-patch group with 1 update in the /services/speakeasy-api-test-service directory: [github.com/brianvoe/gofakeit/v7](https://github.com/brianvoe/gofakeit).


Updates `github.com/hashicorp/hcl/v2` from 2.24.0 to 2.25.0
- [Release notes](https://github.com/hashicorp/hcl/releases)
- [Changelog](https://github.com/hashicorp/hcl/blob/main/CHANGELOG.md)
- [Commits](hashicorp/hcl@v2.24.0...v2.25.0)

Updates `github.com/posthog/posthog-go` from 1.23.1 to 1.25.2
- [Release notes](https://github.com/posthog/posthog-go/releases)
- [Changelog](https://github.com/PostHog/posthog-go/blob/main/CHANGELOG.md)
- [Commits](PostHog/posthog-go@v1.23.1...v1.25.2)

Updates `github.com/sourcegraph/jsonrpc2` from 0.2.2 to 0.2.3
- [Release notes](https://github.com/sourcegraph/jsonrpc2/releases)
- [Commits](sourcegraph/jsonrpc2@v0.2.2...v0.2.3)

Updates `github.com/speakeasy-api/openapi` from 1.24.1 to 1.25.1
- [Release notes](https://github.com/speakeasy-api/openapi/releases)
- [Commits](speakeasy-api/openapi@v1.24.1...v1.25.1)

Updates `github.com/speakeasy-api/sdk-gen-config` from 1.57.1 to 1.59.0
- [Release notes](https://github.com/speakeasy-api/sdk-gen-config/releases)
- [Commits](speakeasy-api/sdk-gen-config@v1.57.1...v1.59.0)

Updates `github.com/speakeasy-api/speakeasy-client-sdk-go/v3` from 3.26.7 to 3.28.1
- [Release notes](https://github.com/speakeasy-api/speakeasy-client-sdk-go/releases)
- [Changelog](https://github.com/speakeasy-api/speakeasy-client-sdk-go/blob/main/RELEASES.md)
- [Commits](speakeasy-api/speakeasy-client-sdk-go@v3.26.7...v3.28.1)

Updates `github.com/stretchr/testify` from 1.12.0 to 1.12.1
- [Release notes](https://github.com/stretchr/testify/releases)
- [Commits](stretchr/testify@v1.12.0...v1.12.1)

Updates `go.opentelemetry.io/otel` from 1.45.0 to 1.46.0
- [Release notes](https://github.com/open-telemetry/opentelemetry-go/releases)
- [Changelog](https://github.com/open-telemetry/opentelemetry-go/blob/main/CHANGELOG.md)
- [Commits](open-telemetry/opentelemetry-go@v1.45.0...v1.46.0)

Updates `go.opentelemetry.io/otel/exporters/otlp/otlptrace` from 1.45.0 to 1.46.0
- [Release notes](https://github.com/open-telemetry/opentelemetry-go/releases)
- [Changelog](https://github.com/open-telemetry/opentelemetry-go/blob/main/CHANGELOG.md)
- [Commits](open-telemetry/opentelemetry-go@v1.45.0...v1.46.0)

Updates `go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc` from 1.45.0 to 1.46.0
- [Release notes](https://github.com/open-telemetry/opentelemetry-go/releases)
- [Changelog](https://github.com/open-telemetry/opentelemetry-go/blob/main/CHANGELOG.md)
- [Commits](open-telemetry/opentelemetry-go@v1.45.0...v1.46.0)

Updates `go.opentelemetry.io/otel/exporters/stdout/stdouttrace` from 1.45.0 to 1.46.0
- [Release notes](https://github.com/open-telemetry/opentelemetry-go/releases)
- [Changelog](https://github.com/open-telemetry/opentelemetry-go/blob/main/CHANGELOG.md)
- [Commits](open-telemetry/opentelemetry-go@v1.45.0...v1.46.0)

Updates `go.opentelemetry.io/otel/sdk` from 1.45.0 to 1.46.0
- [Release notes](https://github.com/open-telemetry/opentelemetry-go/releases)
- [Changelog](https://github.com/open-telemetry/opentelemetry-go/blob/main/CHANGELOG.md)
- [Commits](open-telemetry/opentelemetry-go@v1.45.0...v1.46.0)

Updates `go.opentelemetry.io/otel/trace` from 1.45.0 to 1.46.0
- [Release notes](https://github.com/open-telemetry/opentelemetry-go/releases)
- [Changelog](https://github.com/open-telemetry/opentelemetry-go/blob/main/CHANGELOG.md)
- [Commits](open-telemetry/opentelemetry-go@v1.45.0...v1.46.0)

Updates `golang.org/x/sync` from 0.22.0 to 0.23.0
- [Commits](golang/sync@v0.22.0...v0.23.0)

Updates `golang.org/x/text` from 0.41.0 to 0.42.0
- [Release notes](https://github.com/golang/text/releases)
- [Commits](golang/text@v0.41.0...v0.42.0)

Updates `golang.org/x/mod` from 0.38.0 to 0.41.0
- [Commits](golang/mod@v0.38.0...v0.41.0)

Updates `github.com/speakeasy-api/openapi` from 1.24.1 to 1.25.1
- [Release notes](https://github.com/speakeasy-api/openapi/releases)
- [Commits](speakeasy-api/openapi@v1.24.1...v1.25.1)

Updates `github.com/speakeasy-api/sdk-gen-config` from 1.57.1 to 1.59.0
- [Release notes](https://github.com/speakeasy-api/sdk-gen-config/releases)
- [Commits](speakeasy-api/sdk-gen-config@v1.57.1...v1.59.0)

Updates `github.com/speakeasy-api/openapi` from 1.24.1 to 1.25.1
- [Release notes](https://github.com/speakeasy-api/openapi/releases)
- [Commits](speakeasy-api/openapi@v1.24.1...v1.25.1)

Updates `github.com/speakeasy-api/openapi` from 1.24.1 to 1.25.1
- [Release notes](https://github.com/speakeasy-api/openapi/releases)
- [Commits](speakeasy-api/openapi@v1.24.1...v1.25.1)

Updates `github.com/speakeasy-api/openapi` from 1.24.1 to 1.25.1
- [Release notes](https://github.com/speakeasy-api/openapi/releases)
- [Commits](speakeasy-api/openapi@v1.24.1...v1.25.1)

Updates `github.com/speakeasy-api/openapi` from 1.24.1 to 1.25.1
- [Release notes](https://github.com/speakeasy-api/openapi/releases)
- [Commits](speakeasy-api/openapi@v1.24.1...v1.25.1)

Updates `github.com/speakeasy-api/sdk-gen-config` from 1.57.1 to 1.59.0
- [Release notes](https://github.com/speakeasy-api/sdk-gen-config/releases)
- [Commits](speakeasy-api/sdk-gen-config@v1.57.1...v1.59.0)

Updates `github.com/speakeasy-api/sdk-gen-config` from 1.57.1 to 1.59.0
- [Release notes](https://github.com/speakeasy-api/sdk-gen-config/releases)
- [Commits](speakeasy-api/sdk-gen-config@v1.57.1...v1.59.0)

Updates `github.com/speakeasy-api/openapi` from 1.24.1 to 1.25.1
- [Release notes](https://github.com/speakeasy-api/openapi/releases)
- [Commits](speakeasy-api/openapi@v1.24.1...v1.25.1)

Updates `github.com/speakeasy-api/openapi` from 1.24.1 to 1.25.1
- [Release notes](https://github.com/speakeasy-api/openapi/releases)
- [Commits](speakeasy-api/openapi@v1.24.1...v1.25.1)

Updates `github.com/speakeasy-api/openapi` from 1.24.1 to 1.25.1
- [Release notes](https://github.com/speakeasy-api/openapi/releases)
- [Commits](speakeasy-api/openapi@v1.24.1...v1.25.1)

Updates `github.com/brianvoe/gofakeit/v7` from 7.15.0 to 7.17.0
- [Release notes](https://github.com/brianvoe/gofakeit/releases)
- [Commits](brianvoe/gofakeit@v7.15.0...v7.17.0)

---
updated-dependencies:
- dependency-name: github.com/hashicorp/hcl/v2
  dependency-version: 2.25.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod-minor-and-patch
- dependency-name: github.com/posthog/posthog-go
  dependency-version: 1.25.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod-minor-and-patch
- dependency-name: github.com/sourcegraph/jsonrpc2
  dependency-version: 0.2.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: gomod-minor-and-patch
- dependency-name: github.com/speakeasy-api/openapi
  dependency-version: 1.25.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod-minor-and-patch
- dependency-name: github.com/speakeasy-api/sdk-gen-config
  dependency-version: 1.59.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod-minor-and-patch
- dependency-name: github.com/speakeasy-api/speakeasy-client-sdk-go/v3
  dependency-version: 3.28.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod-minor-and-patch
- dependency-name: github.com/stretchr/testify
  dependency-version: 1.12.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: gomod-minor-and-patch
- dependency-name: go.opentelemetry.io/otel
  dependency-version: 1.46.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod-minor-and-patch
- dependency-name: go.opentelemetry.io/otel/exporters/otlp/otlptrace
  dependency-version: 1.46.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod-minor-and-patch
- dependency-name: go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc
  dependency-version: 1.46.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod-minor-and-patch
- dependency-name: go.opentelemetry.io/otel/exporters/stdout/stdouttrace
  dependency-version: 1.46.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod-minor-and-patch
- dependency-name: go.opentelemetry.io/otel/sdk
  dependency-version: 1.46.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod-minor-and-patch
- dependency-name: go.opentelemetry.io/otel/trace
  dependency-version: 1.46.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod-minor-and-patch
- dependency-name: golang.org/x/sync
  dependency-version: 0.23.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod-minor-and-patch
- dependency-name: golang.org/x/text
  dependency-version: 0.42.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod-minor-and-patch
- dependency-name: golang.org/x/mod
  dependency-version: 0.41.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod-minor-and-patch
- dependency-name: github.com/speakeasy-api/openapi
  dependency-version: 1.25.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod-minor-and-patch
- dependency-name: github.com/speakeasy-api/sdk-gen-config
  dependency-version: 1.59.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod-minor-and-patch
- dependency-name: github.com/speakeasy-api/openapi
  dependency-version: 1.25.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod-minor-and-patch
- dependency-name: github.com/speakeasy-api/openapi
  dependency-version: 1.25.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod-minor-and-patch
- dependency-name: github.com/speakeasy-api/openapi
  dependency-version: 1.25.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod-minor-and-patch
- dependency-name: github.com/speakeasy-api/openapi
  dependency-version: 1.25.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod-minor-and-patch
- dependency-name: github.com/speakeasy-api/sdk-gen-config
  dependency-version: 1.59.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod-minor-and-patch
- dependency-name: github.com/speakeasy-api/sdk-gen-config
  dependency-version: 1.59.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod-minor-and-patch
- dependency-name: github.com/speakeasy-api/openapi
  dependency-version: 1.25.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod-minor-and-patch
- dependency-name: github.com/speakeasy-api/openapi
  dependency-version: 1.25.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod-minor-and-patch
- dependency-name: github.com/speakeasy-api/openapi
  dependency-version: 1.25.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod-minor-and-patch
- dependency-name: github.com/brianvoe/gofakeit/v7
  dependency-version: 7.17.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod-minor-and-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Dependency updates go Trigger (90) snapshot tests for go skip changelog Indicates that a PR does not contain public-facing changes skip linear Indicates that a PR is not associated with a Linear issue labels Sep 21, 2026
@dependabot
dependabot Bot requested a review from a team as a code owner September 21, 2026 08:18
@dependabot dependabot Bot added the dependencies Dependency updates label Sep 21, 2026
@dependabot
dependabot Bot requested a review from 2ynn September 21, 2026 08:18
@dependabot dependabot Bot added go Trigger (90) snapshot tests for go skip changelog Indicates that a PR does not contain public-facing changes skip linear Indicates that a PR is not associated with a Linear issue labels Sep 21, 2026
@github-actions github-actions Bot added default and removed go Trigger (90) snapshot tests for go labels Sep 21, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

default dependencies Dependency updates skip changelog Indicates that a PR does not contain public-facing changes skip linear Indicates that a PR is not associated with a Linear issue

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants