Skip to content

Commit 149364c

Browse files
authored
Release v0.37 (#109)
2 parents 5134ce1 + 1c69c7e commit 149364c

File tree

300 files changed

+16052
-4763
lines changed

Some content is hidden

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

300 files changed

+16052
-4763
lines changed

.bingo/.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,3 +11,4 @@
1111
!variables.env
1212

1313
*tmp.mod
14+
*tmp.sum

.bingo/README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ This is directory which stores Go modules with pinned buildable package that is
66
* Run `bingo get <tool>` to install <tool> that have own module file in this directory.
77
* For Makefile: Make sure to put `include .bingo/Variables.mk` in your Makefile, then use $(<upper case tool name>) variable where <tool> is the .bingo/<tool>.mod.
88
* For shell: Run `source .bingo/variables.env` to source all environment variable for each tool.
9-
* For go: Import `.bingo/variables.go` to for variable names.
109
* See https://github.com/bwplotka/bingo or -h on how to add, remove or change binaries dependencies.
1110

1211
## Requirements

.bingo/Variables.mk

Lines changed: 31 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Auto generated binary variables helper managed by https://github.com/bwplotka/bingo v0.8. DO NOT EDIT.
1+
# Auto generated binary variables helper managed by https://github.com/bwplotka/bingo v0.9. DO NOT EDIT.
22
# All tools are designed to be build inside $GOBIN.
33
BINGO_DIR := $(dir $(lastword $(MAKEFILE_LIST)))
44
GOPATH ?= $(shell go env GOPATH)
@@ -17,41 +17,47 @@ GO ?= $(shell which go)
1717
# @echo "Running alertmanager"
1818
# @$(ALERTMANAGER) <flags/args..>
1919
#
20-
ALERTMANAGER := $(GOBIN)/alertmanager-v0.24.0
20+
ALERTMANAGER := $(GOBIN)/alertmanager-v0.27.0
2121
$(ALERTMANAGER): $(BINGO_DIR)/alertmanager.mod
2222
@# Install binary/ries using Go 1.14+ build command. This is using bwplotka/bingo-controlled, separate go module with pinned dependencies.
23-
@echo "(re)installing $(GOBIN)/alertmanager-v0.24.0"
24-
@cd $(BINGO_DIR) && GOWORK=off $(GO) build -mod=mod -modfile=alertmanager.mod -o=$(GOBIN)/alertmanager-v0.24.0 "github.com/prometheus/alertmanager/cmd/alertmanager"
23+
@echo "(re)installing $(GOBIN)/alertmanager-v0.27.0"
24+
@cd $(BINGO_DIR) && GOWORK=off $(GO) build -mod=mod -modfile=alertmanager.mod -o=$(GOBIN)/alertmanager-v0.27.0 "github.com/prometheus/alertmanager/cmd/alertmanager"
2525

26-
BINGO := $(GOBIN)/bingo-v0.8.1-0.20230820182247-0568407746a2
26+
BINGO := $(GOBIN)/bingo-v0.9.0
2727
$(BINGO): $(BINGO_DIR)/bingo.mod
2828
@# Install binary/ries using Go 1.14+ build command. This is using bwplotka/bingo-controlled, separate go module with pinned dependencies.
29-
@echo "(re)installing $(GOBIN)/bingo-v0.8.1-0.20230820182247-0568407746a2"
30-
@cd $(BINGO_DIR) && GOWORK=off $(GO) build -mod=mod -modfile=bingo.mod -o=$(GOBIN)/bingo-v0.8.1-0.20230820182247-0568407746a2 "github.com/bwplotka/bingo"
29+
@echo "(re)installing $(GOBIN)/bingo-v0.9.0"
30+
@cd $(BINGO_DIR) && GOWORK=off $(GO) build -mod=mod -modfile=bingo.mod -o=$(GOBIN)/bingo-v0.9.0 "github.com/bwplotka/bingo"
3131

32-
FAILLINT := $(GOBIN)/faillint-v1.11.0
32+
CAPNPC_GO := $(GOBIN)/capnpc-go-v3.0.1-alpha.2.0.20240830165715-46ccd63a72af
33+
$(CAPNPC_GO): $(BINGO_DIR)/capnpc-go.mod
34+
@# Install binary/ries using Go 1.14+ build command. This is using bwplotka/bingo-controlled, separate go module with pinned dependencies.
35+
@echo "(re)installing $(GOBIN)/capnpc-go-v3.0.1-alpha.2.0.20240830165715-46ccd63a72af"
36+
@cd $(BINGO_DIR) && GOWORK=off $(GO) build -mod=mod -modfile=capnpc-go.mod -o=$(GOBIN)/capnpc-go-v3.0.1-alpha.2.0.20240830165715-46ccd63a72af "capnproto.org/go/capnp/v3/capnpc-go"
37+
38+
FAILLINT := $(GOBIN)/faillint-v1.13.0
3339
$(FAILLINT): $(BINGO_DIR)/faillint.mod
3440
@# Install binary/ries using Go 1.14+ build command. This is using bwplotka/bingo-controlled, separate go module with pinned dependencies.
35-
@echo "(re)installing $(GOBIN)/faillint-v1.11.0"
36-
@cd $(BINGO_DIR) && GOWORK=off $(GO) build -mod=mod -modfile=faillint.mod -o=$(GOBIN)/faillint-v1.11.0 "github.com/fatih/faillint"
41+
@echo "(re)installing $(GOBIN)/faillint-v1.13.0"
42+
@cd $(BINGO_DIR) && GOWORK=off $(GO) build -mod=mod -modfile=faillint.mod -o=$(GOBIN)/faillint-v1.13.0 "github.com/fatih/faillint"
3743

38-
GOIMPORTS := $(GOBIN)/goimports-v0.12.0
44+
GOIMPORTS := $(GOBIN)/goimports-v0.23.0
3945
$(GOIMPORTS): $(BINGO_DIR)/goimports.mod
4046
@# Install binary/ries using Go 1.14+ build command. This is using bwplotka/bingo-controlled, separate go module with pinned dependencies.
41-
@echo "(re)installing $(GOBIN)/goimports-v0.12.0"
42-
@cd $(BINGO_DIR) && GOWORK=off $(GO) build -mod=mod -modfile=goimports.mod -o=$(GOBIN)/goimports-v0.12.0 "golang.org/x/tools/cmd/goimports"
47+
@echo "(re)installing $(GOBIN)/goimports-v0.23.0"
48+
@cd $(BINGO_DIR) && GOWORK=off $(GO) build -mod=mod -modfile=goimports.mod -o=$(GOBIN)/goimports-v0.23.0 "golang.org/x/tools/cmd/goimports"
4349

4450
GOJSONTOYAML := $(GOBIN)/gojsontoyaml-v0.1.0
4551
$(GOJSONTOYAML): $(BINGO_DIR)/gojsontoyaml.mod
4652
@# Install binary/ries using Go 1.14+ build command. This is using bwplotka/bingo-controlled, separate go module with pinned dependencies.
4753
@echo "(re)installing $(GOBIN)/gojsontoyaml-v0.1.0"
4854
@cd $(BINGO_DIR) && GOWORK=off $(GO) build -mod=mod -modfile=gojsontoyaml.mod -o=$(GOBIN)/gojsontoyaml-v0.1.0 "github.com/brancz/gojsontoyaml"
4955

50-
GOLANGCI_LINT := $(GOBIN)/golangci-lint-v1.54.1
56+
GOLANGCI_LINT := $(GOBIN)/golangci-lint-v1.61.0
5157
$(GOLANGCI_LINT): $(BINGO_DIR)/golangci-lint.mod
5258
@# Install binary/ries using Go 1.14+ build command. This is using bwplotka/bingo-controlled, separate go module with pinned dependencies.
53-
@echo "(re)installing $(GOBIN)/golangci-lint-v1.54.1"
54-
@cd $(BINGO_DIR) && GOWORK=off $(GO) build -mod=mod -modfile=golangci-lint.mod -o=$(GOBIN)/golangci-lint-v1.54.1 "github.com/golangci/golangci-lint/cmd/golangci-lint"
59+
@echo "(re)installing $(GOBIN)/golangci-lint-v1.61.0"
60+
@cd $(BINGO_DIR) && GOWORK=off $(GO) build -mod=mod -modfile=golangci-lint.mod -o=$(GOBIN)/golangci-lint-v1.61.0 "github.com/golangci/golangci-lint/cmd/golangci-lint"
5561

5662
GOTESPLIT := $(GOBIN)/gotesplit-v0.2.1
5763
$(GOTESPLIT): $(BINGO_DIR)/gotesplit.mod
@@ -95,23 +101,23 @@ $(MDOX): $(BINGO_DIR)/mdox.mod
95101
@echo "(re)installing $(GOBIN)/mdox-v0.9.1-0.20220713110358-25b9abcf90a0"
96102
@cd $(BINGO_DIR) && GOWORK=off $(GO) build -mod=mod -modfile=mdox.mod -o=$(GOBIN)/mdox-v0.9.1-0.20220713110358-25b9abcf90a0 "github.com/bwplotka/mdox"
97103

98-
MINIO := $(GOBIN)/minio-v0.0.0-20220720015624-ce8397f7d944
104+
MINIO := $(GOBIN)/minio-v0.0.0-20241014163537-3da7c9cce3de
99105
$(MINIO): $(BINGO_DIR)/minio.mod
100106
@# Install binary/ries using Go 1.14+ build command. This is using bwplotka/bingo-controlled, separate go module with pinned dependencies.
101-
@echo "(re)installing $(GOBIN)/minio-v0.0.0-20220720015624-ce8397f7d944"
102-
@cd $(BINGO_DIR) && GOWORK=off $(GO) build -mod=mod -modfile=minio.mod -o=$(GOBIN)/minio-v0.0.0-20220720015624-ce8397f7d944 "github.com/minio/minio"
107+
@echo "(re)installing $(GOBIN)/minio-v0.0.0-20241014163537-3da7c9cce3de"
108+
@cd $(BINGO_DIR) && GOWORK=off $(GO) build -mod=mod -modfile=minio.mod -o=$(GOBIN)/minio-v0.0.0-20241014163537-3da7c9cce3de "github.com/minio/minio"
103109

104110
PROMDOC := $(GOBIN)/promdoc-v0.8.0
105111
$(PROMDOC): $(BINGO_DIR)/promdoc.mod
106112
@# Install binary/ries using Go 1.14+ build command. This is using bwplotka/bingo-controlled, separate go module with pinned dependencies.
107113
@echo "(re)installing $(GOBIN)/promdoc-v0.8.0"
108114
@cd $(BINGO_DIR) && GOWORK=off $(GO) build -mod=mod -modfile=promdoc.mod -o=$(GOBIN)/promdoc-v0.8.0 "github.com/plexsystems/promdoc"
109115

110-
PROMETHEUS := $(GOBIN)/prometheus-v0.37.0
116+
PROMETHEUS := $(GOBIN)/prometheus-v0.54.1
111117
$(PROMETHEUS): $(BINGO_DIR)/prometheus.mod
112118
@# Install binary/ries using Go 1.14+ build command. This is using bwplotka/bingo-controlled, separate go module with pinned dependencies.
113-
@echo "(re)installing $(GOBIN)/prometheus-v0.37.0"
114-
@cd $(BINGO_DIR) && GOWORK=off $(GO) build -mod=mod -modfile=prometheus.mod -o=$(GOBIN)/prometheus-v0.37.0 "github.com/prometheus/prometheus/cmd/prometheus"
119+
@echo "(re)installing $(GOBIN)/prometheus-v0.54.1"
120+
@cd $(BINGO_DIR) && GOWORK=off $(GO) build -mod=mod -modfile=prometheus.mod -o=$(GOBIN)/prometheus-v0.54.1 "github.com/prometheus/prometheus/cmd/prometheus"
115121

116122
PROMTOOL := $(GOBIN)/promtool-v0.47.0
117123
$(PROMTOOL): $(BINGO_DIR)/promtool.mod
@@ -131,9 +137,9 @@ $(PROTOC_GEN_GOGOFAST): $(BINGO_DIR)/protoc-gen-gogofast.mod
131137
@echo "(re)installing $(GOBIN)/protoc-gen-gogofast-v1.3.2"
132138
@cd $(BINGO_DIR) && GOWORK=off $(GO) build -mod=mod -modfile=protoc-gen-gogofast.mod -o=$(GOBIN)/protoc-gen-gogofast-v1.3.2 "github.com/gogo/protobuf/protoc-gen-gogofast"
133139

134-
SHFMT := $(GOBIN)/shfmt-v3.7.0
140+
SHFMT := $(GOBIN)/shfmt-v3.8.0
135141
$(SHFMT): $(BINGO_DIR)/shfmt.mod
136142
@# Install binary/ries using Go 1.14+ build command. This is using bwplotka/bingo-controlled, separate go module with pinned dependencies.
137-
@echo "(re)installing $(GOBIN)/shfmt-v3.7.0"
138-
@cd $(BINGO_DIR) && GOWORK=off $(GO) build -mod=mod -modfile=shfmt.mod -o=$(GOBIN)/shfmt-v3.7.0 "mvdan.cc/sh/v3/cmd/shfmt"
143+
@echo "(re)installing $(GOBIN)/shfmt-v3.8.0"
144+
@cd $(BINGO_DIR) && GOWORK=off $(GO) build -mod=mod -modfile=shfmt.mod -o=$(GOBIN)/shfmt-v3.8.0 "mvdan.cc/sh/v3/cmd/shfmt"
139145

.bingo/alertmanager.mod

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
module _ // Auto generated by https://github.com/bwplotka/bingo. DO NOT EDIT
22

3-
go 1.14
3+
go 1.21
44

5-
require github.com/prometheus/alertmanager v0.24.0 // cmd/alertmanager
5+
toolchain go1.23.1
6+
7+
require github.com/prometheus/alertmanager v0.27.0 // cmd/alertmanager

0 commit comments

Comments
 (0)