You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: CHANGELOG.md
+20
Original file line number
Diff line number
Diff line change
@@ -7,6 +7,26 @@
7
7
### Features
8
8
- Serve type hints for all classes and methods as .pyi file
9
9
- Add property `Server.protocol_parameters` and `Connection.protocol_parameters` to be able to read and update protocol parameters like window size and timeouts
10
+
- Serve type hints for all classes and methods as a `.pyi` file.
11
+
- Add the property **Server.protocol_parameters** and **Connection.protocol_parameters** to enable reading and updating protocol parameters, such as window size and timeouts.
12
+
- Introduce the **Client.on_station_initialized** callback to handle end-of-initialization messages.
13
+
- Add the **Station.signal_initialized(cause=...)** method to support sending end-of-initialization messages per station to all connected clients.
14
+
- Send monitoring data formatted as sequences in periodic transmissions and interrogation responses, if possible.
15
+
- Provide Batch Transmission support via the new **Batch** class, in combination with **Server.transmit_batch(...)**, for monitoring direction.
16
+
- Add **TransportSecurity.set_ciphers()** to specify a list of supported cipher suites.
17
+
- Add **TransportSecurity.set_renegotiation_time()** to configure the TLS renegotiation time.
18
+
- Add **TransportSecurity.set_resumption_interval()** to define the session resumption interval.
19
+
- Raise a `ValueError` when modifying a **TransportSecurity** object that is already assigned to a client or server, as changes have no effect.
20
+
21
+
### Dependencies
22
+
- Minor update of lib60870 to 2.3.3
23
+
- Major update of Mbed TLS to 3.6.2, add support for TLS 1.3
24
+
25
+
### Deprecations
26
+
- Property **number_of_object** renamed to **number_of_objects** in class **IncomingMessage**
0 commit comments