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
- TcpConnector and UdsConnector have been replaced with 'connector' factory functions in <cppwamp/tcp.hpp> and <cppwamp/uds.hpp>. The new interface uses a fluent API which allows the user to specify setsockopt socket options (closes#63). Consult the revised tutorials and documentation to learn how to migrate your app code to the revised connection interface.
- Revised connection API so that unused serialization libraries are not needed when using CppWAMP in a header-only fashion (fixes#64).
- Raw socket transports now use 16MB as the default maximum length for incoming messages (closes#39).
Copy file name to clipboardExpand all lines: CHANGELOG.md
+11Lines changed: 11 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,3 +1,14 @@
1
+
v0.4.0
2
+
======
3
+
Connection API improvements.
4
+
5
+
### Breaking Changes
6
+
-`TcpConnector` and `UdsConnector` have been replaced with `connector` factory functions in `<cppwamp/tcp.hpp>` and `<cppwamp/uds.hpp>`. The new interface uses a fluent API which allows the user to specify `setsockopt` socket options (closes #63). Consult the revised tutorials and documentation to learn how to migrate your app code to the revised connection interface.
7
+
- Revised connection API so that unused serialization libraries are not needed when using CppWAMP in a header-only fashion (fixes #64).
8
+
9
+
### Other Changes
10
+
- Raw socket transports now use 16MB as the default maximum length for incoming messages (closes #39).
0 commit comments