diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 000000000..76508a0c5 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,19 @@ +# Changelog + +All notable changes to this project will be documented in this file. + +Since version v2306 the format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), +This project (not yet) adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). + +## v2306.2 + +### Added + +- a check for user registration in settings + +### Changed + +- translations +- Notifications checkbox during registration is now unchecked by default + + diff --git a/changelog/7725.md b/changelog/7725.md deleted file mode 100644 index f89c0e0c1..000000000 --- a/changelog/7725.md +++ /dev/null @@ -1,3 +0,0 @@ -### Added - -- a check for user registration in settings diff --git a/changelog/README.md b/changelog/README.md new file mode 100644 index 000000000..9ae432d8a --- /dev/null +++ b/changelog/README.md @@ -0,0 +1,42 @@ +### Changelogs + +Temporary folder to add new changes. Each change should go into a separate file +(unless it makes sense to group some changes into one file, e.g. a story). +During release the changes will be moved to CHANGELOG.md. + +Each file should follow one of the below naming patterns: + +- \.md + or +- \.md + or +- \.md + or +- \.md if none of other apply + +The content of the file should look like this: + +``` +### + +- description of the change in one or max two sentences (# or !) +``` + +< type of change > can be one of: + +- **Added** for new features. +- **Changed**: for changes in existing functionality. +- **Deprecated**: for soon-to-be removed features. +- **Removed**: for now removed features. +- **Fixed**: for any bug fixes. +- **Security**: in case of vulnerabilities. + + +## Example + +``` +### Fixed + +- improve userdashboard filter performance (#2449) +``` +