Skip to content

Conversation

dependabot[bot]
Copy link

@dependabot dependabot bot commented on behalf of github May 5, 2025

Bumps the sdk-go group in /sdk/go with 13 updates:

Package From To
github.com/99designs/gqlgen 0.17.49 0.17.73
github.com/Khan/genqlient 0.7.0 0.8.0
github.com/adrg/xdg 0.4.0 0.5.3
github.com/stretchr/testify 1.9.0 1.10.0
github.com/vektah/gqlparser/v2 2.5.16 2.5.26
go.opentelemetry.io/otel 1.27.0 1.35.0
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc 1.27.0 1.35.0
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp 1.27.0 1.35.0
go.opentelemetry.io/otel/sdk 1.27.0 1.35.0
go.opentelemetry.io/otel/trace 1.27.0 1.35.0
golang.org/x/sync 0.7.0 0.13.0
google.golang.org/grpc 1.64.0 1.71.0
go.opentelemetry.io/proto/otlp 1.3.1 1.5.0

Updates github.com/99designs/gqlgen from 0.17.49 to 0.17.73

Release notes

Sourced from github.com/99designs/gqlgen's releases.

v0.17.73

What's Changed

New Contributors

Full Changelog: 99designs/gqlgen@v0.17.72...v0.17.73

v0.17.72

What's Changed

Full Changelog: 99designs/gqlgen@v0.17.71...v0.17.72

v0.17.71

What's Changed

... (truncated)

Changelog

Sourced from github.com/99designs/gqlgen's changelog.

CHANGELOG

All notable changes to this project will be documented in this file.

The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.

Unreleased

