Releases: socketio/socket.io-postgres-adapter
0.4.0
This release contains an important refactor of the adapter (this commit), as most of the logic has been moved in the ClusterAdapter
class of the socket.io-adapter
package.
Diff: 0.3.1...0.4.0
0.3.1
The socket.io-adapter
package was added to the list of peerDependencies
, in order to fix sync issues with the version imported by the socket.io package (see d177075).
Support for connection state recovery (see here) will be added in the next release.
Diff: 0.3.0...0.3.1
0.3.0
Features
- broadcast and expect multiple acks (829a1f5)
This feature was added in [email protected]
:
io.timeout(1000).emit("some-event", (err, responses) => {
// ...
});
Thanks to this change, it will now work with multiple Socket.IO servers.
- use a single Postgres connection for all namespaces (651e281)
The adapter will now create one single Postgres connection for all namespaces, instead of one per namespace, which could lead to performance issues.
Diff: 0.2.0...0.3.0
0.2.0
0.1.1
0.1.0
Initial release!