Releases: pozil/pub-sub-api-node-client
Releases · pozil/pub-sub-api-node-client
v5.2.1 - Fix infinite events
v5.2.0 - Publish event batch
v5.1.0 - Managed event subscriptions
- feat: add support for managed event subscriptions. See readme for details.
- build: bump dependencies
v5.0.3 - Fixed error reporting when parse error on event with missing replay ID
- fix: error reporting when parse error on event with missing replay ID #50
- build: bump dependencies
v5.0.2 - Fix for infinite event request
- fix: infinite event request #49
v5.0.1 - Fix for requestAdditionalEvents
- fix: call to requestAdditionalEvents was crashing #48
- build: bump dependencies
v5.0.0 - Major release
This major release introduces breaking changes. Check the documentation for migration guidelines.
Changes:
- breaking: new configuration system via PubSubApiClient constructor
- breaking: removed connectWithAuth() method, use connect() instead
- breaking: PubSubEventEmitter is removed. Events and subscription lifecycle events are now handled with a callback.
- feat: removed asynchronicity from event processing chain
- feat: integration tests
- feat: improved logging experience by unifying log format (topic name prefix)
- feat: optimized log verbosity by moving some info logs to debug and added more debug logs
- build: bump dependencies
v4.2.0 - Schema cache refactor
- feat: simplify internal schema caching mechanism (thanks to @francescod-subbyx for the lead)
- remove the
topic name -> schema
secondary cache. - switch to
schema ID -> schema
cache only. - improve schema cache when publishing
- remove the
- build: bump dependencies
v4.1.3 - [TS] Fix PubSubEventEmitter subscribe return type
- fix: Fix PubSubEventEmitter subscribe return type. #42