Closed
Bug 1995368
Opened 2 months ago
Closed 2 months ago
Fix saved group tab storage removal in backups
Categories
(Firefox :: Profile Backup, defect, P1)
Firefox
Profile Backup
Tracking
()
RESOLVED
FIXED
146 Branch
| Tracking | Status | |
|---|---|---|
| firefox-esr140 | --- | unaffected |
| firefox144 | --- | unaffected |
| firefox145 | --- | fixed |
| firefox146 | --- | fixed |
People
(Reporter: handyman, Assigned: handyman)
References
(Blocks 1 open bug, Regression)
Details
(Keywords: regression, triaged, Whiteboard: [fidedi-fx-backup-blocking])
Attachments
(1 file)
|
48 bytes,
text/x-phabricator-request
|
pascalc
:
approval-mozilla-beta+
|
Details | Review |
From @sthompson in the review for bug 1994513, this
group.tabs.forEach(tab => delete tab.storage);
should be this:
group.tabs.forEach(tab => delete tab.state.storage);
SavedGroups use a separate state object, similar to _closedTabs.
Comment 1•2 months ago
|
||
Set release status flags based on info from the regressing bug 1994513
status-firefox144:
--- → unaffected
status-firefox145:
--- → unaffected
status-firefox146:
--- → affected
status-firefox-esr140:
--- → unaffected
| Assignee | ||
Comment 2•2 months ago
|
||
From the review for bug 1994513, savedGroups tab entries contain a state
object, the way _closedTabs does (but tabs does not).
Updated•2 months ago
|
Updated•2 months ago
|
Pushed by daparks@mozilla.com:
https://github.com/mozilla-firefox/firefox/commit/20a23bdc4250
https://hg.mozilla.org/integration/autoland/rev/da12b6792882
Fix saved group tab storage removal in backups r=fchasen
Updated•2 months ago
|
Status: NEW → ASSIGNED
Comment 4•2 months ago
|
||
| bugherder | ||
Status: ASSIGNED → RESOLVED
Closed: 2 months ago
Resolution: --- → FIXED
Target Milestone: --- → 146 Branch
| Assignee | ||
Comment 5•2 months ago
|
||
Comment on attachment 9521169 [details]
Bug 1995368: Fix saved group tab storage removal in backups r=#backup-reviewers!
Beta/Release Uplift Approval Request
- User impact if declined/Reason for urgency: This is part of the planned FxBackup uplifts. It was supposed to be part of the uplift in bug 1995365, but that was done earlier than planned -- while this patch was still awaiting review.
- Is this code covered by automated tests?: Yes
- Has the fix been verified in Nightly?: No
- Needs manual test from QE?: No
- If yes, steps to reproduce:
- List of other uplifts needed: Bug 1995365
- Risk to taking this patch: Medium
- Why is the change risky/not risky? (and alternatives if risky): Removes saved group storage from backups. They are not backed up with e.g. sync, so this is expected to improve compatibility.
- String changes made/needed: N/A
- Is Android affected?: No
Attachment #9521169 -
Flags: approval-mozilla-beta?
Updated•2 months ago
|
Attachment #9521169 -
Flags: approval-mozilla-beta? → approval-mozilla-beta+
Updated•2 months ago
|
You need to log in
before you can comment on or make changes to this bug.
Description
•