-
Notifications
You must be signed in to change notification settings - Fork 22
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Integrate Rust Client Bridge #400
Open
w1am
wants to merge
12
commits into
w1am/DEVEX-189-rebrand-node-client
Choose a base branch
from
kurrent-rust-client-bridge
base: w1am/DEVEX-189-rebrand-node-client
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Integrate Rust Client Bridge #400
w1am
wants to merge
12
commits into
w1am/DEVEX-189-rebrand-node-client
from
kurrent-rust-client-bridge
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Co-authored-by: yoeight <[email protected]>
…nt' into kurrent-rust-client-bridge
ea530fa
to
12f46b3
Compare
12f46b3
to
9889e6a
Compare
4d3bad4
to
b0362e3
Compare
2a73d86
to
7298242
Compare
* Remove readStream from channel test because it's not handled by node client anymore
7298242
to
52227fd
Compare
a14f17e
to
c40d73a
Compare
c40d73a
to
b1a139a
Compare
YoEight
approved these changes
Feb 21, 2025
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Highlights
Breaking Changes
This document outlines the breaking changes introduced in the upcoming release of the KurrentDB client, which includes a performance boost for read operations as it now uses the Rust client for these operations. Upgrading users must address these changes to ensure compatibility.
1. Client Initialization via Connection String
What Changed
We've removed the class constructor method for initializing
KurrentDBClient
. Clients must now be created using a connection string, aligning with patterns used in other clients in our ecosystem.Migration Guide
Old Approach
Change to
2. Node.js 14 Deprecation
What Changed
We've officially dropped support for Node.js 14 following the Node.js Release Schedule.
Action Required
nvm
:Impact
3. Stream Handling Migration to Async Iterables
What Changed
Previously, we supported both event emitter pattern and async iteration. In this release, we've removed event emitter pattern and now support only async iteration.
Migration Guide
Previously Supported Approaches
Now Required