forked from jrester/tesla_powerwall
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CHANGELOG
44 lines (27 loc) · 1.35 KB
/
CHANGELOG
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
# Changelog
## [0.3.18]
- updated examples
- add Metertype `busway` thanks to @maikukun (https://github.com/jrester/tesla_powerwall/pull/40)
## [0.3.17]
- move `py.typed` to correct location (https://github.com/jrester/tesla_powerwall/pull/35)
## [0.3.16]
- add `py.typed` file
- remove all the version pinning and drop support for powerwall version < 0.47.0
- add more type hints
- fix 'login_time' attribute in `LoginResponse`
## [0.3.15]
- fix version pin when there is a sha trailer (https://github.com/jrester/tesla_powerwall/pull/34)
- Add support for fetching the gateway_din (https://github.com/jrester/tesla_powerwall/pull/33)
## [0.3.14]
- revert changes from 0.3.11:
- meters can now be accessed using the old, direct method (e.g. `meters.solar.instant_power`)
- if a meter is not available a `MeterNotAvailableError` will be thrown
- move from `distutils.version` to `packaging.version`
## [0.3.13]
Implement `system_status` endpoint (https://github.com/jrester/tesla_powerwall/issues/31):
- add `Battery` response type, which is returned by `get_batteries`
- add `get_energy`, `get_capacity`, `get_batteries`
## [0.3.12]
- add MeterType `generator` (https://github.com/jrester/tesla_powerwall/issues/30)
## [0.3.11]
- meters of `MetersAggregates` can now only be accessed via `get_meter` (https://github.com/home-assistant/core/issues/56660)