-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
61 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 | ||
|
||
|
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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: | ||
|
||
- \<issue number>.md | ||
or | ||
- \<story number>.md | ||
or | ||
- \<pr number>.md | ||
or | ||
- \<random number>.md if none of other apply | ||
|
||
The content of the file should look like this: | ||
|
||
``` | ||
### <type of change> | ||
- description of the change in one or max two sentences (#<issue> or !<pr>) | ||
``` | ||
|
||
< 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) | ||
``` | ||
|