Skip to content

Update for firefox 138.0 beta 9 #7723

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 19 commits into from
Apr 22, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
1713c04
chore: Started updating for firefox 138.0 beta 9, b=(no-bug), c=common
mauro-balades Apr 18, 2025
a2810d6
Merge branch 'dev' into update-ff-138
mauro-balades Apr 18, 2025
ec3e2ab
chore: More patch fixes for firefox beta, b=(no-bug), c=common
mauro-balades Apr 18, 2025
2e6e71e
chore: More migration for firefox 138.0, b=(no-bug), c=tabs, common, …
mauro-balades Apr 19, 2025
2fcf6c8
chore: Completly migrated to firefox 138, b=(no-bug), c=tabs, common,…
mauro-balades Apr 19, 2025
c153bef
Merge branch 'dev' into update-ff-138
mauro-balades Apr 19, 2025
87bb2f3
feat: Added fully containerized essentials, b=(no-bug), c=tabs, vendo…
mauro-balades Apr 20, 2025
5bfb55a
Merge branch 'update-ff-138' into containerized-essentials
mauro-balades Apr 20, 2025
5dfc6a6
chore: Continued working on containerized essentials, b=(no-bug), c=c…
mauro-balades Apr 20, 2025
a7846a6
chore: Started adding typescript to zen, b=(no-bug), c=scripts, works…
mauro-balades Apr 20, 2025
e65991a
Merge pull request #7777 from zen-browser/typescript-refactor
mauro-balades Apr 20, 2025
8136387
style: Formatted the project, b=(no-bug), c=scripts
mauro-balades Apr 20, 2025
47fbae7
chore: Continued working on containerized essentials, b=(no-bug), c=t…
mauro-balades Apr 21, 2025
68fc8cd
chore: Containerized essentials should be ready for testing, b=(no-bu…
mauro-balades Apr 22, 2025
3933f77
chore: Disable pref before testing, b=(no-bug), c=no-component
mauro-balades Apr 22, 2025
3fbe8c0
Update build/ts/transform-ts.js
mauro-balades Apr 22, 2025
5f7c3a4
Merge pull request #7771 from zen-browser/containerized-essentials
mauro-balades Apr 22, 2025
f2e006f
chore: Updated to firefox 138.0 RC builds, b=(no-bug), c=no-component
mauro-balades Apr 22, 2025
de435f8
fix: Fixed readme version for firefox, b=(no-bug), c=no-component
mauro-balades Apr 22, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@

Zen is currently built using Firefox version `137.0.2`! 🚀

- [`Zen Twilight`](https://zen-browser.app/download?twilight) - Is currently built using Firefox version `RC 137.0.2`!
- [`Zen Twilight`](https://zen-browser.app/download?twilight) - Is currently built using Firefox version `RC 138.0`!
- Check out the latest [release notes](https://zen-browser.app/release-notes)!
- Part of our mission is to keep Zen up-to-date with the latest version of Firefox, so you can enjoy the latest features and security updates!

Expand Down
3 changes: 3 additions & 0 deletions babel.config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"presets": ["@babel/preset-typescript"]
}
2 changes: 1 addition & 1 deletion build/firefox-cache/l10n-last-commit-hash
Original file line number Diff line number Diff line change
@@ -1 +1 @@
ee85441427e22eb9fbc8d3eb62c7e5804535f0bc
7113caf804fda45f011f1900c25de638398d586e
10 changes: 10 additions & 0 deletions build/ts/transform-ts.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
const fs = require('fs');
const MJS_FILES = ['src/zen/split-view/ZenViewSplitter.ts'];

for (const file of MJS_FILES) {
const code = fs.readFileSync(file, 'utf8');
require('@babel/core').transformSync(code, {
presets: ['@babel/preset-typescript'],
filename: file,
});
}
Loading