-
Notifications
You must be signed in to change notification settings - Fork 623
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix go directive version in go.mod (#885)
* Fix go directive version in go.mod According to go.dev/issues/62278 a concrete go version has to include the patch number or an additional toolchain directive. The project declares the version as 1.21 which is invalid and will result in an error: GOTOOLCHAIN="go1.20+auto" go1.21.5 mod tidy go: downloading go1.21 (linux/amd64) go: download go1.21 for linux/amd64: toolchain not available Changed to 1.21.0 as this is the first actual release of go 1.21. * Align go.mod files with client go version --------- Co-authored-by: Laurent Saint-Félix <[email protected]>
- Loading branch information
1 parent
a795d30
commit 4974b4a
Showing
28 changed files
with
216 additions
and
193 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,20 @@ | ||
module github.com/elastic/go-elasticsearch/v8/_examples/bulk | ||
|
||
go 1.21 | ||
|
||
toolchain go1.21.8 | ||
go 1.21.0 | ||
|
||
replace github.com/elastic/go-elasticsearch/v8 => ../.. | ||
|
||
require ( | ||
github.com/cenkalti/backoff/v4 v4.1.2 | ||
github.com/dustin/go-humanize v1.0.0 | ||
github.com/cenkalti/backoff/v4 v4.3.0 | ||
github.com/dustin/go-humanize v1.0.1 | ||
github.com/elastic/go-elasticsearch/v8 v8.0.0-20211123103400-5f8a17a2322f | ||
) | ||
|
||
require ( | ||
github.com/elastic/elastic-transport-go/v8 v8.5.0 // indirect | ||
github.com/go-logr/logr v1.4.1 // indirect | ||
github.com/elastic/elastic-transport-go/v8 v8.6.0 // indirect | ||
github.com/go-logr/logr v1.4.2 // indirect | ||
github.com/go-logr/stdr v1.2.2 // indirect | ||
go.opentelemetry.io/otel v1.24.0 // indirect | ||
go.opentelemetry.io/otel/metric v1.24.0 // indirect | ||
go.opentelemetry.io/otel/trace v1.24.0 // indirect | ||
go.opentelemetry.io/otel v1.28.0 // indirect | ||
go.opentelemetry.io/otel/metric v1.28.0 // indirect | ||
go.opentelemetry.io/otel/trace v1.28.0 // indirect | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,16 @@ | ||
module github.com/elastic/go-elasticsearch/v8/_examples/clusterstatus | ||
|
||
go 1.21 | ||
|
||
toolchain go1.21.8 | ||
go 1.21.0 | ||
|
||
replace github.com/elastic/go-elasticsearch/v8 => ../.. | ||
|
||
require github.com/elastic/go-elasticsearch/v8 v8.0.0-20210817150010-57d659deaca7 | ||
|
||
require ( | ||
github.com/elastic/elastic-transport-go/v8 v8.5.0 // indirect | ||
github.com/go-logr/logr v1.4.1 // indirect | ||
github.com/elastic/elastic-transport-go/v8 v8.6.0 // indirect | ||
github.com/go-logr/logr v1.4.2 // indirect | ||
github.com/go-logr/stdr v1.2.2 // indirect | ||
go.opentelemetry.io/otel v1.24.0 // indirect | ||
go.opentelemetry.io/otel/metric v1.24.0 // indirect | ||
go.opentelemetry.io/otel/trace v1.24.0 // indirect | ||
go.opentelemetry.io/otel v1.28.0 // indirect | ||
go.opentelemetry.io/otel/metric v1.28.0 // indirect | ||
go.opentelemetry.io/otel/trace v1.28.0 // indirect | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,18 @@ | ||
module github.com/elastic/go-elasticsearch/v8/_examples/extension | ||
|
||
go 1.21 | ||
go 1.21.0 | ||
|
||
replace github.com/elastic/go-elasticsearch/v8 => ../.. | ||
|
||
require ( | ||
github.com/elastic/elastic-transport-go/v8 v8.5.0 | ||
github.com/elastic/elastic-transport-go/v8 v8.6.0 | ||
github.com/elastic/go-elasticsearch/v8 v8.13.1 | ||
) | ||
|
||
require ( | ||
github.com/go-logr/logr v1.3.0 // indirect | ||
github.com/go-logr/logr v1.4.2 // indirect | ||
github.com/go-logr/stdr v1.2.2 // indirect | ||
go.opentelemetry.io/otel v1.21.0 // indirect | ||
go.opentelemetry.io/otel/metric v1.21.0 // indirect | ||
go.opentelemetry.io/otel/trace v1.21.0 // indirect | ||
go.opentelemetry.io/otel v1.28.0 // indirect | ||
go.opentelemetry.io/otel/metric v1.28.0 // indirect | ||
go.opentelemetry.io/otel/trace v1.28.0 // indirect | ||
) |
Oops, something went wrong.