Commit Graph

10201 Commits (0d0eef9abebf1dbcde3d1cc96013c2269318c278)
 

Author SHA1 Message Date
mozilla-l10n-automation-bot 0d0eef9abe [fenix] Import l10n. (https://github.com/mozilla-mobile/fenix/pull/28178) 2 years ago
Gabriel Luong ebdc12e483 [fenix] For https://github.com/mozilla-mobile/fenix/issues/28161- Refactor mozilla-detekt-rules in detekt.yml to the bottom of the file 2 years ago
MickeyMoz 7dab212a83 [fenix] Update to Android-Components 110.0.20221212191718. 2 years ago
Arturo Mejia 4280864031 [fenix] No issue: Update Cookie banner handling strings 2 years ago
Gabriel Luong d60f31f758 [fenix] For https://github.com/mozilla-mobile/fenix/issues/28174 - Remove all unused strings marked moz:removedIn <= 107 2 years ago
Jonathan Almeida 2d5ced40aa [fenix] Close https://github.com/mozilla-mobile/fenix/issues/28137: Disable run-build tasks on Pull Requests 2 years ago
Ryan VanderMeulen 7d1f5d148d [fenix] Update version.txt to 110.0b1 2 years ago
MickeyMoz 5c4ed92015 [fenix] Update to Android-Components 109.0.20221212145348. 2 years ago
rahulsainani dcf71a1719 [fenix] Bug 1804690 - Allow emulator to access network of the host machine sidestepping the TLS error on debug channel 2 years ago
AndiAJ d825f3d3c3 [fenix] For https://github.com/mozilla-mobile/fenix/issues/26286 improve firstRunScreenTest UI test coverage 2 years ago
MickeyMoz fbbb97686c [fenix] Update to Android-Components 109.0.20221211143351. 2 years ago
MickeyMoz 4f94c80bfa [fenix] Update to Android-Components 109.0.20221211031229. 2 years ago
mozilla-l10n-automation-bot 2ff0272c4d [fenix] Import l10n. (https://github.com/mozilla-mobile/fenix/pull/28157) 2 years ago
MickeyMoz 608e053d88 [fenix] Update to Android-Components 109.0.20221209143110. 2 years ago
AndiAJ 95fcf3c05a [fenix] For https://github.com/mozilla-mobile/fenix/issues/26286 improve verifySearchEnginesWithRTLLocale UI test coverage 2 years ago
oana.horvath e7616bef28 [fenix] New UI test coverage for Toolbar position preference 2 years ago
oana.horvath d86e7ef09d [fenix] New UI test coverage for Pull to refresh preference 2 years ago
oana.horvath 26ad13faaf [fenix] New UI test coverage for Swipe toolbar preference 2 years ago
oana.horvath 3e0d4da3b9 [fenix] Create a robot and test class for Customize Settings menu 2 years ago
AndiAJ 6faaeefd59 [fenix] For https://github.com/mozilla-mobile/fenix/issues/28069 fix disabled openPocketStoryItemTest UI test 2 years ago
AndiAJ 9572abb675 [fenix] No issue: refactor verifyLinkFromClipboardNotDisplayedTest UI test 2 years ago
MickeyMoz c53885cdd1 [fenix] Update to Android-Components 109.0.20221209032153. 2 years ago
jeddai a201aa8e15 [fenix] update initial_experiments.json based on the current first-run experiments in experimenter 2 years ago
MickeyMoz 4e1b514672 [fenix] Update to Android-Components 109.0.20221208190115. 2 years ago
Noah Bond d0ba8373c1 [fenix] For https://github.com/mozilla-mobile/fenix/issues/28133 - Fix Pocket story category color mismatch 2 years ago
Arturo Mejia 9be14b069c [fenix] Bug 1797577 - Add cookie banner handling panel to the toolbar. 2 years ago
MickeyMoz 467160b9f1 [fenix] Update to Android-Components 109.0.20221208144508. 2 years ago
mozilla-l10n-automation-bot f0c43e010c [fenix] Import l10n. (https://github.com/mozilla-mobile/fenix/pull/28131) 2 years ago
Mugurell 696f7e3690 [fenix] Bug 1804544 - Disable TCP by default in beta and release 2 years ago
MickeyMoz 3153e37dc0 [fenix] Update to Android-Components 109.0.20221208025039. 2 years ago
DreVla 89ce37541b [fenix] For https://github.com/mozilla-mobile/fenix/issues/15348: Voice search option appears for all search engines
Voice search was restricted only for google, with the condition removed
it should appear now for all search engines
2 years ago
mozilla-l10n-automation-bot 1c82d1a269 [fenix] Import l10n. (https://github.com/mozilla-mobile/fenix/pull/28120) 2 years ago
t-p-white 6653051034 [fenix] For https://github.com/mozilla-mobile/fenix/issues/28114: Update CFR strings in Private Browsing Mode. 2 years ago
MickeyMoz 379cb618c3 [fenix] Update to Android-Components 109.0.20221207203046. 2 years ago
MickeyMoz dea3f37c77 [fenix] Update to Android-Components 109.0.20221207143211. 2 years ago
mozilla-l10n-automation-bot 7327b21a62 [fenix] Import l10n. (https://github.com/mozilla-mobile/fenix/pull/28107) 2 years ago
mozilla-l10n-automation-bot c18f2ef3c9 [fenix] Import l10n. (https://github.com/mozilla-mobile/fenix/pull/28102)
Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
2 years ago
Zac McKenney aed86b9d30 [fenix] Bug 1804107 - Fix for BaseBrowserFragment toolbar getter null crash and invalidating actions when modifying toolbar 2 years ago
Aaron Train 663b50a29a [fenix] For https://github.com/mozilla-mobile/fenix/issues/28098 - Disable openPocketDiscoverMoreTest 2 years ago
Jonathan Almeida b4b031b8b6 [fenix] Bug 1799996 - Speculative fix checks CFRPopup.anchor is attached to window
We're seeing crashes in the Fenix copy of the `CFRPopup` that are
happening when our activity has already been destroyed, and then we are
trying to add a view to it with the WindowManager.

Our guess from looking at the traces are that the
`BrowserToolbarCFRPresenter` is receiving the `collect call on the main
thread, but further down the event loop. As well as the Runnable in
`CFRPopup#show` that is posting to the end event loop - both of these
calls are putting us in a state where the activity we want has already
been destroyed before we get to the moment where we want to use it.

This is a crash that is difficult to synthesize or write a test for.
As a result, our fix is rather speculative but still straight-forward
and safe to uplift, should it work.

There are three remaining follow-ups to do when fix is confirmed:
1. There is a CFRPopup that was upstreamed which is based on the Fenix
   implementation. We should upstream this patch to that component as
   well.
2. We should remove this copy of the CFRPopup and use the upstreamed
   version to avoid confusion between the two copies.
3. With this change, we are now gracefully failing when our users get
   into this state, however our telemtry and onboarding flows are
   unaware that the CFR was never shown.
   We need to to correct telemetry for `TrackingProtection.tcpCfrShown`
   to stop incorrectly reporting false positives and reset our
   `shouldShowTotalCookieProtectionCFR` pref to false so that we can
   try again at the appropriate time.

Co-authored-by: Christian Sadilek <christian.sadilek@gmail.com>
2 years ago
MickeyMoz dd8b924b49 [fenix] Update to Android-Components 109.0.20221206190339. 2 years ago
Roger Yang 067b73eeca [fenix] Close https://github.com/mozilla-mobile/fenix/issues/27949: Add Nimbus exposure event for re-engagement notification 2 years ago
priyanka0906 37307db791 [fenix] For https://github.com/mozilla-mobile/fenix/issues/7924 - added an undo snackbar when a pinned site is removed 2 years ago
MickeyMoz 27dd57983e [fenix] Update to Android-Components 109.0.20221206143258. 2 years ago
mozilla-l10n-automation-bot 7848e265c7 [fenix] Import l10n. (https://github.com/mozilla-mobile/fenix/pull/28083)
Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
Co-authored-by: Ryan VanderMeulen <rvandermeulen@mozilla.com>
2 years ago
Alexandru2909 6f8dbbcc3c [fenix] For https://github.com/mozilla-mobile/fenix/issues/22770 - Use String.toShortUrl from A-C 2 years ago
Alexandru2909 aae93b2bc4 [fenix] For https://github.com/mozilla-mobile/fenix/issues/28010 - Update documentation for browser_search_with_ads and browser_search_ad_clicks 2 years ago
DreVla 2cba38ea4c [fenix] For https://github.com/mozilla-mobile/fenix/issues/27753 - Update search engines immediately after changing system language 2 years ago
DreVla 910948fac0 [fenix] For https://github.com/mozilla-mobile/fenix/issues/27753 - Update search engines immediately after changing language 2 years ago
Madalin Valceleanu f80ed71b1b [fenix] Fixed link from clipboard open up from same URL on every new tab https://github.com/mozilla-mobile/fenix/issues/15588 2 years ago