Skip to content

Latest commit

 

History

History
71 lines (35 loc) · 2.76 KB

CHANGELOG.md

File metadata and controls

71 lines (35 loc) · 2.76 KB

History

Version Release date
0.4.0 July 2024
0.3.1 February 2023
0.3.0 April 2022
0.2.0 December 2021
0.1.1 June 2021
0.1.0 June 2021

Release notes

0.4.0 (2024-07-17)

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.

0.3.1 (2023-02-08)

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.

0.3.0 (2022-04-28)

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.

0.2.0 (2021-12-16)

Features

0.1.1 (2021-06-28)

Bug Fixes

  • prevent SQL injection in the NOTIFY payload (#1) (580cec2)

0.1.0 (2021-06-14)

Initial commit