sort by:
Revision Author Date Message Commit Date
ae45b00 Bug 1633568 - Document the installation ping. r=frank, a=RyanVM Differential Revision: https://phabricator.services.mozilla.com/D74075 08 May 2020, 15:52:13 UTC
aa44d99 Bug 1633568 - Introduce a installation ping. r=Grisha, a=RyanVM This mobile-specific ping is intended to keep track of installs and Adjust attribution. The app should send two installation pings, based on different reasons: One sent immediately after the app starts. One sent immediately after the Adjust attribution data becomes available. If the app is later deleted and installed again, the installation pings must be sent again. This will will be a modern ping, sent to hostname/submit/mobile/docType/appVersion/docId. Differential Revision: https://phabricator.services.mozilla.com/D74073 14 May 2020, 05:57:13 UTC
15a09ec Bug 1633568 - AdjustHelper can inform more listeners about Attribution changes. r=Grisha, a=RyanVM TelemetryCorePingDelegate was already a listener for AdjustAttribution campaign changes. The new "installation" ping also needs all data about the AdjustAttribution when it changes. To keep a simple API AdjustHelper will now be able to inform more listeners about Attribution changes and will send the entire object, each callback being responsible to extract the data it needs. Differential Revision: https://phabricator.services.mozilla.com/D74072 06 May 2020, 14:52:02 UTC
260f1f2 Bump version number to 68.8.1. a=release 14 May 2020, 18:28:49 UTC
e4ccc99 No Bug, mozilla-esr68 repo-update blocklist remote-settings - a=repo-update r=RyanVM DONTBUILD Differential Revision: https://phabricator.services.mozilla.com/D73272 30 April 2020, 14:01:16 UTC
0562870 No bug - Tagging 416007f3bb6c5a70edb59449e5c8fa4e25b318a9 with FIREFOX_68_8_0esr_BUILD2 a=release CLOSED TREE DONTBUILD 29 April 2020, 21:55:54 UTC
d1f270d No bug - Tagging 416007f3bb6c5a70edb59449e5c8fa4e25b318a9 with FENNEC_68_8_0_BUILD2 a=release CLOSED TREE DONTBUILD 29 April 2020, 21:50:08 UTC
7d8f035 Bug 1633331: Update tzdata in ICU data files to 2020a. r=jwalden, a=RyanVM Differential Revision: https://phabricator.services.mozilla.com/D72589 27 April 2020, 07:50:22 UTC
930f01f Bug 1574139: Fix an issue that prevented updates from completing if usernames contained a dot at the end of the username and general hardening of our file path verification. r=mhowell a=RyanVM Differential Revision: https://phabricator.services.mozilla.com/D71607 20 April 2020, 20:18:37 UTC
7d8293a Bug 1580963 - Cherry-pick some servo changes from a rustc upgrade. a=RyanVM This cherry-picks from Servo commit 98e4a53b724. Differential Revision: https://phabricator.services.mozilla.com/D45738 12 September 2019, 21:09:27 UTC
ab6a68e Bug 1633838 - Remove Gmail Microphone intervention. r=miketaylr, a=RyanVM Differential Revision: https://phabricator.services.mozilla.com/D73066 29 April 2020, 15:12:19 UTC
e74344f No bug - Tagging 8cb09c6adfab28858b4e463c36036e7dadd0853c with FIREFOX_68_8_0esr_BUILD1 a=release CLOSED TREE DONTBUILD 27 April 2020, 20:34:15 UTC
9f13ebf No bug - Tagging 8cb09c6adfab28858b4e463c36036e7dadd0853c with FENNEC_68_8_0_BUILD1 a=release CLOSED TREE DONTBUILD 27 April 2020, 20:29:24 UTC
e35d646 Bug 1628076 - Ensure sFactory alive while it is calling Abort; r=asuth a=RyanVM Differential Revision: https://phabricator.services.mozilla.com/D72511 21 April 2020, 19:57:46 UTC
8135bf5 Bug 1611520 - gcc-10: Include <cstddef> in FunctionTypeTraits.h r=gerald a=RyanVM Differential Revision: https://phabricator.services.mozilla.com/D61014 01 February 2020, 10:23:38 UTC
a9fffd2 No Bug, mozilla-esr68 repo-update HSTS HPKP blocklist remote-settings tld-suffixes - a=repo-update r=RyanVM Differential Revision: https://phabricator.services.mozilla.com/D72678 27 April 2020, 15:10:44 UTC
33f4e58 Bug 1557282 Part 3: Use SetLockdownDefaultDacl and AddRestrictingRandomSid in sandbox policies. r=handyman,gcp a=RyanVM 06 March 2020, 22:14:42 UTC
229241a Bug 1557282 Part 2: Fix profiler issues when using SetLockdownDefaultDacl. r=dmajor a=RyanVM When we are running from a network drive the new feature in part 1 doesn't work. So this uses DuplicateHandle instead of OpenThread to get the thread handle used by the profiler. It also removes a DuplicateHandle THREAD_ALL_ACCESS call that also fails and a DuplicateHandle to get a real process handle, which only seems to have been to fix something on Windows XP. The handle passed in is always the profiler one, so already has the necessary permissions. If no thread handle is passed then the pseudo handle is used. 06 March 2020, 22:10:52 UTC
40f9041 Bug 1557282 Part 1: Take chromium commit c1ce57ea5d31208af589b4839390a44ab20b0c8f. r=handyman,gcp a=RyanVM This adds AddRestrictingRandomSid feature, which fixes our issues with SetLockdownDefaultDacl, apart from when we are running from a network drive. 06 March 2020, 22:10:00 UTC
582a0cd Bug 1626382 - r=karlt a=RyanVM Differential Revision: https://phabricator.services.mozilla.com/D72281 23 April 2020, 12:47:15 UTC
ef9513b Bug 1631211 - In configure, pass extra compiler flags after source path. r=dmajor,rstewart a=RyanVM When running e.g. check_symbols with extra flags like when checking for vpx_codec_dec_init_ver when building against system libvpx, in some configurations, the test can fail when the library flags (-l) appear before the source file path. The reason is that in some configurations, the compiler passes --as-needed to the linker before both the flags and the object file path, and the object file path is in the same position as the source file path was. With --as-needed, -l flags are dropped if the library wasn't needed for any of the linked code that appears *before* the flag. So linking with `--as-needed -lfoo foo.o`, is equivalent to linking with `foo.o` only in practice, while `--as-needed foo.o -lfoo` is equivalent to `foo.o -lfoo`. Differential Revision: https://phabricator.services.mozilla.com/D71456 23 April 2020, 21:46:01 UTC
58ee004 Bug 1623740 - Add policy for setting and locking autoplay default. r=mconley, a=RyanVM 16 April 2020, 18:29:44 UTC
3c47f2c Bug 1632241: turn off SCTP auth and address reconfiguration. r=ng, a=RyanVM Depends on D72053 Differential Revision: https://phabricator.services.mozilla.com/D72057 23 April 2020, 04:33:57 UTC
eca3915 Bug 1632241: add SCTP auth token boundary check. r=ng, a=RyanVM Differential Revision: https://phabricator.services.mozilla.com/D72053 23 April 2020, 04:31:30 UTC
f3dbdd9 Bug 1632217 - Import WebCompat GoFaster 10.1.0 sources. r=miketaylr, a=RyanVM Differential Revision: https://phabricator.services.mozilla.com/D72010 22 April 2020, 17:02:50 UTC
b88f596 Bug 1542884 - Close message channel on failure to connect to the pipe; r=jld, a=RyanVM Differential Revision: https://phabricator.services.mozilla.com/D63874 02 March 2020, 23:14:15 UTC
953ceda Bug 1611744 - Use permanent private browsing state for autologin, not per window. r=MattN, a=RyanVM Differential Revision: https://phabricator.services.mozilla.com/D71597 20 April 2020, 19:17:18 UTC
ec08146 Bug 1628487 - Locked Socks V5 shouldn't enable. r=Gijs, a=RyanVM Differential Revision: https://phabricator.services.mozilla.com/D70769 14 April 2020, 15:44:36 UTC
da72a81 No Bug, mozilla-esr68 repo-update HSTS HPKP blocklist remote-settings - a=repo-update r=RyanVM Differential Revision: https://phabricator.services.mozilla.com/D72215 23 April 2020, 21:30:18 UTC
b47c281 Backed out changeset 50d14d9d06ee (bug 1631211) for suspicion of causing test_compile_checks.py failures. a=backout 22 April 2020, 18:49:50 UTC
26af0cf Bug 1631508 - Fix LEffectiveAddress on ARM64. r=jandem, a=RyanVM Differential Revision: https://phabricator.services.mozilla.com/D71567 21 April 2020, 06:12:52 UTC
42c67b5 Bug 1626384 - Turn off Fennec Beta builds and tests on ESR68. r=jlorenzo, a=release Differential Revision: https://phabricator.services.mozilla.com/D69102 31 March 2020, 20:00:15 UTC
9d30410 Bug 1492011 - Fix ConsoleWorkletRunnable thread shutdown incompatibility. r=baku, a=RyanVM consolidate StoreProfileData and StoreConsoleData into a single method with arguments parameter r=baku store raw JS arguments on Console separately from ConsoleCallData r=baku Remove Console::mCallDataStoragePending r=baku Remove now-unused Console::mStatus r=baku change ShouldIncludeStackTrace from instance to class method r=baku replace ArgumentsToValueList instance method with nsTArray::AppendElements() r=baku provide group stack parameter to PopulateConsoleNotificationInTheTargetScope() r=baku change ProcessArguments from instance method to nonmember function with internal linkage r=baku change CreateCounterOrResetCounterValue from instance method to nonmember function with internal linkage r=baku change CreateStartTimerValue and CreateLogOrEndTimerValue from instance to class method r=baku provide ID and Prefix on ConsoleCallData r=baku introduce a separate class to hold main-thread data associated with each Console r=baku Mechanical conflict resolution was required to address conflicts with these changes not on esr68: https://hg.mozilla.org/mozilla-central/rev/11cda2e9615b https://hg.mozilla.org/mozilla-central/rev/9919570a9843 https://hg.mozilla.org/mozilla-central/rev/c9c7f800aae6 https://hg.mozilla.org/mozilla-central/diff/30100f2c612832dc74831e4b1b36bec636d5b396/dom/console/Console.cpp Differential Revision: https://phabricator.services.mozilla.com/D71686 17 April 2020, 01:38:54 UTC
0be939c Bug 1623885 - Add "subsystem" to Mesa sandbox policy to fix libdrm-2.4.101+. r=gcp, a=RyanVM Differential Revision: https://phabricator.services.mozilla.com/D70579 12 April 2020, 21:21:32 UTC
0791c5c Bug 1631211 - In configure, pass extra compiler flags after source path. r=dmajor, a=RyanVM When running e.g. check_symbols with extra flags like when checking for vpx_codec_dec_init_ver when building against system libvpx, in some configurations, the test can fail when the library flags (-l) appear before the source file path. The reason is that in some configurations, the compiler passes --as-needed to the linker before both the flags and the object file path, and the object file path is in the same position as the source file path was. With --as-needed, -l flags are dropped if the library wasn't needed for any of the linked code that appears *before* the flag. So linking with `--as-needed -lfoo foo.o`, is equivalent to linking with `foo.o` only in practice, while `--as-needed foo.o -lfoo` is equivalent to `foo.o -lfoo`. Differential Revision: https://phabricator.services.mozilla.com/D71456 20 April 2020, 14:07:15 UTC
8b3c123 Bug 1625749 - Make sure PartiallySeekableInputStream initializes all its members. r=kershaw a=RyanVM Depends on D70919 Differential Revision: https://phabricator.services.mozilla.com/D70926 14 April 2020, 19:52:13 UTC
1d29a69 Bug 1625749 - Make sure SlicedInputStream initializes all its members. r=nika a=RyanVM Differential Revision: https://phabricator.services.mozilla.com/D70919 14 April 2020, 18:04:13 UTC
3a0f750 Bug 1007344 - Ignore inactive windows when moving alerts. r=MattN a=RyanVM Differential Revision: https://phabricator.services.mozilla.com/D66605 15 March 2020, 22:30:03 UTC
778c3f9 Bug 1595886 - Use a temp string in readSegments. r=dragana, a=RyanVM Differential Revision: https://phabricator.services.mozilla.com/D68204 15 April 2020, 12:31:34 UTC
cf1ad77 Bug 1615471 - Escape dollar sign for curl on windows. r=Honza, a=RyanVM Escape dollar sign for curl on windows,to fix a security issue where commands such as $(cmd.exe) can be executed. Differential Revision: https://phabricator.services.mozilla.com/D69776 07 April 2020, 08:43:31 UTC
c4ecef8 Bug 1545345 - Improve worker shutdown. r=baku,smaug a=RyanVM Differential Revision: https://phabricator.services.mozilla.com/D71503 27 March 2020, 22:40:58 UTC
c2d12a8 Bug 1611482: Prevent the existance of dangling pointers upon failure of FindDataStart. r=spohl,valentin a=jcristau Differential Revision: https://phabricator.services.mozilla.com/D60997 02 April 2020, 13:54:55 UTC
9d5e1f7 No Bug, mozilla-esr68 repo-update HSTS HPKP blocklist remote-settings - a=repo-update r=RyanVM Differential Revision: https://phabricator.services.mozilla.com/D71562 20 April 2020, 14:03:06 UTC
a904bdb Bug 1614468, r=bomsy a=RyanVM Differential Revision: https://phabricator.services.mozilla.com/D71078 16 April 2020, 18:00:49 UTC
4c3d46e Bug 1621732 - Provide a policy to disable ciphers. r=jcj,flod, a=RyanVM Differential Revision: https://phabricator.services.mozilla.com/D66473 --HG-- extra : source : 3e60781a76f31985a96aa0599d93b94c47934d4b 12 March 2020, 19:41:24 UTC
441e850 Bug 1614704: Record load in MCreateThis alias set. r=jandem, a=RyanVM Differential Revision: https://phabricator.services.mozilla.com/D70999 14 April 2020, 20:21:43 UTC
7f0c1a1 No Bug, mozilla-esr68 repo-update HSTS HPKP blocklist remote-settings - a=repo-update r=RyanVM Differential Revision: https://phabricator.services.mozilla.com/D71184 16 April 2020, 14:04:34 UTC
c6505a8 No Bug, mozilla-esr68 repo-update HSTS HPKP remote-settings tld-suffixes - a=repo-update r=RyanVM Differential Revision: https://phabricator.services.mozilla.com/D70697 13 April 2020, 16:17:31 UTC
c6e395f No Bug, mozilla-esr68 repo-update HSTS HPKP blocklist remote-settings tld-suffixes - a=repo-update r=RyanVM Differential Revision: https://phabricator.services.mozilla.com/D70368 09 April 2020, 14:00:26 UTC
ca365cb No bug - Tagging 3353f680e068e3a5c21263a909382557c6bb4397 with FENNEC_68_7_0_RELEASE a=release CLOSED TREE DONTBUILD 07 April 2020, 13:01:00 UTC
dd40080 No bug - Tagging 1081a5ebf803f8a22ddbe03d73e61e3346243786 with FIREFOX_68_7_0esr_RELEASE a=release CLOSED TREE DONTBUILD 07 April 2020, 12:56:17 UTC
a057128 Bug 1618375 - Handle empty blocklist.xml file in case of crashes. r=florian, a=RyanVM Differential Revision: https://phabricator.services.mozilla.com/D69849 --HG-- extra : amend_source : aa367c6b4d01cfafc8e76dc9715f3b01b9c0c652 06 April 2020, 17:43:26 UTC
f1d0b15 No Bug, mozilla-esr68 repo-update HSTS HPKP blocklist remote-settings tld-suffixes - a=repo-update r=RyanVM Differential Revision: https://phabricator.services.mozilla.com/D69836 06 April 2020, 16:30:50 UTC
7ff4540 Update configs. IGNORE BROKEN CHANGESETS CLOSED TREE NO BUG a=release ba=release 06 April 2020, 14:42:39 UTC
384b3d8 No bug - Tagging 1081a5ebf803f8a22ddbe03d73e61e3346243786 with FIREFOX_68_7_0esr_BUILD3 a=release CLOSED TREE DONTBUILD 03 April 2020, 19:37:19 UTC
7e7e7cb No bug - Tagging 34be991778717f46f759eed8f85233bfa8032a8b with FIREFOX_68_6_1esr_RELEASE a=release CLOSED TREE DONTBUILD 03 April 2020, 17:28:14 UTC
8f0eee6 No Bug, mozilla-esr68 repo-update blocklist remote-settings - a=repo-update r=RyanVM Differential Revision: https://phabricator.services.mozilla.com/D69380 --HG-- extra : amend_source : c4401b95108d2649903acf09a8d0dbea96a7c765 02 April 2020, 14:00:57 UTC
e968aa2 No bug - Tagging 3353f680e068e3a5c21263a909382557c6bb4397 with FENNEC_68_7_0_BUILD2 a=release CLOSED TREE DONTBUILD 03 April 2020, 13:20:51 UTC
8dca46a No bug - Tagging 3353f680e068e3a5c21263a909382557c6bb4397 with FIREFOX_68_7_0esr_BUILD2 a=release CLOSED TREE DONTBUILD 03 April 2020, 13:10:38 UTC
78b7f10 No bug - Tagging 34be991778717f46f759eed8f85233bfa8032a8b with FIREFOX_68_6_1esr_BUILD1 a=release CLOSED TREE DONTBUILD 03 April 2020, 11:12:43 UTC
e9466a7 Bug 1626728 - Normalize shutdown. r=perry,jstutte, a=RyanVM Differential Revision: https://phabricator.services.mozilla.com/D69463 --HG-- extra : source : 63afe468c6a580c6c01623fd60c8393fc2c2a4e0 03 April 2020, 06:35:19 UTC
ff55a2c Backed out changeset a3dd5ee8c5f2 (bug 1626728) for assertion failures. 03 April 2020, 05:33:53 UTC
a6685be Bug 1626728 - Normalize shutdown. r=perry, a=RyanVM Differential Revision: https://phabricator.services.mozilla.com/D69463 --HG-- extra : source : b7170a7eaacb354090144be20ab92672e91a8a79 extra : intermediate-source : a3ad5b3c6671398bcc9d08cecda0df64d8b3a488 02 April 2020, 23:40:45 UTC
86d375e Bug 1620818 - Release nsDocShell::mContentViewer properly. r=nika,peterv a=dveditz Differential Revision: https://phabricator.services.mozilla.com/D69383 --HG-- extra : source : 8755eccf58cd6bd4fc1f00e6bcf45681d41da314 extra : intermediate-source : a4d7d228e423decf11c3981f5870574daecb5457 02 April 2020, 14:43:50 UTC
fc44cb6 No bug - Tagging 6a1c567e654b1ee83425a517ad410067a086f06a with FIREFOX_68_7_0esr_BUILD1 a=release CLOSED TREE DONTBUILD 01 April 2020, 16:31:22 UTC
00c1bd6 No bug - Tagging 6a1c567e654b1ee83425a517ad410067a086f06a with FENNEC_68_7_0_BUILD1 a=release CLOSED TREE DONTBUILD 01 April 2020, 16:26:15 UTC
92de4d6 Bug 1625404 - webgl.copyTexSubImage should lazily-initialize unwritten destination pixels. r=lsalzman, a=RyanVM Differential Revision: https://phabricator.services.mozilla.com/D69142 01 April 2020, 00:47:37 UTC
7c8614c Bug 1621062 - Import WebCompat v9.0.0 sources. r=denschub, a=RyanVM Differential Revision: https://phabricator.services.mozilla.com/D68261 --HG-- rename : mobile/android/extensions/webcompat/injections/js/bug1577245-salesforce-communities-hide-unsupported.js => mobile/android/extensions/webcompat/injections/js/bug1623375-salesforce-communities-hide-unsupported.js rename : mobile/android/extensions/webcompat/lib/google.js => mobile/android/extensions/webcompat/lib/intervention_helpers.js extra : amend_source : 7d30b28269c697e142c7fbf18fc3e59879593580 25 March 2020, 19:11:50 UTC
b8abec8 No Bug, mozilla-esr68 repo-update blocklist remote-settings - a=repo-update r=RyanVM Differential Revision: https://phabricator.services.mozilla.com/D68797 --HG-- extra : amend_source : 47c973841e3e920ce566adf814ef7923396f4ed1 30 March 2020, 13:53:48 UTC
32a041d Backed out changeset f8469d65a528 (bug 1624956) for causing bustages in MediaTransportHandler.cpp a=backout 30 March 2020, 15:03:17 UTC
9ee9ec7 Bug 1621533 - Expose downloads through FileProvider on Nougat+; r=AndreiLazar, a=jcristau Android Nougat came with the recommendation to expose files through a FileProvider (content:// in place of file://). Seems like Android 10's PackageInstaller imposes this behaviour - to be able to install dowloaded apks we need to offer them through a FileProvider. Or use the Android's PackageInstaller. There are currently 2 options users have to install an apk directly from the application: - tapping the notification of a completed apk download - fixed by this patch - opening a downloaded apk from "about:downloads" - will still be broken. A solution for this scenario involves a major rethinking of how we handle downloads. The download functionality works ok on all platforms, including Android 10 so users will still be able to go with a file manager to the Downloads folder of their device and manually install a previously downloaded apk from there. Differential Revision: https://phabricator.services.mozilla.com/D67668 01 January 1970, 00:00:00 UTC
173223f Bug 1624956: Make sure we're initted before trying to get ICE stats. r=mjf, a=jcristau Differential Revision: https://phabricator.services.mozilla.com/D68246 --HG-- extra : source : c6996553a65c1647923be8af999bccc99e850d43 extra : amend_source : 918ea64a910b37e7bcf7e1e0149f13eabf21fe23 26 March 2020, 14:11:36 UTC
9bde628 Bug 1614287 - Remove Fennec Beta target_tasks so it does not mess up the Fenix migration r=rail a=jcristau Differential Revision: https://phabricator.services.mozilla.com/D62249 --HG-- extra : histedit_source : 21a66c042562aeea7de247629ebb86ed77de2d3a 17 February 2020, 10:07:08 UTC
844baf6 Bug 1612979 - Enable locking of auto update setting. r=mkaply,mhowell,jaws a=RyanVM 06 February 2020, 18:10:03 UTC
aec597b Bug 1623471 - Temporarily disable the upcoming update banner; r=AndreiLazar, a=RyanVM Differential Revision: https://phabricator.services.mozilla.com/D67640 20 March 2020, 15:29:59 UTC
497cd01 No Bug, mozilla-esr68 repo-update HSTS HPKP blocklist remote-settings - a=repo-update r=RyanVM Differential Revision: https://phabricator.services.mozilla.com/D68390 26 March 2020, 13:57:45 UTC
0ef2342 Bug 1620203 - Handle functions with rest parameters in isObservableArgumentSlot. r=nbp, a=RyanVM Differential Revision: https://phabricator.services.mozilla.com/D67621 --HG-- extra : amend_source : 0cff00de20e5ae9af24852909f6e39a024ccd0fb 20 March 2020, 13:37:00 UTC
51a4d4f No Bug, mozilla-esr68 repo-update HSTS HPKP blocklist remote-settings tld-suffixes - a=repo-update r=RyanVM Differential Revision: https://phabricator.services.mozilla.com/D67853 23 March 2020, 13:39:55 UTC
d83457a Bug 1572541 - ensure buffer capacity. r=bryce, a=RyanVM Differential Revision: https://phabricator.services.mozilla.com/D66475 --HG-- extra : source : 5fbb2ad7039366fcda4f8ec5aa608194b1c16f55 extra : intermediate-source : 8e4a98b53a828107d6163a0c195b6d3b6524f9db 11 March 2020, 19:43:58 UTC
1d29fe6 Bug 1618880 - Fix GC hazard in jit::InvalidateActivation. r=jonco, a=RyanVM Differential Revision: https://phabricator.services.mozilla.com/D66815 --HG-- extra : source : 0bd7b6fc23db7c5a9536dce865e742e7d6f7f7e8 extra : intermediate-source : 74eab483bc31643ab079fb08ece53bb8465e02db 14 March 2020, 11:09:25 UTC
bcd3906 Bug 1618131 - Poison moved GC thing contents sooner. r=jandem, a=RyanVM This makes sure we will detect use of the contents of moved GC things during the update phase of the GC, not just when we return to the mutator as previously. Annoyingly we need to preserve contents for native objects with fixed elements because the elements flags are stored there and these may be accessed from other objects if they are COW elements. This caught a use of unforwarded scripts during invalidation caused by OOM during sweeping type information. Differential Revision: https://phabricator.services.mozilla.com/D63872 --HG-- extra : source : ea0a05b19edb9f4cf3696df0622a4d1791729c55 extra : amend_source : 3463f191c89487bc2849ce796f54f178345a0cbe 26 February 2020, 13:36:45 UTC
d61fd52 Bug 1608240 - Add a policy to control user messaging. r=mconley, a=RyanVM 18 March 2020, 17:17:33 UTC
806517f No Bug, mozilla-esr68 repo-update HSTS HPKP blocklist remote-settings - a=repo-update r=RyanVM Differential Revision: https://phabricator.services.mozilla.com/D67473 19 March 2020, 13:38:51 UTC
8c6e5e6 Automatic version bump CLOSED TREE NO BUG a=release DONTBUILD 16 March 2020, 21:37:54 UTC
13de6fc No bug - Tagging e8be44e815d0ba70ba5b95b2336bac81cc7c383f with FENNEC_68_7b1_RELEASE a=release CLOSED TREE DONTBUILD 16 March 2020, 21:37:49 UTC
030231f No bug - Tagging e8be44e815d0ba70ba5b95b2336bac81cc7c383f with FENNEC_68_7b1_BUILD1 a=release CLOSED TREE DONTBUILD 16 March 2020, 21:04:51 UTC
4b3c5c9 No Bug, mozilla-esr68 repo-update HSTS HPKP blocklist remote-settings tld-suffixes - a=repo-update r=RyanVM Differential Revision: https://phabricator.services.mozilla.com/D66966 16 March 2020, 13:44:40 UTC
4f69403 Bug 1622781 - Canonicalize filenames from content providers. r=snorp, a=RyanVM Differential Revision: https://phabricator.services.mozilla.com/D66974 01 January 1970, 00:00:00 UTC
f0b7b02 Bug 1622278 - Ensure displayed URL in modified only in onLocationChange(); r=snorp, a=RyanVM Differential Revision: https://phabricator.services.mozilla.com/D66791 --HG-- extra : amend_source : 5c88a09d20fa0129a26e472018ecebdddb4d7a8c 13 March 2020, 16:54:00 UTC
121a500 Bug 1565512 - Ensure the RCD-RSF callback transform is applied for events targeting fixed content too. r=tnikkel, a=RyanVM Differential Revision: https://phabricator.services.mozilla.com/D40535 --HG-- extra : source : ea97d944e1a74e99e39350cb2d733eefab437c5e extra : intermediate-source : 560d33742a4e4033becf03f3c4e4c0173488da6e 03 August 2019, 16:16:56 UTC
bfb0ae8 Bug 1586126 - Add relevant info to the advanced section of the captive portal page and make buttons work in esr68. r=johannh, a=jcristau Differential Revision: https://phabricator.services.mozilla.com/D63103 01 January 1970, 00:00:00 UTC
04626a1 Bug 1612352 - Allow domains to be excluded from DOH via policy. r=valentin, a=jcristau Differential Revision: https://phabricator.services.mozilla.com/D62996 --HG-- extra : source : 60eec8186c8d13c534092064e2f74ee739841591 extra : amend_source : 2f74f9b60bf99141a0ae7b36ed2a020334f5bc3e extra : histedit_source : d6f05393873df5c286276f3da99c61ace6e41a7c 15 February 2020, 18:49:49 UTC
33ca3b8 Bug 1620668 - Turn off Fennec Nightly builds and tests on ESR68. r=jlorenzo, a=release Differential Revision: https://phabricator.services.mozilla.com/D66461 --HG-- extra : rebase_source : f252b7f8512ed078b4d7db74448dc17fc603c3a0 extra : histedit_source : dee9ad9340cab860546b7c68d810415ba16ff4d7 10 March 2020, 18:18:46 UTC
b2c2974 Bug 1620193: Fix GetPropertyPure r=mgaudet a=tjr Differential Revision: https://phabricator.services.mozilla.com/D65587 --HG-- extra : source : 3f9b009f56908b7a53235f48161c2fc804eb23b4 extra : intermediate-source : aa506197596f9e90a6cc1c6b6879c13df40bd90e 06 March 2020, 06:43:33 UTC
b771a7d Bug 1544181 - Check for large frames in GMPDecodeData; r=ng a=tjr Differential Revision: https://phabricator.services.mozilla.com/D64341 --HG-- extra : source : 2dfe1500d02eebf29c7f02d042246e7fc843ead9 extra : intermediate-source : 7142378de78e47f7bd1d2c9f613db53043cc18c5 12 March 2020, 14:42:11 UTC
574047f Bug 1470571 - Sync with cache IO thread before checking alt-data flag in index, r=valentin, a=test-only syncWithCacheIOThread() ensures that all pending events on IO thread are processed before we continue on the main thread, where we synchronously check the flag in the index Differential Revision: https://phabricator.services.mozilla.com/D65757 --HG-- extra : source : 0db5d88e7a66a713408c3cb29613ea28eb99b341 extra : amend_source : dd3520272eca12facefe415f3431c2bd7eb28093 06 March 2020, 18:36:43 UTC
3956438 No Bug, mozilla-esr68 repo-update HSTS HPKP blocklist remote-settings tld-suffixes - a=repo-update r=RyanVM Differential Revision: https://phabricator.services.mozilla.com/D66577 12 March 2020, 13:41:32 UTC
8927c72 no bug - Bumping Fennec l10n changesets r=release a=l10n-bump DONTBUILD ast -> 36c39f992328 fi -> 0b5c77ffc7b8 pl -> 59b34bf259ad pt-BR -> 5972bc1e657f 10 March 2020, 16:55:24 UTC
73b48fb no bug - Bumping Fennec l10n changesets r=release a=l10n-bump DONTBUILD ast -> d69a537ce5b4 bg -> f2122e245596 10 March 2020, 14:55:46 UTC
008954f no bug - Bumping Fennec l10n changesets r=release a=l10n-bump DONTBUILD ast -> 0b6f1687905f en-CA -> 88343f4013d8 fr -> 90e5cc087817 ko -> 307a7c0fb55f 10 March 2020, 13:53:47 UTC
back to top