From ffdae0bf886b0f2cfe806434d7ed76b1643c058d Mon Sep 17 00:00:00 2001 From: Andrew Gunnerson Date: Wed, 6 Aug 2025 21:28:33 -0400 Subject: [PATCH] Bump Magisk version upper bound to 30300 There are no breaking changes. Signed-off-by: Andrew Gunnerson --- avbroot/src/patch/boot.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/avbroot/src/patch/boot.rs b/avbroot/src/patch/boot.rs index fe5d887..7441b43 100644 --- a/avbroot/src/patch/boot.rs +++ b/avbroot/src/patch/boot.rs @@ -194,7 +194,7 @@ impl MagiskRootPatcher { // replaced by PREINITDEVICE // - Versions newer than the latest supported version are assumed to support // the same features as the latest version - const VERS_SUPPORTED: &'static [Range] = &[25102..25207, 25211..30200]; + const VERS_SUPPORTED: &'static [Range] = &[25102..25207, 25211..30300]; const VER_PREINIT_DEVICE: RangeFrom = 25211..; const VER_RANDOM_SEED: Range = 25211..26103; const VER_PATCH_VBMETA: Range = Self::VERS_SUPPORTED[0].start..26202;