The .1 refers to arkenfox, and has nothing to do with Firefox's versioning.
This is a point release for ESR users to match the upcoming change in arkenfox moving forward. It changes the arkenfox defaults for sanitizing history and downloads history on close to false. We enable sanitizeOnShutdown (2801) to help prevent 1st party website tracking across sessions. We consider history/downloads, which are not accessible to websites, as orthogonal and exempt these. This is a non-destructive change, i.e users won't lose anything. As always, those wishing differently can add overrides
🟪 issues:
🟩 changelog summary
- new
- // user_pref("browser.display.document_color_use", 1) // inactive, replaces no-longer used
browser.display.use_system_colors
- // user_pref("browser.display.document_color_use", 1) // inactive, replaces no-longer used
- changed (prefs used when migrating
- user_pref("privacy.clearOnShutdown_v2.historyFormDataAndDownloads", false);
- user_pref("privacy.clearSiteData.historyFormDataAndDownloads", false);
- user_pref("privacy.clearHistory.historyFormDataAndDownloads", false);
- changed (prefs used in FF136+)
- user_pref("privacy.clearOnShutdown_v2.browsingHistoryAndDownloads", false);
- user_pref("privacy.clearOnShutdown_v2.downloads", false);
- user_pref("privacy.clearSiteData.browsingHistoryAndDownloads", false);
- user_pref("privacy.clearHistory.browsingHistoryAndDownloads", false);
The migration was to split history and downloads from formdata (caused by an earlier migration in FF128). The migration code was added for Firefox 136 and higher. ESR users would migrate when they updated to ESR140. In an abundance of caution, I changed them to match, but they should be obsolete - you should already be ESR140 or the latest Firefox, and a new ESR profile will migrate as you create the profile (i.e before you can add a user.js)