You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This commit was created on GitHub.com and signed with GitHub’s verified signature.
⚠️ Breaking Changes ⚠️
Android
Added RustComponentsInitializer.kt to init_rust_components.
Context ID
Added the first version of a component for managing and rotating context IDs
sent to MARS / Merino.
BREAKING CHANGE
Removed Megazord.kt and moved the contents to the new RustComponentsInitializer.kt.
🦊 What's Changed 🦊
Remote Settings
RemoteSettingsService::sync is now more efficient. It checks the remote settings changes
endpoint and only syncs collections that have been modified since the last sync.
Logins
add logins store api methods for bulk insert and meta insert, intended to be used during migration and CSV import on desktop:
fn add_with_record(&self, entry_with_record: LoginEntryWithRecordFields): add a login together with metadata
fn add_many(&self, entries: Vec<LoginEntry>): add multiple logins with single transaction
fn add_many_with_records(&self, entries_with_records: Vec<LoginEntryWithRecordFields>): add multiple logins with metadata within single transaction