Skip to content

Releases: TimoBechtel/socketdb

v6.0.0

09 Feb 22:05
ee117f1
Compare
Choose a tag to compare

6.0.0 (2023-02-09)

⚠ BREAKING CHANGES

  • server: The interface for custom websocket-servers has changed. It now needs to return a listen function.

Features

  • server: add api for creatinging a user session context (40a8f4c)

v5.0.1

25 Jan 20:08
4f2c7c7
Compare
Choose a tag to compare

5.0.1 (2023-01-25)

Bug Fixes

  • client: updates being sent even if nothing has changed (801fcfc)

v5.0.0

20 Jan 10:18
92280b9
Compare
Choose a tag to compare

5.0.0 (2023-01-20)

⚠ BREAKING CHANGES

  • core: the store now returns null if there is no data for a given path instead of always returning an empty node. if you use a custom store or use the store from @socketdb/core directly, make sure to update accordingly.
  • changed the underlying events-system. this breaks compatibility with previous versions. make sure to upgrade both client and server.

Bug Fixes

  • each callback not run again after data for path has been re-added (c3f0d35)

Code Refactoring

  • core: store returns null for empty data (c3f0d35)

v4.2.1

18 Nov 15:23
9db78eb
Compare
Choose a tag to compare

4.2.1 (2022-11-18)

Bug Fixes

  • core: add undefined as allowed primitive value (1e9c35c)

v4.2.0

17 Nov 14:39
48e2c21
Compare
Choose a tag to compare

4.2.0 (2022-11-17)

Features

  • core: improve SchemaDefinition types (5a33d8a)

v4.1.1

15 Nov 13:53
906123a
Compare
Choose a tag to compare

4.1.1 (2022-11-15)

Bug Fixes

  • wrong readme files for packages (fa9f411)

v4.1.0

15 Nov 13:24
6f31d5c
Compare
Choose a tag to compare

4.1.0 (2022-11-15)

Features

  • client: add commonjs support (ac670dc)
  • plugin-validate: add support for socketdb v4 (8c8c91e)

v4.0.2

15 Nov 10:40
1e34602
Compare
Choose a tag to compare

4.0.2 (2022-11-15)

Bug Fixes

  • client: check for websocket ready state before sending (7ac28ab)

v4.0.1

15 Nov 00:07
b3a7e8d
Compare
Choose a tag to compare

4.0.1 (2022-11-15)

Bug Fixes

  • wrong @socketdb/core dependency version (095ab6d)

v4.0.0

14 Nov 23:27
e3d86b0
Compare
Choose a tag to compare

4.0.0 (2022-11-14)

⚠ BREAKING CHANGES

  • socketdb has been split into @socketdb/client & @socketdb/server
  • changed the underlying events-system. this breaks compatibility with previous versions. make sure to upgrade both client and server

Features

Code Refactoring

  • move to a monorepo (5ba03ed)
  • prefix socket events with a context (bb89f10)