Skip to content

Commit 48d4a38

Browse files
committed
release: v0.6.1
1 parent 4ff8839 commit 48d4a38

File tree

4 files changed

+17
-3
lines changed

4 files changed

+17
-3
lines changed

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,20 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7+
## [0.6.1](https://github.com/Altinity/terraform-provider-altinitycloud/compare/v0.6.0...v0.6.1)
8+
### Fixed
9+
- Fix typo "matchs" -> "matches" in AWS env status log [cddaae2](https://github.com/Altinity/terraform-provider-altinitycloud/commit/cddaae2).
10+
- Rename misleading `nonDisconnected` variable to `blockingErrors` in env status wait loop [cddaae2](https://github.com/Altinity/terraform-provider-altinitycloud/commit/cddaae2).
11+
- Fix nil pointer dereference in `IsNotFoundError` and `IsActiveClustersError` when called with nil error [34cdbd6](https://github.com/Altinity/terraform-provider-altinitycloud/commit/34cdbd6).
12+
- Add unit tests for `IsNotFoundError` and `IsActiveClustersError` [34cdbd6](https://github.com/Altinity/terraform-provider-altinitycloud/commit/34cdbd6).
13+
- Fix swapped load balancer description constants in docs [4ff8839](https://github.com/Altinity/terraform-provider-altinitycloud/commit/4ff8839).
14+
- Remove double space in delete status error message [c35554d](https://github.com/Altinity/terraform-provider-altinitycloud/commit/c35554d).
15+
- Mark `hcloud_token_enc` as Sensitive [7391dd2](https://github.com/Altinity/terraform-provider-altinitycloud/commit/7391dd2).
16+
- Use datasource schema types for `peering_connections` in AWS env status [98c90ba](https://github.com/Altinity/terraform-provider-altinitycloud/commit/98c90ba).
17+
- Fail hard on invalid `ca_crt` instead of falling back to system CAs [a0fb131](https://github.com/Altinity/terraform-provider-altinitycloud/commit/a0fb131).
18+
- Remove duplicate diagnostics append in Certificate and Secret Read [2f688cc](https://github.com/Altinity/terraform-provider-altinitycloud/commit/2f688cc).
19+
- Handle unknown plan values in immutable modifiers [ff2fc90](https://github.com/Altinity/terraform-provider-altinitycloud/commit/ff2fc90).
20+
721
## [0.6.0](https://github.com/Altinity/terraform-provider-altinitycloud/compare/v0.5.2...v0.6.0)
822
### Added
923
- Documentation: "Asynchronous Provisioning" section in provider index, "Cloud Connect" sections in all environment resource docs, and clarify expected DISCONNECTED status during first provisioning [52bf7bb](https://github.com/Altinity/terraform-provider-altinitycloud/commit/52bf7bb).

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ terraform {
3434
required_providers {
3535
altinitycloud = {
3636
source = "altinity/altinitycloud"
37-
version = "~> 0.6.0"
37+
version = "~> 0.6.1"
3838
}
3939
}
4040
}

docs/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ terraform {
2727
altinitycloud = {
2828
source = "altinity/altinitycloud"
2929
# https://github.com/altinity/terraform-provider-altinitycloud/blob/master/CHANGELOG.md
30-
version = "0.6.0"
30+
version = "0.6.1"
3131
}
3232
}
3333
}

examples/provider/provider.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ terraform {
33
altinitycloud = {
44
source = "altinity/altinitycloud"
55
# https://github.com/altinity/terraform-provider-altinitycloud/blob/master/CHANGELOG.md
6-
version = "0.6.0"
6+
version = "0.6.1"
77
}
88
}
99
}

0 commit comments

Comments
 (0)