- Apr 15, 2024
-
-
ffxbld authored
Differential Revision: https://phabricator.services.mozilla.com/D207426
-
Mozilla Releng Treescript authored
-
- Apr 11, 2024
-
-
Hubert Boma Manilla authored
Bug 1824109 - [devtools] Make sure the paused task is resumed before exiting r=devtools-reviewers,nchevobbe a=test-only Differential Revision: https://phabricator.services.mozilla.com/D207088
-
- Jan 17, 2024
-
-
Alexandre Poirot authored
Bug 1824109 - [devtools] Wait for SpecialPowers task to be resumed before leaving the test. r=devtools-reviewers,nchevobbe a=test-only Differential Revision: https://phabricator.services.mozilla.com/D198795
-
- Apr 11, 2024
-
-
ffxbld authored
Differential Revision: https://phabricator.services.mozilla.com/D207261
-
- Apr 12, 2024
-
-
Butkovits Atila authored
-
- Apr 11, 2024
-
-
Ben Hearsum authored
Bug 1888488: update staging content signing root certificate to new cas_new root certificate a=RyanVM This is the cas_new root (https://bugzilla.mozilla.org/attachment.cgi?id=9390855) converted from PEM to DER with: `openssl x509 -in cas-new-root-2024-03-12.crt -inform PEM -outform DER` Original Revision: https://phabricator.services.mozilla.com/D206040 Differential Revision: https://phabricator.services.mozilla.com/D207263
-
- Apr 08, 2024
-
-
Mozilla Releng Treescript authored
No bug - Tagging 64fc0d6e7ff6b1d626e40d45c492fa210591a1c0 with FIREFOX_115_10_0esr_BUILD1 a=release CLOSED TREE DONTBUILD
-
ffxbld authored
Differential Revision: https://phabricator.services.mozilla.com/D206893
-
- Apr 05, 2024
-
-
Kershaw Chang authored
Original Revision: https://phabricator.services.mozilla.com/D205234 Differential Revision: https://phabricator.services.mozilla.com/D206699
-
Kershaw Chang authored
Original Revision: https://phabricator.services.mozilla.com/D205233 Differential Revision: https://phabricator.services.mozilla.com/D206698
-
William Durand authored
Original Revision: https://phabricator.services.mozilla.com/D206106 Differential Revision: https://phabricator.services.mozilla.com/D206750
-
Mike Kaply authored
Original Revision: https://phabricator.services.mozilla.com/D206116 Differential Revision: https://phabricator.services.mozilla.com/D206714
-
- Apr 02, 2024
-
-
Byron Campen authored
Differential Revision: https://phabricator.services.mozilla.com/D206273
-
- Apr 04, 2024
-
-
ffxbld authored
Differential Revision: https://phabricator.services.mozilla.com/D206614
-
Olli Pettay authored
Differential Revision: https://phabricator.services.mozilla.com/D206591
-
Gijs Kruitbosch authored
Original Revision: https://phabricator.services.mozilla.com/D200165 Differential Revision: https://phabricator.services.mozilla.com/D206619
-
Glenn Watson authored
Original Revision: https://phabricator.services.mozilla.com/D203973 Differential Revision: https://phabricator.services.mozilla.com/D206555
-
- Apr 03, 2024
-
-
Calixte authored
Backport of upstream PR: https://github.com/mozilla/pdf.js/pull/17852 Original Revision: https://phabricator.services.mozilla.com/D205982 Differential Revision: https://phabricator.services.mozilla.com/D206368
-
Barret Rennie authored
Bug 1889157 - Do not await heartbeat.noticePromise in browser_LegacyHeartbeat.js r=chumphreys a=RyanVM Bug 1845150 refactored all usages of the notification box, including the one used in Normandy's heartbeat implementation. These changes are not available on ESR115. The test has been updated to not reference these changes. Differential Revision: https://phabricator.services.mozilla.com/D206416
-
- Apr 02, 2024
-
-
Barret Rennie authored
Bug 1884039 introduced a new test that used Promise.withResolvers, but this API is not present in ESR115. Differential Revision: https://phabricator.services.mozilla.com/D206391
-
- Jun 29, 2023
-
-
Mike Hommey authored
Bug 1840533 - Forbid @imports("__builtin__"). r=firefox-build-system-reviewers,andi,sergesanspaille, a=test-only DONTBUILD The last use of importing the whole __builtin__ module was removed in bug 1264831... 7 years ago. Now that it actually doesn't work anymore with recent releases of cpython, we might as well kill it for good. Differential Revision: https://phabricator.services.mozilla.com/D182140
-
- Jun 22, 2023
-
-
Mike Hommey authored
Bug 1839263 - Don't derive assertRaisesFromLine from assertRaises. r=firefox-build-system-reviewers,ahochheiden, a=test-only DONTBUILD In python 3.11 (maybe also 3.10, I haven't tested that version ; 3.9 was definitely different), by the time the context manager comes back in our assertRaisesFromLine, the traceback is not available anymore (or yet, I'm not entirely sure which way it does) to inspect and check the line numbers we want to check. And while assertRaises exposes the thrown exception in its `exception` attribute, it also resets the traceback associated with it, so we can't find it there either. So instead, we implement our own context manager for assertRaisesFromLine such that we can access that traceback. Differential Revision: https://phabricator.services.mozilla.com/D181425
-
Mike Hommey authored
Bug 1839263 - Fix python configure lint on python >= 3.10. r=firefox-build-system-reviewers,ahochheiden,sergesanspaille, a=test-only DONTBUILD Python 3.10 added some more arguments to the CodeTypes constructor. It also changed co_lnotab to co_linetables. We were using co_lnotab to simulate a function with a def at a specific line and a raise at a specific other line. I'm not sure how I ended up with this particular requirement (this may have been related to python 2 still being used back then), but as of now, it doesn't seem we need the def to be at a specific location, so we can avoid needing to generate a co_linetables/co_lnotab, relying instead on the raise expression being on the co_firstlineno+1 in the thrower function. As for the extra arguments, it turns out python 3.8 also introduced a CodeType.replace method that can be used to derive a CodeType object from another, which is certainly simpler than calling its construtor with the right set of arguments. Differential Revision: https://phabricator.services.mozilla.com/D181424
-
- Apr 02, 2024
-
-
Barret Rennie authored
The surveyVersion field is included in telemetry and is required by the ingestion schema. Because that field has been omitted for Nimbus legacyHeartbeat experiments, no heartbeat pings have been submitted. We now hardcode the surveyVersion for all Heartbeats coming from Nimbus. A test has been added to ensure that Nimbus-triggered Heartbeats submit a payload that matches the Telemetry schema. Original Revision: https://phabricator.services.mozilla.com/D205239 Differential Revision: https://phabricator.services.mozilla.com/D206364
-
Andrew Osmond authored
Differential Revision: https://phabricator.services.mozilla.com/D206358
-
- Apr 01, 2024
-
-
Jed Davis authored
Original Revision: https://phabricator.services.mozilla.com/D204326 Differential Revision: https://phabricator.services.mozilla.com/D205134
-
- Mar 30, 2024
-
-
Steve Fink authored
Original Revision: https://phabricator.services.mozilla.com/D205661 Differential Revision: https://phabricator.services.mozilla.com/D206168
-
- Apr 01, 2024
-
-
ffxbld authored
Differential Revision: https://phabricator.services.mozilla.com/D206232
-
- Mar 07, 2024
-
-
Matthew Gaudet authored
Bug 1860193 - Verify we get a script from a function before asking for the filename r=mccr8, a=RyanVM Differential Revision: https://phabricator.services.mozilla.com/D203836
-
- Mar 30, 2024
-
-
Ryan VanderMeulen authored
Bug 1881416 - Relax expectations for /secure-payment-confirmation/enrollment.https.html to allow timeouts on all platforms. a=test-only This isn't a feature we support anyway, so let's not make things harder than they need to be.
-
- Mar 29, 2024
-
-
Lee Salzman authored
Differential Revision: https://phabricator.services.mozilla.com/D205993
-
- Mar 26, 2024
-
-
Jan de Mooij authored
Differential Revision: https://phabricator.services.mozilla.com/D205586
-
- Mar 28, 2024
-
-
Chris Martin authored
Differential Revision: https://phabricator.services.mozilla.com/D206068
-
ffxbld authored
Differential Revision: https://phabricator.services.mozilla.com/D206010
-
- Mar 30, 2024
-
-
Ryan VanderMeulen authored
-
Ryan VanderMeulen authored
-
Mike Kaply authored
Original Revision: https://phabricator.services.mozilla.com/D202733 Differential Revision: https://phabricator.services.mozilla.com/D206133
-
Jonathan Kew authored
Original Revision: https://phabricator.services.mozilla.com/D204918 Differential Revision: https://phabricator.services.mozilla.com/D206179
-
Jonathan Kew authored
Bug 1874489 - patch 2 - Avoid potential arithmetic overflow during Buffer read operations. a=RyanVM Original Revision: https://phabricator.services.mozilla.com/D204917 Differential Revision: https://phabricator.services.mozilla.com/D206178
-