andrewmusselman opened a new issue, #710: URL: https://github.com/apache/tooling-trusted-releases/issues/710
**ASVS:** 15.2.1 ยท Finding 2.8 **Severity:** LOW **CWE:** CWE-1104 ### Description Version constants in `atr/version.py` contain placeholder values, complicating deployment tracking and incident response: ```python ATR_VERSION: Final[str] = "?" ATR_COMMIT: Final[str] = "?" ``` ### Recommendation Populate version constants at build time from git tags/commits, e.g. via a build script or CI step that writes the values before packaging. Add a comment in this file explaining where these values come from. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
