You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Added support for Cloud Block Store on Azure deployment for Pure Fusion,
cbs_fusion_sec_azure resource, cbs_azure_plans data source and updated
purity version
Co-authored-by: Tomas Simacek <tsimacek@pruestorage.com>
Copy file name to clipboardExpand all lines: CHANGELOG.md
+8Lines changed: 8 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,3 +1,11 @@
1
+
## 0.8.0 (May 15, 2023)
2
+
3
+
* Added support for Cloud Block Store on Azure deployment for Pure Fusion using the `fusion_sec_identity` parameter, refer to the [documentation](docs/resources/array_azure.md)
4
+
* Added cbs_azure_plans datasource, refer to the [documentation](docs/data-sources/azure_plans.md)
5
+
* Added cbs_fusion_sec_azure resource, refer to the [documentation](docs/resources/fusion_sec_azure.md)
6
+
* Update Purity version of cbs_array_azure to fetch the latest azure release using cbs_azure_plans
7
+
* Update Purity version of cbs_array_aws to 6.4.0
8
+
1
9
## 0.7.0 (Oct 19, 2022)
2
10
3
11
* Update Purity version of cbs_array_azure to 6.3.5
TF_ACC=1 go test-ldflags="$(LDFLAGS)"./cbs -v -timeout 120m
44
49
45
50
install-dev-mock:
46
-
GOBIN=$(DEV_GOBIN) go install --tags mock
51
+
GOBIN=$(DEV_GOBIN) go install -ldflags="$(LDFLAGS)" --tags mock
47
52
48
53
install-dev:
49
-
GOBIN=$(DEV_GOBIN) go install
54
+
GOBIN=$(DEV_GOBIN) go install -ldflags="$(LDFLAGS)"
50
55
51
56
install-dev-clean:
52
57
@rm -rvf $(DEV_PKGDIR)
@@ -55,9 +60,29 @@ install-dev-clean:
55
60
# The redirections and tee/grep stuff above is to help reduce console noise, we filter out all of the nominal messages, so its easier to see any errors
56
61
# the full unfiltered log is in .build-logs/acc-mock
57
62
58
-
test-vet:
59
-
@go vet ./cbs
60
-
@go vet -tags mock ./cbs
63
+
vet:
64
+
@echo "Running go vet..."
65
+
@go vet $(FILTERED_PKG_LIST)
66
+
@go vet --tags mock $(FILTERED_PKG_LIST)
67
+
68
+
fmt:
69
+
@echo "Fixing sources with gofmt..."
70
+
@go fmt $(PKG_LIST)
71
+
@git diff --exit-code ||\
72
+
(echo;echo"Unexpected difference in source files after running 'go fmt'. Review the changes and commit them.";exit 1)
73
+
74
+
depscheck:
75
+
@echo "Checking source code with go mod tidy..."
76
+
@go mod tidy
77
+
@git diff --exit-code go.mod go.sum ||\
78
+
(echo;echo"Unexpected difference in go.mod/go.sum files. Run 'go mod tidy' command or revert any go.mod/go.sum changes and commit.";exit 1)
0 commit comments