Skip to content

Commit 307fe43

Browse files
authored
Merge branch 'main' into ps/PM-33229-cli-session-rehydration
2 parents 969e823 + 4b41c1c commit 307fe43

65 files changed

Lines changed: 2900 additions & 1337 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/CODEOWNERS

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,9 @@ crates/bitwarden-collections/** @bitwarden/team-admin-console-dev
4040
crates/bitwarden-crypto/** @bitwarden/team-key-management-dev
4141
crates/bitwarden-exporters/** @bitwarden/team-tools-dev @bitwarden/team-platform-dev
4242
crates/bitwarden-generators/** @bitwarden/team-tools-dev @bitwarden/team-platform-dev
43+
crates/bitwarden-importers/** @bitwarden/team-tools-dev @bitwarden/team-platform-dev
4344
crates/bitwarden-organization-crypto/** @bitwarden/team-key-management-dev
45+
crates/bitwarden-organization-invite-link/** @bitwarden/team-admin-console-dev
4446
crates/bitwarden-organizations/** @bitwarden/team-admin-console-dev
4547
crates/bitwarden-policies/** @bitwarden/team-admin-console-dev
4648
crates/bitwarden-sensitive-value/** @bitwarden/team-key-management-dev

.github/renovate.json5

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,12 @@
7575
commitMessagePrefix: "[deps] Autofill:",
7676
reviewers: ["team:team-autofill-dev"],
7777
},
78+
{
79+
matchManagers: ["cargo"],
80+
matchPackageNames: ["keepass"],
81+
commitMessagePrefix: "[deps] Tools:",
82+
reviewers: ["team:team-tools-dev"],
83+
},
7884
{
7985
matchManagers: ["cargo"],
8086
matchPackageNames: [

Cargo.lock

Lines changed: 164 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,10 +41,12 @@ bitwarden-ffi = { path = "crates/bitwarden-ffi", version = "=3.0.0" }
4141
bitwarden-ffi-macro = { path = "crates/bitwarden-ffi-macro", version = "=3.0.0" }
4242
bitwarden-fido = { path = "crates/bitwarden-fido", version = "=3.0.0" }
4343
bitwarden-generators = { path = "crates/bitwarden-generators", version = "=3.0.0" }
44+
bitwarden-importers = { path = "crates/bitwarden-importers", version = "=3.0.0" }
4445
bitwarden-ipc = { path = "crates/bitwarden-ipc", version = "=3.0.0" }
4546
bitwarden-logging = { path = "crates/bitwarden-logging", version = "=3.0.0" }
4647
bitwarden-logging-macro = { path = "crates/bitwarden-logging-macro", version = "=3.0.0" }
4748
bitwarden-organization-crypto = { path = "crates/bitwarden-organization-crypto", version = "=3.0.0" }
49+
bitwarden-organization-invite-link = { path = "crates/bitwarden-organization-invite-link", version = "=3.0.0" }
4850
bitwarden-organizations = { path = "crates/bitwarden-organizations", version = "=3.0.0" }
4951
bitwarden-pm = { path = "crates/bitwarden-pm", version = "=3.0.0" }
5052
bitwarden-policies = { path = "crates/bitwarden-policies", version = "=3.0.0" }
@@ -77,6 +79,7 @@ futures = ">=0.3.31, <0.4"
7779
hmac = "0.13.0"
7880
http = ">=1.4.0, <2.0"
7981
js-sys = { version = ">=0.3.72, <0.4" }
82+
keepass = { version = ">=0.13.7, <0.14", default-features = false }
8083
mockall = { version = ">=0.13.1, <0.15" }
8184
password-rules-parser = ">=1.1.0, <2"
8285
proc-macro2 = ">=1.0.89, <2"

crates/bitwarden-core/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,7 @@ bitwarden-core-macro = { workspace = true }
6565
bitwarden-crypto = { workspace = true }
6666
bitwarden-encoding = { workspace = true }
6767
bitwarden-error = { workspace = true }
68+
bitwarden-logging = { workspace = true }
6869
bitwarden-state = { workspace = true }
6970
bitwarden-state-bridge-macro = { workspace = true }
7071
bitwarden-test = { workspace = true, optional = true }

crates/bitwarden-core/src/client/encryption_settings.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ use bitwarden_crypto::UnsignedSharedKey;
77
use bitwarden_error::bitwarden_error;
88
use thiserror::Error;
99
#[cfg(feature = "internal")]
10-
use tracing::{info, instrument};
10+
use tracing::info;
1111

1212
#[cfg(any(feature = "secrets", feature = "internal"))]
1313
use crate::OrganizationId;
@@ -82,7 +82,7 @@ impl EncryptionSettings {
8282
}
8383

8484
#[cfg(feature = "internal")]
85-
#[instrument(err, skip_all)]
85+
#[bitwarden_logging::instrument(err)]
8686
pub(crate) fn set_org_keys(
8787
org_enc_keys: Vec<(OrganizationId, UnsignedSharedKey)>,
8888
store: &KeyStore<KeySlotIds>,

0 commit comments

Comments
 (0)