Skip to content

Commit e46c2bf

Browse files
dependabot[bot]mergify[bot]
authored andcommitted
build(deps): bump github.com/getkin/kin-openapi from 0.118.0 to 0.131.0 in /dev-tools (#4920)
* build(deps): bump github.com/getkin/kin-openapi in /dev-tools Bumps [github.com/getkin/kin-openapi](https://github.com/getkin/kin-openapi) from 0.118.0 to 0.131.0. - [Release notes](https://github.com/getkin/kin-openapi/releases) - [Commits](getkin/kin-openapi@v0.118.0...v0.131.0) --- updated-dependencies: - dependency-name: github.com/getkin/kin-openapi dependency-version: 0.131.0 dependency-type: indirect ... Signed-off-by: dependabot[bot] <support@github.com> * Replace github.com/deepmap/oapi-codegen with github.com/oapi-codegen/oapi-codegen and upgrade --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Shaunak Kashyap <ycombinator@gmail.com> (cherry picked from commit fc7115f) # Conflicts: # .golangci.yml # dev-tools/go.mod # dev-tools/go.sum # main.go
1 parent c1d536f commit e46c2bf

File tree

7 files changed

+472
-95
lines changed

7 files changed

+472
-95
lines changed

.golangci.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89,9 +89,25 @@ linters-settings:
8989
# minimal occurrences count to trigger, 3 by default
9090
min-occurrences: 2
9191

92+
<<<<<<< HEAD
9293
dupl:
9394
# tokens count to trigger issue, 150 by default
9495
threshold: 100
96+
=======
97+
gomoddirectives:
98+
# Allow local `replace` directives. Default is false.
99+
replace-local: false
100+
gomodguard:
101+
blocked:
102+
# List of blocked modules.
103+
modules:
104+
- github.com/bytedance/sonic:
105+
reason: "Federal restriction on bytedance"
106+
- github.com/elastic/beats/v7:
107+
reason: "There must be no Beats dependency, use elastic-agent-libs instead."
108+
- github.com/elastic/beats/elastic-agent:
109+
reason: "There must be no elastic-agent dependency, use elastic-agent-libs instead."
110+
>>>>>>> fc7115f (build(deps): bump github.com/getkin/kin-openapi from 0.118.0 to 0.131.0 in /dev-tools (#4920))
95111

96112
forbidigo:
97113
# Forbid the following identifiers

dev-tools/go.mod

Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
module github.com/elastic/fleet-server/dev-tools
2+
3+
go 1.24.0
4+
5+
tool (
6+
github.com/elastic/go-json-schema-generate/cmd/schema-generate
7+
github.com/elastic/go-licenser
8+
github.com/jstemmer/go-junit-report
9+
github.com/oapi-codegen/oapi-codegen/v2/cmd/oapi-codegen
10+
go.elastic.co/go-licence-detector
11+
golang.org/x/perf/cmd/benchstat
12+
)
13+
14+
require github.com/elastic/elastic-agent-libs v0.18.12
15+
16+
require (
17+
github.com/aclements/go-moremath v0.0.0-20210112150236-f10218a38794 // indirect
18+
github.com/cyphar/filepath-securejoin v0.2.5 // indirect
19+
github.com/dprotaso/go-yit v0.0.0-20220510233725-9ba8df137936 // indirect
20+
github.com/elastic/go-json-schema-generate v0.0.0-20220323152209-ec19b88f6b5e // indirect
21+
github.com/elastic/go-licenser v0.4.2 // indirect
22+
github.com/elastic/go-ucfg v0.8.5 // indirect
23+
github.com/elastic/pkcs8 v1.0.0 // indirect
24+
github.com/getkin/kin-openapi v0.131.0 // indirect
25+
github.com/go-openapi/jsonpointer v0.21.0 // indirect
26+
github.com/go-openapi/swag v0.23.0 // indirect
27+
github.com/google/licenseclassifier v0.0.0-20200402202327-879cb1424de0 // indirect
28+
github.com/josharian/intern v1.0.0 // indirect
29+
github.com/jstemmer/go-junit-report v1.0.0 // indirect
30+
github.com/mailru/easyjson v0.7.7 // indirect
31+
github.com/mohae/deepcopy v0.0.0-20170929034955-c48cc78d4826 // indirect
32+
github.com/oapi-codegen/oapi-codegen/v2 v2.4.1 // indirect
33+
github.com/oasdiff/yaml v0.0.0-20250309154309-f31be36b4037 // indirect
34+
github.com/oasdiff/yaml3 v0.0.0-20250309153720-d2182401db90 // indirect
35+
github.com/perimeterx/marshmallow v1.1.5 // indirect
36+
github.com/pkg/errors v0.9.1 // indirect
37+
github.com/sergi/go-diff v1.1.0 // indirect
38+
github.com/speakeasy-api/openapi-overlay v0.9.0 // indirect
39+
github.com/vmware-labs/yaml-jsonpath v0.3.2 // indirect
40+
go.elastic.co/ecszap v1.0.2 // indirect
41+
go.elastic.co/go-licence-detector v0.7.0 // indirect
42+
go.uber.org/multierr v1.11.0 // indirect
43+
go.uber.org/zap v1.27.0 // indirect
44+
golang.org/x/crypto v0.36.0 // indirect
45+
golang.org/x/mod v0.20.0 // indirect
46+
golang.org/x/perf v0.0.0-20250305200902-02a15fd477ba // indirect
47+
golang.org/x/sync v0.12.0 // indirect
48+
golang.org/x/sys v0.31.0 // indirect
49+
golang.org/x/text v0.23.0 // indirect
50+
golang.org/x/tools v0.21.1-0.20240508182429-e35e4ccd0d2d // indirect
51+
gopkg.in/yaml.v2 v2.4.0 // indirect
52+
gopkg.in/yaml.v3 v3.0.1 // indirect
53+
)

dev-tools/go.sum

Lines changed: 272 additions & 0 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)