Skip to content

Commit 967ac6e

Browse files
Merge branch 'master' into ISSUE-544
2 parents 9dee2e3 + 6a6c7ae commit 967ac6e

File tree

5 files changed

+631
-475
lines changed

5 files changed

+631
-475
lines changed

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
# Change log
22

3+
34
- [#544](https://github.com/mobilityhouse/ocpp/issues/544) Pass `Call.unique_id` to the `on` and `after` routing handlers.
5+
- [#559](https://github.com/mobilityhouse/ocpp/issues/559) Update project dependencies as of 22-12-2023
6+
- [#447](https://github.com/mobilityhouse/ocpp/issues/447) Make formatting of enums in py3.11 consistent with earlier Python versions
7+
- [#421](https://github.com/mobilityhouse/ocpp/issues/421) Type of v16.datatypes.SampledValue.context is incorrect
48

59
## 0.25.0 (2024-01-08)
610

@@ -13,6 +17,7 @@
1317

1418
## 0.24.0 (2023-12-07)
1519

20+
1621
- [#539](https://github.com/mobilityhouse/ocpp/issues/539) feat: Add ChargePoint._handle_call return value. Thanks [@wafa-yah](https://github.com/wafa-yah)
1722
- [#266](https://github.com/mobilityhouse/ocpp/issues/266) fix: Central System documentation link.
1823
- [#516](https://github.com/mobilityhouse/ocpp/issues/516) OCPP 2.0.1 add additional security events from v1.3.

ocpp/v16/datatypes.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ class SampledValue:
105105
"""
106106

107107
value: str
108-
context: ReadingContext
108+
context: Optional[ReadingContext] = None
109109
format: Optional[ValueFormat] = None
110110
measurand: Optional[Measurand] = None
111111
phase: Optional[Phase] = None

0 commit comments

Comments
 (0)