diff --git a/.changes/unreleased/BUG FIXES-20230908-135841.yaml b/.changes/unreleased/BUG FIXES-20230908-135841.yaml new file mode 100644 index 00000000..5c5c8b68 --- /dev/null +++ b/.changes/unreleased/BUG FIXES-20230908-135841.yaml @@ -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" diff --git a/.changes/unreleased/BUG FIXES-20230908-135858.yaml b/.changes/unreleased/BUG FIXES-20230908-135858.yaml new file mode 100644 index 00000000..42bfd072 --- /dev/null +++ b/.changes/unreleased/BUG FIXES-20230908-135858.yaml @@ -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" diff --git a/.changes/unreleased/ENHANCEMENTS-20230908-135801.yaml b/.changes/unreleased/ENHANCEMENTS-20230908-135801.yaml new file mode 100644 index 00000000..b28a802f --- /dev/null +++ b/.changes/unreleased/ENHANCEMENTS-20230908-135801.yaml @@ -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" diff --git a/README.md b/README.md index ddd97067..127259e7 100644 --- a/README.md +++ b/README.md @@ -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) diff --git a/go.mod b/go.mod index 8adb6605..835ae5ba 100644 --- a/go.mod +++ b/go.mod @@ -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 diff --git a/tools/go.mod b/tools/go.mod index 4ad28225..0fa655d1 100644 --- a/tools/go.mod +++ b/tools/go.mod @@ -1,6 +1,6 @@ module tools -go 1.19 +go 1.20 require ( github.com/hashicorp/copywrite v0.16.4