Pier Angelo Vendrame pushed to branch tor-browser-153.1.0esr-16.0-1 at The Tor Project / Applications / Tor Browser Commits: d0f160ff by Beatriz Rizental at 2026-08-19T09:42:41+02:00 fixup! BB 42728: Modify ./mach lint to skip unused linters Bug 45224: Enable Rust linters - - - - - d5978a68 by Beatriz Rizental at 2026-08-19T09:42:41+02:00 fixup! TB 44806: Implement the tor integration in Rust. Bug 45224: Enable Rust linters - - - - - 14bc2a35 by Beatriz Rizental at 2026-08-19T09:42:41+02:00 fixup! BB 41916: Letterboxing preferences UI Fix lints - - - - - 4 changed files: - browser/components/preferences/config/letterboxing.mjs - python/mozlint/mozlint/cli.py - toolkit/components/tor-integration/tor_provider/src/ctor/reply_parser/factory.rs - toolkit/components/tor-integration/tor_service/src/control_socket.rs Changes: ===================================== browser/components/preferences/config/letterboxing.mjs ===================================== @@ -78,7 +78,8 @@ Preferences.addSetting({ SettingGroupManager.registerGroups({ letterboxing: { l10nId: "letterboxing-settings-group", - supportPage: "tor-manual:features__fingerprinting-protections___letterboxing", + supportPage: + "tor-manual:features__fingerprinting-protections___letterboxing", headingLevel: 2, items: [ { ===================================== python/mozlint/mozlint/cli.py ===================================== @@ -25,7 +25,6 @@ INACTIVE_LINTERS = [ "android-javadoc", "android-lint", "android-test", - "clippy", "codespell", "condprof-addons", "file-perm", ===================================== toolkit/components/tor-integration/tor_provider/src/ctor/reply_parser/factory.rs ===================================== @@ -424,7 +424,9 @@ mod tests { assert!(!factory.has_pending_data()); assert_eq!( - factory.build(&Bytes::from_static(b"250 OK\r\nA\r\n")).unwrap_err(), + factory + .build(&Bytes::from_static(b"250 OK\r\nA\r\n")) + .unwrap_err(), ReplyError::LineTooShort, ); assert!(!factory.has_pending_data()); ===================================== toolkit/components/tor-integration/tor_service/src/control_socket.rs ===================================== @@ -11,7 +11,11 @@ use nserror::{ NS_ERROR_FAILURE, NS_ERROR_INVALID_ARG, NS_ERROR_NOT_AVAILABLE, NS_ERROR_UNEXPECTED, NS_OK, }; use nsstring::nsACString; -use std::{cell::{Cell, RefCell}, ffi::c_char, ptr::null}; +use std::{ + cell::{Cell, RefCell}, + ffi::c_char, + ptr::null, +}; use thin_vec::ThinVec; use tor_provider::ctor::{ControlSocket, ControlSocketError}; use xpcom::interfaces::{ View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/compare/4bd1515... -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/compare/4bd1515... You're receiving this email because of your account on gitlab.torproject.org. Manage all notifications: https://gitlab.torproject.org/-/profile/notifications | Help: https://gitlab.torproject.org/help
participants (1)
-
Pier Angelo Vendrame (@pierov)