https://github.com/mozilla/gecko-dev

sort by:
Revision Author Date Message Commit Date
79bc6fa Bug 1886852 - Avoid registering unnecessary MessageManager listeners when SHIP is enabled, r=smaug, a=dsmith Differential Revision: https://phabricator.services.mozilla.com/D205377 21 March 2024, 19:35:40 UTC
78e298b Set version to 115.9.1 a=release 21 March 2024, 22:30:06 UTC
d8dc28a Bug 1861016 - some fixes. r=media-playback-reviewers,jolin, a=RyanVM 22 February 2024, 04:06:44 UTC
d44ebac No bug - Tagging f3dd0afed51cb7283d4fa06a0c40286eee657e30 with FIREFOX_115_9_0esr_BUILD1 a=release CLOSED TREE DONTBUILD 11 March 2024, 19:53:44 UTC
cf4437d No Bug, mozilla-esr115 repo-update HSTS HPKP remote-settings - a=repo-update, r=dsmith Differential Revision: https://phabricator.services.mozilla.com/D204210 11 March 2024, 10:57:44 UTC
889f6c5 Bug 1870499 - Make sure ContinueDoNotifyListener is called immediately during release a=diannaS The causes of the runnable loop are as follows: 1. In Release we have a special case to make sure OnStart&OnStop are always called. We do this by dispatching a runnable that calls DoNotifyListener. 2. DoNotifyListener is called, then the reference to the channel is again dropped. But at this point only OnStartRequest was called, and ContinueDoNotifyListener was added to mEventQ. That means another runnable would be dispatched. While the loop was broken in the previous patch, we still want to ensure OnStopRequest is called before the channel is released, so this patch adds an argument to DoNotifyListener to select whether ContinueDoNotifyListener should be called synchronously or dispatched to mEventQ. Original Revision: https://phabricator.services.mozilla.com/D202798 Differential Revision: https://phabricator.services.mozilla.com/D204063 10 March 2024, 20:36:45 UTC
42e6c12 Bug 1870499 - Break potential runnable loop in HttpChannelChild::Release a=diannaS Original Revision: https://phabricator.services.mozilla.com/D202797 Differential Revision: https://phabricator.services.mozilla.com/D204062 10 March 2024, 20:36:44 UTC
e8e445b Bug 1870499 - HttpChannelChild::Release should pass itself using std::move a=diannaS Original Revision: https://phabricator.services.mozilla.com/D202796 Differential Revision: https://phabricator.services.mozilla.com/D204061 10 March 2024, 20:36:44 UTC
a662a9a Bug 1883868 - Restrict new codepath to worker threads. a=dsmith So as to not change load timing from stylo threads. 09 March 2024, 00:01:13 UTC
2da0b9d Bug 1883868 - Don't fire http loads from workers. r=jfkthame, a=dsmith Differential Revision: https://phabricator.services.mozilla.com/D203927 08 March 2024, 17:42:05 UTC
37c58e9 Bug 1881257 - Reset mSourceTopWindowContext when drag session end; a=diannaS Original Revision: https://phabricator.services.mozilla.com/D203103 Differential Revision: https://phabricator.services.mozilla.com/D204101 08 March 2024, 23:09:30 UTC
6730e7b Bug 1879714 - Update search-telemetry-v2 schema with more functionality and loosen restrictions on component types - r=Standard8, a=dsmith Differential Revision: https://phabricator.services.mozilla.com/D201313 06 March 2024, 15:58:02 UTC
b323aa3 Bug 1878818 - Change search-telemetry schema to use the same sub-schema syntax as search-config - r=Standard8, a=dsmith I think the main issue was the use of ids, but also just to keep things a consistent between the two in case a team member has to learn how to modify both, it might be better to use the same syntax. Differential Revision: https://phabricator.services.mozilla.com/D200754 06 February 2024, 18:55:28 UTC
f93dff1 No Bug, mozilla-esr115 repo-update HSTS HPKP remote-settings tld-suffixes - a=repo-update, r=dsmith Differential Revision: https://phabricator.services.mozilla.com/D203895 07 March 2024, 10:57:42 UTC
9e601b6 Bug 1804978: Prevent release assert crashes due to a race when opening context menus on macOS. r=mstange, a=dsmith Differential Revision: https://phabricator.services.mozilla.com/D198700 16 January 2024, 20:26:31 UTC
3537f31 Bug 1879939: Save output registers. a=diannaS Original Revision: https://phabricator.services.mozilla.com/D201684 Differential Revision: https://phabricator.services.mozilla.com/D203291 05 March 2024, 23:55:00 UTC
f982fb1 Bug 1876675, a=diannaS Original Revision: https://phabricator.services.mozilla.com/D202932 Differential Revision: https://phabricator.services.mozilla.com/D203626 05 March 2024, 20:35:22 UTC
4ffc0ad Bug 1880692, part 2 - Use an estimate for encoded characters. r=smaug, a=RyanVM This makes the calculation simpler and faster, at a hopefully small cost in space. Idea by peterv. This reduced the time to run a microbenchmark locally by around 12%. Differential Revision: https://phabricator.services.mozilla.com/D202281 22 February 2024, 16:57:14 UTC
ee4172a Bug 1880692, part 1 - Make StringBuilder::Unit::mLength specific to literals. r=smaug, a=RyanVM That is the only case that uses it. This might save a bit of space and avoids some useless stores. Idea by peterv. Differential Revision: https://phabricator.services.mozilla.com/D202344 22 February 2024, 16:57:13 UTC
08afc64 No Bug, mozilla-esr115 repo-update HSTS HPKP remote-settings tld-suffixes - a=repo-update r=RyanVM Differential Revision: https://phabricator.services.mozilla.com/D203411 04 March 2024, 10:57:58 UTC
53afb15 Bug 1872920 - Fix building mozwer-rust for rust version 1.69.0 a=diannaS Differential Revision: https://phabricator.services.mozilla.com/D203050 28 February 2024, 22:17:06 UTC
b695e83 Bug 1872920 - Change how we notify the main process when we intercept a crash via WER a=diannaS This patch makes several fundamental changes to the logic we use to inform the main process whenever the WER runtime exception module intercepts a child process crash: * We no longer read the process type or any other data from the child process; the process type is passed as the runtime exception module's context * We no longer read the address of the memory area used to communicate with the main process from the child process arguments. Instead we allocate memory directly into the main process and store the required information there * We don't read anything from the main process either, the pointer to the function used to notify the main process is now found by looking out its dedicated section in the parent process' xul.dll mapping * We no longer read the OOM crash annotation from a child process, this functionality will be restored by making the module use the mozannotation crates to fetch all the annotations Original Revision: https://phabricator.services.mozilla.com/D201589 Differential Revision: https://phabricator.services.mozilla.com/D202916 28 February 2024, 19:57:15 UTC
bce95d6 Bug 1872920 - Introduce the process_reader crate a=diannaS Original Revision: https://phabricator.services.mozilla.com/D201590 Differential Revision: https://phabricator.services.mozilla.com/D202915 28 February 2024, 19:57:14 UTC
fde823c Bug 1872920 - Prevent the crash reporer from restarting Firefox when dealing with WER crashes a=diannaS Original Revision: https://phabricator.services.mozilla.com/D199856 Differential Revision: https://phabricator.services.mozilla.com/D202914 28 February 2024, 19:57:14 UTC
4eb991d Bug 1872920 - Change the way we identify the parent process a=diannaS Original Revision: https://phabricator.services.mozilla.com/D199353 Differential Revision: https://phabricator.services.mozilla.com/D202913 28 February 2024, 19:57:14 UTC
366bfd7 Bug 1872920 - Make the crash reporter client locate the executable by itself a=diannaS Original Revision: https://phabricator.services.mozilla.com/D199352 Differential Revision: https://phabricator.services.mozilla.com/D202912 28 February 2024, 19:57:13 UTC
23b0d37 Bug 1874235 - Make the WER interceptor more robust a=diannaS * Always provide a value for the installation time, even when we fail to read it from the corresponding file * Parse the parent PID correctly * Create the pending folder if it's missing Original Revision: https://phabricator.services.mozilla.com/D198699 Differential Revision: https://phabricator.services.mozilla.com/D202825 28 February 2024, 19:57:13 UTC
ac126c9 Bug 1755186 - HpackDynamicTableReporter::CollectReports should hold a mutex a=diannaS HpackDynamicTableReporter::mMutex protects access to HpackDynamicTableReporter::mCompressor nvFIFO::mMutex protects access to mvFIFO::mTable - is aquired when adding or removing elements in the table, and when reporting SizeOfDynamicTable Original Revision: https://phabricator.services.mozilla.com/D200814 Differential Revision: https://phabricator.services.mozilla.com/D202906 28 February 2024, 16:14:08 UTC
46c6156 Bug 1880405: Post cell span restyle event for border-collapsed MathML table cells. a=diannaS Original Revision: https://phabricator.services.mozilla.com/D202455 Differential Revision: https://phabricator.services.mozilla.com/D202493 28 February 2024, 14:40:02 UTC
62158b3 Bug 1878346 - revert unwanted revert of file_bug514732_window.xhtml. a=test-only DONTBUILD The revert of the file in bug 1874627 had been unintended. 27 February 2024, 10:47:31 UTC
4739d5a Bug 1873763: Add 'overflow:hidden' to root scroller in some grid reftests, to avoid running afoul of scrollbar-presence nondeterminism. a=diannaS This is a workaround for an edge-case where the default 'overflow:auto' setup can lead to a layout with or without a scrollbar, depending on whether the first layout happens before vs. after the DOM is fully complete. See explanations in https://bugzilla.mozilla.org/show_bug.cgi?id=1873763#c0 and in https://bugzilla.mozilla.org/show_bug.cgi?id=1873749 for more details. This behavior seems to be common to all major browser engines, so it's probably not worth worrying about too much, which is why I'm simply working around it in these tests. The changes to the -001 test files will address intermittent bug 1522442, and the changes to the -010 and -011 test files are to address intermittent bug 1809735. Original Revision: https://phabricator.services.mozilla.com/D198080 Differential Revision: https://phabricator.services.mozilla.com/D202738 26 February 2024, 19:19:50 UTC
500a321 Bug 1880562 - land NSS NSS_3_90_2_RTM UPGRADE_NSS_RELEASE, a=diannaS Original Revision: https://phabricator.services.mozilla.com/D202015 Differential Revision: https://phabricator.services.mozilla.com/D202017 26 February 2024, 17:59:18 UTC
f3ddcd0 No Bug, mozilla-esr115 repo-update HSTS HPKP remote-settings - a=repo-update, r=dsmith Differential Revision: https://phabricator.services.mozilla.com/D202705 26 February 2024, 10:58:00 UTC
6b6d366 Bug 1851570 - [for esr] Allow necko to know when client auth is selected to drive TLS handshake, r=necko, a=dsmith Differential Revision: https://phabricator.services.mozilla.com/D201722 26 February 2024, 09:21:17 UTC
88a214c Bug 1685358 - Apply seek threshold after decoder creation. r=media-playback-reviewers,padenot, a=dsmith Differential Revision: https://phabricator.services.mozilla.com/D201297 22 February 2024, 04:09:56 UTC
25ed1eb Bug 1871112 - ESR 115: Specialize AddAttributes for <html>/<body>. r=hsivonen, a=dsmith Differential Revision: https://phabricator.services.mozilla.com/D202303 23 February 2024, 14:36:50 UTC
f970330 Bug 1881093 - Cherry-pick dav1d commit 2b475307. r=chunmin a=diannaS Differential Revision: https://phabricator.services.mozilla.com/D202247 23 February 2024, 22:55:37 UTC
97a8914 Bug 1858496 - Crash on OOM in ICU; a=diannaS We're seeing inconsistent handling of OOMs in the ICU library. This patch changes the behaviour to crash on OOM rather than allowing ICU to handle the allocation failure. The inconsistent handling in ICU could lead to ICU being in an inconsistent state which could in turn cause security problems. The safer alternative is to crash, but it's possible this will lead to too high of crash rate. Original Revision: https://phabricator.services.mozilla.com/D191892 Differential Revision: https://phabricator.services.mozilla.com/D202498 22 February 2024, 21:06:11 UTC
9e1762e Backed out changeset a64b95dfc24a (bug 1851570) for causing xpcshell failures, a=backout 22 February 2024, 19:25:10 UTC
1903982 Bug 1851570 - [for esr] Allow necko to know when client auth is selected to drive TLS handshake, r=necko-reviewers,valentin, a=dsmith Differential Revision: https://phabricator.services.mozilla.com/D201722 13 February 2024, 15:36:47 UTC
f2bb50a No Bug, mozilla-esr115 repo-update HSTS HPKP remote-settings - a=repo-update, r=dsmith Differential Revision: https://phabricator.services.mozilla.com/D202407 22 February 2024, 11:00:01 UTC
f37e5c3 Bug 1879444 - Make SafeRefPtr move assignment work as RefPtr does r=smaug,dom-storage-reviewers,asuth, a-dsmith Differential Revision: https://phabricator.services.mozilla.com/D201598 19 February 2024, 11:33:13 UTC
06f40d5 Bug 1879825 - Make Family::FindIndex fallible and safely handle failures. r=gfx-reviewers,lsalzman, a=dsmith Differential Revision: https://phabricator.services.mozilla.com/D201819 19 February 2024, 12:37:33 UTC
2541acb Bug 1827252 - updating aioquic version to 0.9.21. r=jgraham, a=test-only 27 July 2023, 14:05:48 UTC
531d300 Bug 1841705 [wpt PR 40879] - Bump aioquic from 0.9.20 to 0.9.21 in /tools, a=testonly Automatic update from web-platform-tests Bump aioquic from 0.9.20 to 0.9.21 in /tools Bumps [aioquic](https://github.com/aiortc/aioquic) from 0.9.20 to 0.9.21. - [Commits](https://github.com/aiortc/aioquic/compare/0.9.20...0.9.21) --- updated-dependencies: - dependency-name: aioquic dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> -- wpt-commits: d86eab89c1e5dc4220c89d56cf4e5691ccedc542 wpt-pr: 40879 07 July 2023, 11:18:46 UTC
dce3515 Bug 1879488: Update time zone data to tzdata2024a. a=diannaS Original Revision: https://phabricator.services.mozilla.com/D201196 Differential Revision: https://phabricator.services.mozilla.com/D201954 21 February 2024, 21:50:09 UTC
fed961f No bug - Tagging 17fcbdf6426663c10da5d0ba21927e71184304c3 with FIREFOX_115_8_0esr_RELEASE a=release CLOSED TREE DONTBUILD 20 February 2024, 13:58:01 UTC
1018612 Update configs. IGNORE BROKEN CHANGESETS CLOSED TREE NO BUG a=release ba=release 19 February 2024, 09:46:52 UTC
0c5e179 No Bug, mozilla-esr115 repo-update HSTS HPKP remote-settings tld-suffixes - a=repo-update r=RyanVM Differential Revision: https://phabricator.services.mozilla.com/D201951 15 February 2024, 11:30:12 UTC
ccd7c5f Bug 1879410 - Remove Amazon from all regions except JP and US. a=RyanVM Original Revision: https://phabricator.services.mozilla.com/D201165 Differential Revision: https://phabricator.services.mozilla.com/D201897 14 February 2024, 22:29:45 UTC
a67e60e Bug 1879850 - Test, r=Gijs a=test-only 12 February 2024, 13:54:33 UTC
d062308 Bug 1879915 - websocketprocessbridge: pin cffi to 1.14.5 for windows 7. r=jmaher, a=test-only Pin cffi to 1.14.5 only for our Windows 7 environment, approximated as "Windows and python 3.7". Differential Revision: https://phabricator.services.mozilla.com/D201634 12 February 2024, 21:10:17 UTC
c2291a3 No bug - Tagging 17fcbdf6426663c10da5d0ba21927e71184304c3 with FIREFOX_115_8_0esr_BUILD1 a=release CLOSED TREE DONTBUILD 12 February 2024, 21:21:56 UTC
71038b1 Bug 1878211 - Process pairs in coord list in PolyArea. r=dholbert a=pascalc Differential Revision: https://phabricator.services.mozilla.com/D200695 08 February 2024, 04:03:58 UTC
ac4e11c Bug 1840574: Don't try to get the selection in HyperTextAccessible::GetSelectionDOMRanges if the initial tree hasn't been constructed yet. a=pascalc Original Revision: https://phabricator.services.mozilla.com/D199601 Differential Revision: https://phabricator.services.mozilla.com/D201222 11 February 2024, 11:18:27 UTC
b54321e Bug 1876425 part 1 - Stop using trial inlined ICScripts during bailout if needed. r=iain, a=RyanVM Differential Revision: https://phabricator.services.mozilla.com/D201213 09 February 2024, 12:37:33 UTC
f9846f3 Bug 1833814 - change nsIWidget's cursor logic, a=pascalc Original Revision: https://phabricator.services.mozilla.com/D195549 Differential Revision: https://phabricator.services.mozilla.com/D198576 09 February 2024, 17:19:42 UTC
666a1b7 Bug 1874080 - Nullify WebTaskSchedulerWorker::mWorkerPrivate while Disconnect(). r=smaug, a=RyanVM Differential Revision: https://phabricator.services.mozilla.com/D198569 15 January 2024, 15:53:56 UTC
d768626 Bug 1868772 - Do not launch the crash reporter client if we've already removed the exception handler. r=afranchuk, a=RyanVM Differential Revision: https://phabricator.services.mozilla.com/D198158 15 January 2024, 09:50:57 UTC
a807e3f Bug 1867982 - Check if WorkerRunnable::Run runs on top of WorkerThreadPrimaryRunnable::Run in a worker thread. a=RyanVM Original Revision: https://phabricator.services.mozilla.com/D199247 Differential Revision: https://phabricator.services.mozilla.com/D199970 30 January 2024, 14:43:17 UTC
1a80728 Bug 1860065 - Use sLastScreenPoint to restore mouse position after releasing pointer lock; a=RyanVM Differential Revision: https://phabricator.services.mozilla.com/D200031 09 February 2024, 04:23:32 UTC
2358386 Bug 1855686 - [bug 1877341 on esr115] Reset GLContext TLS current-context caching when calling library MakeCurrent symbols. a=RyanVM Original Revision: https://phabricator.services.mozilla.com/D200866 Differential Revision: https://phabricator.services.mozilla.com/D201001 09 February 2024, 04:03:05 UTC
e43d868 Bug 1873866 - [esr115] RawBuffer now forbids null/size-only. a=RyanVM Original Revision: https://phabricator.services.mozilla.com/D200841 Differential Revision: https://phabricator.services.mozilla.com/D201003 09 February 2024, 03:27:13 UTC
3c42117 Bug 1833020: Disable TestWifiMonitor for intermittent failures r=gstoll,necko-reviewers,kershaw a=test-only Differential Revision: https://phabricator.services.mozilla.com/D200066 30 January 2024, 21:31:41 UTC
2f6a444 Bug 1871498 - Let FetchDriver::RunAbortAlogrithm() resolving FetchInstance::mPromises by calling FetchObserver::OnResponseEnd(). r=dom-worker-reviewers,smaug a=RyanVM 29 January 2024, 11:02:14 UTC
da243a9 Bug 1843752 - Explicitly transfer ownership of queued-up OnDataAvailableParams data buffers, a=RyanVM 28 January 2024, 10:20:18 UTC
c1fff90 Bug 1875795 - Take scratch2 from register set before creating LiveRegisterSet. r=iain a=RyanVM Differential Revision: https://phabricator.services.mozilla.com/D199233 24 January 2024, 13:24:17 UTC
ca000ea Bug 1873577 - Improve locking in MacOSFontEntry. r=lsalzman, a=RyanVM Differential Revision: https://phabricator.services.mozilla.com/D199380 23 January 2024, 19:38:03 UTC
b1a9ba0 Bug 1832627 - Popup should be closed. r=edgar, a=RyanVM 17 January 2024, 08:48:29 UTC
27215d6 Bug 1864385 - Block set-cookie from multipart/x-mixed-replace with pref. r=valentin,necko-reviewers a=RyanVM 16 January 2024, 22:17:41 UTC
9eb24bc Bug 1873521: Code cleanup r=valentin,necko-reviewers,kershaw a=RyanVM 16 January 2024, 14:04:31 UTC
5048215 Bug 1874502: Use ScratchDoubleScope in moveValue. r=jandem, a=RyanVM Differential Revision: https://phabricator.services.mozilla.com/D198479 15 January 2024, 23:41:59 UTC
79717b0 Bug 1873659 - Hide broken favicons from mime handler dialog. r=desktop-theme-reviewers,dao a=RyanVM Simplify the code to use loading=lazy to make the images not block the load event. Differential Revision: https://phabricator.services.mozilla.com/D198426 15 January 2024, 14:54:13 UTC
62cc7f6 Bug 1866883 - Avoid attempting to apply DirectWrite FONT_SIMULATIONS_BOLD to COLR fonts. a=RyanVM The DirectWrite "bold simulation" has poor results with some fonts; we already disable it by default for webfonts, to avoid rendering issues. As it also works poorly with some of the component layers in Segoe UI Emoji, let's disable it for COLR fonts as well. 18 January 2024, 13:06:05 UTC
c89b8da Bug 1868737 - Allow minimal gfx features by default for uncertain configurations. r=jrmuizel,perftest-reviewers,kshampur a=RyanVM Some features such as the GPU process (except on Android), backdrop filter (because it always works with Software WebRender), ANGLE (because it is generally good) and out of process WebGL (we generally want to remote WebGL for sandboxing purposes) are special, and should not be disabled simply because we are uncertain about our configuration. In these situations, disable most features, but keep these enabled by default. 05 January 2024, 22:23:25 UTC
a780020 Bug 1870159 - Use a different string for empty driver versions. r=aosmond,win-reviewers,mhowell a=RyanVM This lets us distinguish parse failures from empty versions in telemetry. 15 December 2023, 00:51:23 UTC
1b68cef Bug 1867784 - Force reflow all kids in the last column balancing reflow. a=RyanVM The bug occurs because some abspos children are split, but not being reflowed again in the last column balancing reflow where the available block-size of the last column might be unconstrained. This patch makes the callers utilizing `ReflowInput::ShouldReflowAllKids()` always reflow in the last column balancing reflow to ensure the correctness of the layout. Note: the `mIsInLastColumnBalancingReflow` flag is inheriting from parent to child reflow input, but it will stop at the nested `nsColumnSetFrame` because the nested one will create its own `ReflowConfig::mIsLastBalancingReflow` and assign that flag when creating the reflow input for the children. 04 January 2024, 22:48:12 UTC
de9bf96 Bug 1198168 - disable test_bug1113600.html on mac. a=test-only 22 October 2023, 18:46:16 UTC
a542cde Bug 1837646 - disable browser_sma_show_migration_wizard.js on mac for frequent failures. r=aryx, a=test-only 29 June 2023, 13:05:23 UTC
b5b4b4b Bug 1760081 - Disabled netwerk/test/unit/test_alt-data_simple.js on Windows for having a high failure rate. r=necko-reviewers,kershaw a=test-only 25 July 2023, 10:53:47 UTC
a6d0ec2 Bug 1817727 - Disable test_filename_sanitize.js on mac because of permafailures. r=aryx, a=test-only 13 October 2023, 17:53:25 UTC
edaa0dd Bug 1873960 - Test. r=Gijs, a=test-only 15 January 2024, 13:10:15 UTC
1add0da No Bug, mozilla-esr115 repo-update HSTS HPKP remote-settings tld-suffixes - a=repo-update r=RyanVM Differential Revision: https://phabricator.services.mozilla.com/D201069 08 February 2024, 11:00:22 UTC
7647aac Bug 1878182 - Instantiate Cairo scaled font for ScaledFontBase::GetPathForGlyphs. r=jfkthameApproved for 123 beta 8, thanks. a=pascalc This bug likely dates back to bug 1584268, which makes it so that Cairo scaled fonts must be instantiated on demand for their first use. It seems like some StrokeGlyphs machinery got overlooked and somehow never caused a problem till now. Differential Revision: https://phabricator.services.mozilla.com/D200472 02 February 2024, 20:40:37 UTC
877e242 Bug 1875906 - run the intermediate preloading healer on the socket thread r=jschanck a=pascalc Differential Revision: https://phabricator.services.mozilla.com/D199418 24 January 2024, 17:55:54 UTC
a181406 Backed out 1 changesets (bug 1830071) for causing build bustage on esr115 a=backout Backed out changeset eb8c2d5bd1aa (bug 1830071) 06 February 2024, 19:04:31 UTC
ff19f0d Bug 1806255 - Fix crash in [@ nsAutoCompleteController::HandleKeyNavigation]. r=emilio a=pascalc Differential Revision: https://phabricator.services.mozilla.com/D197566 11 January 2024, 09:19:48 UTC
4401f3a Bug 1830071 - Ensure tasks run across all users in Windows r=bytesized,application-update-reviewers,nalexander a=pascalc Differential Revision: https://phabricator.services.mozilla.com/D191226 27 December 2023, 18:56:14 UTC
ffc53e2 No Bug, mozilla-esr115 repo-update HSTS HPKP remote-settings tld-suffixes - a=repo-update r=pascalc Differential Revision: https://phabricator.services.mozilla.com/D200615 05 February 2024, 11:01:44 UTC
3b9f014 Bug 1873597 - Bug 1876275 - Improve URI-list matching algorithm for performance - a=pascalc Original Revision: https://phabricator.services.mozilla.com/D198945 Differential Revision: https://phabricator.services.mozilla.com/D199486 06 February 2024, 17:23:44 UTC
ca4fdc8 Bug 1877879 - Implement isActiveInTab and use it for PromptParent. a=pascalc Original Revision: https://phabricator.services.mozilla.com/D200245 Differential Revision: https://phabricator.services.mozilla.com/D200813 06 February 2024, 17:17:11 UTC
3fa7857 Backed out 1 changesets (bug 1873866) for causing build failures on esr115 a=backout Backed out changeset 2c8561c8e416 (bug 1873866) 06 February 2024, 14:51:00 UTC
aa65244 Bug 1873866 - RawBuffer now forbids null/size-only. a=pascalc Original Revision: https://phabricator.services.mozilla.com/D199939 Differential Revision: https://phabricator.services.mozilla.com/D200401 06 February 2024, 14:13:58 UTC
9bae758 Bug 1875621 - SlicedInputStream::Serialize should serialize the outer SlicedInputStream as a pipe in the efficient path. a=pascalc Original Revision: https://phabricator.services.mozilla.com/D199852 Differential Revision: https://phabricator.services.mozilla.com/D200437 06 February 2024, 14:05:51 UTC
e1762eb Bug 1878286 - [rebased to esr115] Eliminate usage of fontlist::Pointer in IPDL. a=pascalc Differential Revision: https://phabricator.services.mozilla.com/D200784 06 February 2024, 10:59:30 UTC
8c72936 Backed out 1 changesets (bug 1833814) for causing build failures on esr branch a=backout Backed out changeset 39193ec581e4 (bug 1833814) 06 February 2024, 09:46:44 UTC
3987890 Bug 1833814 - change nsIWidget's cursor logic, r=emilio,win-reviewers,mhowell a=pascalc Original Revision: https://phabricator.services.mozilla.com/D195549 Differential Revision: https://phabricator.services.mozilla.com/D198576 15 January 2024, 14:25:54 UTC
fe1b3fa Bug 1872296 - Use the same global for promise and chunk r=smaug a=pascalc Differential Revision: https://phabricator.services.mozilla.com/D197938 29 January 2024, 09:42:55 UTC
3bb09e7 Bug 1872267 - Allow setting an explicit preference type in policy. a=pascalc Original Revision: https://phabricator.services.mozilla.com/D197534 Differential Revision: https://phabricator.services.mozilla.com/D199911 06 February 2024, 08:30:55 UTC
a9239f3 Bug 1874627 - regenerate expiring test certificates for 2024 (branch patch), this time with certificates included. r=jschank a=test-only * the certificates were regenerated using `./mach generate-test-certs` * the build/pgo/certs/ changes were made using `./mach python build/pgo/genpgocert.py` * the zip files in security/manager/ssl/tests/unit/test_signed_apps/ were updated per the directions in the corresponding moz.build file * security/manager/ssl/tests/unit/test_cert_override_read.js needed manual updating These certificates and other test artifacts will now expire in 2025. Differential Revision: https://phabricator.services.mozilla.com/D199156 05 February 2024, 18:30:23 UTC
back to top