-
Notifications
You must be signed in to change notification settings - Fork 332
chore: Remove the old Latest Event API #5624
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
base: main
Are you sure you want to change the base?
Conversation
Codecov Report❌ Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #5624 +/- ##
==========================================
- Coverage 88.88% 88.81% -0.07%
==========================================
Files 348 346 -2
Lines 96483 94858 -1625
Branches 96483 94858 -1625
==========================================
- Hits 85757 84252 -1505
+ Misses 6687 6584 -103
+ Partials 4039 4022 -17 ☔ View full report in Codecov by Sentry. |
dcb8306
to
03e6102
Compare
CodSpeed Performance ReportMerging #5624 will not alter performanceComparing Summary
|
03e6102
to
c8e7ff0
Compare
This patch removes the “new_” prefix to the latest event API.
eba17c6
to
31e3911
Compare
This depends on #5617, right? |
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.
I think this looks fine, though it should only be merged after #5617 is merged, otherwise we're regressing in functionality.
This is also missing a changelog entry.
#5617 can be merged after this PR, it won't add any regression. Right now, with the old Latest Event API was not supporting local events, so it was impossible to sort by them. However, #3872 must be addressed so that re-decryption happens in the Event Cache. The old Latest Event API has its own re-decryption mechanism. Knowing that the new Latest Event API relies on the Event Cache, as long as the Event Cache doesn't support redecryption, we will have a regression. So:
|
Ah, because #5587 added the new way to do latest events, and #5617 will only do the sorting based on the latest event. Right, sorry for being confused. |
This set of patches remove the old latest event API, since the new one is now available and working.
Finally, this set of patches also remove the
new_
prefix from the new latest event API.🎉