Skip to content

Commit

Permalink
fix: Fixed zpa_policy_access_rule and semver issues
Browse files Browse the repository at this point in the history
  • Loading branch information
willguibr committed Jan 8, 2025
1 parent 7cd9192 commit c3f4198
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 4 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# Changelog

## 3.34.0 (January, 8 2025)

### Notes

- Release date: **(January, 8 2025)**
- Supported Terraform version: **v1.x**

### Bug Fixes
- [PR #513](/~https://github.com/zscaler/terraform-provider-zpa/pull/513) - Upgraded Provider to SDK v2.74.2 to address Double encoding of special characters during GET operations.
- [PR #513](/~https://github.com/zscaler/terraform-provider-zpa/pull/513) -Fixed attribute `app_server_groups` on `zpa_policy_access_rule` resource to prevent innadivertent drifts during plan and apply. Issue [#512](/~https://github.com/zscaler/terraform-provider-zpa/pull/512)
- [PR #513](/~https://github.com/zscaler/terraform-provider-zpa/pull/513) - Deprecated previous `3.331.0` version due to missconfigured semversioning hash calculation.


## 3.33.10 (January, 8 2025)

### Notes
Expand Down
6 changes: 3 additions & 3 deletions GNUmakefile
Original file line number Diff line number Diff line change
Expand Up @@ -55,14 +55,14 @@ test\:integration\:zpa:
build13: GOOS=$(shell go env GOOS)
build13: GOARCH=$(shell go env GOARCH)
ifeq ($(OS),Windows_NT) # is Windows_NT on XP, 2000, 7, Vista, 10...
build13: DESTINATION=$(APPDATA)/terraform.d/plugins/$(ZPA_PROVIDER_NAMESPACE)/3.33.10/$(GOOS)_$(GOARCH)
build13: DESTINATION=$(APPDATA)/terraform.d/plugins/$(ZPA_PROVIDER_NAMESPACE)/v3.34.0/$(GOOS)_$(GOARCH)
else
build13: DESTINATION=$(HOME)/.terraform.d/plugins/$(ZPA_PROVIDER_NAMESPACE)/3.33.10/$(GOOS)_$(GOARCH)
build13: DESTINATION=$(HOME)/.terraform.d/plugins/$(ZPA_PROVIDER_NAMESPACE)/v3.34.0/$(GOOS)_$(GOARCH)
endif
build13: fmtcheck
@echo "==> Installing plugin to $(DESTINATION)"
@mkdir -p $(DESTINATION)
go build -o $(DESTINATION)/terraform-provider-zpa_v3.33.10
go build -o $(DESTINATION)/terraform-provider-zpa_v3.34.0

vet:
@echo "==> Checking source code against go vet and staticcheck"
Expand Down
14 changes: 13 additions & 1 deletion docs/guides/release-notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,22 @@ Track all ZPA Terraform provider's releases. New resources, features, and bug fi

---

``Last updated: v3.33.10``
``Last updated: v3.34.0``

---

## 3.34.0 (January, 8 2025)

### Notes

- Release date: **(January, 8 2025)**
- Supported Terraform version: **v1.x**

### Bug Fixes
- [PR #513](/~https://github.com/zscaler/terraform-provider-zpa/pull/513) - Upgraded Provider to SDK v2.74.2 to address Double encoding of special characters during GET operations.
- [PR #513](/~https://github.com/zscaler/terraform-provider-zpa/pull/513) -Fixed attribute `app_server_groups` on `zpa_policy_access_rule` resource to prevent innadivertent drifts during plan and apply. Issue [#512](/~https://github.com/zscaler/terraform-provider-zpa/pull/512)
- [PR #513](/~https://github.com/zscaler/terraform-provider-zpa/pull/513) - Deprecated previous `3.331.0` version due to missconfigured semversioning hash calculation.

## 3.33.10 (January, 8 2025)

### Notes
Expand Down

0 comments on commit c3f4198

Please sign in to comment.