-
Notifications
You must be signed in to change notification settings - Fork 324
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Use `make -C dir` instead of `cd dir && make` * Cleanup uncessary working_directory in config. * Update Go modules to latest. * Drop support for old Go versions. * Cleanup old Go version build tweaks. * Fixup some deprecated method use. Signed-off-by: SuperQ <superq@gmail.com>
- Loading branch information
Showing
10 changed files
with
54 additions
and
50 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,17 @@ | ||
module github.com/prometheus/common | ||
|
||
require ( | ||
github.com/go-kit/log v0.1.0 | ||
github.com/golang/protobuf v1.4.3 | ||
github.com/go-kit/log v0.2.0 | ||
github.com/golang/protobuf v1.5.2 | ||
github.com/julienschmidt/httprouter v1.3.0 | ||
github.com/matttproud/golang_protobuf_extensions v1.0.1 | ||
github.com/mwitkow/go-conntrack v0.0.0-20190716064945-2f068394615f | ||
github.com/prometheus/client_golang v1.11.0 | ||
github.com/prometheus/client_golang v1.12.1 | ||
github.com/prometheus/client_model v0.2.0 | ||
golang.org/x/net v0.0.0-20210525063256-abc453219eb5 | ||
golang.org/x/oauth2 v0.0.0-20210514164344-f6687ab2804c | ||
golang.org/x/net v0.0.0-20220225172249-27dd8689420f | ||
golang.org/x/oauth2 v0.0.0-20220223155221-ee480838109b | ||
gopkg.in/alecthomas/kingpin.v2 v2.2.6 | ||
gopkg.in/yaml.v2 v2.4.0 | ||
) | ||
|
||
go 1.13 | ||
go 1.15 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters