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

tree-wide: fix references to the terraform-providers organization #101

Closed
wants to merge 1 commit into from
Closed
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
38 changes: 19 additions & 19 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ BUG FIXES:

## 2.2.0 (July 24, 2019)

* **New Data Source:** `dns_srv_record_set` [#70](https://github.com/terraform-providers/terraform-provider-dns/issues/70)
* **New Resource:** `dns_srv_record_set` [#70](https://github.com/terraform-providers/terraform-provider-dns/issues/70)
* **New Data Source:** `dns_srv_record_set` [#70](https://github.com/hashicorp/terraform-provider-dns/issues/70)
* **New Resource:** `dns_srv_record_set` [#70](https://github.com/hashicorp/terraform-provider-dns/issues/70)
* This release includes a stable version of Terraform SDK v0.12.5.
The provider should still retain full backwards compatibility with Terraform v0.11.x.
* Fix SOA detection logic to cover DNS servers returning a non-SOA record. [#79](https://github.com/terraform-providers/terraform-provider-dns/issues/79)
* Fix SOA detection logic to cover DNS servers returning a non-SOA record. [#79](https://github.com/hashicorp/terraform-provider-dns/issues/79)

## 2.1.1 (May 01, 2019)

Expand All @@ -24,12 +24,12 @@ BUG FIXES:

NEW FEATURES:

* **New Data Source:** `dns_mx_record_set` ([#71](https://github.com/terraform-providers/terraform-provider-dns/issues/71))
* **New Resource:** `dns_mx_record_set` ([#71](https://github.com/terraform-providers/terraform-provider-dns/issues/71))
* **New Resource:** `dns_txt_record_set` ([#72](https://github.com/terraform-providers/terraform-provider-dns/issues/72))
* All resources can now be imported ([#37](https://github.com/terraform-providers/terraform-provider-dns/issues/37))
* Allow the creation of apex records ([#69](https://github.com/terraform-providers/terraform-provider-dns/issues/69))
* Retry DNS queries on timeout ([#68](https://github.com/terraform-providers/terraform-provider-dns/issues/68))
* **New Data Source:** `dns_mx_record_set` ([#71](https://github.com/hashicorp/terraform-provider-dns/issues/71))
* **New Resource:** `dns_mx_record_set` ([#71](https://github.com/hashicorp/terraform-provider-dns/issues/71))
* **New Resource:** `dns_txt_record_set` ([#72](https://github.com/hashicorp/terraform-provider-dns/issues/72))
* All resources can now be imported ([#37](https://github.com/hashicorp/terraform-provider-dns/issues/37))
* Allow the creation of apex records ([#69](https://github.com/hashicorp/terraform-provider-dns/issues/69))
* Retry DNS queries on timeout ([#68](https://github.com/hashicorp/terraform-provider-dns/issues/68))

IMPROVEMENTS:

Expand All @@ -43,16 +43,16 @@ BACKWARDS INCOMPATIBILITIES / NOTES:

NEW FEATURES:

* Use signed requests when refreshing managed resources ([#35](https://github.com/terraform-providers/terraform-provider-dns/issues/35))
* data/dns_ptr_record_set: Implement data source for PTR record. ([#32](https://github.com/terraform-providers/terraform-provider-dns/issues/32))
* Use signed requests when refreshing managed resources ([#35](https://github.com/hashicorp/terraform-provider-dns/issues/35))
* data/dns_ptr_record_set: Implement data source for PTR record. ([#32](https://github.com/hashicorp/terraform-provider-dns/issues/32))

BUGS FIXED:

* Normalize IP addresses before comparing them, so non-canonical forms don't cause errant diffs ([#13](https://github.com/terraform-providers/terraform-provider-dns/issues/13))
* Validates zone names are fully qualified and that record names are not as these mistakes seems to be a common source of misconfiguration ([#36](https://github.com/terraform-providers/terraform-provider-dns/issues/36))
* Properly handle IPv6 IP addresses as the update host. Previously this would create an invalid connection address due to not properly constructing the address format. ([#22](https://github.com/terraform-providers/terraform-provider-dns/issues/22))
* When refreshing DNS record resources, `NXDOMAIN` errors are now properly marked as deletions in state rather than returning an error, thus allowing Terraform to plan to re-create the missing records. ([#33](https://github.com/terraform-providers/terraform-provider-dns/issues/33))
* Now checks the type of record returned to prevent unexpected values causing a panic ([#39](https://github.com/terraform-providers/terraform-provider-dns/issues/39))
* Normalize IP addresses before comparing them, so non-canonical forms don't cause errant diffs ([#13](https://github.com/hashicorp/terraform-provider-dns/issues/13))
* Validates zone names are fully qualified and that record names are not as these mistakes seems to be a common source of misconfiguration ([#36](https://github.com/hashicorp/terraform-provider-dns/issues/36))
* Properly handle IPv6 IP addresses as the update host. Previously this would create an invalid connection address due to not properly constructing the address format. ([#22](https://github.com/hashicorp/terraform-provider-dns/issues/22))
* When refreshing DNS record resources, `NXDOMAIN` errors are now properly marked as deletions in state rather than returning an error, thus allowing Terraform to plan to re-create the missing records. ([#33](https://github.com/hashicorp/terraform-provider-dns/issues/33))
* Now checks the type of record returned to prevent unexpected values causing a panic ([#39](https://github.com/hashicorp/terraform-provider-dns/issues/39))

## 1.0.0 (September 15, 2017)

Expand All @@ -62,9 +62,9 @@ BUGS FIXED:

NEW FEATURES:

* **`dns_aaaa_record_set` data source** for fetching IPv6 address records ([#9](https://github.com/terraform-providers/terraform-provider-dns/issues/9))
* **`dns_ns_record_set` data source** for fetching nameserver records ([#10](https://github.com/terraform-providers/terraform-provider-dns/issues/10))
* **`dns_ns_record_set` resource** for creating new nameserver records via the DNS update protocol ([#10](https://github.com/terraform-providers/terraform-provider-dns/issues/10))
* **`dns_aaaa_record_set` data source** for fetching IPv6 address records ([#9](https://github.com/hashicorp/terraform-provider-dns/issues/9))
* **`dns_ns_record_set` data source** for fetching nameserver records ([#10](https://github.com/hashicorp/terraform-provider-dns/issues/10))
* **`dns_ns_record_set` resource** for creating new nameserver records via the DNS update protocol ([#10](https://github.com/hashicorp/terraform-provider-dns/issues/10))

## 0.1.0 (June 20, 2017)

Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,17 +16,17 @@ Requirements
Building The Provider
---------------------

Clone repository to: `$GOPATH/src/github.com/terraform-providers/terraform-provider-dns`
Clone repository to: `$GOPATH/src/github.com/hashicorp/terraform-provider-dns`

```sh
$ mkdir -p $GOPATH/src/github.com/terraform-providers; cd $GOPATH/src/github.com/terraform-providers
$ git clone git@github.com:terraform-providers/terraform-provider-dns
$ mkdir -p $GOPATH/src/github.com/hashicorp; cd $GOPATH/src/github.com/hashicorp
$ git clone git@github.com:hashicorp/terraform-provider-dns
```

Enter the provider directory and build the provider

```sh
$ cd $GOPATH/src/github.com/terraform-providers/terraform-provider-dns
$ cd $GOPATH/src/github.com/hashicorp/terraform-provider-dns
$ make build
```

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

require (
github.com/hashicorp/hcl v1.0.0 // indirect
Expand Down
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package main

import (
"github.com/hashicorp/terraform-plugin-sdk/plugin"
"github.com/terraform-providers/terraform-provider-dns/dns"
"github.com/hashicorp/terraform-provider-dns/dns"
)

func main() {
Expand Down
2 changes: 1 addition & 1 deletion scripts/changelog-links.sh
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ else
SED="sed -i.bak -r -e"
fi

PROVIDER_URL="https:\/\/github.com\/terraform-providers\/terraform-provider-dns\/issues"
PROVIDER_URL="https:\/\/github.com\/hashicorp\/terraform-provider-dns\/issues"

$SED "s/GH-([0-9]+)/\[#\1\]\($PROVIDER_URL\/\1\)/g" -e 's/\[\[#(.+)([0-9])\)]$/(\[#\1\2))/g' CHANGELOG.md

Expand Down