v0.4.1 - Bug fixes and version display improvement #36
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "v0.4.1"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Summary
Changes
UpdateSubscriptionhandler to parse date fields (start_date, renewal_date, cancellation_date)Testing
Fixes #35
Pull Request Overview
This PR addresses a subscription update bug and enhances version management by implementing dynamic version display. The changes ensure subscription date fields are properly saved during updates and add build-time version injection showing git commit SHA.
Reviewed Changes
Copilot reviewed 4 out of 4 changed files in this pull request and generated 4 comments.
Tip: Customize your code reviews with copilot-instructions.md. Create the file or learn how to get started.
Date parsing errors are silently ignored. Consider logging parse errors or returning validation errors to provide feedback when users submit invalid date formats.
Date parsing errors are silently ignored. Consider logging parse errors or returning validation errors to provide feedback when users submit invalid date formats.
Date parsing errors are silently ignored. Consider logging parse errors or returning validation errors to provide feedback when users submit invalid date formats.
The date parsing logic is duplicated three times with identical patterns. Consider extracting this into a helper function to reduce code duplication and improve maintainability.