-
Notifications
You must be signed in to change notification settings - Fork 36
chore: expose transaction context propagation to the server sdk only #590
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
Conversation
I don't think there's a way to do this other than manually editing the release PR, so that's the way I'd handle this. It wouldn't be hard - just manual changes to the PR description, the release notes, and the version number. |
Signed-off-by: Michael Beemer <[email protected]>
Signed-off-by: Michael Beemer <[email protected]>
Signed-off-by: Michael Beemer <[email protected]>
f682ff4
to
223ba46
Compare
Hey @toddbaert @lukas-reining @thomaspoignant could one of you take a look at this PR when you have a moment? |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The code change looks good to me and makes sense!
, | ||
"../server/src/transaction-context" | ||
], |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sorry I'm late to this PR, but I'm a bit confused by this.
It seems odd (and maybe even problematic?) that we need to compile source from server in shared.
This PR
Notes
Transaction context propagation only makes sense on the server and was simply ignored by the client. This removes the methods from the client sdk to avoid confusion.
This is a breaking change in the web SDK. However, it's sub 1.0 and this feature effectively had no effect if it was used. Currently, this is not marked as a breaking change to avoid releasing a major version. @toddbaert do you know if it's possible to mark the server sdk changes as a chore and the web sdk changes as a breaking fix?
Signed-off-by: Michael Beemer [email protected]