Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

all: Update Go Module to Go 1.20 #357

Merged
merged 2 commits into from
Sep 11, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .changes/unreleased/BUG FIXES-20230908-135841.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
kind: BUG FIXES
body: 'all: All data sources now use native DNS resolution on macOS, which may fix
resolution when using VPNs or other tooling which adjusts the OS DNS resolver configuration'
time: 2023-09-08T13:58:41.544836+01:00
custom:
Issue: "357"
6 changes: 6 additions & 0 deletions .changes/unreleased/BUG FIXES-20230908-135858.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
kind: BUG FIXES
body: 'datasource/dns_cname_record_set: Removed lookup error if target of CNAME record
did not resolve, instead it will now always return the CNAME record'
time: 2023-09-08T13:58:58.204814+01:00
custom:
Issue: "357"
6 changes: 6 additions & 0 deletions .changes/unreleased/ENHANCEMENTS-20230908-135801.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
kind: ENHANCEMENTS
body: 'all: All data sources now respect the trust-ad resolver option to send the
AD bit in queries'
time: 2023-09-08T13:58:01.252631+01:00
custom:
Issue: "357"
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ The DNS provider supports resources that perform DNS updates ([RFC 2136](https:/
## Requirements

* [Terraform](https://www.terraform.io/downloads)
* [Go](https://go.dev/doc/install) (1.19)
* [Go](https://go.dev/doc/install) (1.20)
* [GNU Make](https://www.gnu.org/software/make/)
* [golangci-lint](https://golangci-lint.run/usage/install/#local-installation) (optional)

Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/hashicorp/terraform-provider-dns

go 1.19
go 1.20

require (
github.com/bodgit/tsig v1.2.2
Expand Down
2 changes: 1 addition & 1 deletion tools/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module tools

go 1.19
go 1.20

require (
github.com/hashicorp/copywrite v0.16.4
Expand Down
Loading