v0.17.50 - 2024-09-13

  • a6d5d843 release v0.17.50

  • f154d99d Fix Nancy to use Go 1.22

  • 6b9e40e8 make rewrite default for resolver layout single-file (#3243)

Bumps the npm_and_yarn group in /integration with 1 update: dset.

Updates dset from 3.1.3 to 3.1.4


updated-dependencies:

  • dependency-name: dset dependency-type: indirect dependency-group: npm_and_yarn ...
  • Bump some more module versions

  • Update aurora

  • Avoid upgrade to go 1.23

  • downgrade goquery to support pre-Go 1.23 for now

... (truncated)

Commits
  • d1f3bdf release v0.17.73
  • 416a97d chore(deps-dev): bump vite in /integration in the npm_and_yarn group (#3689)
  • 5727075 Docs: add info on concurrent field resolvers (#3687)
  • e097cdc Update gqlparser to add column for error string output (#3685)
  • 508c279 feat: bind from basic type to named type (#3632)
  • e3b1289 Assign unused parameters to placeholder to avoid too many warning in IDE (#3684)
  • 4d37d2d Apply workaround to try to fix some more inconsistencies in codegen (#3682)
  • 413d823 fix: lower Go version requirement to 1.23.0 (#3679)
  • 55ea812 only allow whitespace after "url" in a link directive (#3680)
  • eadb1db chore(deps-dev): bump vitest from 3.1.1 to 3.1.2 in /integration (#3677)
  • Additional commits viewable in compare view

Updates github.com/Khan/genqlient from 0.7.0 to 0.8.0

Release notes

Sourced from github.com/Khan/genqlient's releases.

v0.8.0

This release adds support for genqlient subscriptions; see the documentation for more, and thanks to @​matthieu4294967296moineau for the original implementation and @​HaraldNordgren for additional testing and improvements.

Note that genqlient now requires Go 1.22.5 or higher, and is tested through Go 1.23.3.

Breaking changes:

  • genqlient now forbids omitempty: false (including implicit behaviour) when using pointer on non-null input field.
  • The error text for HTTP errors has changed slightly. If you were parsing it, switch to As-ing to graphql.HTTPError.

New features:

  • genqlient now supports subscriptions; the websocket protocol is by default graphql-transport-ws but can be set to another value.
    See the documentation for more details on how to use subscriptions.
  • genqlient now supports double-star globs for schema and query files; see https://github.com/Khan/genqlient/blob/HEAD/genqlient.yaml docs for more.
  • genqlient now generates slices containing all enum values for each enum type.
  • genqlient now returns Is/As-able errors when the HTTP request returns a non-200 status.

Bug fixes:

  • omitempty validation:
    • allow omitempty on non-nullable input field, if the field has a default
    • allow omitempty: false on an input field, even when it is non-nullable
  • don't do omitempty and pointer input types validation when use_struct_reference is used, as the generated type is often not compatible with validation logic.
  • the allow_broken_features option, which no longer did anything, has been removed
Changelog

Sourced from github.com/Khan/genqlient's changelog.

v0.8.0

This release adds support for genqlient subscriptions; see the documentation for more, and thanks to @​matthieu4294967296moineau for the original implementation and @​HaraldNordgren for additional testing and improvements.

Note that genqlient now requires Go 1.22.5 or higher, and is tested through Go 1.23.3.

Breaking changes:

  • genqlient now forbids omitempty: false (including implicit behaviour) when using pointer on non-null input field.
  • The error text for HTTP errors has changed slightly. If you were parsing it, switch to As-ing to graphql.HTTPError.

New features:

  • genqlient now supports subscriptions; the websocket protocol is by default graphql-transport-ws but can be set to another value.
    See the documentation for more details on how to use subscriptions.
  • genqlient now supports double-star globs for schema and query files; see https://github.com/Khan/genqlient/blob/main/docs/genqlient.yaml docs for more.
  • genqlient now generates slices containing all enum values for each enum type.
  • genqlient now returns Is/As-able errors when the HTTP request returns a non-200 status.

Bug fixes:

  • omitempty validation:
    • allow omitempty on non-nullable input field, if the field has a default
    • allow omitempty: false on an input field, even when it is non-nullable
  • don't do omitempty and pointer input types validation when use_struct_reference is used, as the generated type is often not compatible with validation logic.
  • the allow_broken_features option, which no longer did anything, has been removed
Commits
  • 78a03a6 Release v0.8.0 (#370)
  • 8ba2f83 Fix documentation for client error As-ability, and add tests (#369)
  • 6010b63 HTTPError wraps full Response for typed output (#366)
  • d3e516b Move websocket headers to opt function 'WithWebsocketHeaders' (#365)
  • 5913cd6 Improve HTTP error text (#364)
  • 1147aaf Update Go (and golangci-lint, and gqlgen) versions, and test codegen (#362)
  • 800909d Subscription connection parameters support (#360)
  • adb9dd6 Standardize error return from HTTP requests (#363)
  • ca5889f Use generics for subscriptions responses (#356)
  • e030ff1 Fix issue where subscription server data channel closing gives error (#354)
  • Additional commits viewable in compare view

Updates github.com/adrg/xdg from 0.4.0 to 0.5.3

Release notes

Sourced from github.com/adrg/xdg's releases.

v0.5.3

Changelog

  • Updated xdg.SearchRuntimeFile to also look in the operating system's temporary directory for runtime files. This covers unlikely cases in which runtime files cannot be written relative to the base runtime directory either because it does not exist or it is not accessible, so xdg.RuntimeFile suggests the operating system's temporary directory as a suitable fallback location.

Internal

  • Improved package testing.

v0.5.2

Changelog

  • Updated logic of xdg.RuntimeFile: due to the special nature of the runtime directory, the function no longer attempts to create it if it does not exist. If that's the case, the function uses the operating system's temporary directory as a fallback. The function still creates subdirectories relative to the base runtime directory or its fallback.

    Justification: the creation of the runtime directory is not in the scope of this package as it has special requirements defined by the XDG Base Directory Specification. Relevant excerpt:

    The lifetime of the directory MUST be bound to the user being logged in. It MUST be created when the user first logs in and if the user fully logs out the directory MUST be removed. If the user logs in more than once they should get pointed to the same directory, and it is mandatory that the directory continues to exist from their first login to their last logout on the system, and not removed in between. Files in the directory MUST not survive reboot or a full logout/login cycle.

    Also, on Linux, the parent directories of the default user runtime directory are owned by the root user so they cannot be created by a regular user. pam_systemd is usually responsible for creating the runtime directory (/run/user/$UID).

v0.5.1

Changelog

  • Added support for the non-standard XDG_BIN_HOME base directory. See XDG base directories README section for more details.
  • Added more config and data search locations on macOS.
    • Added ~/.config at the end of the list of default locations for XDG_CONFIG_DIRS.
    • Added ~/.local/share at the end of the list of default locations for XDG_DATA_DIRS.
  • Added more application search locations on Windows:
    • %ProgramFiles%
    • %ProgramFiles%\Common Files
    • %LOCALAPPDATA%\Programs
    • %LOCALAPPDATA%\Programs\Common

Internal

  • Updated golang.org/x/sys dependency to the latest version.
  • Improved package testing.

v0.5.0

Changelog

  • user-dirs.dirs config file is now parsed on Unix-like operating systems (except for macOS and Plan 9). See XDG user directories README section for more details.
  • Updated golang.org/x/sys dependency to the latest version.

Internal

  • Moved all path related functionality in internal pathutil package.
  • Added internal userdirs package:
    • Moved xdg.UserDirectories to userdirs.Directories.
    • Added parsing functions for user-dirs.dirs config file.
  • Improved package testing.
Commits
  • aa865a5 Merge pull request #101 from adrg/update-search-runtime-file
  • 71a81ec Minor xdg.SearchRuntimeFile function documentation update
  • 88111eb Minor example update in README.md and doc.go
  • d9f76be Improve non-existent runtime directory test case
  • 800775a Update xdg.SearchRuntimeFile to also look in temporary directory
  • 2335a68 Merge pull request #99 from adrg/improve-runtime-file
  • 221e506 Minor non-existent runtime directory test case fix on macOS
  • 9bbb602 Minor error format improvement in pathutil.Create and pathutil.Search
  • 987b3ce Minor README.md update
  • 3c39d55 Add non-existent runtime directory test case
  • Additional commits viewable in compare view

Updates github.com/stretchr/testify from 1.9.0 to 1.10.0

Release notes

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

v1.10.0

What's Changed

Functional Changes

Fixes

Documentation, Build & CI

New Contributors

... (truncated)

Commits
  • 89cbdd9 Merge pull request #1626 from arjun-1/fix-functional-options-diff-indirect-calls
  • 07bac60 Merge pull request #1667 from sikehish/flaky
  • 716de8d Increase timeouts in Test_Mock_Called_blocks to reduce flakiness in CI
  • 118fb83 NotSame should fail if args are not pointers #1661 (#1664)
  • 7d99b2b attempt 2
  • 05f87c0 more similar
  • ea7129e better fmt
  • a1b9c9e Merge pull request #1663 from ybrustin/master
  • 8302de9 Merge branch 'master' into master
  • 89352f7 Merge pull request #1518 from hendrywiranto/adjust-readme-remove-v2
  • Additional commits viewable in compare view

Updates github.com/vektah/gqlparser/v2 from 2.5.16 to 2.5.26

Release notes

Sourced from github.com/vektah/gqlparser/v2's releases.

v2.5.26

What's Changed

Full Changelog: vektah/gqlparser@v2.5.25...v2.5.26

v2.5.25

What's Changed

New Contributors

Full Changelog: vektah/gqlparser@v2.5.24...v2.5.25

v2.5.24

What's Changed

New Contributors

Full Changelog: vektah/gqlparser@v2.5.23...v2.5.24

v2.5.23

Full Changelog: vektah/gqlparser@v2.5.23...v2.5.23

v2.5.22

What's Changed

New Contributors

Full Changelog: vektah/gqlparser@v2.5.21...v2.5.22

v2.5.21

... (truncated)

Commits
  • af38134 feat(error): add column information to error string output in gqlerror/error....
  • 539d990 Fix loosing schema directives in FormatSchema() when schema definition only c...
  • a4eb489 change: no longer include Position information when marshaling to JSON (#364)
  • f794790 Fix formatting schema and schema extensions directives in FormatSchema() and ...
  • bcc3a70 Remove the extra whitespace before the query arguments and fragment name (#362)
  • a54bdfe Reformat yaml and fix up test workflows
  • 762608a Bump golangci/golangci-lint-action from 6.5.1 to 7.0.0 in the actions-deps gr...
  • 2a814bf Bump the actions-deps group in /validator/imported with 2 updates (#360)
  • c70447b Bump @​babel/runtime from 7.26.0 to 7.26.10 in /validator/imported (#359)
  • bec5c8e Bump golangci/golangci-lint-action in the actions-deps group (#357)
  • Additional commits viewable in compare view

Updates go.opentelemetry.io/otel from 1.27.0 to 1.35.0

Changelog

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

[1.35.0/0.57.0/0.11.0] 2025-03-05

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

Added

  • Add ValueFromAttribute and KeyValueFromAttribute in go.opentelemetry.io/otel/log. (#6180)
  • Add EventName and SetEventName to Record in go.opentelemetry.io/otel/log. (#6187)
  • Add EventName to RecordFactory in go.opentelemetry.io/otel/log/logtest. (#6187)
  • AssertRecordEqual in go.opentelemetry.io/otel/log/logtest checks Record.EventName. (#6187)
  • Add EventName and SetEventName to Record in go.opentelemetry.io/otel/sdk/log. (#6193)
  • Add EventName to RecordFactory in go.opentelemetry.io/otel/sdk/log/logtest. (#6193)
  • Emit Record.EventName field in go.opentelemetry.io/otel/exporters/otlp/otlplog/otlploggrpc. (#6211)
  • Emit Record.EventName field in go.opentelemetry.io/otel/exporters/otlp/otlplog/otlploghttp. (#6211)
  • Emit Record.EventName field in go.opentelemetry.io/otel/exporters/stdout/stdoutlog (#6210)
  • The go.opentelemetry.io/otel/semconv/v1.28.0 package. The package contains semantic conventions from the v1.28.0 version of the OpenTelemetry Semantic Conventions. See the migration documentation for information on how to upgrade from go.opentelemetry.io/otel/semconv/v1.27.0(#6236)
  • The go.opentelemetry.io/otel/semconv/v1.30.0 package. The package contains semantic conventions from the v1.30.0 version of the OpenTelemetry Semantic Conventions. See the migration documentation for information on how to upgrade from go.opentelemetry.io/otel/semconv/v1.28.0(#6240)
  • Document the pitfalls of using Resource as a comparable type. Resource.Equal and Resource.Equivalent should be used instead. (#6272)
  • Support [Go 1.24]. (#6304)
  • Add FilterProcessor and EnabledParameters in go.opentelemetry.io/otel/sdk/log. It replaces go.opentelemetry.io/otel/sdk/log/internal/x.FilterProcessor. Compared to previous version it additionally gives the possibility to filter by resource and instrumentation scope. (#6317)

Changed

  • Update github.com/prometheus/common to v0.62.0, which changes the NameValidationScheme to NoEscaping. This allows metrics names to keep original delimiters (e.g. .), rather than replacing with underscores. This is controlled by the Content-Type header, or can be reverted by setting NameValidationScheme to LegacyValidation in github.com/prometheus/common/model. (#6198)

Fixes

  • Eliminate goroutine leak for the processor returned by NewSimpleSpanProcessor in go.opentelemetry.io/otel/sdk/trace when Shutdown is called and the passed ctx is canceled and SpanExporter.Shutdown has not returned. (#6368)
  • Eliminate goroutine leak for the processor returned by NewBatchSpanProcessor in go.opentelemetry.io/otel/sdk/trace when ForceFlush is called and the passed ctx is canceled and SpanExporter.Export has not returned. (#6369)

[1.34.0/0.56.0/0.10.0] 2025-01-17

Changed

  • Remove the notices from Logger to make the whole Logs API user-facing in go.opentelemetry.io/otel/log. (#6167)

Fixed

  • Relax minimum Go version to 1.22.0 in various modules. (#6073)
  • The Type name logged for the go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc client is corrected from otlphttpgrpc to otlptracegrpc. (#6143)

... (truncated)

Commits
  • 5ba5e7a Release v1.35.0/v0.57.0/v0.11.0 (#6407)
  • 3908b67 chore(deps): update module github.com/securego/gosec/v2 to v2.22.2 (#6412)
  • 50172b1 chore(deps): update module github.com/ryancurrah/gomodguard to v1.4.1 (#6411)
  • cea6d2b fix(deps): update module google.golang.org/grpc to v1.71.0 (#6409)
  • e2aee3a Move trace sdk tests from trace_test into trace package (#6400)
  • 38f4f39 fix(deps): update build-tools to v0.20.0 (#6403)
  • 2911449 Look at stale issues in ascending order (#6396)
  • 7cb322a chore(deps): update github.com/golangci/dupl digest to 44c6a0b (#6398)
  • 0c3651e fix(deps): update module github.com/golangci/golangci-lint to v1.64.6 (#6394)
  • f04e951 chore(deps): update mvdan.cc/unparam digest to 0df0534 (#6391)
  • Additional commits viewable in compare view

Updates go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc from 1.27.0 to 1.35.0

Changelog

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

[1.35.0/0.57.0/0.11.0] 2025-03-05

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

Added

  • Add ValueFromAttribute and KeyValueFromAttribute in go.opentelemetry.io/otel/log. (#6180)
  • Add EventName and SetEventName to Record in go.opentelemetry.io/otel/log. (#6187)
  • Add EventName to RecordFactory in go.opentelemetry.io/otel/log/logtest. (#6187)
  • AssertRecordEqual in go.opentelemetry.io/otel/log/logtest checks Record.EventName. (#6187)
  • Add EventName and SetEventName to Record in go.opentelemetry.io/otel/sdk/log. (#6193)
  • Add EventName to RecordFactory in go.opentelemetry.io/otel/sdk/log/logtest. (#6193)
  • Emit Record.EventName field in go.opentelemetry.io/otel/exporters/otlp/otlplog/otlploggrpc. (#6211)
  • Emit Record.EventName field in go.opentelemetry.io/otel/exporters/otlp/otlplog/otlploghttp. (#6211)
  • Emit Record.EventName field in go.opentelemetry.io/otel/exporters/stdout/stdoutlog (#6210)
  • The go.opentelemetry.io/otel/semconv/v1.28.0 package. The package contains semantic conventions from the v1.28.0 version of the OpenTelemetry Semantic Conventions. See the migration documentation for information on how to upgrade from go.opentelemetry.io/otel/semconv/v1.27.0(#6236)
  • The go.opentelemetry.io/otel/semconv/v1.30.0 package. The package contains semantic conventions from the v1.30.0 version of the OpenTelemetry Semantic Conventions. See the migration documentation for information on how to upgrade from go.opentelemetry.io/otel/semconv/v1.28.0(#6240)
  • Document the pitfalls of using Resource as a comparable type. Resource.Equal and Resource.Equivalent should be used instead. (#6272)
  • Support [Go 1.24]. (#6304)
  • Add FilterProcessor and EnabledParameters in go.opentelemetry.io/otel/sdk/log. It replaces go.opentelemetry.io/otel/sdk/log/internal/x.FilterProcessor. Compared to previous version it additionally gives the possibility to filter by resource and instrumentation scope. (#6317)

Changed

  • Update github.com/prometheus/common to v0.62.0, which changes the NameValidationScheme to NoEscaping. This allows metrics names to keep original delimiters (e.g. .), rather than replacing with underscores. This is controlled by the Content-Type header, or can be reverted by setting NameValidationScheme to LegacyValidation in github.com/prometheus/common/model. (#6198)

Fixes

  • Eliminate goroutine leak for the processor returned by NewSimpleSpanProcessor in go.opentelemetry.io/otel/sdk/trace when Shutdown is called and the passed ctx is canceled and SpanExporter.Shutdown has not returned. (#6368)
  • Eliminate goroutine leak for the processor returned by NewBatchSpanProcessor in go.opentelemetry.io/otel/sdk/trace when ForceFlush is called and the passed ctx is canceled and SpanExporter.Export has not returned. (#6369)

[1.34.0/0.56.0/0.10.0] 2025-01-17

Changed

  • Remove the notices from Logger to make the whole Logs API user-facing in go.opentelemetry.io/otel/log. (#6167)
...

Description has been truncated

Note
Automatic rebases have been disabled on this pull request as it has been open for over 30 days.

Bumps the sdk-go group in /sdk/go with 13 updates:

| Package | From | To |
| --- | --- | --- |
| [github.com/99designs/gqlgen](https://github.com/99designs/gqlgen) | `0.17.49` | `0.17.73` |
| [github.com/Khan/genqlient](https://github.com/Khan/genqlient) | `0.7.0` | `0.8.0` |
| [github.com/adrg/xdg](https://github.com/adrg/xdg) | `0.4.0` | `0.5.3` |
| [github.com/stretchr/testify](https://github.com/stretchr/testify) | `1.9.0` | `1.10.0` |
| [github.com/vektah/gqlparser/v2](https://github.com/vektah/gqlparser) | `2.5.16` | `2.5.26` |
| [go.opentelemetry.io/otel](https://github.com/open-telemetry/opentelemetry-go) | `1.27.0` | `1.35.0` |
| [go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc](https://github.com/open-telemetry/opentelemetry-go) | `1.27.0` | `1.35.0` |
| [go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp](https://github.com/open-telemetry/opentelemetry-go) | `1.27.0` | `1.35.0` |
| [go.opentelemetry.io/otel/sdk](https://github.com/open-telemetry/opentelemetry-go) | `1.27.0` | `1.35.0` |
| [go.opentelemetry.io/otel/trace](https://github.com/open-telemetry/opentelemetry-go) | `1.27.0` | `1.35.0` |
| [golang.org/x/sync](https://github.com/golang/sync) | `0.7.0` | `0.13.0` |
| [google.golang.org/grpc](https://github.com/grpc/grpc-go) | `1.64.0` | `1.71.0` |
| [go.opentelemetry.io/proto/otlp](https://github.com/open-telemetry/opentelemetry-proto-go) | `1.3.1` | `1.5.0` |


Updates `github.com/99designs/gqlgen` from 0.17.49 to 0.17.73
- [Release notes](https://github.com/99designs/gqlgen/releases)
- [Changelog](https://github.com/99designs/gqlgen/blob/master/CHANGELOG.md)
- [Commits](99designs/gqlgen@v0.17.49...v0.17.73)

Updates `github.com/Khan/genqlient` from 0.7.0 to 0.8.0
- [Release notes](https://github.com/Khan/genqlient/releases)
- [Changelog](https://github.com/Khan/genqlient/blob/main/docs/CHANGELOG.md)
- [Commits](Khan/genqlient@v0.7.0...v0.8.0)

Updates `github.com/adrg/xdg` from 0.4.0 to 0.5.3
- [Release notes](https://github.com/adrg/xdg/releases)
- [Commits](adrg/xdg@v0.4.0...v0.5.3)

Updates `github.com/stretchr/testify` from 1.9.0 to 1.10.0
- [Release notes](https://github.com/stretchr/testify/releases)
- [Commits](stretchr/testify@v1.9.0...v1.10.0)

Updates `github.com/vektah/gqlparser/v2` from 2.5.16 to 2.5.26
- [Release notes](https://github.com/vektah/gqlparser/releases)
- [Commits](vektah/gqlparser@v2.5.16...v2.5.26)

Updates `go.opentelemetry.io/otel` from 1.27.0 to 1.35.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.27.0...v1.35.0)

Updates `go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc` from 1.27.0 to 1.35.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.27.0...v1.35.0)

Updates `go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp` from 1.27.0 to 1.35.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.27.0...v1.35.0)

Updates `go.opentelemetry.io/otel/sdk` from 1.27.0 to 1.35.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.27.0...v1.35.0)

Updates `go.opentelemetry.io/otel/trace` from 1.27.0 to 1.35.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.27.0...v1.35.0)

Updates `golang.org/x/sync` from 0.7.0 to 0.13.0
- [Commits](golang/sync@v0.7.0...v0.13.0)

Updates `google.golang.org/grpc` from 1.64.0 to 1.71.0
- [Release notes](https://github.com/grpc/grpc-go/releases)
- [Commits](grpc/grpc-go@v1.64.0...v1.71.0)

Updates `go.opentelemetry.io/proto/otlp` from 1.3.1 to 1.5.0
- [Release notes](https://github.com/open-telemetry/opentelemetry-proto-go/releases)
- [Commits](open-telemetry/opentelemetry-proto-go@v1.3.1...v1.5.0)

---
updated-dependencies:
- dependency-name: github.com/99designs/gqlgen
  dependency-version: 0.17.73
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: sdk-go
- dependency-name: github.com/Khan/genqlient
  dependency-version: 0.8.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: sdk-go
- dependency-name: github.com/adrg/xdg
  dependency-version: 0.5.3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: sdk-go
- dependency-name: github.com/stretchr/testify
  dependency-version: 1.10.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: sdk-go
- dependency-name: github.com/vektah/gqlparser/v2
  dependency-version: 2.5.26
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: sdk-go
- dependency-name: go.opentelemetry.io/otel
  dependency-version: 1.35.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: sdk-go
- dependency-name: go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc
  dependency-version: 1.35.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: sdk-go
- dependency-name: go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp
  dependency-version: 1.35.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: sdk-go
- dependency-name: go.opentelemetry.io/otel/sdk
  dependency-version: 1.35.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: sdk-go
- dependency-name: go.opentelemetry.io/otel/trace
  dependency-version: 1.35.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: sdk-go
- dependency-name: golang.org/x/sync
  dependency-version: 0.13.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: sdk-go
- dependency-name: google.golang.org/grpc
  dependency-version: 1.71.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: sdk-go
- dependency-name: go.opentelemetry.io/proto/otlp
  dependency-version: 1.5.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: sdk-go
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot @github
Copy link
Author

dependabot bot commented on behalf of github May 5, 2025

Labels

The following labels could not be found: area/sdk/go, kind/dependencies. Please create them before Dependabot can add them to a pull request.

Please fix the above issues or remove invalid values from dependabot.yml.

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