Skip to content

Commit 9bd6831

Browse files
Bump to 8.18 (#968)
* bump to 8.18.0 * Bump elastictransport to 8.6.1 (#954) (#955) * Bump elastictransport to 8.6.1 * go mod tidy * Update internal go modules * Update examples go modules * Update changelog Co-authored-by: Laurent Saint-Félix <laurent.saintfelix@elastic.co> * Generator: exclude statically implemented params from loading * Update API to v8.18.0 (4ac5dd1) * Update TypedAPI to v8.18.0 (3ea9ce2) * Update skip list --------- Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 3a64d27 commit 9bd6831

File tree

3,958 files changed

+106070
-28621
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

3,958 files changed

+106070
-28621
lines changed

.buildkite/pipeline.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ steps:
44
provider: "gcp"
55
env:
66
TEST_SUITE: "{{ matrix.suite }}"
7-
STACK_VERSION: 8.16.0-SNAPSHOT
7+
STACK_VERSION: 8.18.0-SNAPSHOT
88
WORKSPACE: /tmp/go-elasticsearch
99
matrix:
1010
setup:

.github/workflows/test-api.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
test-free:
1212
name: Free
1313
env:
14-
ELASTICSEARCH_VERSION: elasticsearch:8.16.0-SNAPSHOT
14+
ELASTICSEARCH_VERSION: elasticsearch:8.18.0-SNAPSHOT
1515
ELASTICSEARCH_URL: http://localhost:9200
1616
runs-on: ubuntu-latest
1717
steps:
@@ -43,7 +43,7 @@ jobs:
4343
test-platinum:
4444
name: Platinum
4545
env:
46-
ELASTICSEARCH_VERSION: elasticsearch:8.16.0-SNAPSHOT
46+
ELASTICSEARCH_VERSION: elasticsearch:8.18.0-SNAPSHOT
4747
ELASTICSEARCH_URL: https://elastic:elastic@localhost:9200
4848
runs-on: ubuntu-latest
4949
steps:

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# 8.17.1
2+
3+
* Update elastictransport to 8.6.1
4+
5+
Thanks to @AkisAya and @jmfrees for their contributions!
6+
17
# 8.17.0
28

39
* Expose BulkIndexer total flushed bytes metric [#914](https://github.com/elastic/go-elasticsearch/pull/914) thanks to @aureleoules

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
SHELL := /bin/bash
22

3-
ELASTICSEARCH_DEFAULT_BUILD_VERSION = "8.16.0-SNAPSHOT"
3+
ELASTICSEARCH_DEFAULT_BUILD_VERSION = "8.18.0-SNAPSHOT"
44

55
##@ Test
66
test-unit: ## Run unit tests

_benchmarks/benchmarks/go.mod

+6-3
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,17 @@
11
module github.com/elastic/go-elasticsearch/v8/benchmarks
22

3-
go 1.14
3+
go 1.21
4+
5+
toolchain go1.24.1
46

57
replace github.com/elastic/go-elasticsearch/v8 => ../../
68

79
require (
8-
github.com/elastic/elastic-transport-go/v8 v8.0.0-20211216131617-bbee439d559c
10+
github.com/elastic/elastic-transport-go/v8 v8.6.1
911
github.com/elastic/go-elasticsearch/v8 v8.0.0-20200408073057-6f36a473b19f
1012
github.com/fatih/color v1.7.0
11-
github.com/mattn/go-colorable v0.1.6 // indirect
1213
github.com/montanaflynn/stats v0.6.3
1314
github.com/tidwall/gjson v1.9.3
1415
)
16+
17+
require github.com/mattn/go-colorable v0.1.6 // indirect

_examples/bulk/benchmarks/go.mod

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
module github.com/elastic/go-elasticsearch/v8/_examples/bulk/benchmarks
22

3-
go 1.21
4-
toolchain go1.21.0
3+
go 1.22
4+
5+
toolchain go1.22.0
56

67
replace github.com/elastic/go-elasticsearch/v8 => ../../..
78

@@ -13,7 +14,7 @@ require (
1314
)
1415

1516
require (
16-
github.com/elastic/elastic-transport-go/v8 v8.6.0 // indirect
17+
github.com/elastic/elastic-transport-go/v8 v8.6.1 // indirect
1718
github.com/go-logr/logr v1.4.2 // indirect
1819
github.com/go-logr/stdr v1.2.2 // indirect
1920
go.opentelemetry.io/otel v1.28.0 // indirect

_examples/bulk/benchmarks/go.sum

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c
22
github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
33
github.com/dustin/go-humanize v1.0.0 h1:VSnTsYCnlFHaM2/igO1h6X3HA71jcobQuxemgkq4zYo=
44
github.com/dustin/go-humanize v1.0.0/go.mod h1:HtrtbFcZ19U5GC7JDqmcUSB87Iq5E25KnS6fMYU6eOk=
5-
github.com/elastic/elastic-transport-go/v8 v8.6.0 h1:Y2S/FBjx1LlCv5m6pWAF2kDJAHoSjSRSJCApolgfthA=
6-
github.com/elastic/elastic-transport-go/v8 v8.6.0/go.mod h1:YLHer5cj0csTzNFXoNQ8qhtGY1GTvSqPnKWKaqQE3Hk=
5+
github.com/elastic/elastic-transport-go/v8 v8.6.1 h1:h2jQRqH6eLGiBSN4eZbQnJLtL4bC5b4lfVFRjw2R4e4=
6+
github.com/elastic/elastic-transport-go/v8 v8.6.1/go.mod h1:YLHer5cj0csTzNFXoNQ8qhtGY1GTvSqPnKWKaqQE3Hk=
77
github.com/go-logr/logr v1.2.2/go.mod h1:jdQByPbusPIv2/zmleS9BjJVeZ6kBagPoEUsqbVz/1A=
88
github.com/go-logr/logr v1.4.2 h1:6pFjapn8bFcIbiKo3XT4j/BhANplGihG6tvd+8rYgrY=
99
github.com/go-logr/logr v1.4.2/go.mod h1:9T104GzyrTigFIr8wt5mBrctHMim0Nb2HLGrmQ40KvY=

_examples/bulk/go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ require (
1212
)
1313

1414
require (
15-
github.com/elastic/elastic-transport-go/v8 v8.6.0 // indirect
15+
github.com/elastic/elastic-transport-go/v8 v8.6.1 // indirect
1616
github.com/go-logr/logr v1.4.2 // indirect
1717
github.com/go-logr/stdr v1.2.2 // indirect
1818
go.opentelemetry.io/otel v1.28.0 // indirect

_examples/bulk/go.sum

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c
44
github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
55
github.com/dustin/go-humanize v1.0.1 h1:GzkhY7T5VNhEkwH0PVJgjz+fX1rhBrR7pRT3mDkpeCY=
66
github.com/dustin/go-humanize v1.0.1/go.mod h1:Mu1zIs6XwVuF/gI1OepvI0qD18qycQx+mFykh5fBlto=
7-
github.com/elastic/elastic-transport-go/v8 v8.6.0 h1:Y2S/FBjx1LlCv5m6pWAF2kDJAHoSjSRSJCApolgfthA=
8-
github.com/elastic/elastic-transport-go/v8 v8.6.0/go.mod h1:YLHer5cj0csTzNFXoNQ8qhtGY1GTvSqPnKWKaqQE3Hk=
7+
github.com/elastic/elastic-transport-go/v8 v8.6.1 h1:h2jQRqH6eLGiBSN4eZbQnJLtL4bC5b4lfVFRjw2R4e4=
8+
github.com/elastic/elastic-transport-go/v8 v8.6.1/go.mod h1:YLHer5cj0csTzNFXoNQ8qhtGY1GTvSqPnKWKaqQE3Hk=
99
github.com/go-logr/logr v1.2.2/go.mod h1:jdQByPbusPIv2/zmleS9BjJVeZ6kBagPoEUsqbVz/1A=
1010
github.com/go-logr/logr v1.4.2 h1:6pFjapn8bFcIbiKo3XT4j/BhANplGihG6tvd+8rYgrY=
1111
github.com/go-logr/logr v1.4.2/go.mod h1:9T104GzyrTigFIr8wt5mBrctHMim0Nb2HLGrmQ40KvY=

_examples/bulk/kafka/go.mod

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
module github.com/elastic/go-elasticsearch/v8/_examples/bulk/kafka
22

33
go 1.21
4+
45
toolchain go1.21.0
56

67
replace github.com/elastic/go-elasticsearch/v8 => ../../..
@@ -13,7 +14,7 @@ require (
1314

1415
require (
1516
github.com/armon/go-radix v1.0.0 // indirect
16-
github.com/elastic/elastic-transport-go/v8 v8.6.0 // indirect
17+
github.com/elastic/elastic-transport-go/v8 v8.6.1 // indirect
1718
github.com/elastic/go-licenser v0.3.1 // indirect
1819
github.com/elastic/go-sysinfo v1.1.1 // indirect
1920
github.com/elastic/go-windows v1.0.0 // indirect

_examples/bulk/kafka/go.sum

+1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ github.com/eapache/go-xerial-snappy v0.0.0-20180814174437-776d5712da21 h1:YEetp8
77
github.com/eapache/go-xerial-snappy v0.0.0-20180814174437-776d5712da21/go.mod h1:+020luEh2TKB4/GOp8oxxtq0Daoen/Cii55CzbTV6DU=
88
github.com/elastic/elastic-transport-go/v8 v8.6.0 h1:Y2S/FBjx1LlCv5m6pWAF2kDJAHoSjSRSJCApolgfthA=
99
github.com/elastic/elastic-transport-go/v8 v8.6.0/go.mod h1:YLHer5cj0csTzNFXoNQ8qhtGY1GTvSqPnKWKaqQE3Hk=
10+
github.com/elastic/elastic-transport-go/v8 v8.6.1/go.mod h1:YLHer5cj0csTzNFXoNQ8qhtGY1GTvSqPnKWKaqQE3Hk=
1011
github.com/elastic/go-licenser v0.3.1 h1:RmRukU/JUmts+rpexAw0Fvt2ly7VVu6mw8z4HrEzObU=
1112
github.com/elastic/go-licenser v0.3.1/go.mod h1:D8eNQk70FOCVBl3smCGQt/lv7meBeQno2eI1S5apiHQ=
1213
github.com/elastic/go-sysinfo v1.1.1 h1:ZVlaLDyhVkDfjwPGU55CQRCRolNpc7P0BbyhhQZQmMI=

_examples/cloudfunction/go.mod

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,15 @@
11
module github.com/elastic/go-elasticsearch/v8/_examples/clusterstatus
22

33
go 1.21
4+
45
toolchain go1.21.0
56

67
replace github.com/elastic/go-elasticsearch/v8 => ../..
78

89
require github.com/elastic/go-elasticsearch/v8 v8.0.0-20210817150010-57d659deaca7
910

1011
require (
11-
github.com/elastic/elastic-transport-go/v8 v8.6.0 // indirect
12+
github.com/elastic/elastic-transport-go/v8 v8.6.1 // indirect
1213
github.com/go-logr/logr v1.4.2 // indirect
1314
github.com/go-logr/stdr v1.2.2 // indirect
1415
go.opentelemetry.io/otel v1.28.0 // indirect

_examples/cloudfunction/go.sum

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=
22
github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
3-
github.com/elastic/elastic-transport-go/v8 v8.6.0 h1:Y2S/FBjx1LlCv5m6pWAF2kDJAHoSjSRSJCApolgfthA=
4-
github.com/elastic/elastic-transport-go/v8 v8.6.0/go.mod h1:YLHer5cj0csTzNFXoNQ8qhtGY1GTvSqPnKWKaqQE3Hk=
3+
github.com/elastic/elastic-transport-go/v8 v8.6.1 h1:h2jQRqH6eLGiBSN4eZbQnJLtL4bC5b4lfVFRjw2R4e4=
4+
github.com/elastic/elastic-transport-go/v8 v8.6.1/go.mod h1:YLHer5cj0csTzNFXoNQ8qhtGY1GTvSqPnKWKaqQE3Hk=
55
github.com/go-logr/logr v1.2.2/go.mod h1:jdQByPbusPIv2/zmleS9BjJVeZ6kBagPoEUsqbVz/1A=
66
github.com/go-logr/logr v1.4.1 h1:pKouT5E8xu9zeFC39JXRDukb6JFQPXM5p5I91188VAQ=
77
github.com/go-logr/logr v1.4.1/go.mod h1:9T104GzyrTigFIr8wt5mBrctHMim0Nb2HLGrmQ40KvY=

_examples/encoding/go.mod

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
module github.com/elastic/go-elasticsearch/v8/_examples/encoding
22

33
go 1.21
4+
45
toolchain go1.21.0
56

67
replace github.com/elastic/go-elasticsearch/v8 => ../..
@@ -13,7 +14,7 @@ require (
1314
)
1415

1516
require (
16-
github.com/elastic/elastic-transport-go/v8 v8.6.0 // indirect
17+
github.com/elastic/elastic-transport-go/v8 v8.6.1 // indirect
1718
github.com/go-logr/logr v1.4.2 // indirect
1819
github.com/go-logr/stdr v1.2.2 // indirect
1920
github.com/josharian/intern v1.0.0 // indirect

_examples/encoding/go.sum

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=
22
github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
3-
github.com/elastic/elastic-transport-go/v8 v8.6.0 h1:Y2S/FBjx1LlCv5m6pWAF2kDJAHoSjSRSJCApolgfthA=
4-
github.com/elastic/elastic-transport-go/v8 v8.6.0/go.mod h1:YLHer5cj0csTzNFXoNQ8qhtGY1GTvSqPnKWKaqQE3Hk=
3+
github.com/elastic/elastic-transport-go/v8 v8.6.1 h1:h2jQRqH6eLGiBSN4eZbQnJLtL4bC5b4lfVFRjw2R4e4=
4+
github.com/elastic/elastic-transport-go/v8 v8.6.1/go.mod h1:YLHer5cj0csTzNFXoNQ8qhtGY1GTvSqPnKWKaqQE3Hk=
55
github.com/fatih/color v1.13.0 h1:8LOYc1KYPPmyKMuN8QV2DNRWNbLo6LZ0iLs8+mlH53w=
66
github.com/fatih/color v1.13.0/go.mod h1:kLAiJbzzSOZDVNGyDpeOxJ47H46qBXwg5ILebYFFOfk=
77
github.com/go-logr/logr v1.2.2/go.mod h1:jdQByPbusPIv2/zmleS9BjJVeZ6kBagPoEUsqbVz/1A=

_examples/extension/go.mod

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
module github.com/elastic/go-elasticsearch/v8/_examples/extension
22

33
go 1.21
4+
45
toolchain go1.21.0
56

67
replace github.com/elastic/go-elasticsearch/v8 => ../..
78

89
require (
9-
github.com/elastic/elastic-transport-go/v8 v8.6.0
10+
github.com/elastic/elastic-transport-go/v8 v8.6.1
1011
github.com/elastic/go-elasticsearch/v8 v8.13.1
1112
)
1213

_examples/extension/go.sum

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=
22
github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
3-
github.com/elastic/elastic-transport-go/v8 v8.6.0 h1:Y2S/FBjx1LlCv5m6pWAF2kDJAHoSjSRSJCApolgfthA=
4-
github.com/elastic/elastic-transport-go/v8 v8.6.0/go.mod h1:YLHer5cj0csTzNFXoNQ8qhtGY1GTvSqPnKWKaqQE3Hk=
3+
github.com/elastic/elastic-transport-go/v8 v8.6.1 h1:h2jQRqH6eLGiBSN4eZbQnJLtL4bC5b4lfVFRjw2R4e4=
4+
github.com/elastic/elastic-transport-go/v8 v8.6.1/go.mod h1:YLHer5cj0csTzNFXoNQ8qhtGY1GTvSqPnKWKaqQE3Hk=
55
github.com/go-logr/logr v1.2.2/go.mod h1:jdQByPbusPIv2/zmleS9BjJVeZ6kBagPoEUsqbVz/1A=
66
github.com/go-logr/logr v1.4.2 h1:6pFjapn8bFcIbiKo3XT4j/BhANplGihG6tvd+8rYgrY=
77
github.com/go-logr/logr v1.4.2/go.mod h1:9T104GzyrTigFIr8wt5mBrctHMim0Nb2HLGrmQ40KvY=

_examples/fasthttp/go.mod

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
module github.com/elastic/go-elasticsearch/v8/_examples/fasthttp
22

33
go 1.21
4+
45
toolchain go1.21.0
56

67
replace github.com/elastic/go-elasticsearch/v8 => ../..
@@ -12,7 +13,7 @@ require (
1213

1314
require (
1415
github.com/andybalholm/brotli v1.0.4 // indirect
15-
github.com/elastic/elastic-transport-go/v8 v8.6.0 // indirect
16+
github.com/elastic/elastic-transport-go/v8 v8.6.1 // indirect
1617
github.com/go-logr/logr v1.4.2 // indirect
1718
github.com/go-logr/stdr v1.2.2 // indirect
1819
github.com/klauspost/compress v1.15.0 // indirect

_examples/fasthttp/go.sum

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ github.com/andybalholm/brotli v1.0.4 h1:V7DdXeJtZscaqfNuAdSRuRFzuiKlHSC/Zh3zl9qY
22
github.com/andybalholm/brotli v1.0.4/go.mod h1:fO7iG3H7G2nSZ7m0zPUDn85XEX2GTukHGRSepvi9Eig=
33
github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=
44
github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
5-
github.com/elastic/elastic-transport-go/v8 v8.6.0 h1:Y2S/FBjx1LlCv5m6pWAF2kDJAHoSjSRSJCApolgfthA=
6-
github.com/elastic/elastic-transport-go/v8 v8.6.0/go.mod h1:YLHer5cj0csTzNFXoNQ8qhtGY1GTvSqPnKWKaqQE3Hk=
5+
github.com/elastic/elastic-transport-go/v8 v8.6.1 h1:h2jQRqH6eLGiBSN4eZbQnJLtL4bC5b4lfVFRjw2R4e4=
6+
github.com/elastic/elastic-transport-go/v8 v8.6.1/go.mod h1:YLHer5cj0csTzNFXoNQ8qhtGY1GTvSqPnKWKaqQE3Hk=
77
github.com/go-logr/logr v1.2.2/go.mod h1:jdQByPbusPIv2/zmleS9BjJVeZ6kBagPoEUsqbVz/1A=
88
github.com/go-logr/logr v1.4.1 h1:pKouT5E8xu9zeFC39JXRDukb6JFQPXM5p5I91188VAQ=
99
github.com/go-logr/logr v1.4.1/go.mod h1:9T104GzyrTigFIr8wt5mBrctHMim0Nb2HLGrmQ40KvY=

_examples/go.mod

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,15 @@
11
module _examples
22

3-
go 1.21
4-
toolchain go1.21.0
3+
go 1.22
4+
5+
toolchain go1.22.0
56

67
replace github.com/elastic/go-elasticsearch/v8 => ../
78

89
require github.com/elastic/go-elasticsearch/v8 v8.0.0-00010101000000-000000000000
910

1011
require (
11-
github.com/elastic/elastic-transport-go/v8 v8.6.0 // indirect
12+
github.com/elastic/elastic-transport-go/v8 v8.6.1 // indirect
1213
github.com/go-logr/logr v1.4.2 // indirect
1314
github.com/go-logr/stdr v1.2.2 // indirect
1415
go.opentelemetry.io/otel v1.28.0 // indirect

_examples/go.sum

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=
22
github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
3-
github.com/elastic/elastic-transport-go/v8 v8.6.0 h1:Y2S/FBjx1LlCv5m6pWAF2kDJAHoSjSRSJCApolgfthA=
4-
github.com/elastic/elastic-transport-go/v8 v8.6.0/go.mod h1:YLHer5cj0csTzNFXoNQ8qhtGY1GTvSqPnKWKaqQE3Hk=
3+
github.com/elastic/elastic-transport-go/v8 v8.6.1 h1:h2jQRqH6eLGiBSN4eZbQnJLtL4bC5b4lfVFRjw2R4e4=
4+
github.com/elastic/elastic-transport-go/v8 v8.6.1/go.mod h1:YLHer5cj0csTzNFXoNQ8qhtGY1GTvSqPnKWKaqQE3Hk=
55
github.com/go-logr/logr v1.2.2/go.mod h1:jdQByPbusPIv2/zmleS9BjJVeZ6kBagPoEUsqbVz/1A=
66
github.com/go-logr/logr v1.4.2 h1:6pFjapn8bFcIbiKo3XT4j/BhANplGihG6tvd+8rYgrY=
77
github.com/go-logr/logr v1.4.2/go.mod h1:9T104GzyrTigFIr8wt5mBrctHMim0Nb2HLGrmQ40KvY=

_examples/instrumentation/go.mod

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
module github.com/elastic/go-elasticsearch/v8/_examples/instrumentation/opencensus
22

33
go 1.21
4+
45
toolchain go1.21.0
56

67
replace github.com/elastic/go-elasticsearch/v8 => ../..
78

89
require (
9-
github.com/elastic/elastic-transport-go/v8 v8.6.0
10+
github.com/elastic/elastic-transport-go/v8 v8.6.1
1011
github.com/elastic/go-elasticsearch/v8 v8.0.0-20191002063538-b491ce54d752
1112
github.com/fatih/color v1.7.0
1213
go.elastic.co/apm v1.11.0

_examples/instrumentation/go.sum

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ github.com/cucumber/godog v0.8.1/go.mod h1:vSh3r/lM+psC1BPXvdkSEuNjmXfpVqrMGYAEl
1414
github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
1515
github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=
1616
github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
17-
github.com/elastic/elastic-transport-go/v8 v8.6.0 h1:Y2S/FBjx1LlCv5m6pWAF2kDJAHoSjSRSJCApolgfthA=
18-
github.com/elastic/elastic-transport-go/v8 v8.6.0/go.mod h1:YLHer5cj0csTzNFXoNQ8qhtGY1GTvSqPnKWKaqQE3Hk=
17+
github.com/elastic/elastic-transport-go/v8 v8.6.1 h1:h2jQRqH6eLGiBSN4eZbQnJLtL4bC5b4lfVFRjw2R4e4=
18+
github.com/elastic/elastic-transport-go/v8 v8.6.1/go.mod h1:YLHer5cj0csTzNFXoNQ8qhtGY1GTvSqPnKWKaqQE3Hk=
1919
github.com/elastic/go-sysinfo v1.0.1/go.mod h1:O/D5m1VpYLwGjCYzEt63g3Z1uO3jXfwyzzjiW90t8cY=
2020
github.com/elastic/go-sysinfo v1.1.1 h1:ZVlaLDyhVkDfjwPGU55CQRCRolNpc7P0BbyhhQZQmMI=
2121
github.com/elastic/go-sysinfo v1.1.1/go.mod h1:i1ZYdU10oLNfRzq4vq62BEwD2fH8KaWh6eh0ikPT9F0=

_examples/logging/go.mod

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
module github.com/elastic/go-elasticsearch/v8/_examples/logging
22

33
go 1.21
4+
45
toolchain go1.21.0
56

67
replace github.com/elastic/go-elasticsearch/v8 => ../..
78

89
require (
9-
github.com/elastic/elastic-transport-go/v8 v8.6.0
10+
github.com/elastic/elastic-transport-go/v8 v8.6.1
1011
github.com/elastic/go-elasticsearch/v8 v8.0.0-00010101000000-000000000000
1112
github.com/rs/zerolog v1.32.0
1213
)

_examples/logging/go.sum

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ github.com/coreos/go-systemd/v22 v22.5.0 h1:RrqgGjYQKalulkV8NGVIfkXQf6YYmOyiJKk8
22
github.com/coreos/go-systemd/v22 v22.5.0/go.mod h1:Y58oyj3AT4RCenI/lSvhwexgC+NSVTIJ3seZv2GcEnc=
33
github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=
44
github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
5-
github.com/elastic/elastic-transport-go/v8 v8.6.0 h1:Y2S/FBjx1LlCv5m6pWAF2kDJAHoSjSRSJCApolgfthA=
6-
github.com/elastic/elastic-transport-go/v8 v8.6.0/go.mod h1:YLHer5cj0csTzNFXoNQ8qhtGY1GTvSqPnKWKaqQE3Hk=
5+
github.com/elastic/elastic-transport-go/v8 v8.6.1 h1:h2jQRqH6eLGiBSN4eZbQnJLtL4bC5b4lfVFRjw2R4e4=
6+
github.com/elastic/elastic-transport-go/v8 v8.6.1/go.mod h1:YLHer5cj0csTzNFXoNQ8qhtGY1GTvSqPnKWKaqQE3Hk=
77
github.com/go-logr/logr v1.2.2/go.mod h1:jdQByPbusPIv2/zmleS9BjJVeZ6kBagPoEUsqbVz/1A=
88
github.com/go-logr/logr v1.4.1 h1:pKouT5E8xu9zeFC39JXRDukb6JFQPXM5p5I91188VAQ=
99
github.com/go-logr/logr v1.4.1/go.mod h1:9T104GzyrTigFIr8wt5mBrctHMim0Nb2HLGrmQ40KvY=

_examples/security/go.mod

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,15 @@
11
module github.com/elastic/go-elasticsearch/v8/_examples/security
22

33
go 1.21
4+
45
toolchain go1.21.0
56

67
replace github.com/elastic/go-elasticsearch/v8 => ../..
78

89
require github.com/elastic/go-elasticsearch/v8 v8.0.0-00010101000000-000000000000
910

1011
require (
11-
github.com/elastic/elastic-transport-go/v8 v8.6.0 // indirect
12+
github.com/elastic/elastic-transport-go/v8 v8.6.1 // indirect
1213
github.com/go-logr/logr v1.4.2 // indirect
1314
github.com/go-logr/stdr v1.2.2 // indirect
1415
go.opentelemetry.io/otel v1.28.0 // indirect

_examples/security/go.sum

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=
22
github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
3-
github.com/elastic/elastic-transport-go/v8 v8.6.0 h1:Y2S/FBjx1LlCv5m6pWAF2kDJAHoSjSRSJCApolgfthA=
4-
github.com/elastic/elastic-transport-go/v8 v8.6.0/go.mod h1:YLHer5cj0csTzNFXoNQ8qhtGY1GTvSqPnKWKaqQE3Hk=
3+
github.com/elastic/elastic-transport-go/v8 v8.6.1 h1:h2jQRqH6eLGiBSN4eZbQnJLtL4bC5b4lfVFRjw2R4e4=
4+
github.com/elastic/elastic-transport-go/v8 v8.6.1/go.mod h1:YLHer5cj0csTzNFXoNQ8qhtGY1GTvSqPnKWKaqQE3Hk=
55
github.com/go-logr/logr v1.2.2/go.mod h1:jdQByPbusPIv2/zmleS9BjJVeZ6kBagPoEUsqbVz/1A=
66
github.com/go-logr/logr v1.4.1 h1:pKouT5E8xu9zeFC39JXRDukb6JFQPXM5p5I91188VAQ=
77
github.com/go-logr/logr v1.4.1/go.mod h1:9T104GzyrTigFIr8wt5mBrctHMim0Nb2HLGrmQ40KvY=

_examples/xkcdsearch/go.mod

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
module github.com/elastic/go-elasticsearch/v8/_examples/xkcdsearch
22

33
go 1.21
4+
45
toolchain go1.21.0
56

67
replace github.com/elastic/go-elasticsearch/v8 => ../..
@@ -13,7 +14,7 @@ require (
1314
)
1415

1516
require (
16-
github.com/elastic/elastic-transport-go/v8 v8.6.0 // indirect
17+
github.com/elastic/elastic-transport-go/v8 v8.6.1 // indirect
1718
github.com/go-logr/logr v1.4.2 // indirect
1819
github.com/go-logr/stdr v1.2.2 // indirect
1920
github.com/inconshreveable/mousetrap v1.0.0 // indirect

_examples/xkcdsearch/go.sum

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=
22
github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
3-
github.com/elastic/elastic-transport-go/v8 v8.6.0 h1:Y2S/FBjx1LlCv5m6pWAF2kDJAHoSjSRSJCApolgfthA=
4-
github.com/elastic/elastic-transport-go/v8 v8.6.0/go.mod h1:YLHer5cj0csTzNFXoNQ8qhtGY1GTvSqPnKWKaqQE3Hk=
3+
github.com/elastic/elastic-transport-go/v8 v8.6.1 h1:h2jQRqH6eLGiBSN4eZbQnJLtL4bC5b4lfVFRjw2R4e4=
4+
github.com/elastic/elastic-transport-go/v8 v8.6.1/go.mod h1:YLHer5cj0csTzNFXoNQ8qhtGY1GTvSqPnKWKaqQE3Hk=
55
github.com/go-logr/logr v1.2.2/go.mod h1:jdQByPbusPIv2/zmleS9BjJVeZ6kBagPoEUsqbVz/1A=
66
github.com/go-logr/logr v1.4.2 h1:6pFjapn8bFcIbiKo3XT4j/BhANplGihG6tvd+8rYgrY=
77
github.com/go-logr/logr v1.4.2/go.mod h1:9T104GzyrTigFIr8wt5mBrctHMim0Nb2HLGrmQ40KvY=

0 commit comments

Comments
 (0)