v0.8.45 — a checker that dies for a reason it misreports
Fixed
-
The two verifiers could not run the way the documentation says to run them.
verify_schema_init.pyandverify_neo4j_init.pyloaded their environment by
importingpython-dotenvand returning silently when it was absent. Nothing
was loaded, so the next connection failed withfe_sendauth: no password supplied— a credentials error reported for what is actually a missing
dependency, sending the reader to check passwords, roles andpg_hbawhile
the real cause was the invocation.That is worse than an ordinary papercut for two reasons. First, every
documented invocation omits the dependency:AGENTS.mdandREADME.md
between them show fiveuv runlines for these tools, none with
--with python-dotenv. So the documented way to prove an install was sound
could not work on a clean machine. Second, these are the two scripts whose
entire job is to prove a property — a checker that dies for a reason it
misreports teaches the wrong lesson twice, and the thing it was going to verify
goes unverified.Both now parse the env file directly, in the same dependency-free,
candidate-list formapply.pyhas always used (frameworkshared-memory/.env
first, repo root as the pre-0.6 fallback), and neither can be defeated by a
missing package again. A real exported variable still wins over the file, so
pointing a tool at another database keeps working.⚠ The audit that found it was of every
_load_envin the framework, not of
one file — the other fifteen were already self-parsing, and these two were the
outliers precisely because they were written later and reached for the library.