noticed migrations_hash_algorithm defaults to md5 in config.py even though sha256 is available
migrations_hash_algorithm: Literal["md5", "sha256"] = "md5"
i know its just for migration file tracking not crypto, but md5 is deprecated everywhere and you already have sha256 wired up. seems like a trivial swap
also the comment says "you cannot change the hash_algorithm after migrations have already been applied once" so new users who pick the default get stuck with md5 forever
noticed migrations_hash_algorithm defaults to md5 in config.py even though sha256 is available
migrations_hash_algorithm: Literal["md5", "sha256"] = "md5"
i know its just for migration file tracking not crypto, but md5 is deprecated everywhere and you already have sha256 wired up. seems like a trivial swap
also the comment says "you cannot change the hash_algorithm after migrations have already been applied once" so new users who pick the default get stuck with md5 forever