Skip to content

Commit d5979c4

Browse files
chore(main): release 0.77.0 (#1924)
Signed-off-by: Pavel Boldyrev <[email protected]> Co-authored-by: bpg-autobot[bot] <155200059+bpg-autobot[bot]@users.noreply.github.com>
1 parent 7b5042d commit d5979c4

File tree

9 files changed

+31
-8
lines changed

9 files changed

+31
-8
lines changed

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "0.76.1"
2+
".": "0.77.0"
33
}

CHANGELOG.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,28 @@
11
# Changelog
22

3+
## [0.77.0](https://github.com/bpg/terraform-provider-proxmox/compare/v0.76.1...v0.77.0) (2025-04-30)
4+
5+
6+
### Features
7+
8+
* **lxc:** increase number of supported mount points to 256 ([#1939](https://github.com/bpg/terraform-provider-proxmox/issues/1939)) ([a99220e](https://github.com/bpg/terraform-provider-proxmox/commit/a99220e9fb170935026edc5449fce8d0a388abc8))
9+
10+
11+
### Bug Fixes
12+
13+
* **file:** better error message on download failure ([#1923](https://github.com/bpg/terraform-provider-proxmox/issues/1923)) ([d463990](https://github.com/bpg/terraform-provider-proxmox/commit/d46399024f0390a57d52e4f89dd8027184815e01))
14+
* **firewall:** prevent reordering of CIDRs in `ipset` resource with mixed IPv4/IPv6 ([#1935](https://github.com/bpg/terraform-provider-proxmox/issues/1935)) ([64147cd](https://github.com/bpg/terraform-provider-proxmox/commit/64147cd24e84c09605633a8cec4aae5f39c4f903))
15+
* **lxc:** do not reboot for cpu block changes ([#1932](https://github.com/bpg/terraform-provider-proxmox/issues/1932)) ([5e49b98](https://github.com/bpg/terraform-provider-proxmox/commit/5e49b98f8e0b004e285a22bfc4687f114609710c))
16+
17+
18+
### Miscellaneous
19+
20+
* **ci:** update actions/attest-build-provenance digest (c074443 → db473fd) ([#1937](https://github.com/bpg/terraform-provider-proxmox/issues/1937)) ([7b5042d](https://github.com/bpg/terraform-provider-proxmox/commit/7b5042d945e9e8d5cfd10d624e68ab22f91caab8))
21+
* **ci:** Update JetBrains/qodana-action action (v2024.3.4 → v2025.1.0) ([#1927](https://github.com/bpg/terraform-provider-proxmox/issues/1927)) ([d4bfc24](https://github.com/bpg/terraform-provider-proxmox/commit/d4bfc24cb432b694517cadfb78c69aeec5f71e4b))
22+
* **code:** fix code problems reported by Qodana ([#1934](https://github.com/bpg/terraform-provider-proxmox/issues/1934)) ([ebd5399](https://github.com/bpg/terraform-provider-proxmox/commit/ebd5399e14f13fa92e20effc70114813efb8c331))
23+
* **deps:** update golangci/golangci-lint (v2.1.2 → v2.1.5) ([#1926](https://github.com/bpg/terraform-provider-proxmox/issues/1926)) ([6b2749f](https://github.com/bpg/terraform-provider-proxmox/commit/6b2749feeace459fc383c4c8b3eb373e236d464f))
24+
* **docs:** update terraform tls (4.0.6 → 4.1.0) ([#1925](https://github.com/bpg/terraform-provider-proxmox/issues/1925)) ([2de77b6](https://github.com/bpg/terraform-provider-proxmox/commit/2de77b6a8e1193d864a71faa17389d2e0b61740e))
25+
326
## [0.76.1](https://github.com/bpg/terraform-provider-proxmox/compare/v0.76.0...v0.76.1) (2025-04-21)
427

528

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
NAME=terraform-provider-proxmox
22
TARGETS=darwin linux windows
33
TERRAFORM_PLUGIN_EXTENSION=
4-
VERSION=0.76.1# x-release-please-version
4+
VERSION=0.77.0# x-release-please-version
55

66
GOLANGCI_LINT_VERSION=v2.1.5# renovate: depName=golangci/golangci-lint datasource=github-releases
77

examples/guides/clone-vm/provider.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ terraform {
22
required_providers {
33
proxmox = {
44
source = "bpg/proxmox"
5-
version = "0.76.1" # x-release-please-version
5+
version = "0.77.0" # x-release-please-version
66
}
77
}
88
}

examples/guides/cloud-image/centos-qcow2/provider.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ terraform {
22
required_providers {
33
proxmox = {
44
source = "bpg/proxmox"
5-
version = "0.76.1" # x-release-please-version
5+
version = "0.77.0" # x-release-please-version
66
}
77
}
88
}

examples/guides/cloud-image/debian-from-storage/provider.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ terraform {
22
required_providers {
33
proxmox = {
44
source = "bpg/proxmox"
5-
version = "0.76.1" # x-release-please-version
5+
version = "0.77.0" # x-release-please-version
66
}
77
}
88
}

examples/guides/cloud-image/ubuntu-img/provider.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ terraform {
22
required_providers {
33
proxmox = {
44
source = "bpg/proxmox"
5-
version = "0.76.1" # x-release-please-version
5+
version = "0.77.0" # x-release-please-version
66
}
77
}
88
}

examples/guides/cloud-init/custom/provider.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ terraform {
22
required_providers {
33
proxmox = {
44
source = "bpg/proxmox"
5-
version = "0.76.1" # x-release-please-version
5+
version = "0.77.0" # x-release-please-version
66
}
77
}
88
}

examples/guides/cloud-init/native/provider.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ terraform {
22
required_providers {
33
proxmox = {
44
source = "bpg/proxmox"
5-
version = "0.76.1" # x-release-please-version
5+
version = "0.77.0" # x-release-please-version
66
}
77
}
88
}

0 commit comments

Comments
 (0)