Skip to content

Commit 6972bb6

Browse files
authored
Bump main to 9.1 (#970)
* Bump version to 9.1.0 * Bump github workflows * Generator: exclude statically implemented params from loading * Update API v9.1.0 (e653547) * Update TypedAPI v9.1.0 (ea99172) * Propagate transport update to examples and benchmarks * Update skip list
1 parent 2a0a142 commit 6972bb6

File tree

4,902 files changed

+177442
-29466
lines changed

Some content is hidden

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

4,902 files changed

+177442
-29466
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: 9.1.0-SNAPSHOT
88
WORKSPACE: /tmp/go-elasticsearch
99
matrix:
1010
setup:

.github/workflows/build.yml

+5-7
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,13 @@ on:
77
branches:
88
- github-actions
99
- main
10-
- "8.12"
11-
- "8.13"
12-
- "7.17"
10+
- "8.*"
11+
- "9.*"
1312
pull_request:
1413
branches:
15-
- "main"
16-
- "8.12"
17-
- "8.13"
18-
- "7.17"
14+
- main
15+
- "8.*"
16+
- "9.*"
1917

2018
env:
2119
GITHUB_ACTIONS: true

.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:9.1.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:9.1.0-SNAPSHOT
4747
ELASTICSEARCH_URL: https://elastic:elastic@localhost:9200
4848
runs-on: ubuntu-latest
4949
steps:

.github/workflows/test-integration.yml

+4-6
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,13 @@ on:
77
branches:
88
- github-actions
99
- main
10-
- "8.12"
11-
- "8.13"
12-
- "7.17"
10+
- "8.*"
11+
- "9.*"
1312
pull_request:
1413
branches:
1514
- main
16-
- "8.12"
17-
- "8.13"
18-
- "7.17"
15+
- "8.*"
16+
- "9.*"
1917

2018
env:
2119
GITHUB_ACTIONS: true

.github/workflows/test-unit.yml

+4-6
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,13 @@ on:
77
branches:
88
- github-actions
99
- main
10-
- "8.12"
11-
- "8.13"
12-
- "7.17"
10+
- "8.*"
11+
- "9.*"
1312
pull_request:
1413
branches:
1514
- main
16-
- "8.12"
17-
- "8.13"
18-
- "7.17"
15+
- "8.*"
16+
- "9.*"
1917

2018
env:
2119
GITHUB_ACTIONS: true

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 = "9.1.0-SNAPSHOT"
44

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

_benchmarks/benchmarks/go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ toolchain go1.22.0
77
replace github.com/elastic/go-elasticsearch/v8 => ../../
88

99
require (
10-
github.com/elastic/elastic-transport-go/v8 v8.6.0
10+
github.com/elastic/elastic-transport-go/v8 v8.6.1
1111
github.com/elastic/go-elasticsearch/v8 v8.0.0-20200408073057-6f36a473b19f
1212
github.com/fatih/color v1.7.0
1313
github.com/montanaflynn/stats v0.6.3

_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.22
4+
45
toolchain go1.22.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

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ replace github.com/elastic/go-elasticsearch/v8 => ../..
99
require github.com/elastic/go-elasticsearch/v8 v8.0.0-20210817150010-57d659deaca7
1010

1111
require (
12-
github.com/elastic/elastic-transport-go/v8 v8.6.0 // indirect
12+
github.com/elastic/elastic-transport-go/v8 v8.6.1 // indirect
1313
github.com/go-logr/logr v1.4.2 // indirect
1414
github.com/go-logr/stdr v1.2.2 // indirect
1515
go.opentelemetry.io/otel v1.28.0 // indirect

_examples/encoding/go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ require (
1414
)
1515

1616
require (
17-
github.com/elastic/elastic-transport-go/v8 v8.6.0 // indirect
17+
github.com/elastic/elastic-transport-go/v8 v8.6.1 // indirect
1818
github.com/go-logr/logr v1.4.2 // indirect
1919
github.com/go-logr/stdr v1.2.2 // indirect
2020
github.com/josharian/intern v1.0.0 // indirect

_examples/extension/go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ toolchain go1.22.0
77
replace github.com/elastic/go-elasticsearch/v8 => ../..
88

99
require (
10-
github.com/elastic/elastic-transport-go/v8 v8.6.0
10+
github.com/elastic/elastic-transport-go/v8 v8.6.1
1111
github.com/elastic/go-elasticsearch/v8 v8.13.1
1212
)
1313

_examples/fasthttp/go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ require (
1313

1414
require (
1515
github.com/andybalholm/brotli v1.0.4 // indirect
16-
github.com/elastic/elastic-transport-go/v8 v8.6.0 // indirect
16+
github.com/elastic/elastic-transport-go/v8 v8.6.1 // indirect
1717
github.com/go-logr/logr v1.4.2 // indirect
1818
github.com/go-logr/stdr v1.2.2 // indirect
1919
github.com/klauspost/compress v1.15.0 // indirect

_examples/instrumentation/go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ toolchain go1.22.0
77
replace github.com/elastic/go-elasticsearch/v8 => ../..
88

99
require (
10-
github.com/elastic/elastic-transport-go/v8 v8.6.0
10+
github.com/elastic/elastic-transport-go/v8 v8.6.1
1111
github.com/elastic/go-elasticsearch/v8 v8.0.0-20191002063538-b491ce54d752
1212
github.com/fatih/color v1.7.0
1313
go.elastic.co/apm v1.11.0

_examples/logging/go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ toolchain go1.22.0
77
replace github.com/elastic/go-elasticsearch/v8 => ../..
88

99
require (
10-
github.com/elastic/elastic-transport-go/v8 v8.6.0
10+
github.com/elastic/elastic-transport-go/v8 v8.6.1
1111
github.com/elastic/go-elasticsearch/v8 v8.0.0-00010101000000-000000000000
1212
github.com/rs/zerolog v1.32.0
1313
)

_examples/security/go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ replace github.com/elastic/go-elasticsearch/v8 => ../..
99
require github.com/elastic/go-elasticsearch/v8 v8.0.0-00010101000000-000000000000
1010

1111
require (
12-
github.com/elastic/elastic-transport-go/v8 v8.6.0 // indirect
12+
github.com/elastic/elastic-transport-go/v8 v8.6.1 // indirect
1313
github.com/go-logr/logr v1.4.2 // indirect
1414
github.com/go-logr/stdr v1.2.2 // indirect
1515
go.opentelemetry.io/otel v1.28.0 // indirect

_examples/xkcdsearch/go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ require (
1414
)
1515

1616
require (
17-
github.com/elastic/elastic-transport-go/v8 v8.6.0 // indirect
17+
github.com/elastic/elastic-transport-go/v8 v8.6.1 // indirect
1818
github.com/go-logr/logr v1.4.2 // indirect
1919
github.com/go-logr/stdr v1.2.2 // indirect
2020
github.com/inconshreveable/mousetrap v1.0.0 // indirect

0 commit comments

Comments
 (0)