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
Version 2.0.0 brings a lot of changes to the Dapr JS SDK that were long due. Below an overview of the major contributions can be found, with a more detailed overview of the **Breaking Changes** under it.
8
+
9
+
* Actor Support has been added
10
+
* Actor Proxy has been added for Actor Access
11
+
* The HTTP Connection is now being reused to reduce the CONNRESET errors when intensively using the JS SDK
12
+
13
+
#### Breaking Changes
14
+
15
+
*`DaprServer.ts`: `startServer()`, `stopServer()` have been renamed to `start()` and `stop()` this means that `await server.startServer()` will now be called as `await server.start()`
16
+
*`DaprServer.ts`: `close()` has been removed in favor of `stop()`
17
+
18
+
#### Major Changes
19
+
20
+
* KeepAlive for HTTP has been added and a new method in the `DaprClient` has been added named `stop()` to stop the client and release the connections kept by the sockets.
0 commit comments