Skip to content

Commit f5c52a8

Browse files
authored
added changelog for release v1.2.0 (#130)
* added changelog for release v1.2.0 * added readme links for resource/data source added in 1.2.0 * changed copyright year to 2023
1 parent d1f7f42 commit f5c52a8

File tree

8 files changed

+30
-10
lines changed

8 files changed

+30
-10
lines changed

.github/SECURITY.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!--
2-
Copyright (c) 2022 Dell Inc., or its subsidiaries. All Rights Reserved.
2+
Copyright (c) 2023 Dell Inc., or its subsidiaries. All Rights Reserved.
33
44
Licensed under the Mozilla Public License Version 2.0 (the "License");
55
you may not use this file except in compliance with the License.

CHANGELOG.md

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,22 @@
1+
# v1.2.0 (September 27, 2023)
2+
## Release Summary
3+
The release supports resources and data sources mentioned in the Features section for Dell PowerFlex.
4+
## Features
5+
6+
### Resources
7+
* `powerflex_cluster` for deploying PowerFlex cluster.
8+
* `powerflex_mdm_cluster` for managing MDM cluster in PowerFlex.
9+
* `powerflex_user` for managing users in PowerFlex.
10+
11+
### Data Sources:
12+
* `powerflex_vtree` for reading VTree details in PowerFlex.
13+
14+
### Notes:
15+
* `name` attribute is removed from sdc resource.
16+
117
# v1.1.0 (June 28, 2023)
218
## Release Summary
3-
The release supports resources mentioned in the Features section for Dell PowerFlex.
19+
The release supports resources and data sources mentioned in the Features section for Dell PowerFlex.
420
## Features
521

622
### Resources

README.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!--
2-
Copyright (c) 2022 Dell Inc., or its subsidiaries. All Rights Reserved.
2+
Copyright (c) 2023 Dell Inc., or its subsidiaries. All Rights Reserved.
33
44
Licensed under the Mozilla Public License Version 2.0 (the "License");
55
you may not use this file except in compliance with the License.
@@ -49,7 +49,7 @@ The Terraform Provider for Dell PowerFlex is released and licensed under the MPL
4949

5050
| **Terraform Provider** | **PowerFlex/VxFlex OS Version** | **OS** | **Terraform** | **Golang** |
5151
|---------------------|-----------------------|-------|--------------------|--------------------------|
52-
| v1.1.0 | 3.6 | ubuntu22.04 <br> rhel8.x <br> rhel7.x | 1.3.2 <br> 1.2.9 <br> | 1.19.x
52+
| v1.2.0 | 3.6 | ubuntu22.04 <br> rhel8.x <br> rhel9.x | 1.3.x <br> 1.5.x <br> | 1.20.x
5353

5454
## List of DataSources in Terraform Provider for Dell PowerFlex
5555
* [SDC](docs/data-sources/sdc.md)
@@ -59,6 +59,7 @@ The Terraform Provider for Dell PowerFlex is released and licensed under the MPL
5959
* [Protection Domain](docs/data-sources/protection_domain.md)
6060
* [Snapshot Policy](docs/data-sources/snapshot_policy.md)
6161
* [Device](docs/data-sources/device.md)
62+
* [VTree](docs/data-sources/vtree.md)
6263

6364
## List of Resources in Terraform Provider for Dell PowerFlex
6465
* [SDC](docs/resources/sdc.md)
@@ -70,6 +71,9 @@ The Terraform Provider for Dell PowerFlex is released and licensed under the MPL
7071
* [SDC Volume Mapping](docs/resources/sdc_volumes_mapping.md)
7172
* [Device](docs/resources/device.md)
7273
* [Package](docs/resources/package.md)
74+
* [Cluster](docs/resources/cluster.md)
75+
* [MDM Cluster](docs/resources/mdm_cluster.md)
76+
* [User](docs/resources/user.md)
7377

7478
## Installation and execution of Terraform Provider for Dell PowerFlex
7579
The installation and execution steps of Terraform Provider for Dell PowerFlex can be found [here](about/INSTALLATION.md).

about/CODE_OF_CONDUCT.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!--
2-
Copyright (c) 2022 Dell Inc., or its subsidiaries. All Rights Reserved.
2+
Copyright (c) 2023 Dell Inc., or its subsidiaries. All Rights Reserved.
33
44
Licensed under the Mozilla Public License Version 2.0 (the "License");
55
you may not use this file except in compliance with the License.

about/COMMITTER_GUIDE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!--
2-
Copyright (c) 2022 Dell Inc., or its subsidiaries. All Rights Reserved.
2+
Copyright (c) 2023 Dell Inc., or its subsidiaries. All Rights Reserved.
33
44
Licensed under the Mozilla Public License Version 2.0 (the "License");
55
you may not use this file except in compliance with the License.

about/CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!--
2-
Copyright (c) 2022 Dell Inc., or its subsidiaries. All Rights Reserved.
2+
Copyright (c) 2023 Dell Inc., or its subsidiaries. All Rights Reserved.
33
44
Licensed under the Mozilla Public License Version 2.0 (the "License");
55
you may not use this file except in compliance with the License.

about/INSTALLATION.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!--
2-
Copyright (c) 2022 Dell Inc., or its subsidiaries. All Rights Reserved.
2+
Copyright (c) 2023 Dell Inc., or its subsidiaries. All Rights Reserved.
33
44
Licensed under the Mozilla Public License Version 2.0 (the "License");
55
you may not use this file except in compliance with the License.
@@ -26,7 +26,7 @@ Create a file called `main.tf` in your workspace with the following contents
2626
terraform {
2727
required_providers {
2828
powerflex = {
29-
version = "1.1.0"
29+
version = "1.2.0"
3030
source = "registry.terraform.io/dell/powerflex"
3131
}
3232
}

about/SUPPORT.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!--
2-
Copyright (c) 2022 Dell Inc., or its subsidiaries. All Rights Reserved.
2+
Copyright (c) 2023 Dell Inc., or its subsidiaries. All Rights Reserved.
33
44
Licensed under the Mozilla Public License Version 2.0 (the "License");
55
you may not use this file except in compliance with the License.

0 commit comments

Comments
 (0)