From 2a23a14d1e47fdd5384ee37505047cde4d4ce777 Mon Sep 17 00:00:00 2001 From: "torlando-agent[bot]" <281092095+torlando-agent[bot]@users.noreply.github.com> Date: Sat, 15 Aug 2026 01:32:56 +0000 Subject: [PATCH] Use published dependency pins --- platformio.ini | 8 ++++---- tests/build_scripts/test_release_build_contract.py | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/platformio.ini b/platformio.ini index 2c5c8891..f8d8588a 100644 --- a/platformio.ini +++ b/platformio.ini @@ -57,8 +57,8 @@ lib_deps = ; as this VCS pin. ; 2762f76 closes long-lived segment/index handles before compaction unlinks ; their LittleFS files, then reopens the append handles for subsequent puts. - ; Local-only pin until the dependency commit is published; do not push this URL. - git+file:///home/tyler/repos/microstore-compaction-fix#2762f7606800ffb23f4a593947d4f58e259cda7a + ; Immutable published pin for the physically validated compaction fix. + https://github.com/torlando-tech/microStore.git#2762f7606800ffb23f4a593947d4f58e259cda7a ; Explicit git dep so PIO links exactly ONE microReticulum (the ; live source). lib_extra_dirs was creating duplicate compilations ; — PIO compiled deps/microReticulum/ as one library AND auto- @@ -102,8 +102,8 @@ lib_deps = ; including Resource advertisements and streaming bzip2 decompression. ; 572b570: bounds the persistent/enumerable path and active/held announce ; tables so the explicit 1 MiB RNS container pool cannot grow without limit. - ; Local-only pin until the dependency commit is published; do not push this URL. - git+file:///home/tyler/repos/microreticulum-bounded-tables#572b5706f442be134f5a9c35a41e6368441b8fc1 + ; Immutable published pin for bounded transport tables. + https://github.com/torlando-tech/microReticulum.git#572b5706f442be134f5a9c35a41e6368441b8fc1 ; microLXMF: chore/microreticulum-0.4.1-layout — includes namespaced to ; for the 0.4.x src/microReticulum/ layout. ; 3cdde79: faster load_message_metadata — single LittleFS open (read_file diff --git a/tests/build_scripts/test_release_build_contract.py b/tests/build_scripts/test_release_build_contract.py index 56b6797d..f8bfb91f 100644 --- a/tests/build_scripts/test_release_build_contract.py +++ b/tests/build_scripts/test_release_build_contract.py @@ -2,8 +2,8 @@ from pathlib import Path ROOT = Path(__file__).resolve().parents[2] -MICROSTORE_PIN = "git+file:///home/tyler/repos/microstore-compaction-fix#2762f7606800ffb23f4a593947d4f58e259cda7a" -MICRORETICULUM_PIN = "git+file:///home/tyler/repos/microreticulum-bounded-tables#572b5706f442be134f5a9c35a41e6368441b8fc1" +MICROSTORE_PIN = "https://github.com/torlando-tech/microStore.git#2762f7606800ffb23f4a593947d4f58e259cda7a" +MICRORETICULUM_PIN = "https://github.com/torlando-tech/microReticulum.git#572b5706f442be134f5a9c35a41e6368441b8fc1" MAX_RNS_PSRAM_POOL_BYTES = 1024 * 1024