diff --git a/CHANGELOG.md b/CHANGELOG.md index d7bb4ac918d..ef36b27f167 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,21 @@ documentation](doc/development/changelog.md) for instructions on adding your own entry. +## 13.3.2 (2020-08-28) + +### Removed (1 change) + +- Display upcoming database deprecation warning only if current database version minimum is not met. !38225 + +### Fixed (5 changes) + +- Fix race condition in concurrent backups. !39894 +- Prevent accidental group deletion if path rename fails. !40353 +- Fix snippet save button disabled with empty file path. !40412 +- Fix exception handling when a concurrent backup fails. !40451 +- Scope incident issue counts by given project or group. !40700 + + ## 13.3.0 (2020-08-22) ### Security (2 changes) diff --git a/changelogs/unreleased/238569-fix-issuable-count-scope-graphql.yml b/changelogs/unreleased/238569-fix-issuable-count-scope-graphql.yml deleted file mode 100644 index b664d94ade3..00000000000 --- a/changelogs/unreleased/238569-fix-issuable-count-scope-graphql.yml +++ /dev/null @@ -1,5 +0,0 @@ ---- -title: Scope incident issue counts by given project or group -merge_request: 39914 -author: -type: fixed diff --git a/changelogs/unreleased/239341-fix-snippets-create-without-file-path.yml b/changelogs/unreleased/239341-fix-snippets-create-without-file-path.yml deleted file mode 100644 index 9e3e412638e..00000000000 --- a/changelogs/unreleased/239341-fix-snippets-create-without-file-path.yml +++ /dev/null @@ -1,5 +0,0 @@ ---- -title: Fix snippet save button disabled with empty file path -merge_request: 40412 -author: -type: fixed diff --git a/changelogs/unreleased/backup_wrap_concurrency.yml b/changelogs/unreleased/backup_wrap_concurrency.yml deleted file mode 100644 index 28e2eaf483d..00000000000 --- a/changelogs/unreleased/backup_wrap_concurrency.yml +++ /dev/null @@ -1,5 +0,0 @@ ---- -title: Fix race condition in concurrent backups -merge_request: 39894 -author: -type: fixed diff --git a/changelogs/unreleased/remove-upcoming-db-deprecation-warning.yml b/changelogs/unreleased/remove-upcoming-db-deprecation-warning.yml deleted file mode 100644 index c8615f26b1e..00000000000 --- a/changelogs/unreleased/remove-upcoming-db-deprecation-warning.yml +++ /dev/null @@ -1,5 +0,0 @@ ---- -title: Display upcoming database deprecation warning only if current database version minimum is not met -merge_request: 38225 -author: -type: removed diff --git a/changelogs/unreleased/security-group-rename-deletion.yml b/changelogs/unreleased/security-group-rename-deletion.yml deleted file mode 100644 index 57e22770344..00000000000 --- a/changelogs/unreleased/security-group-rename-deletion.yml +++ /dev/null @@ -1,5 +0,0 @@ ---- -title: Prevent accidental group deletion if path rename fails -merge_request: 40353 -author: -type: fixed diff --git a/changelogs/unreleased/sh-fix-issue-241251.yml b/changelogs/unreleased/sh-fix-issue-241251.yml deleted file mode 100644 index 7b822eefc3f..00000000000 --- a/changelogs/unreleased/sh-fix-issue-241251.yml +++ /dev/null @@ -1,5 +0,0 @@ ---- -title: Fix exception handling when a concurrent backup fails -merge_request: 40451 -author: -type: fixed