Skip to content

Commit 8b863f9

Browse files
authored
[8.14] Update apis (#869)
* API: Update typed API 8.14.0 (07bf825) * update dependencies * update internal dependencies * API: Update API v8.14.0 (b0ca71d) * update incompatible tests * exclude fetch_fields due to inconsistent results
1 parent 83a6d9a commit 8b863f9

File tree

2,968 files changed

+8369
-6101
lines changed

Some content is hidden

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

2,968 files changed

+8369
-6101
lines changed

esapi/api._.go

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

esapi/api.xpack.security.create_service_token.go

+5-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

go.mod

+1-2
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,7 @@ require (
1010
require (
1111
github.com/go-logr/logr v1.4.1 // indirect
1212
github.com/go-logr/stdr v1.2.2 // indirect
13-
github.com/stretchr/testify v1.9.0 // indirect
1413
go.opentelemetry.io/otel v1.24.0 // indirect
1514
go.opentelemetry.io/otel/metric v1.24.0 // indirect
16-
golang.org/x/sys v0.19.0 // indirect
15+
golang.org/x/sys v0.20.0 // indirect
1716
)

go.sum

+4-4
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ github.com/google/go-cmp v0.6.0 h1:ofyhxvXcZhMsU5ulbFiLKl/XBFqE1GSq7atu8tAmTRI=
1111
github.com/google/go-cmp v0.6.0/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY=
1212
github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM=
1313
github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=
14-
github.com/stretchr/testify v1.9.0 h1:HtqpIVDClZ4nwg75+f6Lvsy/wHu+3BoSGCbBAcpTsTg=
15-
github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY=
14+
github.com/stretchr/testify v1.8.4 h1:CcVxjf3Q8PM0mHUKJCdn+eZZtm5yQwehR5yeSVQQcUk=
15+
github.com/stretchr/testify v1.8.4/go.mod h1:sz/lmYIOXD/1dqDmKjjqLyZ2RngseejIcXlSw2iwfAo=
1616
go.opentelemetry.io/otel v1.24.0 h1:0LAOdjNmQeSTzGBzduGe/rU4tZhMwL5rWgtp9Ku5Jfo=
1717
go.opentelemetry.io/otel v1.24.0/go.mod h1:W7b9Ozg4nkF5tWI5zsXkaKKDjdVjpD4oAt9Qi/MArHo=
1818
go.opentelemetry.io/otel/metric v1.24.0 h1:6EhoGWWK28x1fbpA4tYTOWBkPefTDQnb8WSGXlc88kI=
@@ -21,7 +21,7 @@ go.opentelemetry.io/otel/sdk v1.21.0 h1:FTt8qirL1EysG6sTQRZ5TokkU8d0ugCj8htOgThZ
2121
go.opentelemetry.io/otel/sdk v1.21.0/go.mod h1:Nna6Yv7PWTdgJHVRD9hIYywQBRx7pbox6nwBnZIxl/E=
2222
go.opentelemetry.io/otel/trace v1.24.0 h1:CsKnnL4dUAr/0llH9FKuc698G04IrpWV0MQA/Y1YELI=
2323
go.opentelemetry.io/otel/trace v1.24.0/go.mod h1:HPc3Xr/cOApsBI154IU0OI0HJexz+aw5uPdbs3UCjNU=
24-
golang.org/x/sys v0.19.0 h1:q5f1RH2jigJ1MoAWp2KTp3gm5zAGFUTarQZ5U386+4o=
25-
golang.org/x/sys v0.19.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA=
24+
golang.org/x/sys v0.20.0 h1:Od9JTbYCk261bKm4M/mw7AklTlFYIa0bIp9BgSm1S8Y=
25+
golang.org/x/sys v0.20.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA=
2626
gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA=
2727
gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=

internal/build/cmd/generate/commands/gentests/skips.go

+2-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,8 @@ var skipFiles = []string{
6262
"dlm/10_usage.yml", // incompatible float expansion
6363
"api_key/60_admin_user.yml",
6464
".*esql\\/.*.yml",
65-
"deprecation/10_basic.yml", // incompatible test generation
65+
"deprecation/10_basic.yml", // incompatible test generation
66+
"search/520_fetch_fields.yml", // disabled for inconsistency
6667
}
6768

6869
// TODO: Comments into descriptions for `Skip()`

internal/build/go.mod

+3-3
Original file line numberDiff line numberDiff line change
@@ -9,16 +9,16 @@ require (
99
github.com/elastic/go-elasticsearch/v8 v8.0.0-20210817150010-57d659deaca7
1010
github.com/spf13/cobra v1.8.0
1111
golang.org/x/crypto v0.21.0
12-
golang.org/x/tools v0.21.0
12+
golang.org/x/tools v0.22.0
1313
gopkg.in/yaml.v2 v2.4.0
1414
)
1515

1616
require (
1717
github.com/dlclark/regexp2 v1.4.0 // indirect
1818
github.com/inconshreveable/mousetrap v1.1.0 // indirect
1919
github.com/spf13/pflag v1.0.5 // indirect
20-
golang.org/x/mod v0.17.0 // indirect
20+
golang.org/x/mod v0.18.0 // indirect
2121
golang.org/x/sync v0.7.0 // indirect
22-
golang.org/x/sys v0.20.0 // indirect
22+
golang.org/x/sys v0.21.0 // indirect
2323
golang.org/x/term v0.18.0 // indirect
2424
)

internal/build/go.sum

+6
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,8 @@ golang.org/x/mod v0.16.0 h1:QX4fJ0Rr5cPQCF7O9lh9Se4pmwfwskqZfq5moyldzic=
2424
golang.org/x/mod v0.16.0/go.mod h1:hTbmBsO62+eylJbnUtE2MGJUyE7QWk4xUqPFrRgJ+7c=
2525
golang.org/x/mod v0.17.0 h1:zY54UmvipHiNd+pm+m0x9KhZ9hl1/7QNMyxXbc6ICqA=
2626
golang.org/x/mod v0.17.0/go.mod h1:hTbmBsO62+eylJbnUtE2MGJUyE7QWk4xUqPFrRgJ+7c=
27+
golang.org/x/mod v0.18.0 h1:5+9lSbEzPSdWkH32vYPBwEpX8KwDbM52Ud9xBUvNlb0=
28+
golang.org/x/mod v0.18.0/go.mod h1:hTbmBsO62+eylJbnUtE2MGJUyE7QWk4xUqPFrRgJ+7c=
2729
golang.org/x/sync v0.6.0 h1:5BMeUDZ7vkXGfEr1x9B4bRcTH4lpkTkpdh0T/J+qjbQ=
2830
golang.org/x/sync v0.6.0/go.mod h1:Czt+wKu1gCyEFDUtn0jG5QVvpJ6rzVqr5aXyt9drQfk=
2931
golang.org/x/sync v0.7.0 h1:YsImfSBoP9QPYL0xyKJPq0gcaJdG3rInoqxTWbfQu9M=
@@ -32,12 +34,16 @@ golang.org/x/sys v0.18.0 h1:DBdB3niSjOA/O0blCZBqDefyWNYveAYMNF1Wum0DYQ4=
3234
golang.org/x/sys v0.18.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA=
3335
golang.org/x/sys v0.20.0 h1:Od9JTbYCk261bKm4M/mw7AklTlFYIa0bIp9BgSm1S8Y=
3436
golang.org/x/sys v0.20.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA=
37+
golang.org/x/sys v0.21.0 h1:rF+pYz3DAGSQAxAu1CbC7catZg4ebC4UIeIhKxBZvws=
38+
golang.org/x/sys v0.21.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA=
3539
golang.org/x/term v0.18.0 h1:FcHjZXDMxI8mM3nwhX9HlKop4C0YQvCVCdwYl2wOtE8=
3640
golang.org/x/term v0.18.0/go.mod h1:ILwASektA3OnRv7amZ1xhE/KTR+u50pbXfZ03+6Nx58=
3741
golang.org/x/tools v0.19.0 h1:tfGCXNR1OsFG+sVdLAitlpjAvD/I6dHDKnYrpEZUHkw=
3842
golang.org/x/tools v0.19.0/go.mod h1:qoJWxmGSIBmAeriMx19ogtrEPrGtDbPK634QFIcLAhc=
3943
golang.org/x/tools v0.21.0 h1:qc0xYgIbsSDt9EyWz05J5wfa7LOVW0YTLOXrqdLAWIw=
4044
golang.org/x/tools v0.21.0/go.mod h1:aiJjzUbINMkxbQROHiO6hDPo2LHcIPhhQsa9DLh0yGk=
45+
golang.org/x/tools v0.22.0 h1:gqSGLZqv+AI9lIQzniJ0nZDRG5GBPsSi+DRNHWNz6yA=
46+
golang.org/x/tools v0.22.0/go.mod h1:aCwcsjqvq7Yqt6TNyX7QMU2enbQ/Gt0bo6krSeEri+c=
4147
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405 h1:yhCVgyC4o1eVCa2tZl7eS0r+SDo693bJlVdllGtEeKM=
4248
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
4349
gopkg.in/yaml.v2 v2.4.0 h1:D8xgwECY7CYvx+Y2n4sBz93Jn9JRvxdiyyo8CTfuKaY=

typedapi/api._.go

+20-15
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

typedapi/asyncsearch/delete/delete.go

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

typedapi/asyncsearch/delete/response.go

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

typedapi/asyncsearch/get/get.go

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

typedapi/asyncsearch/get/response.go

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

typedapi/asyncsearch/status/response.go

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

typedapi/asyncsearch/status/status.go

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

typedapi/asyncsearch/submit/request.go

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

typedapi/asyncsearch/submit/response.go

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

typedapi/asyncsearch/submit/submit.go

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

typedapi/autoscaling/deleteautoscalingpolicy/delete_autoscaling_policy.go

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

typedapi/autoscaling/deleteautoscalingpolicy/response.go

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

typedapi/autoscaling/getautoscalingcapacity/get_autoscaling_capacity.go

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

typedapi/autoscaling/getautoscalingcapacity/response.go

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)