-
Notifications
You must be signed in to change notification settings - Fork 25
Update API to 8a67aafbe5e01a738b479ebb82185fbc947866f8 #578
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
|
Great job! No new security vulnerabilities introduced in this pull request |
|
Claude finished @bw-ghapp[bot]'s task —— View job Code Review Complete: API Binding UpdatesTasks
Executive SummaryThis PR updates auto-generated API bindings from the Bitwarden server, introducing 3 critical breaking changes and 1 high-severity security concern. While the changes are properly auto-generated, they will cause TypeScript compilation failures in consuming clients and require coordinated migration. Recommendation: DO NOT MERGE without client team coordination and migration plan. Critical Issues Found1. 🚨 BREAKING CHANGE: OrganizationUpdateRequestModel ConstructorFile: Before: pub fn new(name: String, billing_email: String) -> OrganizationUpdateRequestModelAfter: pub fn new() -> OrganizationUpdateRequestModelImpact:
2. 🚨 BREAKING CHANGE: Organizations API
|
crates/bitwarden-api-api/src/models/organization_update_request_model.rs
Show resolved
Hide resolved
| #[serde( | ||
| rename = "kdfSettings", | ||
| alias = "KdfSettings", | ||
| skip_serializing_if = "Option::is_none" | ||
| )] | ||
| pub kdf_settings: Option<Box<models::KdfSettings>>, |
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.
💭 Question: With the new kdf_settings field containing structured KDF configuration, are the individual fields (kdf, kdf_iterations, kdf_memory, kdf_parallelism) being deprecated?
The consuming code in bitwarden-core/src/auth/login/prelogin.rs:29-61 still uses the individual fields. Consider if migration to kdf_settings is planned.
🔍 SDK Breaking Change Detection ResultsSDK Version:
Breaking change detection completed. View SDK workflow |
Codecov Report❌ Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #578 +/- ##
==========================================
- Coverage 79.74% 79.73% -0.01%
==========================================
Files 304 304
Lines 32757 32758 +1
==========================================
Hits 26121 26121
- Misses 6636 6637 +1 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|

Updates the API bindings to
8a67aafbe5e01a738b479ebb82185fbc947866f8