Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
feat(user-profile): add ability to upload profile picture

Add a new feature to allow users to upload a profile picture from their account page. This feature has been requested by multiple users and will improve the overall user experience.

- AddedAdd a new button to the user profile page to upload a picture
- CreatedCreate a new API endpoint to handle profile picture uploads
- AddedAdd validation to ensure that uploaded images are within size limits and in the correct file format

Closes ISSUE-1234

...

Code Block
feat(payment): add new payment gateway

- AddedAdd new payment gateway integration
- RemovedRemove support for the old payment gateway
- UpdatedUpdate payment processing code to work with the new gateway

BREAKING CHANGE: 
Removes support for the old payment gateway. Merchants who were previously using the old gateway will need to update their payment processing code to use the new gateway.

Closes ISSUE-1234

...

Code Block
fix(authentication): handle password reset errors gracefully

Previously, if a user attempted to reset their password but entered an incorrect email address, the application would crash. This commit fixes the issue by handling errors gracefully and displaying an error message to the user.

- AddedAdd error handling to the password reset endpoint
- UpdatedUpdate the password reset form to display error messages to the user

Closes ISSUE-1234

...

Code Block
docs(readme): add instructions for installing dependencies

- AddedAdd instructions for installing dependencies using
- IncludedInclude a list of required dependencies and their versions

Closes ISSUE-1234

...