Only set sidebar nimbus prefs with a minVersion check
Categories
(Firefox :: Sidebar, task)
Tracking
()
| Tracking | Status | |
|---|---|---|
| firefox131 | --- | unaffected |
| firefox132 | + | fixed |
| firefox133 | --- | fixed |
People
(Reporter: Mardak, Assigned: Mardak)
References
Details
(Whiteboard: [fidefe-sidebar])
Attachments
(2 files)
|
48 bytes,
text/x-phabricator-request
|
Details | Review | |
|
48 bytes,
text/x-phabricator-request
|
phab-bot
:
approval-mozilla-beta+
|
Details | Review |
[Tracking Requested - why for this release]: needed to support experiment enrolling 132 -> upgrade to 133
Building on the ability to flip prefs from bug 1895932, we want to conditionally set these prefs depending on the current firefox version so that we can pre-enroll users during 132 without changing the experience until upgrading to 133. This should be copying the chatbot functionality from bug 1916274:
if (
Services.vc.compare(
AppConstants.MOZ_APP_VERSION_DISPLAY,
lazy.NimbusFeatures[featureId].getVariable("minVersion")
) < 0
) {
return;
Updated•1 year ago
|
| Assignee | ||
Comment 1•1 year ago
|
||
Add minVersion feature variable to check against current firefox version.
Updated•1 year ago
|
Comment 3•1 year ago
|
||
| bugherder | ||
| Assignee | ||
Comment 4•1 year ago
|
||
Add minVersion feature variable to check against current firefox version.
Original Revision: https://phabricator.services.mozilla.com/D224356
Updated•1 year ago
|
| Assignee | ||
Comment 5•1 year ago
|
||
verified with stage preview https://stage.experimenter.nonprod.dataops.mozgcp.net/nimbus/mardak-test-chatbot-minversion and a changing the firefox version from 133.0a1 to 133.0a2
Comment 6•1 year ago
|
||
beta Uplift Approval Request
- User impact if declined: users enrolled during 132 experience pre-133 feature
- Code covered by automated testing: yes
- Fix verified in Nightly: yes
- Needs manual QE test: no
- Steps to reproduce for manual QE testing: manually verified with stage preview experiment, experiment testing will cover
- Risk associated with taking this patch: low
- Explanation of risk level: only runs for experiment with new logic to skip
- String changes made/needed: none
- Is Android affected?: no
Updated•1 year ago
|
Updated•1 year ago
|
Updated•1 year ago
|
Updated•1 year ago
|
Description
•