Skip to content

Releases: issyl0/terraform-provider-improvmx

v0.7.1

10 Dec 22:52
8213658
Compare
Choose a tag to compare
Oops, I forgot `go mod tidy`

v0.7.0

10 Dec 22:49
Compare
Choose a tag to compare

What's Changed

  • Remove default wildcard email forward by @Xenov-X in #16
  • Bump Go from 1.18 to 1.21 & go get -u modules by @issyl0 in #18

New Contributors

Full Changelog: v0.6.0...v0.7.0

v0.6.0

16 Apr 23:23
Compare
Choose a tag to compare

What's Changed

  • workflows: Add GitHub's code scanning Action by @issyl0 in #10
  • Use Go 1.18 and bump dependency versions by @issyl0 in #11
  • Add a GitHub Action to run the provider with a test domain by @issyl0 in #12
  • Bump issyl0/go-improvmx version by @issyl0 in #13

Full Changelog: v0.5.0...v0.6.0

v0.5.0

17 Oct 21:28
4158872
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v0.4.2...v0.5.0

v0.4.2

13 Aug 09:29
bdb7805
Compare
Choose a tag to compare
docs: Use the correct resource name in `improvmx_smtp_credential` docs

v0.4.1

13 Aug 09:25
0101d92
Compare
Choose a tag to compare
CHANGELOG: Create, add a description of all the versions

v0.4.0

13 Aug 09:08
Compare
Choose a tag to compare
provider,resource_smtp_credential: Support configuring SMTP credentials

- https://improvmx.com/api/#smtp-list

v0.3.0

13 Aug 08:31
Compare
Choose a tag to compare
resource_email_forward: Fix importing, set `alias_name` before reading

- The post-import plan for an email forward wouldn't come back clean as
  all the fields weren't set in the state.

v0.2.1

08 Aug 22:08
57289b7
Compare
Choose a tag to compare
README: Remove provider version

- If users copy/paste this without changing anything, they'll be on a super early version.

v0.2.0

08 Aug 22:05
Compare
Choose a tag to compare
resource_email_forward: Fix email forward creation operations

- Since 5041c41e589df52a2851dba06e3fb938526e95a0, configuring email
  forwards have been broken with:

```
panic: interface conversion: interface {} is *improvmx.Meta, not *improvmx.Client

goroutine 22 [running]:
github.com/issyl0/terraform-provider-improvmx/improvmx.resourceEmailForwardCreate(0xc000179000, 0x1765080, 0xc00061e288, 0x0, 0xffffffffffffffff)
	github.com/issyl0/terraform-provider-improvmx/improvmx/resource_email_forward.go:42 +0x25f
```

- I decided to use the same style of handling as in `resource_domain`,
  by using a mutex lock on read, and doing rate limit debug logging too.