-
Notifications
You must be signed in to change notification settings - Fork 88
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Upgrade Go version to 1.21+ and add support for new object (#237)
* [ADD] Support zone_forward DNS object * [IMP] Updated Go Version to support 1.21 and above with updating dependent libs. * added E2E test cases for Forward zone. (#232) * added unit test cases for Forward zone. (#234) * updated go version for travis CI run (#236) * Add release notes and changelog (#235) * Add release notes and changelog * Update CHANGELOG.md --------- Co-authored-by: Aish-sp <[email protected]> Co-authored-by: Jaykumar Chhatbar <[email protected]>
- Loading branch information
1 parent
b3db346
commit 0e7c3b2
Showing
386 changed files
with
24,086 additions
and
8,809 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
language: go | ||
|
||
go: | ||
- 1.15 | ||
- 1.21 | ||
|
||
env: | ||
- GO111MODULE=auto | ||
|
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,18 +1,17 @@ | ||
module github.com/infobloxopen/infoblox-go-client/v2 | ||
|
||
go 1.17 | ||
go 1.21 | ||
|
||
require ( | ||
github.com/onsi/ginkgo/v2 v2.1.4 | ||
github.com/onsi/gomega v1.19.0 | ||
github.com/sirupsen/logrus v1.8.0 | ||
golang.org/x/net v0.7.0 | ||
github.com/sirupsen/logrus v1.9.3 | ||
golang.org/x/net v0.24.0 | ||
) | ||
|
||
require ( | ||
github.com/magefile/mage v1.10.0 // indirect | ||
github.com/stretchr/testify v1.5.1 // indirect | ||
golang.org/x/sys v0.5.0 // indirect | ||
golang.org/x/text v0.7.0 // indirect | ||
github.com/stretchr/testify v1.8.4 // indirect | ||
golang.org/x/sys v0.19.0 // indirect | ||
golang.org/x/text v0.14.0 // indirect | ||
gopkg.in/yaml.v2 v2.4.0 // indirect | ||
) |
Oops, something went wrong.