Skip to content

Commit b334266

Browse files
committed
2 parents 3c3119e + e08d9ee commit b334266

File tree

6 files changed

+15
-2
lines changed

6 files changed

+15
-2
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
## [14.0.4](https://github.com/BottlecapDave/HomeAssistant-OctopusEnergy/compare/v14.0.3...v14.0.4) (2025-04-11)
2+
3+
4+
### Bug Fixes
5+
6+
* **custom:** added support for new fixed intelligent tariff (15 minutes dev time) ([dd607ea](https://github.com/BottlecapDave/HomeAssistant-OctopusEnergy/commit/dd607ea68ffa168eefbfec6fc617f12f7ad291ff))
7+
18
## [14.0.3](https://github.com/BottlecapDave/HomeAssistant-OctopusEnergy/compare/v14.0.2...v14.0.3) (2025-02-18)
29

310

_docs/faq.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -176,6 +176,10 @@ The first thing to do is make sure the correct tariff has been picked up. This c
176176

177177
If the correct tariff is present, it might be that you're on a tariff that has different rates depending on if you pay by direct debit or not. This can be configured via your [account configuration](./setup/account.md#favour-direct-debit-rates).
178178

179+
## Do you support older versions of the integration?
180+
181+
Due to time constraints, I will only ever support the latest version of the integration. If you have an issue with an older version of the integration, my initial answer will always be to update to the latest version. This might be different to what HACS is reporting if you are not on the minimum supported Home Assistant version (which is highlighted in each release's changelog).
182+
179183
## How do I know when there's an update available?
180184

181185
If you've installed via HACS, and you are on version 2 or above, then updates will be surfaced in the normal update location within Home Assistant. If you are on a version below 2, then you can keep an eye on `sensor.hacs` to see the number of pending updates. This could be used with an automation or highlighted on your dashboard. This will include any HACS integration update, not just this one.

custom_components/octopus_energy/const.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
from homeassistant.helpers import selector
44

55
DOMAIN = "octopus_energy"
6-
INTEGRATION_VERSION = "14.0.3"
6+
INTEGRATION_VERSION = "14.0.4"
77

88
REFRESH_RATE_IN_MINUTES_ACCOUNT = 60
99
REFRESH_RATE_IN_MINUTES_INTELLIGENT = 3

custom_components/octopus_energy/intelligent/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -127,6 +127,7 @@ def is_intelligent_product(product_code: str):
127127
return product_code is not None and (
128128
"INTELLI-BB-VAR" in product_code.upper() or
129129
"INTELLI-VAR" in product_code.upper() or
130+
"INTELLI-FIX" in product_code.upper() or
130131
re.search("INTELLI-[0-9]", product_code.upper()) is not None
131132
)
132133

custom_components/octopus_energy/manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,6 @@
1717
"pydantic"
1818
],
1919
"ssdp": [],
20-
"version": "14.0.3",
20+
"version": "14.0.4",
2121
"zeroconf": []
2222
}

tests/unit/intelligent/test_is_intelligent_product.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
("INTELLI-BB-VAR-23-03-01"),
88
("INTELLI-VAR-22-10-14"),
99
("INTELLI-22-03-29"),
10+
("INTELLI-FIX-12M-25-04-10"),
1011
])
1112
async def test_when_product_code_is_valid_then_true_returned(product_code: str):
1213
# Act

0 commit comments

Comments
 (0)