-
Notifications
You must be signed in to change notification settings - Fork 40
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
maint: Update minimum go version to 1.19 (#245)
## Which problem is this PR solving? This project is built with old versions of go, and can no longer take newer dependencies such as klauspot/compress which require go 1.19 or later. This PR updates the minimum go version to 1.19 and runs CI tests in 1.19 -> 1.22 ## Short description of the changes - Update go version in go.mod & run go mod tidy - Update CircleCI tested go versions to test 1.19 through 1.22
- Loading branch information
1 parent
ccff6c1
commit 2e77fd5
Showing
3 changed files
with
14 additions
and
11 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,24 @@ | ||
module github.com/honeycombio/libhoney-go | ||
|
||
go 1.14 | ||
go 1.19 | ||
|
||
require ( | ||
github.com/DataDog/zstd v1.5.5 | ||
github.com/facebookgo/clock v0.0.0-20150410010913-600d898af40a // indirect | ||
github.com/facebookgo/ensure v0.0.0-20200202191622-63f1cf65ac4c // indirect | ||
github.com/facebookgo/limitgroup v0.0.0-20150612190941-6abd8d71ec01 // indirect | ||
github.com/facebookgo/muster v0.0.0-20150708232844-fd3d7953fd52 | ||
github.com/facebookgo/stack v0.0.0-20160209184415-751773369052 // indirect | ||
github.com/facebookgo/subset v0.0.0-20200203212716-c811ad88dec4 // indirect | ||
github.com/klauspost/compress v1.16.6 | ||
github.com/stretchr/testify v1.8.4 | ||
github.com/vmihailenco/msgpack/v5 v5.3.5 | ||
gopkg.in/alexcesaro/statsd.v2 v2.0.0 | ||
) | ||
|
||
require ( | ||
github.com/davecgh/go-spew v1.1.1 // indirect | ||
github.com/facebookgo/clock v0.0.0-20150410010913-600d898af40a // indirect | ||
github.com/facebookgo/ensure v0.0.0-20200202191622-63f1cf65ac4c // indirect | ||
github.com/facebookgo/limitgroup v0.0.0-20150612190941-6abd8d71ec01 // indirect | ||
github.com/facebookgo/stack v0.0.0-20160209184415-751773369052 // indirect | ||
github.com/facebookgo/subset v0.0.0-20200203212716-c811ad88dec4 // indirect | ||
github.com/pmezard/go-difflib v1.0.0 // indirect | ||
github.com/vmihailenco/tagparser/v2 v2.0.0 // indirect | ||
gopkg.in/yaml.v3 v3.0.1 // indirect | ||
) |
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