Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .goreleaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,11 @@ archives:
- formats:
- zip
name_template: '{{ .ProjectName }}_{{ .Version }}_{{ .Os }}_{{ .Arch }}'
files:
- CHANGELOG.md
- LICENSE
- NOTICE
- README.md

checksum:
extra_files:
Expand Down
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

All notable changes to this project will be documented in this file.

## [0.1.0] - Unreleased
## [0.1.0] - 2026-08-11

- Initial EMQX Cloud Terraform Provider release.
- HTTPS-only API endpoints and same-origin redirect protection for Basic Auth credentials.
Expand Down
7 changes: 5 additions & 2 deletions SECURITY.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,8 @@ are explicitly authorized to use.

## Supported versions

No version of this Provider has been publicly released yet. Supported versions will be listed here when the first
release is published. This statement does not establish a response-time or remediation-time commitment.
| Version | Supported |
| --- | --- |
| 0.1.x | Yes |

This statement does not establish a response-time or remediation-time commitment.
4 changes: 2 additions & 2 deletions scripts/check-release-artifacts.sh
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,10 @@ test "$(find "$release_dir" -maxdepth 1 -type f -name '*.zip' | wc -l | tr -d '

for archive in "$release_dir"/*.zip; do
entries=$(unzip -Z1 "$archive")
test "$(printf '%s\n' "$entries" | wc -l | tr -d ' ')" = 4
test "$(printf '%s\n' "$entries" | wc -l | tr -d ' ')" = 5
for entry in $entries; do
case "$entry" in
CHANGELOG.md|LICENSE|README.md|terraform-provider-emqxcloud_v*) ;;
CHANGELOG.md|LICENSE|NOTICE|README.md|terraform-provider-emqxcloud_v*) ;;
*) echo "unexpected archive content in $archive: $entry" >&2; exit 1 ;;
esac
done
Expand Down