Skip to content

Commit

Permalink
adding changelog for 1.6.0 release (#253)
Browse files Browse the repository at this point in the history
* adding changelog for 1.6.0 release

Signed-off-by: Shendge <akash.shendge@dell.com>

* addressing comments

Signed-off-by: Shendge <akash.shendge@dell.com>

---------

Signed-off-by: Shendge <akash.shendge@dell.com>
Co-authored-by: rounak-adhikary <Rounak.Adhikary@dell.com>
  • Loading branch information
shenda1 and rounak-adhikary authored Nov 21, 2024
1 parent 91e3957 commit e2e08ff
Show file tree
Hide file tree
Showing 7 changed files with 48 additions and 7 deletions.
31 changes: 31 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,37 @@ See the License for the specific language governing permissions and
limitations under the License.
-->

# v1.6.0 (Nov 29, 2024)
## Release Summary
The release supports resources and data sources mentioned in the Features section for Dell PowerScale.
## Features

### Data Sources:

* `powerscale_synciq_replication_report` for reading SyncIQ Replication Report in PowerScale.
* `powerscale_nfs_alias` for reading NFS Alias in PowerScale.
* `powerscale_writable_snapshot` for reading Writeable Snapshot in PowerScale.
* `powerscale_synciq_replication_job` for reading SyncIQ Replication Job in PowerScale.


### Resources

* `powerscale_writable_snapshot` for managing Writeable Snapshots in PowerScale.
* `powerscale_snapshot_restore` for Restoring from snapshot in PowerScale.
* `powerscale_nfs_alias` for managing NFS Alias in PowerScale.
* `powerscale_synciq_replication_job` for managing SyncIQ Replication Job in PowerScale.
* `powerscale_synciq_rules` for managing SyncIQ Replication Performance Rules in PowerScale.

### Others
N/A

## Enhancements
* Selected data sources are enhanced to support additional filters.

## Bug Fixes
N/A


# v1.5.0 (Sept 27, 2024)
## Release Summary
The release supports resources and data sources mentioned in the Features section for Dell PowerScale.
Expand Down
14 changes: 12 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ The Terraform Provider for Dell PowerScale is released and licensed under the MP

| **Terraform Provider** | **PowerScale Version** | **OS** | **Terraform** | **Golang** |
|------------------------|:-----------------------|:--------------------------|-----------------------------|------------|
| v1.5.0 | 9.5 <br> 9.7 <br> 9.8 | ubuntu22.04 <br> rhel9.x | 1.8.x <br> 1.9.x | 1.22 |
| v1.6.0 | 9.5 <br> 9.7 <br> 9.8 | ubuntu22.04 <br> rhel9.x | 1.8.x <br> 1.9.x | 1.22 |

## List of DataSources in Terraform Provider for Dell PowerScale
* [Cluster](docs/data-sources/cluster.md)
Expand Down Expand Up @@ -92,6 +92,10 @@ The Terraform Provider for Dell PowerScale is released and licensed under the MP
* [SyncIQ Global Settings](docs/data-sources/synciq_global_settings.md)
* [SyncIQ Rule](docs/data-sources/synciq_rule.md)
* [SyncIQ Peer Certificate](docs/data-sources/synciq_peer_certificate.md)
* [SyncIQ Replication Report](docs/data-sources/synciq_replication_report.md)
* [NFS Alias](docs/data-sources/nfs_alias.md)
* [Writeable Snapshot](docs/data-sources/writable_snapshot.md)
* [SyncIQ Replication Job](docs/data-sources/synciq_replication_job.md)

## List of Resources in Terraform Provider for Dell PowerScale
* [Access Zone](docs/resources/accesszone.md)
Expand Down Expand Up @@ -136,6 +140,12 @@ The Terraform Provider for Dell PowerScale is released and licensed under the MP
* [SyncIQ Policy](docs/resources/synciq_policy.md)
* [SyncIQ Global Settings](docs/resources/synciq_global_settings.md)
* [SyncIQ Peer Certificate](docs/resources/synciq_peer_certificate.md)
* [Support Assist](docs/resources/support_assist.md)
* [Writeable Snapshot](docs/resources/writable_snapshot.md)
* [Snapshot Restore](docs/resources/snapshot_restore.md)
* [NFS Alias](docs/resources/nfs_alias.md)
* [SyncIQ Replication Job](docs/resources/synciq_replication_job.md)
* [SyncIQ Rules](docs/resources/synciq_rules.md)

## Installation and execution of Terraform Provider for Dell PowerScale

Expand All @@ -148,7 +158,7 @@ Create a file called `main.tf` in your workspace with the following contents
terraform {
required_providers {
powerscale = {
version = "1.5.0"
version = "1.6.0"
source = "registry.terraform.io/dell/powerscale"
}
}
Expand Down
2 changes: 1 addition & 1 deletion about/INSTALLATION.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ Create a file called `main.tf` in your workspace with the following contents
terraform {
required_providers {
powerscale = {
version = "1.5.0"
version = "1.6.0"
source = "registry.terraform.io/dell/powerscale"
}
}
Expand Down
2 changes: 1 addition & 1 deletion docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ terraform {
required_providers {
powerscale = {
source = "registry.terraform.io/dell/powerscale"
version = "1.5.0"
version = "1.6.0"
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion docs/resources/snapshot_restore.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ See the License for the specific language governing permissions and
limitations under the License.
*/
# Restore snapshot using snaprevert job
# Restore snapshot using snaprevert job. SnapRevert domain will be deleted once `terraform destroy` is executed.
resource "powerscale_snapshot_restore" "test" {
snaprevert_params = {
allow_dup = true
Expand Down
2 changes: 1 addition & 1 deletion examples/provider/provider.tf
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ terraform {
required_providers {
powerscale = {
source = "registry.terraform.io/dell/powerscale"
version = "1.5.0"
version = "1.6.0"
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion examples/resources/powerscale_snapshot_restore/resource.tf
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ See the License for the specific language governing permissions and
limitations under the License.
*/

# Restore snapshot using snaprevert job
# Restore snapshot using snaprevert job. SnapRevert domain will be deleted once `terraform destroy` is executed.
resource "powerscale_snapshot_restore" "test" {
snaprevert_params = {
allow_dup = true
Expand Down

0 comments on commit e2e08ff

Please sign in to comment.