forked from pool/MozillaFirefox
bbbb712787
https://www.mozilla.org/en-US/firefox/117.0/releasenotes MFSA 2023-34 (bsc#1214606) * CVE-2023-4573 (bmo#1846687) Memory corruption in IPC CanvasTranslator * CVE-2023-4574 (bmo#1846688) Memory corruption in IPC ColorPickerShownCallback * CVE-2023-4575 (bmo#1846689) Memory corruption in IPC FilePickerShownCallback * CVE-2023-4576 (bmo#1846694) Integer Overflow in RecordedSourceSurfaceCreation * CVE-2023-4577 (bmo#1847397) Memory corruption in JIT UpdateRegExpStatics * CVE-2023-4578 (bmo#1839007) Error reporting methods in SpiderMonkey could have triggered an Out of Memory Exception * CVE-2023-4579 (bmo#1842766) Persisted search terms were formatted as URLs * CVE-2023-4580 (bmo#1843046) Push notifications saved to disk unencrypted * CVE-2023-4581 (bmo#1843758) XLL file extensions were downloadable without warnings * CVE-2023-4582 (bmo#1773874) Buffer Overflow in WebGL glGetProgramiv * CVE-2023-4583 (bmo#1842030) Browsing Context potentially not cleared when closing Private Window * CVE-2023-4584 (bmo#1843968, bmo#1845205, bmo#1846080, bmo#1846526, bmo#1847529) Memory safety bugs fixed in Firefox 117, Firefox ESR 102.15, OBS-URL: https://build.opensuse.org/package/show/mozilla:Factory/MozillaFirefox?expand=0&rev=1102
21 lines
612 B
Diff
21 lines
612 B
Diff
# HG changeset patch
|
|
# Parent b62ddf6a31854e9e3c22a81056d233a50b4dd5c4
|
|
|
|
diff --git a/Cargo.toml b/Cargo.toml
|
|
--- a/Cargo.toml
|
|
+++ b/Cargo.toml
|
|
@@ -206,8 +206,13 @@ webext-storage = { git = "https://github
|
|
path = "third_party/rust/mio-0.6.23"
|
|
|
|
[patch."https://github.com/mozilla/uniffi-rs.git"]
|
|
uniffi = "=0.24.3"
|
|
uniffi_bindgen = "=0.24.3"
|
|
uniffi_build = "=0.24.3"
|
|
uniffi_macros = "=0.24.3"
|
|
weedle2 = "=4.0.0"
|
|
+
|
|
+# Package code v0.1.4 uses code "that will be rejected by a future version of Rust"
|
|
+# Shut up such messages for now to make the build succeed
|
|
+[future-incompat-report]
|
|
+frequency = "never"
|