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: docs/migrations/v8_to_v10.md
+50-13Lines changed: 50 additions & 13 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -416,8 +416,9 @@ The analytics module was doing nothing and the web module was replaced by suppor
416
416
### Module Orders
417
417
418
418
- Removed report from interrupt of an operation. Reporting during an interruption doesn't add any value. The quantity for the report can only be predicted and will be inaccurate if something goes wrong or is reworked during the interruption.
*Don't use the obsolete Payload Method and use ReadOnlySequence instead. To avoid unnecessary array copies methods deserializing the data have breaking signature changes
-Don't use the obsolete Payload Method and use ReadOnlySequence instead. To avoid unnecessary array copies methods deserializing the data have breaking signature changes
702
+
<details>
703
+
<summary>CodeReplacementSnippets</summary>
704
+
705
+
```csharp
706
+
Deserialize(byte[] messageAsBytes) // replace with
707
+
Deserialize(ReadOnlySequence<byte>messageAsBytes)
708
+
```
709
+
</details>
710
+
- Remove Newtonoft.Json in favor of System.Text.Json
711
+
- Move namespace `Moryx.Drivers.Mqtt.MqttTopics` to `Moryx.Drivers.Mqtt.Topics`
- Add the option to add custom topics as the User by removing internal access modifiers from MqttTopic Serialize and Deserialize
716
+
- Add Retain information for Publishing and Receiving messages
717
+
- Support Mqtt5 response topics
718
+
- Support unsubscribing from Topics, by removing or changing the resource
719
+
- Support changing the broker without restarting the Resource Management, by a) providing a Reconnect method and b) handling changes to the relevant properties
720
+
- Support diagnostic tracing of message contents, before and after deserialization
0 commit comments