Skip to content

Commit 4190f4b

Browse files
chore(release): 0.3.0
Diff: 0.2.0...0.3.0
1 parent 651e281 commit 4190f4b

File tree

3 files changed

+26
-3
lines changed

3 files changed

+26
-3
lines changed

Diff for: CHANGELOG.md

+23
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,26 @@
1+
# [0.3.0](https://github.com/socketio/socket.io-postgres-adapter/compare/0.2.0...0.3.0) (2022-04-28)
2+
3+
4+
### Features
5+
6+
* broadcast and expect multiple acks ([829a1f5](https://github.com/socketio/socket.io-postgres-adapter/commit/829a1f528df7b723ab6efb0e56248f326bca0c8e))
7+
8+
This feature was added in `[email protected]`:
9+
10+
```js
11+
io.timeout(1000).emit("some-event", (err, responses) => {
12+
// ...
13+
});
14+
```
15+
16+
Thanks to this change, it will now work with multiple Socket.IO servers.
17+
18+
* use a single Postgres connection for all namespaces ([651e281](https://github.com/socketio/socket.io-postgres-adapter/commit/651e28169185d91c7a1a86152d21aa265d5500f2))
19+
20+
The adapter will now create one single Postgres connection for all namespaces, instead of one per namespace, which could lead to performance issues.
21+
22+
23+
124
# [0.2.0](https://github.com/socketio/socket.io-postgres-adapter/compare/0.1.1...0.2.0) (2021-12-16)
225

326

Diff for: package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@socket.io/postgres-adapter",
3-
"version": "0.2.0",
3+
"version": "0.3.0",
44
"description": "The Socket.IO Postgres adapter, allowing to broadcast events between several Socket.IO servers",
55
"license": "MIT",
66
"repository": {

0 commit comments

Comments
 (0)