Bump minimum Go version to 1.24 (#13627)
#### Description [Go 1.25.0](https://go.dev/doc/devel/release#go1.25.0) is released, time to bump the minimum supported version. #### Link to tracking issue N/A #### Testing N/A #### Documentation Updated
This commit is contained in:
parent
10fd06dedd
commit
cc556e7df5
|
|
@ -0,0 +1,25 @@
|
|||
# Use this changelog template to create an entry for release notes.
|
||||
|
||||
# One of 'breaking', 'deprecation', 'new_component', 'enhancement', 'bug_fix'
|
||||
change_type: breaking
|
||||
|
||||
# The name of the component, or a single word describing the area of concern, (e.g. otlpreceiver)
|
||||
component: all
|
||||
|
||||
# A brief description of the change. Surround your text with quotes ("") if it needs to start with a backtick (`).
|
||||
note: Increase minimum Go version to 1.24
|
||||
|
||||
# One or more tracking issues or pull requests related to the change
|
||||
issues: [13627]
|
||||
|
||||
# (Optional) One or more lines of additional information to render under the primary note.
|
||||
# These lines will be padded with 2 spaces and then inserted directly into the document.
|
||||
# Use pipe (|) for multiline entries.
|
||||
subtext:
|
||||
|
||||
# Optional: The change log or logs in which this entry should be included.
|
||||
# e.g. '[user]' or '[user, api]'
|
||||
# Include 'user' if the change is relevant to end users.
|
||||
# Include 'api' if there is a change to a library API.
|
||||
# Default: '[user]'
|
||||
change_logs: []
|
||||
|
|
@ -64,7 +64,7 @@ jobs:
|
|||
with:
|
||||
distribution: goreleaser-pro
|
||||
version: ${{ env.GORELEASER_PRO_VERSION }}
|
||||
args: check --verbose -f .core/cmd/builder/.goreleaser.yml
|
||||
args: check --verbose -f .core/cmd/builder/.goreleaser.yaml
|
||||
env:
|
||||
GORELEASER_KEY: ${{ secrets.GORELEASER_KEY }}
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
|
|
@ -74,7 +74,7 @@ jobs:
|
|||
with:
|
||||
distribution: goreleaser-pro
|
||||
version: ${{ env.GORELEASER_PRO_VERSION }}
|
||||
args: --snapshot --clean -f .core/cmd/builder/.goreleaser.yml
|
||||
args: --snapshot --clean -f .core/cmd/builder/.goreleaser.yaml
|
||||
env:
|
||||
GORELEASER_KEY: ${{ secrets.GORELEASER_KEY }}
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
|
|
|
|||
|
|
@ -192,7 +192,7 @@ section of the general project contributing guide.
|
|||
Working with the project sources requires the following tools:
|
||||
|
||||
1. [git](https://git-scm.com/)
|
||||
2. [go](https://golang.org/) (version 1.23 and up)
|
||||
2. [go](https://golang.org/) (version 1.24 and up)
|
||||
3. [make](https://www.gnu.org/software/make/)
|
||||
4. [docker](https://www.docker.com/)
|
||||
|
||||
|
|
@ -249,7 +249,7 @@ before merging (but see the above paragraph about writing good commit messages i
|
|||
|
||||
## General Notes
|
||||
|
||||
This project uses Go 1.23.* and [Github Actions.](https://github.com/features/actions)
|
||||
This project uses Go 1.24.* and [Github Actions.](https://github.com/features/actions)
|
||||
|
||||
It is recommended to run `make gofmt all` before submitting your PR.
|
||||
|
||||
|
|
|
|||
|
|
@ -77,7 +77,7 @@ fmt: common/gofmt common/goimports common/gofumpt
|
|||
.PHONY: tidy
|
||||
tidy:
|
||||
rm -fr go.sum
|
||||
$(GOCMD) mod tidy -compat=1.23.0
|
||||
$(GOCMD) mod tidy -compat=1.24.0
|
||||
|
||||
.PHONY: lint
|
||||
lint: $(LINT)
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
module go.opentelemetry.io/collector/client
|
||||
|
||||
go 1.23.0
|
||||
go 1.24
|
||||
|
||||
require (
|
||||
github.com/stretchr/testify v1.10.0
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@
|
|||
|
||||
module go.opentelemetry.io/collector/cmd/builder
|
||||
|
||||
go 1.23.0
|
||||
go 1.24
|
||||
|
||||
require (
|
||||
github.com/knadh/koanf/parsers/yaml v1.1.0
|
||||
|
|
|
|||
|
|
@ -148,7 +148,7 @@ func GetModules(cfg *Config) error {
|
|||
return nil
|
||||
}
|
||||
|
||||
if _, err := runGoCommand(cfg, "mod", "tidy", "-compat=1.23"); err != nil {
|
||||
if _, err := runGoCommand(cfg, "mod", "tidy", "-compat=1.24"); err != nil {
|
||||
return fmt.Errorf("failed to update go.mod: %w", err)
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
module {{.Distribution.Module}}
|
||||
|
||||
go 1.23
|
||||
go 1.24
|
||||
|
||||
require (
|
||||
{{- range .ConfmapConverters}}
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
module go.opentelemetry.io/collector/cmd/mdatagen
|
||||
|
||||
go 1.23.0
|
||||
go 1.24
|
||||
|
||||
require (
|
||||
github.com/google/go-cmp v0.7.0
|
||||
|
|
|
|||
|
|
@ -2,9 +2,7 @@
|
|||
|
||||
module go.opentelemetry.io/collector/cmd/otelcorecol
|
||||
|
||||
go 1.23.0
|
||||
|
||||
toolchain go1.23.12
|
||||
go 1.24
|
||||
|
||||
require (
|
||||
go.opentelemetry.io/collector/component v1.38.0
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
module go.opentelemetry.io/collector/component/componentstatus
|
||||
|
||||
go 1.23.0
|
||||
go 1.24
|
||||
|
||||
require (
|
||||
github.com/stretchr/testify v1.10.0
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
module go.opentelemetry.io/collector/component/componenttest
|
||||
|
||||
go 1.23.0
|
||||
go 1.24
|
||||
|
||||
require (
|
||||
github.com/stretchr/testify v1.10.0
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
module go.opentelemetry.io/collector/component
|
||||
|
||||
go 1.23.0
|
||||
go 1.24
|
||||
|
||||
require (
|
||||
github.com/stretchr/testify v1.10.0
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
module go.opentelemetry.io/collector/config/configauth
|
||||
|
||||
go 1.23.0
|
||||
go 1.24
|
||||
|
||||
require (
|
||||
github.com/stretchr/testify v1.10.0
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
module go.opentelemetry.io/collector/config/configcompression
|
||||
|
||||
go 1.23.0
|
||||
go 1.24
|
||||
|
||||
require (
|
||||
github.com/stretchr/testify v1.10.0
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
module go.opentelemetry.io/collector/config/configgrpc
|
||||
|
||||
go 1.23.0
|
||||
go 1.24
|
||||
|
||||
require (
|
||||
github.com/mostynb/go-grpc-compression v1.2.3
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
module go.opentelemetry.io/collector/config/confighttp
|
||||
|
||||
go 1.23.0
|
||||
go 1.24
|
||||
|
||||
require (
|
||||
github.com/golang/snappy v1.0.0
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
module go.opentelemetry.io/collector/config/confighttp/xconfighttp
|
||||
|
||||
go 1.23.0
|
||||
go 1.24
|
||||
|
||||
require (
|
||||
github.com/stretchr/testify v1.10.0
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
module go.opentelemetry.io/collector/config/configmiddleware
|
||||
|
||||
go 1.23.0
|
||||
go 1.24
|
||||
|
||||
require (
|
||||
github.com/stretchr/testify v1.10.0
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
module go.opentelemetry.io/collector/config/confignet
|
||||
|
||||
go 1.23.0
|
||||
go 1.24
|
||||
|
||||
require (
|
||||
github.com/stretchr/testify v1.10.0
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
module go.opentelemetry.io/collector/config/configopaque
|
||||
|
||||
go 1.23.0
|
||||
go 1.24
|
||||
|
||||
require (
|
||||
github.com/stretchr/testify v1.10.0
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
module go.opentelemetry.io/collector/config/configoptional
|
||||
|
||||
go 1.23.0
|
||||
go 1.24
|
||||
|
||||
require (
|
||||
github.com/stretchr/testify v1.10.0
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
module go.opentelemetry.io/collector/config/configretry
|
||||
|
||||
go 1.23.0
|
||||
go 1.24
|
||||
|
||||
require (
|
||||
github.com/cenkalti/backoff/v5 v5.0.3
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
module go.opentelemetry.io/collector/config/configtelemetry
|
||||
|
||||
go 1.23.0
|
||||
go 1.24
|
||||
|
||||
require (
|
||||
github.com/stretchr/testify v1.10.0
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
module go.opentelemetry.io/collector/config/configtls
|
||||
|
||||
go 1.23.0
|
||||
go 1.24
|
||||
|
||||
require (
|
||||
github.com/foxboron/go-tpm-keyfiles v0.0.0-20250323135004-b31fac66206e
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
module go.opentelemetry.io/collector/confmap
|
||||
|
||||
go 1.23.0
|
||||
go 1.24
|
||||
|
||||
require (
|
||||
github.com/go-viper/mapstructure/v2 v2.4.0
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
module go.opentelemetry.io/collector/confmap/internal/e2e
|
||||
|
||||
go 1.23.0
|
||||
go 1.24
|
||||
|
||||
require (
|
||||
github.com/stretchr/testify v1.10.0
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
module go.opentelemetry.io/collector/confmap/provider/envprovider
|
||||
|
||||
go 1.23.0
|
||||
go 1.24
|
||||
|
||||
require (
|
||||
github.com/stretchr/testify v1.10.0
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
module go.opentelemetry.io/collector/confmap/provider/fileprovider
|
||||
|
||||
go 1.23.0
|
||||
go 1.24
|
||||
|
||||
require (
|
||||
github.com/stretchr/testify v1.10.0
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
module go.opentelemetry.io/collector/confmap/provider/httpprovider
|
||||
|
||||
go 1.23.0
|
||||
go 1.24
|
||||
|
||||
require (
|
||||
github.com/stretchr/testify v1.10.0
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
module go.opentelemetry.io/collector/confmap/provider/httpsprovider
|
||||
|
||||
go 1.23.0
|
||||
go 1.24
|
||||
|
||||
require (
|
||||
github.com/stretchr/testify v1.10.0
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
module go.opentelemetry.io/collector/confmap/provider/yamlprovider
|
||||
|
||||
go 1.23.0
|
||||
go 1.24
|
||||
|
||||
require (
|
||||
github.com/stretchr/testify v1.10.0
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
module go.opentelemetry.io/collector/confmap/xconfmap
|
||||
|
||||
go 1.23.0
|
||||
go 1.24
|
||||
|
||||
require (
|
||||
github.com/stretchr/testify v1.10.0
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
module go.opentelemetry.io/collector/connector/connectortest
|
||||
|
||||
go 1.23.0
|
||||
go 1.24
|
||||
|
||||
require (
|
||||
github.com/google/uuid v1.6.0
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
module go.opentelemetry.io/collector/connector/forwardconnector
|
||||
|
||||
go 1.23.0
|
||||
go 1.24
|
||||
|
||||
require (
|
||||
github.com/stretchr/testify v1.10.0
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
module go.opentelemetry.io/collector/connector
|
||||
|
||||
go 1.23.0
|
||||
go 1.24
|
||||
|
||||
require (
|
||||
github.com/stretchr/testify v1.10.0
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
module go.opentelemetry.io/collector/connector/xconnector
|
||||
|
||||
go 1.23.0
|
||||
go 1.24
|
||||
|
||||
require (
|
||||
github.com/stretchr/testify v1.10.0
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
module go.opentelemetry.io/collector/consumer/consumererror
|
||||
|
||||
go 1.23.0
|
||||
go 1.24
|
||||
|
||||
require (
|
||||
github.com/stretchr/testify v1.10.0
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
module go.opentelemetry.io/collector/consumer/consumererror/xconsumererror
|
||||
|
||||
go 1.23.0
|
||||
go 1.24
|
||||
|
||||
require (
|
||||
github.com/stretchr/testify v1.10.0
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
module go.opentelemetry.io/collector/consumer/consumertest
|
||||
|
||||
go 1.23.0
|
||||
go 1.24
|
||||
|
||||
replace go.opentelemetry.io/collector/consumer => ../
|
||||
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
module go.opentelemetry.io/collector/consumer
|
||||
|
||||
go 1.23.0
|
||||
go 1.24
|
||||
|
||||
require (
|
||||
github.com/stretchr/testify v1.10.0
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
module go.opentelemetry.io/collector/consumer/xconsumer
|
||||
|
||||
go 1.23.0
|
||||
go 1.24
|
||||
|
||||
require (
|
||||
github.com/stretchr/testify v1.10.0
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
module go.opentelemetry.io/collector/exporter/debugexporter
|
||||
|
||||
go 1.23.0
|
||||
go 1.24
|
||||
|
||||
require (
|
||||
github.com/stretchr/testify v1.10.0
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
module go.opentelemetry.io/collector/exporter/exporterhelper/xexporterhelper
|
||||
|
||||
go 1.23.0
|
||||
go 1.24
|
||||
|
||||
require (
|
||||
github.com/stretchr/testify v1.10.0
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
module go.opentelemetry.io/collector/exporter/exportertest
|
||||
|
||||
go 1.23.0
|
||||
go 1.24
|
||||
|
||||
require (
|
||||
github.com/google/uuid v1.6.0
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
module go.opentelemetry.io/collector/exporter
|
||||
|
||||
go 1.23.0
|
||||
go 1.24
|
||||
|
||||
require (
|
||||
github.com/cenkalti/backoff/v5 v5.0.3
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
module go.opentelemetry.io/collector/exporter/nopexporter
|
||||
|
||||
go 1.23.0
|
||||
go 1.24
|
||||
|
||||
require (
|
||||
github.com/stretchr/testify v1.10.0
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
module go.opentelemetry.io/collector/exporter/otlpexporter
|
||||
|
||||
go 1.23.0
|
||||
go 1.24
|
||||
|
||||
require (
|
||||
github.com/stretchr/testify v1.10.0
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
module go.opentelemetry.io/collector/exporter/otlphttpexporter
|
||||
|
||||
go 1.23.0
|
||||
go 1.24
|
||||
|
||||
require (
|
||||
github.com/stretchr/testify v1.10.0
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
module go.opentelemetry.io/collector/exporter/xexporter
|
||||
|
||||
go 1.23.0
|
||||
go 1.24
|
||||
|
||||
require (
|
||||
github.com/stretchr/testify v1.10.0
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
module go.opentelemetry.io/collector/extension/extensionauth/extensionauthtest
|
||||
|
||||
go 1.23.0
|
||||
go 1.24
|
||||
|
||||
require (
|
||||
github.com/stretchr/testify v1.10.0
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
module go.opentelemetry.io/collector/extension/extensionauth
|
||||
|
||||
go 1.23.0
|
||||
go 1.24
|
||||
|
||||
require (
|
||||
github.com/stretchr/testify v1.10.0
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
module go.opentelemetry.io/collector/extension/extensioncapabilities
|
||||
|
||||
go 1.23.0
|
||||
go 1.24
|
||||
|
||||
require (
|
||||
go.opentelemetry.io/collector/component v1.38.0
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
module go.opentelemetry.io/collector/extension/extensionmiddleware/extensionmiddlewaretest
|
||||
|
||||
go 1.23.0
|
||||
go 1.24
|
||||
|
||||
require (
|
||||
github.com/stretchr/testify v1.10.0
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
module go.opentelemetry.io/collector/extension/extensionmiddleware
|
||||
|
||||
go 1.23.0
|
||||
go 1.24
|
||||
|
||||
require (
|
||||
github.com/stretchr/testify v1.10.0
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
module go.opentelemetry.io/collector/extension/extensiontest
|
||||
|
||||
go 1.23.0
|
||||
go 1.24
|
||||
|
||||
replace go.opentelemetry.io/collector/extension => ..
|
||||
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
module go.opentelemetry.io/collector/extension
|
||||
|
||||
go 1.23.0
|
||||
go 1.24
|
||||
|
||||
require (
|
||||
github.com/stretchr/testify v1.10.0
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
module go.opentelemetry.io/collector/extension/memorylimiterextension
|
||||
|
||||
go 1.23.0
|
||||
go 1.24
|
||||
|
||||
require (
|
||||
github.com/stretchr/testify v1.10.0
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
module go.opentelemetry.io/collector/extension/xextension
|
||||
|
||||
go 1.23.0
|
||||
go 1.24
|
||||
|
||||
require (
|
||||
go.opentelemetry.io/collector/component v1.38.0
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
module go.opentelemetry.io/collector/extension/zpagesextension
|
||||
|
||||
go 1.23.0
|
||||
go 1.24
|
||||
|
||||
require (
|
||||
github.com/stretchr/testify v1.10.0
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
module go.opentelemetry.io/collector/featuregate
|
||||
|
||||
go 1.23.0
|
||||
go 1.24
|
||||
|
||||
require (
|
||||
github.com/hashicorp/go-version v1.7.0
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
module go.opentelemetry.io/collector/filter
|
||||
|
||||
go 1.23.0
|
||||
go 1.24
|
||||
|
||||
require (
|
||||
github.com/stretchr/testify v1.10.0
|
||||
|
|
|
|||
2
go.mod
2
go.mod
|
|
@ -8,7 +8,7 @@ module go.opentelemetry.io/collector
|
|||
// For the OpenTelemetry Collector Core distribution specifically, see
|
||||
// https://github.com/open-telemetry/opentelemetry-collector-releases/tree/main/distributions/otelcol
|
||||
|
||||
go 1.23.0
|
||||
go 1.24
|
||||
|
||||
require (
|
||||
github.com/stretchr/testify v1.10.0
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
module go.opentelemetry.io/collector/internal/cmd/pdatagen
|
||||
|
||||
go 1.23.0
|
||||
go 1.24
|
||||
|
||||
require github.com/ettle/strcase v0.2.0
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
module go.opentelemetry.io/collector/internal/e2e
|
||||
|
||||
go 1.23.0
|
||||
go 1.24
|
||||
|
||||
require (
|
||||
github.com/prometheus/common v0.65.0
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
module go.opentelemetry.io/collector/internal/fanoutconsumer
|
||||
|
||||
go 1.23.0
|
||||
go 1.24
|
||||
|
||||
require (
|
||||
github.com/stretchr/testify v1.10.0
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
module go.opentelemetry.io/collector/internal/memorylimiter
|
||||
|
||||
go 1.23.0
|
||||
go 1.24
|
||||
|
||||
require (
|
||||
github.com/shirou/gopsutil/v4 v4.25.7
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
module go.opentelemetry.io/collector/internal/sharedcomponent
|
||||
|
||||
go 1.23.0
|
||||
go 1.24
|
||||
|
||||
require (
|
||||
github.com/stretchr/testify v1.10.0
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
module go.opentelemetry.io/collector/internal/telemetry
|
||||
|
||||
go 1.23.0
|
||||
go 1.24
|
||||
|
||||
require (
|
||||
github.com/stretchr/testify v1.10.0
|
||||
|
|
|
|||
|
|
@ -1,8 +1,6 @@
|
|||
module go.opentelemetry.io/collector/internal/tools
|
||||
|
||||
go 1.24
|
||||
|
||||
toolchain go1.24.0
|
||||
go 1.25
|
||||
|
||||
require (
|
||||
github.com/a8m/envsubst v1.4.3
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
module go.opentelemetry.io/collector/otelcol
|
||||
|
||||
go 1.23.0
|
||||
go 1.24
|
||||
|
||||
require (
|
||||
github.com/spf13/cobra v1.9.1
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
module go.opentelemetry.io/collector/otelcol/otelcoltest
|
||||
|
||||
go 1.23.0
|
||||
go 1.24
|
||||
|
||||
require (
|
||||
github.com/stretchr/testify v1.10.0
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
module go.opentelemetry.io/collector/pdata
|
||||
|
||||
go 1.23.0
|
||||
go 1.24
|
||||
|
||||
require (
|
||||
github.com/gogo/protobuf v1.3.2
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
module go.opentelemetry.io/collector/pdata/pprofile
|
||||
|
||||
go 1.23.0
|
||||
go 1.24
|
||||
|
||||
require (
|
||||
github.com/stretchr/testify v1.10.0
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
module go.opentelemetry.io/collector/pdata/testdata
|
||||
|
||||
go 1.23.0
|
||||
go 1.24
|
||||
|
||||
require (
|
||||
go.opentelemetry.io/collector/pdata v1.38.0
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
module go.opentelemetry.io/collector/pdata/xpdata
|
||||
|
||||
go 1.23.0
|
||||
go 1.24
|
||||
|
||||
require (
|
||||
github.com/gogo/protobuf v1.3.2
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
module go.opentelemetry.io/collector/pipeline
|
||||
|
||||
go 1.23.0
|
||||
go 1.24
|
||||
|
||||
require github.com/stretchr/testify v1.10.0
|
||||
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
module go.opentelemetry.io/collector/pipeline/xpipeline
|
||||
|
||||
go 1.23.0
|
||||
go 1.24
|
||||
|
||||
require go.opentelemetry.io/collector/pipeline v1.38.0
|
||||
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
module go.opentelemetry.io/collector/processor/batchprocessor
|
||||
|
||||
go 1.23.0
|
||||
go 1.24
|
||||
|
||||
require (
|
||||
github.com/stretchr/testify v1.10.0
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
module go.opentelemetry.io/collector/processor
|
||||
|
||||
go 1.23.0
|
||||
go 1.24
|
||||
|
||||
require (
|
||||
github.com/stretchr/testify v1.10.0
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
module go.opentelemetry.io/collector/processor/memorylimiterprocessor
|
||||
|
||||
go 1.23.0
|
||||
go 1.24
|
||||
|
||||
require (
|
||||
github.com/stretchr/testify v1.10.0
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
module go.opentelemetry.io/collector/processor/processorhelper
|
||||
|
||||
go 1.23.0
|
||||
go 1.24
|
||||
|
||||
replace go.opentelemetry.io/collector/processor => ../
|
||||
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
module go.opentelemetry.io/collector/processor/processorhelper/xprocessorhelper
|
||||
|
||||
go 1.23.0
|
||||
go 1.24
|
||||
|
||||
require (
|
||||
github.com/stretchr/testify v1.10.0
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
module go.opentelemetry.io/collector/processor/processortest
|
||||
|
||||
go 1.23.0
|
||||
go 1.24
|
||||
|
||||
require (
|
||||
github.com/stretchr/testify v1.10.0
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
module go.opentelemetry.io/collector/processor/xprocessor
|
||||
|
||||
go 1.23.0
|
||||
go 1.24
|
||||
|
||||
require (
|
||||
github.com/stretchr/testify v1.10.0
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
module go.opentelemetry.io/collector/receiver
|
||||
|
||||
go 1.23.0
|
||||
go 1.24
|
||||
|
||||
require (
|
||||
github.com/stretchr/testify v1.10.0
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
module go.opentelemetry.io/collector/receiver/nopreceiver
|
||||
|
||||
go 1.23.0
|
||||
go 1.24
|
||||
|
||||
require (
|
||||
github.com/stretchr/testify v1.10.0
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
module go.opentelemetry.io/collector/receiver/otlpreceiver
|
||||
|
||||
go 1.23.0
|
||||
go 1.24
|
||||
|
||||
require (
|
||||
github.com/klauspost/compress v1.18.0
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
module go.opentelemetry.io/collector/receiver/receiverhelper
|
||||
|
||||
go 1.23.0
|
||||
go 1.24
|
||||
|
||||
require (
|
||||
github.com/stretchr/testify v1.10.0
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
module go.opentelemetry.io/collector/receiver/receivertest
|
||||
|
||||
go 1.23.0
|
||||
go 1.24
|
||||
|
||||
require (
|
||||
github.com/google/uuid v1.6.0
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
module go.opentelemetry.io/collector/receiver/xreceiver
|
||||
|
||||
go 1.23.0
|
||||
go 1.24
|
||||
|
||||
require (
|
||||
github.com/stretchr/testify v1.10.0
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@
|
|||
"dependencies"
|
||||
],
|
||||
"constraints": {
|
||||
"go": "1.23"
|
||||
"go": "1.24"
|
||||
},
|
||||
"extends": [
|
||||
"config:recommended",
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
module go.opentelemetry.io/collector/scraper
|
||||
|
||||
go 1.23.0
|
||||
go 1.24
|
||||
|
||||
require (
|
||||
github.com/stretchr/testify v1.10.0
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
module go.opentelemetry.io/collector/scraper/scraperhelper
|
||||
|
||||
go 1.23.0
|
||||
go 1.24
|
||||
|
||||
require (
|
||||
github.com/stretchr/testify v1.10.0
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
module go.opentelemetry.io/collector/scraper/scrapertest
|
||||
|
||||
go 1.23.0
|
||||
go 1.24
|
||||
|
||||
require (
|
||||
github.com/google/uuid v1.6.0
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
module go.opentelemetry.io/collector/service
|
||||
|
||||
go 1.23.0
|
||||
go 1.24
|
||||
|
||||
require (
|
||||
github.com/google/uuid v1.6.0
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
module go.opentelemetry.io/collector/service/hostcapabilities
|
||||
|
||||
go 1.23.0
|
||||
go 1.24
|
||||
|
||||
require (
|
||||
go.opentelemetry.io/collector/component v1.38.0
|
||||
|
|
|
|||
Loading…
Reference in New Issue