Skip to content

Commit c449620

Browse files
committed
chore: prepare v1.1.0 release
- Update CHANGELOG with session cleanup and force flag fixes - Bump README version reference to ~> 1.1
1 parent 3499bd6 commit c449620

2 files changed

Lines changed: 16 additions & 1 deletion

File tree

CHANGELOG.md

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

3+
## [1.1.0](https://github.com/poindexter12/terraform-provider-pihole/releases/tag/v1.1.0) (2025-12-16)
4+
5+
### Bug Fixes
6+
7+
* **Session cleanup restored** - Fixed session logout that was accidentally removed during the ProviderMeta refactor. Sessions are now properly terminated when Terraform exits, preventing "API seats exceeded" (429) errors from stale session accumulation.
8+
9+
* **Force delete-before-create for DNS records** - The `force` attribute now works correctly for DNS records. When `force = true` and a record already exists, the provider deletes it before creating the new one. This fixes "item already present" errors during `ForceNew` operations.
10+
11+
### Notes
12+
13+
* The `force` flag implements client-side delete-before-create because the Pi-hole v6 API doesn't support a force query parameter for DNS endpoints
14+
* External sessions passed via `__PIHOLE_SESSION_ID` environment variable are not logged out, allowing session reuse across multiple Terraform runs
15+
16+
---
17+
318
## [1.0.0](https://github.com/poindexter12/terraform-provider-pihole/releases/tag/v1.0.0) (2025-12-10)
419

520
First stable release with Pi-hole v6 support.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ terraform {
2222
required_providers {
2323
pihole = {
2424
source = "poindexter12/pihole"
25-
version = "~> 1.0"
25+
version = "~> 1.1"
2626
}
2727
}
2828
}

0 commit comments

Comments
 (0)