Skip to content
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

[PM1724] State Management v2 #64

Closed
wants to merge 25 commits into from
Closed
Show file tree
Hide file tree
Changes from 11 commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
36b6721
SDK state management V2
dani-garcia May 10, 2023
b1a7e2e
Update schemas
dani-garcia Jun 8, 2023
69c6ce9
Don't include tokio or fs4 in wasm builds
dani-garcia Jun 8, 2023
1f82459
Remove unused SyncResponse
dani-garcia Jun 8, 2023
9027f6d
Initialize organization crypto when restoring session from state
dani-garcia Jun 15, 2023
9c09485
Merge branch 'master' into PM-1724-state-management-v2
dani-garcia Jun 28, 2023
9d40999
Update schemas
dani-garcia Jun 29, 2023
f0dfff4
Remove some unrelated changes
dani-garcia Jun 30, 2023
17d0810
Remove most of the KDF changes from here
dani-garcia Jun 30, 2023
6b61474
Merge branch 'master' into PM-1724-state-management-v2
dani-garcia Jun 30, 2023
cbeb4fc
Domain doesn't need to implement JSON schema
dani-garcia Jun 30, 2023
9094323
Remove unused model structs and folder code, rename domain.rs
dani-garcia Jul 4, 2023
9a99eb2
Merge branch 'master' into PM-1724-state-management-v2
dani-garcia Jul 4, 2023
1f9edd2
Update schemas
dani-garcia Jul 4, 2023
eb0281c
Extracted decryptable/encryptable
dani-garcia Jul 5, 2023
1fd9cca
Split models.rs into auth/keys/profile files, and encapsulate the sta…
dani-garcia Jul 5, 2023
4915eb7
Merge branch 'master' into PM-1724-state-management-v2
dani-garcia Jul 10, 2023
4064d3b
Merge branch 'master' into PM-1724-state-management-v2
dani-garcia Jul 12, 2023
8902594
Merge branch 'master' into PM-1724-state-management-v2
dani-garcia Jul 13, 2023
e893acd
Run prettier
dani-garcia Jul 13, 2023
9345ce8
Merge branch 'master' into PM-1724-state-management-v2
dani-garcia Jul 17, 2023
2dd6e61
Merge branch 'master' into PM-1724-state-management-v2
dani-garcia Jul 17, 2023
22c4a74
Remove some unnecessary pub's, move storage implementations to separa…
dani-garcia Jul 18, 2023
1d43f45
Rename functions to unlock
dani-garcia Jul 18, 2023
530ae5b
Just set the access token on unlock, no reason to read and immediatel…
dani-garcia Jul 18, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
141 changes: 96 additions & 45 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion crates/bitwarden-json/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ rust-version = "1.57"
internal = ["bitwarden/internal"] # Internal testing methods

[dependencies]
schemars = "0.8.12"
schemars = { version = "0.8", features = ["uuid1", "chrono"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0.96"

Expand Down
Loading