Version 115.0a1, first offered to Nightly channel users on May 8, 2023
Firefox Nightly gets updated every day and as a consequence, the release notes for the Nightly channel are updated continuously to reflect features that have reached sufficient maturity to benefit from community feedback and bug reports.
Warning: Features listed here may or may not make a final release of Firefox.
In addition to these release notes, you can follow ongoing development on our @FirefoxNightly X account as well as read our Nightly Blog.
You can interact with other Firefox Nightly users and give your feedback to Mozilla staff in the Nightly Matrix room on chat.mozilla.org.
-
Starting with Firefox 112, Nightly users on macOS and Linux can now use FIDO2 / WebAuthn authenticators over USB. Some advanced features, such as fully passwordless logins, require a PIN to be set on the authenticator. It is expected to ship to all users in a future release.
-
<!-- Nightly Only -->
Starting with Firefox 115, Nightly users without platform support for H264 video decoding can now fallback to Cisco's OpenH264 plugin for playback.
-
Hardware video decoding enabled for Intel GPUs on Linux.
-
Migrating from another browser? Now you can bring over payment methods you've saved in Chrome-based browsers to Firefox.
-
<!-- Nightly Only -->
Starting with Firefox 115, Nightly users can access automated translation of web content in Firefox. Unlike cloud-based alternatives, translation is done locally in Firefox, so that the text being translated does not leave your machine.
-
The Tab Manager dropdown now features close buttons, so you can close tabs more quickly.
-
<!-- Nightly Only -->
Starting with Firefox 115, Nightly supports a new “Copy Link Without Site Tracking” context menu action which prevents disclosure of identifying or sensitive information by removing superfluous query and tracking parameters from the copied links.
-
Windows Magnifier now follows the text cursor correctly when the Firefox title bar is visible.
-
On Linux, middle clicks on the new tab button will now open the xclipboard contents in the new tab. If the xclipboard content is a URL then that URL is opened, any other text is opened with your default search provider. This feature can be turned off using
browser.tabs.searchclipboardfor.middleclickinabout:config. -
For users with a Firefox Colorways built-in theme, the theme will be automatically migrated to the same theme hosted on addons.mozilla.org for Firefox profiles that have disabled add-ons auto-updates. This will allow users to keep their Colorways theme when they are later removed from Firefox installer files.
-
Undo and redo are now available in Password fields.
-
In web development, we rely on third-party libraries which you may not be interested in while debugging. These can be ignored. Ignoring them means that breakpoints will not get hit and they are skipped during stepping.
You can now choose to Hide ignore-listed sources in the Developer Tools source tree.
-
<!-- Nightly Only -->
Starting with Firefox 113, the WebTransport API is now enabled in the Nightly channel, including RFC 9297 support. It's expected to ship to release in the near future. WebTransport is expected to see widespread use for media delivery and other applications. WebTransport is built on top of QUIC/HTTP3 and provides reliable streams and reliable and unreliable datagrams.
-
WebRTC application developers can now specify a target in milliseconds of media for the jitter buffer to hold. Altering the target value allows applications to control the tradeoff between playout delay and the risk of running out of audio or video frames due to network jitter.
-
Change array by copy provides additional methods on
Array.prototypeandTypedArray.prototypeto enable changes on the array by returning a new copy of it with the change. -
The animation-composition property is now supported, allowing a declarative way to define the composite operation used when multiple animations affect the same property simultaneously.
-
The builtin editor now behaves similarly to other browsers with
contenteditableanddesignModewhen splitting a node, e.g. typing Enter to split a paragraph, and also when joining two nodes, e.g. typing Backspace at start of a paragraph to join the paragraph and previous one.When a node is split, the builtin editor creates a new node after the original one instead of before, i.e. creates the right node instead of the left node.
Similarly, when two nodes are joined, the builtin editor deletes the latter node and moves its children to the end of the preceding node instead of deleting the former node and moving its child to start of the following node.
-
Added the URL.canParse() function to allow easy and fast checking if URLs are valid and parseable.