From 2aabecccf62852bc15e57d392e1b98c7804fc952 Mon Sep 17 00:00:00 2001 From: Michael Gardner Date: Sat, 6 Jun 2026 20:17:17 -0400 Subject: [PATCH] fix(gitmodules): switch submodule URLs from SSH to HTTPS for publishability MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Restore HTTPS submodule URLs in .gitmodules so that downstream consumers — and Alire's deployment of any future indexed functional release — can clone the dev/tooling submodules without SSH credentials. This effectively reverses the URL portion of f4863eb (chore(submodules): switch submodule URLs from HTTPS to SSH), which is the commit that introduced the publishability defect discovered while validating clara's T1 unpin slice. Both submodule repositories (hybrid_scripts_python and hybrid_test_python) are public on GitHub; HTTPS clones require no credentials. The previous SSH URLs failed in any consumer environment without SSH keys + a known_hosts entry for github.com (including the canonical dev container). Scope: .gitmodules only. No path changes, no submodule gitlink changes, no version bump, no alire.toml edit, no formal-doc edits, no source/test changes, no CI changes, no release execution. Refs: clara T1 publishability investigation 2026-06-06 --- .gitmodules | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitmodules b/.gitmodules index 266f402..59ccee6 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,6 +1,6 @@ [submodule "scripts/python/shared"] path = scripts/python/shared - url = git@github.com:abitofhelp/hybrid_scripts_python.git + url = https://github.com/abitofhelp/hybrid_scripts_python.git [submodule "test/scripts/python/shared"] path = test/scripts/python/shared - url = git@github.com:abitofhelp/hybrid_test_python.git + url = https://github.com/abitofhelp/hybrid_test_python.git