Tor Release Notes
31 release notes curated from 33 sources by the Releasebot Team. Last updated: Jul 24, 2026
- Jul 23, 2026
- Date parsed from source:Jul 23, 2026
- First seen by Releasebot:Jul 24, 2026
New Alpha Release: Tor Browser 16.0a9
Tor releases Tor Browser 16.0a9 with important Firefox security updates, a rebase to Firefox ESR 153, updated NoScript, and Android size reductions that keep the app under Googleโs limit. It also brings ongoing UI and build-system cleanup.
Tor Browser 16.0a9 is now available from the Tor Browser download page and also from our distribution directory.
This version includes important security updates to Firefox.
โ ๏ธ Reminder: The Tor Browser Alpha release-channel is for testing only. As such, Tor Browser Alpha is not intended for general use because it is more likely to include bugs affecting usability, security, and privacy.
Moreover, Tor Browser Alphas are now based on Firefox's betas. Please read more about this important change in the Future of Tor Browser Alpha blog post.
If you are an at-risk user, require strong anonymity, or just want a reliably-working browser, please stick with the stable release channel.
It's ESR transition season again!
Well actually, it has been ESR transition season throughout this entire release cycle! As described in the aforementioned Future of Tor Browser Alpha blog post, we have been incrementally rebasing our Alpha channel on Firefox betas since December of last year. As a result, we now stand before you with Tor Browser 16.0a9 which is based on Firefox ESR 153.
We will continue rebasing Tor Browser 17.0 Alpha branches on Firefox betas throughout the remainder of the Tor Browser 16.0 release cycle. However, new feature-work for now must be put on hold for a few reasons:
- We must focus our attention on resolving our Bugzilla Audit issues to ensure the features we have inherited from upstream comply Tor Browser's threat model and to patch any changes which do not.
- Feature work targeting 16.0 stable would need to be cherry-pick'd onto our 17.0 Alpha branches to ensure we don't lose any work. The more invasive a feature patch is, the harder it will be to port to newer versions. This would also be a potentially error-prone process and there is some risk we would lose patches along the way.
- We need to finish stabilizing as soon as possible as we have hard external deadlines which cannot be moved: the end-of-life of Firefox ESR 140 on October 13th and the Google Play Minimum Target API Level requirement on November 1st
Challenges and Triumphs
๐ Sharing the Load
Rebasing the hundreds of Tor Browser patches onto newer versions of Firefox is a challenging task. It is like maintaining the structural stability of sand-castle at high-tide with the waves crashing all around you.
As such, it quickly become clear early in this new process that we would need to do something if we wanted to avoid burning out the few developers typically involved in this work. To mitigate this, we shared the knowledge internally and spread the work out across all eight members of the team. This way, each developer was only responsible for at most two or three rebases throughout the entire release cycle.
๐จ UI Code Churn
Over the past year, Firefox has developed and integrated two major changes to the UI in Firefox: a redesign of about:preferences in Firefox Desktop and a migration from Material 2 to Material 3 in Firefox Android.
Adapting to these types of changes to the frontend are typically rather time-consuming for us, as many (if not the majority) of our patches modify Firefox's UI in some way. For example, we have an entire preferences page on Tor Browser desktop dedicated to configuring how the browser connects to the Tor Network. On Android, we similarly have various additions to the menus, configuration options, and custom UI.
Whenever Mozilla modifies their design systems and Firefox's user interface, we necessarily have to adapt our own custom additions to match. Otherwise, our Tor Browser-specific UI elements would look completely out of place and potentially confuse users (as well as simply looking unprofessional). Therefore, each of these upstream changes requires collaboration with the Tor Project's UX team to update our features' designs and of course development time to implement.
In addition to the time-cost associated with the extra engineering and UX collaboration, very often our old patches simply do not apply cleanly due to the amount of code which has changed. For example, the about:preferences changes on Firefox Desktop are essentially a complete re-write which means we also have to completely re-write our own settings changes without regressing in functionality.
On the plus side, one benefit of our new processes is that we have been able to spread out this work over the entire release cycle. In the past way of doing things, we would have discovered all UX elements which needed to be fixed, updated our designs, and re-implemented in the course of a few months during the old ESR transition season. Under this new way of working, we have been able to incrementally fix things throughout the development cycle.
The benefits of working this way does not just apply to UX of course. It is much easier to find regressions across the entire stack when rebasing between one major Firefox version at a time instead of across 12 or 13. It is also much easier for developers to fix individual regressions one at a time compared to diagnosing, disentangling, and fixing multiple bugs concurrently (divide et impera!).
โ๏ธ Pending Google Target API Level Requirements
Every year, Google requires new Android app releases to target an updated minimum API level. This means, we would not be able to upload new versions of Tor Browser Stable past a certain date (usually August 1st with an extension to November 1st typically possible) without first updating the app to support the new minimum target API level. Fortunately, we inherit most of the required changes from Mozilla when rebasing to the next major ESR.
However, this requirement does impose a hard deadline for the absolute latest we can responsibly stabilize Tor Browser Alpha and promote it to Stable. We've been fortunate in the past few years to make the deadline with a few days to spare (October 28th for Tor Browser 15, October 22nd for Tor Browser 14, etc). Given how far ahead of the curve we are this year, we are hoping to release about a month earlier in September (fingers crossed!).
๐ค Android APKs too big
The Google Play Store has a strict size limit of about 100 megabytes for Android applications. New functionality added to Firefox Android over the past year means a larger application which results in new headaches for Tor Browser developers. This release cycle was no exception to this rule and we have had to get creative with our size reductions.
In the past, we have been able reduce our package size though various methods including:
- Using custom size-reducing compiler flags
- Compiling multiple pluggable-transports into a single unified binary to de-duplicate shared dependencies
- Removing unused Firefox assets from the build
- Replacing unused (but still linked) libraries with no-op stubs
- and countless other methods over there years
Our most recent effort has been the most invasive yet! For some background, the Firefox application consists of (among other things): various shared libraries, the Firefox executable, a library known as 'xul' which contains most of Firefox's natively compiled functionality, and finally a file known as omni.ja. This omni.ja file is a zip archive which contains the JavaScript, HTML, images, and other assets used in Firefox.
This time around, to reduce the size of our Android package we have changed how this archive is compressed. We modified the Firefox build system to compress this archive with xz and we modified Firefox itself to decompress this archive at runtime. This work did require a few iterations to get right. In the end, we got back about 3 megabytes with these changes and got us once again under Google's imposed size budget.
๐ Even Less Telemetry
Over the years, we have worked to incrementally remove dependencies from Tor Browser Android as part of the aforementioned size reduction work. We of course inherit most of these dependencies from Firefox Android and unfortunately some of them can be labeled as 'trackers'. While we do disable telemetry by default at runtime, the code which implements it remains in the codebase.
We're happy to report that as of Tor Browser 16.0a8, are down to only 1 'tracker' library in the Tor Browser Android codebase: Mozilla Telemetry. Again, this telemetry is disabled at runtime, but this is one more unused dependency which we can hopefully remove in the future (and maybe get some more bytes back!).
Current Status
We have:
- incrementally rebased Tor Browser and Tor Browser for Android to Firefox ESR 153 from Firefox ESR 140
- updated the build systems with the latest dependencies and fixed a few reproducibility issues
- triaged most of the upstream changes from the past year and flagged over 250 issues for further review (triaging of Firefox 153 is in progress)
- resolved about half of these triaged issues
For the remainder of this release cycle, we will be focusing on auditing these issues and fixing bugs until the 16.0 alpha series is ready to become Tor Browser Stable 16.0. We are optimistically targeting a September release, which would put us one month ahead of schedule compared to last year.
Known Issues
๐ฆ Firefox Branding
In some places in the browser there may be Firefox branding (e.g. logos, cute little foxes, etc) instead of Tor Browser branding. We're currently tracking one known instance in tor-browser#44998. If you discover any other instances lurking about, please open an issue!
๐ All websites marked 'insecure' on Tor Browser Android
Currently, the identity block in the URL bar on Tor Browser Android will always report insecure (e.g. a shield icon with a slash through it). For now, you can tap this icon and verify the certificate manually. This issue is being tracked in tor-browser#45115.
Send us your feedback
Now is a great time to become an alpha tester! If you find a bug or have a suggestion for how we could improve this release, please let us know.
Full changelog
The full changelog since Tor Browser 16.0a8 is:
- All Platforms
- Updated NoScript to 13.6.30.90201984
- Bug tor-browser#43819: Show custom security level on android
- Bug tor-browser#44748: Revert Funding the Commons Implementations
- Bug tor-browser#44811: Remove the lock on pdfjs.disable.
- Bug tor-browser#45101: Rebase Tor Browser onto 153.0esr
- Bug tor-browser#45131: Security level is using an unsafe getBoolPref
- Bug tor-browser-build#41831: Update libevent to 2.1.13
- Windows + macOS + Linux
- Updated Firefox to 153.0esr
- Bug tor-browser#44439: Remove translate action from urlbar
- Bug tor-browser#44883: Remove urlbar quick action for labs
- Bug tor-browser#45029: Convert connection status settings to new design and config approach
- Bug tor-browser#45055: Rename --color-gray-05 to --color-gray-0
- Bug tor-browser#45081: Use the new "Acorn" icons on desktop
- Bug tor-browser#45110: Disable the settings redesign until ready for us
- Bug tor-browser#45112: Missing CSS border tokens in 153
- Bug tor-browser#45132: nsAppFileLocationProvider.cpp: use of undeclared identifier 'XRE_EXECUTABLE_FILE'
- Bug tor-browser-build#41800: Create a script that adapts the Tor Browser manual HTMLs to work in Tor Browser
- macOS
- Bug tor-browser#45108: Artifact generation fails due to missing .DS_Store in the branding directories
- Android
- Updated GeckoView to 153.0esr
- Bug tor-browser#43820: Use SecurityLevel integration on android
- Bug tor-browser#44157: Remove secret setting toggle for Tab Management Redesign
- Bug tor-browser#45045: Remove moz asset in Downloads screen
- Bug tor-browser#45103: Disable broken "tab management"
- Bug tor-browser#45109: No value passed for parameter 'jsEnabled'
- Bug tor-browser#45118: Audit and disable Mozilla VPN promo
- Bug tor-browser#45130: Clean up TorHomePage padding
- Build System
- All Platforms
- Bug tor-browser-build#41838: Update personal_access_tokens URL in tools/fetch_changelogs.py
- Windows + Linux + Android
- Updated Go to 1.26.5
- Windows
- Bug tor-browser-build#41819: Fix windows-rs URL in projects/firefox/config
- All Platforms
- Jul 21, 2026
- Date parsed from source:Jul 21, 2026
- First seen by Releasebot:Jul 22, 2026
Tor Browser 15.0.19
Tor Browser 15.0.19 ships important security updates, including a Firefox ESR update, newer GeckoView on Android, and an updated NoScript. It also backports Firefox security fixes and includes build system refinements.
Tor Browser 15.0.19 is now available from the Tor Browser download page and also from our distribution directory.
This version includes important security updates to Firefox.
Send us your feedback
If you find a bug or have a suggestion for how we could improve this release, please let us know.
Full changelog
The full changelog since Tor Browser 15.0.18 is:
- All Platforms
- Updated NoScript to 13.6.31.1984
- Bug tor-browser#44748: Revert Funding the Commons Implementations
- Bug tor-browser#45117: Rebase Tor Browser stable onto 140.13.0esr
- Bug tor-browser#45124: Backport Security Fixes from Firefox 153
- Windows + macOS + Linux
- Updated Firefox to 140.13.0esr
- Android
- Updated GeckoView to 140.13.0esr
- Build System
- All Platforms
- Bug tor-browser-build#41838: Update personal_access_tokens URL in tools/fetch_changelogs.py
- Windows
- Bug tor-browser-build#41819: Fix windows-rs URL in projects/firefox/config
- All Platforms
All of your release notes in one feed
Join Releasebot and get updates from Tor and hundreds of other software products.
- Jul 14, 2026
- Date parsed from source:Jul 14, 2026
- First seen by Releasebot:Jul 15, 2026
Tor Browser 15.0.18
Tor Browser 15.0.18 is now available with important Firefox security updates, plus updated NoScript and build system improvements across platforms.
Tor Browser 15.0.18 is now available from the Tor Browser download page and also from our distribution directory.
This version includes important security updates to Firefox.
Send us your feedback
If you find a bug or have a suggestion for how we could improve this release, please let us know.
Full changelog
The full changelog since Tor Browser 15.0.17 is:
- All Platforms
- Updated NoScript to 13.6.30.1984
- Bug tor-browser#45111: Cherry-pick latest firefox/esr140 commits on 140.12.0esr
- Build System
- All Platforms
- Bug tor-browser-build#41821: Update gpg subkeys for boklm
- Windows + Linux + Android
- Updated Go to 1.25.12
- All Platforms
- Jul 2, 2026
- Date parsed from source:Jul 2, 2026
- First seen by Releasebot:Jul 3, 2026
New Alpha Release: Tor Browser 16.0a8
Tor Browser Alpha 16.0a8 adds important Firefox security updates, updates NoScript, Tor and OpenSSL, and brings broader platform fixes across desktop, macOS, Linux and Android, plus build system and toolchain updates.
Tor Browser 16.0a8 is now available from the Tor Browser download page and also from our distribution directory.
This version includes important security updates to Firefox.
โ ๏ธ Reminder: The Tor Browser Alpha release-channel is for testing only. As such, Tor Browser Alpha is not intended for general use because it is more likely to include bugs affecting usability, security, and privacy.
Moreover, Tor Browser Alphas are now based on Firefox's betas. Please read more about this important change in the Future of Tor Browser Alpha blog post.
If you are an at-risk user, require strong anonymity, or just want a reliably-working browser, please stick with the stable release channel.
Send us your feedback
If you find a bug or have a suggestion for how we could improve this release, please let us know.
Full changelog
The full changelog since Tor Browser 16.0a7 is:
All Platforms
- Updated NoScript to 13.6.25.90301984
- Updated Tor to 0.4.9.11
- Updated OpenSSL to 3.5.7
- Bug tor-browser#44857: Drop browser.display.use_system_colors from our preference list
- Bug tor-browser#44896: Review Mozilla 2030929: Remove unused pref privacy.partition.network_state
- Bug tor-browser#45018: resistfingerprinting not available in appearance.mjs in 152
- Bug tor-browser#45019: ReportBrokenSite startup error in 152
- Bug tor-browser#45047: Cross-site oracle via worklet rejection error in Safer Mode
- Bug tor-browser#45072: Disable XSLT already for 16.0
Windows + macOS + Linux
- Updated Firefox to 152.0a1
- Bug tor-browser#44528: Make sure desktop IP Protection is disabled on desktop
- Bug tor-browser#44795: Revert BB 27604 patch as not needed anymore
- Bug tor-browser#44844: Use new urlbar CSS variables
- Bug tor-browser#44888: Use --button-opacity-disabled for disabled styling.
- Bug tor-browser#44955: Use context-fill for about-wordmark.svg
- Bug tor-browser#44956: Switch colours in letterboxing setting icons to match the tab-alignment icons
- Bug tor-browser#45016: Several errors about EngineProcess.sys.mjs in 152
- Bug tor-browser#45017: Wrong letterboxing background in 152
- Bug tor-browser#45037: Potential runtime errors in the search service when changing JS status
- Bug tor-browser#45043: Re-add missing changes to settings after 151/152 rebase
- Bug tor-browser#45083: Error in about:preferences due to ipprotection missing
macOS
- Bug tor-browser#44728: Bundled fonts are broken on macOS when the GPU process is enabled
Linux
- Bug @ libfontconfig.so.1#45048: Backport Bugzilla 2041887: Crash in after users upgraded to fontconfig 2.18.0 [tor-browser]
Android
- Updated GeckoView to 152.0a1
- Bug tor-browser#43856: Fix onBackPressed() deprecation
- Bug tor-browser#44091: Add frequent regions to tor connection assist for android
- Bug tor-browser#44175: Remove all default browser functionality (Android)
- Bug tor-browser#44769: TBA crash screen has firefox asset as well as a "Send crash report" button
- Bug tor-browser#45052: Initialise Tor modules on android in the same order as desktop
Build System
All Platforms
- Bug tor-browser-build#41802: Remove the tor daemon requirement for signing
- Bug tor-browser-build#41809: Update toolchains for Firefox 152
- Bug tor-browser-build#41813: Disable build artifacts in make generate_gradle_dependencies_list-geckoview
- Bug tor-browser-build#41821: Update gpg subkeys for boklm
- Bug tor-browser-build#41823: Add versions information to the toolchain list update
- Bug tor-browser-build#41827: Update morgan's keychain with renewed key
Windows + Linux + Android
- Updated Go to 1.26.4
Windows
- Bug tor-browser-build#41810: Define GetAddrInfoExCancel on mingw
Android
- Bug tor-browser#45086: Compress omni.ja with xz on Android
- Bug tor-browser-build#41830: Update the browser project to change omni.ja.xz
- Jun 28, 2026
- Date parsed from source:Jun 28, 2026
- First seen by Releasebot:Jun 29, 2026
Tor Browser 15.0.17
Tor releases Tor Browser 15.0.17 with important security updates and refreshed Tor and NoScript components.
Tor Browser 15.0.17 is now available from the Tor Browser download page and also from our distribution directory.
This version includes important security updates to Tor.
Send us your feedback
If you find a bug or have a suggestion for how we could improve this release, please let us know.
Full changelog
The full changelog since Tor Browser 15.0.16 is:
- All Platforms
- Updated Tor to 0.4.9.11
- Updated NoScript to 13.6.25.1984
- Build System
- All Platforms
- Bug tor-browser-build#41821: Update gpg subkeys for boklm
- Bug tor-browser-build#41827: Update morgan's keychain with renewed key
- All Platforms
Similar to Tor with recent updates:
- Anthropic release notes732 release notes ยท Latest Jul 28, 2026
- Zed release notes157 release notes ยท Latest Jul 29, 2026
- Obsidian release notes98 release notes ยท Latest Jul 30, 2026
- OpenClaw release notes228 release notes ยท Latest Jul 30, 2026
- xAI release notes197 release notes ยท Latest Jul 30, 2026
- Ubiquiti release notes804 release notes ยท Latest Jul 30, 2026
- Jun 17, 2026
- Date parsed from source:Jun 17, 2026
- First seen by Releasebot:Jun 18, 2026
Tor Browser 15.0.16
Tor Browser 15.0.16 now updates Firefox, GeckoView, NoScript, and OpenSSL with important security fixes, bringing fresh stability and backend improvements across desktop, Android, and the build system.
Tor Browser 15.0.16 is now available from the Tor Browser download page and also from our distribution directory.
This version includes important security updates to Firefox.
Send us your feedback
If you find a bug or have a suggestion for how we could improve this release, please let us know.
Full changelog
The full changelog since Tor Browser 15.0.16 is:
- All Platforms
- Updated NoScript to 13.6.24.1984
- Updated OpenSSL to 3.5.7
- Bug tor-browser#45044: NS 13.6.19.902 DocStartInjection regressed
- Bug tor-browser#45046: Rebase Tor Browser stable onto 140.12.0esr
- Bug tor-browser#45054: Backport Security Fixes from Firefox 152
- Windows + macOS + Linux
- Updated Firefox to 140.12.0esr
- Android
- Updated GeckoView to 140.12.0esr
- Build System
- All Platforms
- Bug tor-browser-build#41802: Remove the tor daemon requirement for signing
- Windows + Linux + Android
- Updated Go to 1.25.11
- All Platforms
- Jun 3, 2026
- Date parsed from source:Jun 3, 2026
- First seen by Releasebot:Jun 4, 2026
New Alpha Release: Tor Browser 16.0a7
Tor Browser 16.0a7 adds important Firefox security updates and updates NoScript, Tor, Firefox, and GeckoView while fixing issues across desktop, Android, and build tooling.
Tor Browser 16.0a7 is now available from the Tor Browser download page and also from our distribution directory.
This version includes important security updates to Firefox.
โ ๏ธ Reminder: The Tor Browser Alpha release-channel is for testing only. As such, Tor Browser Alpha is not intended for general use because it is more likely to include bugs affecting usability, security, and privacy.
Moreover, Tor Browser Alphas are now based on Firefox's betas. Please read more about this important change in the Future of Tor Browser Alpha blog post.
If you are an at-risk user, require strong anonymity, or just want a reliably-working browser, please stick with the stable release channel.
Send us your feedback
If you find a bug or have a suggestion for how we could improve this release, please let us know.
Full changelog
The full changelog since Tor Browser 16.0a6 is:
All Platforms
- Updated NoScript to 13.6.19.90401984
- Updated Tor to 0.4.9.9
- Bug tor-browser#42436: Allow for multiple configured (front, reflector) domain fronting pairs in Moat module
- Bug tor-browser#44869: Rebase alpha onto 151
- Bug tor-browser#44952: TOR_PROVIDER=none throws an error at launch
- Bug tor-browser#44989: Backport Bug 2040704: Fix date format leak in Firefox 151
- Bug tor-browser#44990: CI failing due to dubious ownership of cached repo
- Bug tor-browser#44999: Privacy settings are broken in 151
- Bug tor-browser-build#41686: Copy more build artifacts to the artifacts directory
Windows + macOS + Linux
- Updated Firefox to 151.0a1
- Bug tor-browser#44903: Use the support-page instead of tor-manual-page in moz-support-link
- Bug tor-browser#44904: Use settings config for onion site settings
- Bug tor-browser#44991: Improve the no-authentication handling on the control port
- Bug tor-browser#44997: Captcha doesn't work in TB desktop
- Bug tor-browser#45005: Rename arrowpanel CSS variable
Windows
- Bug tor-browser#44745: Change how we hide SSO setting for windows
Android
- Updated GeckoView to 151.0a1
- Bug tor-browser#43543: Make the dev icon distinct from the nightly one
- Bug tor-browser#44211: Disable "Shake it up. Skip the scroll."
- Bug tor-browser#44323: Audit Android Settings changes from 128 to 140
- Bug tor-browser#44917: Disable Ads client for all channels
- Bug tor-browser#45031: Disable AI features for Android
Build System
All Platforms
- Bug tor-browser-build#41779: Update toolchains for Firefox 151
- Bug tor-browser-build#41781: Fix clean section in rbm.local.conf.example
- Bug tor-browser-build#41792: Switch from ftp.gnu.org to ftpmirror.gnu.org
- Bug tor-browser-build#41798: Update the URL to versions.ini in relprep.py
- Bug tor-browser-build#41806: make list_toolchain_updates should check var/firefox_platform_version
- Bug tor-browser-build#41807: Incorrectly generated Bugzilla query link in generate-bugzilla-triage-csv.py
Windows + Linux + Android
- Updated Go to 1.26.3
macOS
- Bug tor-browser-build#41793: Stop copying permissions from .mar in dmg2mar
Android
- Bug tor-browser-build#41801: Hardlink artifacts in fix_gradle_deps.py
- Jun 3, 2026
- Date parsed from source:Jun 3, 2026
- First seen by Releasebot:Jun 3, 2026
New Release: Tor Browser 15.0.15
Tor Browser 15.0.15 is now available with important security updates to Tor and fixes for censorship circumvention issues, plus updated NoScript and platform-specific bug fixes that improve desktop and Linux support.
Tor Browser 15.0.15 is now available from the Tor Browser download page and also from our distribution directory.
This release contains important security updates to the tor daemon and fixes some censorship circumvention problems.
Send us your feedback
If you find a bug or have a suggestion for how we could improve this release, please let us know.
Full changelog
The full changelog since Tor Browser 15.0.14 is:
- All Platforms
- Updated NoScript to 13.6.20.1984
- Updated Tor to 0.4.9.9
- Bug tor-browser#42436: Allow for multiple configured (front, reflector) domain fronting pairs in Moat module
- Windows + macOS + Linux
- Bug tor-browser#44997: Captcha doesn't work in TB desktop
- Linux
- Bug tor-browser#44886: Backport tor-browser#44361: Notify Linux i686 users that they won't receive updates anymore
- May 19, 2026
- Date parsed from source:May 19, 2026
- First seen by Releasebot:May 19, 2026
Tor Browser 15.0.14
Tor releases Tor Browser 15.0.14 with important security updates, including Firefox ESR upgrades across desktop and Android, plus build system fixes and a Go update.
Tor Browser 15.0.14 is now available from the Tor Browser download page and also from our distribution directory.
This version includes important security updates to Firefox.
Send us your feedback
If you find a bug or have a suggestion for how we could improve this release, please let us know.
Full changelog
The full changelog since Tor Browser 15.0.13 is:
- All Platforms
- Bug tor-browser#44958: Backport Security Fixes from Firefox 151
- Windows + macOS + Linux
- Updated Firefox to 140.11.0esr
- Android
- Updated GeckoView to 140.11.0esr
- Build System
- All Platforms
- Bug tor-browser-build#41781: Fix clean section in rbm.local.conf.example
- Bug tor-browser-build#41798: Update the URL to versions.ini in relprep.py
- Windows + Linux + Android
- Updated Go to 1.25.10
- All Platforms
- May 7, 2026
- Date parsed from source:May 7, 2026
- First seen by Releasebot:May 7, 2026
New Alpha Release: Tor Browser 16.0a6
Tor releases Browser 16.0a6 Alpha with important Firefox security updates, refreshed core components, and a broad set of fixes across desktop, Android, and build systems. It also updates Firefox and GeckoView to 150.0a1 and includes platform-specific improvements for Windows, macOS, and Linux.
Tor Browser 16.0a6 is now available from the Tor Browser download page and also from our distribution directory.
This version includes important security updates to Firefox.
โ ๏ธ Reminder: The Tor Browser Alpha release-channel is for testing only. As such, Tor Browser Alpha is not intended for general use because it is more likely to include bugs affecting usability, security, and privacy.
Moreover, Tor Browser Alphas are now based on Firefox's betas. Please read more about this important change in the Future of Tor Browser Alpha blog post.
If you are an at-risk user, require strong anonymity, or just want a reliably-working browser, please stick with the stable release channel.
Send us your feedback
If you find a bug or have a suggestion for how we could improve this release, please let us know.
Full changelog
The full changelog since Tor Browser 16.0a5 is:
All Platforms
- Updated tor to 0.4.9.7
- Updated NoScript to 13.6.18.90101984
- Updated OpenSSL to 3.5.6
- Bug tor-browser#43857 : Review in-source TODOs
- Bug tor-browser#44402 : Re-enable ESLint rule mozilla/no-browser-refs-in-toolkit as an error
- Bug tor-browser#44749 : Check search engines parameter replacements
- Bug tor-browser#44792 : Rebase alpha onto 150.0a1
- Bug tor-browser#44796 : Adjust TorProviderBuilder to report the provider state to consumers
- Bug tor-browser#44828 : Remove browser module references from toolkit/modules/ActorManagerParent.sys.mjs
- Bug tor-browser#44841 : TorDomainIsolator proxy filter returns null on exception instead of preserving SOCKS proxy
- Bug tor-browser#44865 : Block chrome:///locale/ to content
- Bug tor-browser#44868 : Backport 138c33ea964b2e0a4875aadc39d8a948e0c2aace to 150 to fix Windows builds
- Bug tor-browser#44870 : Remove legacy branch from gitlab templates
- Bug tor-browser#44895 : Undo the patch for #44772
- Bug tor-browser-build#41775 : Update list of Snowflake STUN servers in default bridge line, 2026 edition
- Bug tor-browser-build#41778 : Remove base-browser from protected-branches.py
- Bug tor-browser-build#41780 : Create sha256sums-unsigned-build.txt in artifacts/$platform directories
Windows + macOS + Linux
- Updated Firefox to 150.0a1
- Bug tor-browser#43824 : Switch resource:// modules to use moz-src:
- Bug tor-browser#44288 : New identity fails to block loading a custom home page
- Bug tor-browser#44458 : Fix the "Connect" and ".onion available" button height
- Bug tor-browser#44560 : Customize the flags for alternate 'Application Data' directories
- Bug tor-browser#44630 : Use settings config to hide settings, rather than data-hidden-from-search or commenting out
- Bug tor-browser#44648 : Unexpected changes to SearchService.sys.mjs
- Bug tor-browser#44685 : Use border radius for letterboxing
- Bug tor-browser#44798 : Don't load about:torconnect into iframes
- Bug tor-browser#44829 : Hide the settings privacy card
- Bug tor-browser#44832 : Hide the Firefox mascot in about:neterror
- Bug tor-browser#44846 : about:torconnect redirect doesn't work with the new neterror page
- Bug tor-browser#44847 : Drop letterboxing sidebar rounded corner logic
- Bug tor-browser#44902 : Error in privacy preference initialisation due to missing dataCollectionViewProfilesMultiProfileBackupWarning
- Bug tor-browser-build#31860 : Start using LTO for firefox project
Windows
- Bug tor-browser#44862 : Fontvis is missing Segoe MDL2 Assets
- Bug tor-browser#44868 : Backport 138c33ea964b2e0a4875aadc39d8a948e0c2aace to 150 to fix Windows builds
macOS
- Bug tor-browser#44850 : Wrong path for bootstrapped tor daemon on macOS
- Bug tor-browser-build#41476 : Since 13.5-legacy is not longer supported, remove tools/signing/wrappers/sign-rcodesign
Linux
- Bug tor-browser#44361 : Notify Linux i686 users that they won't receive updates anymore
- Bug tor-browser#44521 : Disable widget.wayland.fractional-scale.enabled
Android
- Updated GeckoView to 150.0a1
- Bug tor-browser#44615 : Remove ability to "Rate/Review in Google Play" in app
- Bug tor-browser#44827 : Always enable noscript for android
- Bug tor-browser#44842 : Replace instances of SwitchPreference with SwitchPreferenceCompat
- Bug tor-browser#44848 : Do not overwrite Android toolchains on default mozconfigs
- Bug tor-browser#44880 : Fix edgeToEdge display issue presented in 150 android rebase
- Bug tor-browser#44925 : Fix bootstrap screen color styling for light mode presented in one of the rebases between 140 and 150
- Bug tor-browser#44935 : Remove incorrectly shown "open in app" notification dot on settings button
Build System
All Platforms- Bug tor-browser-build#41591 : Remove support for old mar filenames when 13.5 legacy branch is EOL
- Bug tor-browser-build#41764 : Update toolchains for Firefox 150
- Bug tor-browser-build#41767 : Add jwilde to allowed signer for browser projects
- Bug tor-browser-build#41778 : Remove base-browser from protected-branches.py
- Bug tor-browser-build#41780 : Create sha256sums-unsigned-build.txt in artifacts/$platform directories
- Bug tor-browser-build#41786 : Add comment to rbm.local.conf.example warning about potential recursive loops in tmp_dir definition
- Bug rbm#40106 : Improve error message in case of recursive definition
- Bug tor-browser-build#41759 : Remove references to legacy release in tor-browser-build
- Bug tor-browser-build#41770 : Update Go to 1.26.x
- Updated Go to 1.26.2
- Bug tor-browser#44853 : Update target in mozconfig-windows-x86_64 and mozconfig-windows-i686
- Bug tor-browser-build#41773 : Change the position of -mindepth when creating the dmg
- Bug tor-browser#44555 : Remove mozconfig-linux-i686
- Bug tor-browser#44848 : Do not overwrite Android toolchains on default mozconfigs
- May 7, 2026
- Date parsed from source:May 7, 2026
- First seen by Releasebot:May 7, 2026
Tor Browser 15.0.12
Tor Browser releases 15.0.12 with important security updates, rebasing stable onto Firefox 140.10.2esr and updating tor plus Android, desktop, and build components.
Tor Browser 15.0.12 is now available from the Tor Browser download page and also from our distribution directory.
This version includes important security updates to Firefox.Send us your feedback
If you find a bug or have a suggestion for how we could improve this release, please let us know.
Full changelog
The full changelog since Tor Browser 15.0.11 is:
- All Platforms
- Updated tor to 0.4.9.7
- Bug tor-browser#44940: Rebase Tor Browser stable onto 140.10.2esr
- Windows + macOS + Linux
- Updated Firefox to 140.10.2esr
- Bug tor-browser#44746: Funding the Commons Implementation (Desktop)
- Android
- Updated GeckoView to 140.10.2esr
- Bug tor-browser#44747: Funding the Commons Implementation (Android)
- Build System
- All Platforms
- Bug tor-browser-build#41781: Fix clean section in rbm.local.conf.example
- All Platforms
- May 2026
- No date parsed from source.
- First seen by Releasebot:May 7, 2026
Tor Browser 15.0.13
Tor Browser 15.0.13 adds updated Tor and NoScript for all platforms.
Tor Browser 15.0.13 is now available from the Tor Browser download page and also from our distribution directory.
Send us your feedback
If you find a bug or have a suggestion for how we could improve this release, please let us know.
Full changelog
The full changelog since Tor Browser 15.0.12 is:
- All Platforms
- Updated tor to 0.4.9.8
- Updated NoScript to 13.6.19.1984
- Apr 28, 2026
- Date parsed from source:Apr 28, 2026
- First seen by Releasebot:Apr 28, 2026
Tor Browser 15.0.11
Tor releases Tor Browser 15.0.11 with important Firefox security updates and refreshed NoScript, GeckoView, and Firefox components.
Tor Browser 15.0.11 is now available from the Tor Browser download page and also from our distribution directory.
This version includes important security updates to Firefox.
Send us your feedback
If you find a bug or have a suggestion for how we could improve this release, please let us know.
Full changelog
The full changelog since Tor Browser 15.0.10 is:
- All Platforms
- Updated NoScript to 13.6.18.1984
- Bug tor-browser#44907: Rebase Tor Browser onto 140.10.1esr
- Windows + macOS + Linux
- Updated Firefox to 140.10.1esr
- Android
- Updated GeckoView to 140.10.1esr
- Apr 21, 2026
- Date parsed from source:Apr 21, 2026
- First seen by Releasebot:Apr 22, 2026
Tor Browser 15.0.10
Tor Browser 15.0.10 now ships with important Firefox security updates, plus refreshed Firefox, OpenSSL, GeckoView, and Go components, along with fixes for search engine replacements, new identity behavior, and updated Snowflake STUN servers.
Tor Browser 15.0.10 is now available from the Tor Browser download page and also from our distribution directory.
This version includes important security updates to Firefox.
Send us your feedback
If you find a bug or have a suggestion for how we could improve this release, please let us know.
Full changelog
The full changelog since Tor Browser 15.0.9 is:
- All Platforms
- Updated OpenSSL to 3.5.6
- Bug tor-browser#44749: Check search engines parameter replacements
- Bug tor-browser#44852: Rebase Tor Browser stable onto 140.10.0esr
- Bug tor-browser#44859: Backport Bugzilla 1666613: Display XML error pages in the browser directionality while force LTRing the XML code itself, without the use of intl.css
- Bug tor-browser#44863: Backport Security Fixes from Firefox 150
- Bug tor-browser-build#41775: Update list of Snowflake STUN servers in default bridge line, 2026 edition
- Windows + macOS + Linux
- Updated Firefox to 140.10.0esr
- Bug tor-browser#44288: New identity fails to block loading a custom home page
- Android
- Updated GeckoView to 140.10.0esr
- Build System
- All Platforms
- Bug tor-browser-build#41767: Add jwilde to allowed signer for browser projects
- Windows + Linux + Android
- Updated Go to 1.25.9
- All Platforms
- Apr 7, 2026
- Date parsed from source:Apr 7, 2026
- First seen by Releasebot:Apr 7, 2026
Tor Browser 15.0.9
Tor releases Tor Browser 15.0.9 with important Firefox security updates, a Firefox ESR rebase, and refreshed Tor, NoScript, and Android GeckoView components.
Tor Browser 15.0.9 is now available from the Tor Browser download page and also from our distribution directory.
This version includes important security updates to Firefox.
Send us your feedback
If you find a bug or have a suggestion for how we could improve this release, please let us know.
Full changelog
The full changelog since Tor Browser 15.0.8 is:
- All Platforms
- Updated Tor to 0.4.9.6
- Updated NoScript to 13.6.15.1984
- Bug tor-browser#44837: Rebase Tor Browser stable onto 140.9.1esr
- Windows + macOS + Linux
- Updated Firefox to 140.9.1esr
- Android
- Updated GeckoView to 140.9.1esr
- Build System
- All Platforms
- Bug tor-browser-build#41758: Rename tools/signing/deploy-legacy to tools/signing/redeploy-update_responses-release
- Windows + macOS
- Bug tor-browser-build#41741: Create a 13.5-specific update path
- All Platforms
Curated by the Releasebot team
Releasebot is an aggregator of official release notes from hundreds of software vendors and thousands of sources.
Our editorial process involves the manual review and audit of release notes procured with the help of automated systems.