Skip to content

Commit 3cbc4e2

Browse files
chore(main): release 0.79.0 (#2004)
Signed-off-by: Pavel Boldyrev <[email protected]> Co-authored-by: bpg-autobot[bot] <155200059+bpg-autobot[bot]@users.noreply.github.com>
1 parent 979dc71 commit 3cbc4e2

File tree

9 files changed

+32
-8
lines changed

9 files changed

+32
-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.78.2"
2+
".": "0.79.0"
33
}

CHANGELOG.md

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

3+
## [0.79.0](https://github.com/bpg/terraform-provider-proxmox/compare/v0.78.2...v0.79.0) (2025-07-06)
4+
5+
6+
### Features
7+
8+
* **file:** add support for `import` content type ([#1983](https://github.com/bpg/terraform-provider-proxmox/issues/1983)) ([2d9e0b5](https://github.com/bpg/terraform-provider-proxmox/commit/2d9e0b585e307196b97a680716db75c9cc010bac))
9+
* **vm:** add `disk.import_from` attribute to support importing via API ([#2012](https://github.com/bpg/terraform-provider-proxmox/issues/2012)) ([ddc4118](https://github.com/bpg/terraform-provider-proxmox/commit/ddc4118b08f98cfc1012fe3bf4edc200c894aca8))
10+
11+
12+
### Bug Fixes
13+
14+
* **network:** improve error handling on `create`/`read`/`update` ([#2001](https://github.com/bpg/terraform-provider-proxmox/issues/2001)) ([5e4582f](https://github.com/bpg/terraform-provider-proxmox/commit/5e4582f820626ffbb6702c2d15cfe6bc0aba680f))
15+
* **tests:** fix `make example` tests ([#2007](https://github.com/bpg/terraform-provider-proxmox/issues/2007)) ([a76cc62](https://github.com/bpg/terraform-provider-proxmox/commit/a76cc6256da0ad86a2efe514ad03c5718681d477))
16+
17+
18+
### Miscellaneous
19+
20+
* **deps:** update golangci/golangci-lint (v2.1.6 → v2.2.1) ([#2013](https://github.com/bpg/terraform-provider-proxmox/issues/2013)) ([6a8f367](https://github.com/bpg/terraform-provider-proxmox/commit/6a8f367c46937873da638da6bc3a9c1261b7dd46))
21+
* **deps:** update image golang (10c1318 → 20a022e) ([#2015](https://github.com/bpg/terraform-provider-proxmox/issues/2015)) ([e9a3576](https://github.com/bpg/terraform-provider-proxmox/commit/e9a3576a6448bc6788ea6485381139ae548455f5))
22+
* **deps:** update module github.com/brianvoe/gofakeit/v7 (v7.2.1 → v7.3.0) ([#2010](https://github.com/bpg/terraform-provider-proxmox/issues/2010)) ([b601ca3](https://github.com/bpg/terraform-provider-proxmox/commit/b601ca3ed25b7b82d16a291cdaac308b36dbb3f9))
23+
* **deps:** update module github.com/hashicorp/terraform-plugin-docs (v0.21.0 → v0.22.0) ([#2016](https://github.com/bpg/terraform-provider-proxmox/issues/2016)) ([ebb0fc7](https://github.com/bpg/terraform-provider-proxmox/commit/ebb0fc74af1affa46db91526a7a7dab38962b4b0))
24+
* **docs:** add description of HA settings management to VM documentation ([#2003](https://github.com/bpg/terraform-provider-proxmox/issues/2003)) ([0582e3d](https://github.com/bpg/terraform-provider-proxmox/commit/0582e3d7f1750248933efd395cc04635224b7ea8))
25+
* **docs:** minor fixes / updates in guides ([#2014](https://github.com/bpg/terraform-provider-proxmox/issues/2014)) ([8c2a071](https://github.com/bpg/terraform-provider-proxmox/commit/8c2a071b40f9be2894da6f88d49457f5202a9712))
26+
327
## [0.78.2](https://github.com/bpg/terraform-provider-proxmox/compare/v0.78.1...v0.78.2) (2025-06-16)
428

529

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.78.2# x-release-please-version
4+
VERSION=0.79.0# x-release-please-version
55

66
GOLANGCI_LINT_VERSION=2.2.1# 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.78.2" # x-release-please-version
5+
version = "0.79.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.78.2" # x-release-please-version
5+
version = "0.79.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.78.2" # x-release-please-version
5+
version = "0.79.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.78.2" # x-release-please-version
5+
version = "0.79.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.78.2" # x-release-please-version
5+
version = "0.79.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.78.2" # x-release-please-version
5+
version = "0.79.0" # x-release-please-version
66
}
77
}
88
}

0 commit comments

Comments
 (0)