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
+24
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,30 @@
1
1
Changelog
2
2
=========
3
3
4
+
v0.10.1 - 2024-04-
5
+
--------------------
6
+
7
+
With this release, a new remote procedure call mechanism gets added to the
8
+
`vibe.web` package, called WebRPC. In its initial implementation, it uses a
9
+
WebSocket connection to provide bi-directional communication using the HTTP
10
+
protocol. This enables peer-to-peer communication with one peer behind a
11
+
NAT/firewall. Defining WebRPC interfaces is mostly compatible with the REST
12
+
interface framework, so that both can be employed at the same time.
13
+
14
+
### Features and improvements ###
15
+
16
+
- Added the `vibe.web.rpc` module for HTTP based bi-directional RPC communication - [pull #2797][issue2797], [pull #2798][issue2798]
17
+
18
+
### Bug fixes ###
19
+
20
+
- Fixed a possible `InvalidMemoryOperationError` when empty `MongoCursor` instances were being leaked to the GC - [issue #2793][issue2793], [pull #2794][issue2794]
0 commit comments