diff --git a/CHANGELOG.md b/CHANGELOG.md index b9fb36a..5f80369 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,14 +1,32 @@ + +# [v0.3.12](https://github.com/travisghansen/hass-opnsense/releases/tag/v0.3.12) - 2024-12-06 + + + +## What's Changed +### 🎉 Enhancements & New Features 🎉 +* Change user_input in Config Flow to use get by [@Snuffy2](https://github.com/Snuffy2) in [#334](https://github.com/travisghansen/hass-opnsense/pull/334) +* Add debug logging to config_flow by [@Snuffy2](https://github.com/Snuffy2) in [#336](https://github.com/travisghansen/hass-opnsense/pull/336) +### 🕷️ Bug Fixes 🕷️ +* Throw ClientResponseError for HTTP Status Errors 4xx by [@Snuffy2](https://github.com/Snuffy2) in [#333](https://github.com/travisghansen/hass-opnsense/pull/333) + + +**Full Changelog**: https://github.com/travisghansen/hass-opnsense/compare/v0.3.11...v0.3.12 + +[Changes][v0.3.12] + + # [v0.3.11](https://github.com/travisghansen/hass-opnsense/releases/tag/v0.3.11) - 2024-11-28 - +

OPNsense Minimum Firmware Required: 24.1

OPNsense Recommended Firmware: 24.7

## What's Changed ### 🕷️ Bug Fixes 🕷️ * Fix version update of const.py by [@Snuffy2](https://github.com/Snuffy2) in [#331](https://github.com/travisghansen/hass-opnsense/pull/331) -**Full Changelog**: https://github.com/travisghansen/hass-opnsense/compare/v0.3.10...v0.3.11 +**Full Changelog**: https://github.com/travisghansen/hass-opnsense/compare/v0.3.10...v0.3.11

For firmware versions below the minimum version, the integration will not permit new installations and existing installations will no longer start. Firmware versions below the recommended version will likely work but may have limited features and/or show errors in the logs. [Changes][v0.3.11] @@ -512,6 +530,7 @@ Released 2023-02-19 [Changes][v0.1.0] +[v0.3.12]: https://github.com/travisghansen/hass-opnsense/compare/v0.3.11...v0.3.12 [v0.3.11]: https://github.com/travisghansen/hass-opnsense/compare/v0.3.10...v0.3.11 [v0.3.10]: https://github.com/travisghansen/hass-opnsense/compare/v0.3.9...v0.3.10 [v0.3.9]: https://github.com/travisghansen/hass-opnsense/compare/v0.3.8...v0.3.9 @@ -550,4 +569,4 @@ Released 2023-02-19 [v0.1.1]: https://github.com/travisghansen/hass-opnsense/compare/v0.1.0...v0.1.1 [v0.1.0]: https://github.com/travisghansen/hass-opnsense/tree/v0.1.0 - + diff --git a/custom_components/opnsense/const.py b/custom_components/opnsense/const.py index 4b52c93..0093182 100644 --- a/custom_components/opnsense/const.py +++ b/custom_components/opnsense/const.py @@ -9,7 +9,7 @@ ) from homeassistant.const import PERCENTAGE, UnitOfInformation, UnitOfTime -VERSION = "v0.3.11" +VERSION = "v0.3.12" DOMAIN = "opnsense" OPNSENSE_LTD_FIRMWARE = "24.7" # Some functions may not work but the integration in general should work. Show repair warning. OPNSENSE_MIN_FIRMWARE = "24.1" # Don't allow install, will not work. diff --git a/custom_components/opnsense/manifest.json b/custom_components/opnsense/manifest.json index a6d76de..19ffc68 100644 --- a/custom_components/opnsense/manifest.json +++ b/custom_components/opnsense/manifest.json @@ -8,5 +8,5 @@ "iot_class": "local_polling", "issue_tracker": "https://github.com/travisghansen/hass-opnsense/issues", "requirements": ["python-dateutil", "awesomeversion"], - "version":"v0.3.11" + "version":"v0.3.12" }