rebase
- Feed Queries
- All Stories
- Search
- Feed Search
- Transactions
- Transaction Logs
Mar 25 2024
Remove isDefault to pass flow check
Mar 22 2024
Mar 21 2024
remove web migration
Mar 19 2024
consts can be moved to specific unit tests
rename ClientDBIntegrityThreadHashesOperation to ClientDBIntegrityStoreOperation for consistency
add remove to process store ops
rebase
rebase
rebase
review feedback
review feedback
Mar 18 2024
Mar 16 2024
refactor for sync state action
Mar 15 2024
convert thead hash type to text
review feedback. convert thread_hash to string
Mar 14 2024
In D11305#326479, @varun wrote:
- it's safer. assuming that devs remember to revert to master after testing local changes, we can make sure that things work on staging for a short period before we apply changes to prod. there's no good way to test landed changes for an extended period in the current process without running the risk of a) another dev undoing the changes while testing something on a custom tag or b) the changes being applied prematurely to prod
- we can see the delta between staging and prod clearly. before, it was possible for staging to be a few releases ahead of prod without any visibility. this is a good (albeit not perfect) forcing function to make sure we keep prod up to date with staging
lmk what you think. curious for @bartek and @will 's thoughts too
Mar 12 2024
rebase
Mar 11 2024
The reduceIntegrityStore function starts with:
if (
action.type === logInActionTypes.success ||
action.type === siweAuthActionTypes.success ||
action.type === keyserverRegisterActionTypes.success ||
action.type === fullStateSyncActionType ||
(action.type === setClientDBStoreActionType &&
!!action.payload.threadStore &&
state.threadHashingStatus !== 'completed')
) {
return { threadHashes: {}, threadHashingStatus: 'starting' };
} else if (action.type === keyserverAuthActionTypes.success) {
return { ...state, threadHashingStatus: 'starting' };
}build db wasm
add _store to create_integrity_table method
Update hash to number from text and review feedback
review feedback and add remove operation
Mar 7 2024
Mar 6 2024
Looks good to me. We're removing the cache to support stateless sessions correct?
Mar 4 2024
Mar 1 2024
Looks good to me. Might want to adjust the diff title and test plan but that's really it.
Feb 29 2024
In D11200#323719, @varun wrote:what is IdentitySearchAccessToken? do you mean IdentitySearchAuthMessage?
In D11200#323690, @varun wrote:can we improve the test plan a little? we should check that if the user isn't logged in we don't get an error
authMetadata to auth message in console log
Downstream the client will no longer attempt to initialize a websocket connection in the identity-search-context. The identitySearchSocketConnected variable in useSearchUsers will remain false and so the function will fallback to keyserver search.