-
Notifications
You must be signed in to change notification settings - Fork 5
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
fix: stop exposing wipe() and unload() since they are broken in Kotlin [WPB-14514] #786
Open
typfel
wants to merge
3
commits into
main
Choose a base branch
from
fix/wipe-method-WPB-14514
base: main
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.
+186
−186
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
echoes-hq
bot
added
the
echoes: product-roadmap/bug
Work contributing to resolve a bug not critical enough to have raised an incident.
label
Nov 28, 2024
typfel
force-pushed
the
fix/wipe-method-WPB-14514
branch
from
November 28, 2024 14:01
e6f1355
to
3dff89a
Compare
Should we also remove related functions from the |
typfel
force-pushed
the
fix/wipe-method-WPB-14514
branch
from
November 29, 2024 15:22
3dff89a
to
edff63f
Compare
Bencher Report
Click to view all benchmark results
|
typfel
force-pushed
the
fix/wipe-method-WPB-14514
branch
from
November 29, 2024 15:59
edff63f
to
bddd718
Compare
It's still used by the wasm implementation |
coriolinus
reviewed
Nov 29, 2024
@@ -33,15 +32,18 @@ pub(crate) struct CoreCryptoFfiClient { | |||
prekey_last_id: u16, | |||
} | |||
|
|||
const KEY_STORE_PATH: &str = "path"; | |||
const KEY_STORE_KEY: &str = "path"; |
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.
This used to be "key"
when it was in the CoreCrypto::new
invocation as a literal.
typfel
force-pushed
the
fix/wipe-method-WPB-14514
branch
2 times, most recently
from
December 3, 2024 16:00
89da5a8
to
ae872ca
Compare
typfel
force-pushed
the
fix/wipe-method-WPB-14514
branch
3 times, most recently
from
December 3, 2024 16:27
fdcee17
to
f672301
Compare
…in [WPB-14514] Clients should instead call close() which will close the database connection, it's then safe to delete the core crypto database.
Previously the interop tests never attempted to call the wipe() function which existed for all interop clients, which means you could only run them once without manually cleaning up the key stores.
typfel
force-pushed
the
fix/wipe-method-WPB-14514
branch
from
December 3, 2024 16:32
f672301
to
0dc3680
Compare
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
echoes: product-roadmap/bug
Work contributing to resolve a bug not critical enough to have raised an incident.
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.
What's new in this PR
Stop exposing
wipe()
andunload()
Clients should instead call close() which will close the database connection, it's then safe to delete the core crypto database.
PR Submission Checklist for internal contributors
SQPIT-764
feat(conversation-list): Sort conversations by most emojis in the title #SQPIT-764
.