Releases: JaccoR/hass-entso-e
v0.4.2
What's Changed
- Fix error on missing currency config entry by @Roeland54 in #170
Full Changelog: v0.4.0...v0.4.2
v0.4.0
What's Changed
- Update README.md by @martin3000 in #88
- Fix data_generator for ApexChart by @moorgrove in #74
- Change input selector for the template config by @evading in #101
- Added Calabria to Bidding Zones in const.py by @DAVZAN in #108
- Warnings fix for incorrect state_class and device_class combination by @jyrkih in #131
- Avoid ENERGY_KILO_WATT_HOUR deprecation warnings, 2024.1.0 required by @scop in #138
- Custom currency by @bnordli in #141
- Update coordinator.py by @martin3000 in #163
- Remove unnecessary call to template.attach by @emontnemery in #166
- Added checks before restoring coordinator.data from stored state… by @Roeland54 in #168
New Contributors
- @moorgrove made their first contribution in #74
- @evading made their first contribution in #101
- @DAVZAN made their first contribution in #108
- @jyrkih made their first contribution in #131
- @scop made their first contribution in #138
- @bnordli made their first contribution in #141
- @emontnemery made their first contribution in #166
- @Roeland54 made their first contribution in #168
Full Changelog: v0.3.0...v0.4.0
v0.4.0-beta.4
What's Changed
- Update README.md by @martin3000 in #88
- Fix data_generator for ApexChart by @moorgrove in #74
- Change input selector for the template config by @evading in #101
- Added Calabria to Bidding Zones in const.py by @DAVZAN in #108
- Warnings fix for incorrect state_class and device_class combination by @jyrkih in #131
- Avoid ENERGY_KILO_WATT_HOUR deprecation warnings, 2024.1.0 required by @scop in #138
- Custom currency by @bnordli in #141
- Update coordinator.py by @martin3000 in #163
- Remove unnecessary call to template.attach by @emontnemery in #166
- Added checks before restoring coordinator.data from stored state… by @Roeland54 in #168
New Contributors
- @moorgrove made their first contribution in #74
- @evading made their first contribution in #101
- @DAVZAN made their first contribution in #108
- @jyrkih made their first contribution in #131
- @scop made their first contribution in #138
- @bnordli made their first contribution in #141
- @emontnemery made their first contribution in #166
- @Roeland54 made their first contribution in #168
Full Changelog: v0.3.0...v0.4.0-beta.4
v0.4.0-beta.3
What's Changed
- Update README.md by @martin3000 in #88
- Fix data_generator for ApexChart by @moorgrove in #74
- Change input selector for the template config by @evading in #101
- Added Calabria to Bidding Zones in const.py by @DAVZAN in #108
- Warnings fix for incorrect state_class and device_class combination by @jyrkih in #131
- Avoid ENERGY_KILO_WATT_HOUR deprecation warnings, 2024.1.0 required by @scop in #138
- Custom currency by @bnordli in #141
- Update coordinator.py by @martin3000 in #163
- Remove unnecessary call to template.attach by @emontnemery in #166
- Update entsoe-py dependency
New Contributors
- @moorgrove made their first contribution in #74
- @evading made their first contribution in #101
- @DAVZAN made their first contribution in #108
- @jyrkih made their first contribution in #131
- @scop made their first contribution in #138
- @bnordli made their first contribution in #141
- @emontnemery made their first contribution in #166
Full Changelog: v0.3.0...v0.4.0-beta.3
v0.4.0-beta.1
What's Changed
- Update README.md by @martin3000 in #88
- Fix data_generator for ApexChart by @moorgrove in #74
- Change input selector for the template config by @evading in #101
- Added Calabria to Bidding Zones in const.py by @DAVZAN in #108
- Warnings fix for incorrect state_class and device_class combination by @jyrkih in #131
- Avoid ENERGY_KILO_WATT_HOUR deprecation warnings, 2024.1.0 required by @scop in #138
- Custom currency by @bnordli in #141
- Update coordinator.py by @martin3000 in #163
- Remove unnecessary call to template.attach by @emontnemery in #166
New Contributors
- @moorgrove made their first contribution in #74
- @evading made their first contribution in #101
- @DAVZAN made their first contribution in #108
- @jyrkih made their first contribution in #131
- @scop made their first contribution in #138
- @bnordli made their first contribution in #141
- @emontnemery made their first contribution in #166
Full Changelog: v0.3.0...v0.4.0
v0.3.0
v0.2.0
This update includes some bug fixes and an important update for advanced users:
This changes the calculated (min,max,avg values) entities behaviour to one of:
-
Sliding The min/max/etc entities will get updated every hour with only upcoming data. This means that the min price returned at 13:00 will be the lowest price in the future (as available from that point in time). Regardless of past hours that might have had a lower price (this is most useful if you want to be able to schedule loads as soon and cheap as possible)
-
Default (on publish) The min/max/etc entities will get updated once new data becomes available. This means that the min price will update once the next days pricing becomes available (usually between 12:00 and 15:00) It also means that until the next days pricing becomes available the latest 48h of available data will be used to calculate a min price
-
Rotation The min/max/etc entities will get updated at midnight. This means that the min price returned at 23:59 will be based on the day x price while at 00:00 the day x+1 price will be the only one used in the calculations) day x in this case is a random date like 2022-10-10 and day x+1 2022-10-11
What's Changed
Full Changelog: v0.1.3...v0.2.0
v0.1.3
v0.1.2
WARNING: THIS UPDATE WILL REMOVE ATTRIBUTES FROM ALL SENSORS EXCEPT AVERAGE PRICE SENSOR.
What's Changed
- Removed attributes from all sensors except average_electricity_price
- The "prices" attributes is now always 48 hours long. This makes
- When a name is configured the display name contains that name in brackets
- Hande no matching data error and unauthorized error in a more friendly way
- Decreased update interval to hourly
Full Changelog: v0.1.1...v0.1.2
v0.1.1
Note:
This is a breaking update. In case of upgrading from a previous version you have to re-add the integration for the changes to take effect.
When configuring, keep the "name"- option empty to keep the original entity names.
What's Changed
- Use the description.name value for user addressible entity name by @sfstar in #50
- Fixed a bug where the timestamp was not showing correctly.
Full Changelog: v0.1.0...v0.1.1