Commit 7f5f12eb authored by Marin Jankovski's avatar Marin Jankovski

Merge branch 'master' of dev.gitlab.org:gitlab/gitlab-ee

parents e3a32eb5 26cd9c84
Please view this file on the master branch, on stable branches it's out of date.
## 13.3.3 (2020-09-02)
### Security (2 changes)
- Sanitize vulnerability history comment.
- Fix displaying epics visibility in issue sidebar.
## 13.3.2 (2020-08-28)
- No changes.
......@@ -254,6 +262,14 @@ Please view this file on the master branch, on stable branches it's out of date.
- Replace -800 hex value, replace usages with -700. !39734
## 13.2.7 (2020-09-02)
### Security (2 changes)
- Sanitize vulnerability history comment.
- Fix displaying epics visibility in issue sidebar.
## 13.2.6 (2020-08-18)
- No changes.
......@@ -645,6 +661,14 @@ Please view this file on the master branch, on stable branches it's out of date.
- Resolve duplicate use of shorcuts-tree. !36732
## 13.1.9 (2020-09-02)
### Security (2 changes)
- Sanitize vulnerability history comment.
- Fix displaying epics visibility in issue sidebar.
## 13.1.8 (2020-08-18)
- No changes.
......
......@@ -2,6 +2,35 @@
documentation](doc/development/changelog.md) for instructions on adding your own
entry.
## 13.3.3 (2020-09-02)
### Security (23 changes, 1 of them is from the community)
- Check validity of project's import_url before mirroring repository.
- Show on two-factor authentication setup page groups that are the cause of this requirement.
- Prevent interrupted 2FA sign-in from signing-in incorrect user.
- Create new 2FA code each time user is entering 2FA setup page.
- Remove all sessions but current while enabling 2FA.
- Invalidate two factor sign-in when user password changes.
- Delete members invites created by users being deleted.
- Prevent OmniAuth from rendering arbitrary error messages.
- Prevent not-2fa authenticated users that are supposed to use it to consume api via session.
- Invalidate remember me when an active session is revoked.
- Add rate limit on webhooks testing feature.
- Add scope presence validation to OAuth Application creation.
- Allow only running job tokens for API authentication.
- Prevent Deploy Tokens to read project resources when repository is disabled.
- Change conan api to use proper workhorse validation.
- Ensure global ID is of Snippet type in GraphQL destroy mutation.
- Fix Improper Access Control on Deploy-Key.
- Set maximum limit for profile events.
- Persist EKS External ID before presenting it to the user.
- Prevent project maintainers from editing group badges.
- Upgrade jquery to v3.5.
- Update websocket-extensions gem to 0.1.5. (Vitor Meireles De Sousa)
- Update GitLab Runner Helm Chart to 0.19.3.
## 13.3.2 (2020-08-28)
### Removed (1 change)
......@@ -553,6 +582,35 @@ entry.
- Replace fa-pencil icon with GitLab SVG. !39648
## 13.2.7 (2020-09-02)
### Security (23 changes, 1 of them is from the community)
- Check validity of project's import_url before mirroring repository.
- Show on two-factor authentication setup page groups that are the cause of this requirement.
- Prevent interrupted 2FA sign-in from signing-in incorrect user.
- Create new 2FA code each time user is entering 2FA setup page.
- Remove all sessions but current while enabling 2FA.
- Invalidate two factor sign-in when user password changes.
- Delete members invites created by users being deleted.
- Prevent OmniAuth from rendering arbitrary error messages.
- Prevent not-2fa authenticated users that are supposed to use it to consume api via session.
- Invalidate remember me when an active session is revoked.
- Add rate limit on webhooks testing feature.
- Add scope presence validation to OAuth Application creation.
- Allow only running job tokens for API authentication.
- Prevent Deploy Tokens to read project resources when repository is disabled.
- Change conan api to use proper workhorse validation.
- Ensure global ID is of Snippet type in GraphQL destroy mutation.
- Fix Improper Access Control on Deploy-Key.
- Set maximum limit for profile events.
- Persist EKS External ID before presenting it to the user.
- Prevent project maintainers from editing group badges.
- Upgrade jquery to v3.5.
- Update websocket-extensions gem to 0.1.5. (Vitor Meireles De Sousa)
- Update GitLab Runner Helm Chart to 0.18.3.
## 13.2.6 (2020-08-18)
- No changes.
......@@ -1621,6 +1679,35 @@ entry.
- Remove removeIssue logic from list model. (nuwe1)
## 13.1.9 (2020-09-02)
### Security (23 changes, 1 of them is from the community)
- Check validity of project's import_url before mirroring repository.
- Show on two-factor authentication setup page groups that are the cause of this requirement.
- Prevent interrupted 2FA sign-in from signing-in incorrect user.
- Create new 2FA code each time user is entering 2FA setup page.
- Remove all sessions but current while enabling 2FA.
- Invalidate two factor sign-in when user password changes.
- Delete members invites created by users being deleted.
- Prevent OmniAuth from rendering arbitrary error messages.
- Prevent not-2fa authenticated users that are supposed to use it to consume api via session.
- Invalidate remember me when an active session is revoked.
- Add rate limit on webhooks testing feature.
- Add scope presence validation to OAuth Application creation.
- Allow only running job tokens for API authentication.
- Prevent Deploy Tokens to read project resources when repository is disabled.
- Change conan api to use proper workhorse validation.
- Ensure global ID is of Snippet type in GraphQL destroy mutation.
- Fix Improper Access Control on Deploy-Key.
- Set maximum limit for profile events.
- Persist EKS External ID before presenting it to the user.
- Prevent project maintainers from editing group badges.
- Upgrade jquery to v3.5.
- Update websocket-extensions gem to 0.1.5. (Vitor Meireles De Sousa)
- Update GitLab Runner Helm Chart to 0.18.3.
## 13.1.8 (2020-08-18)
- No changes.
......
---
title: Check validity of project's import_url before mirroring repository
merge_request:
author:
type: security
---
title: Show on two-factor authentication setup page groups that are the cause of this
requirement
merge_request:
author:
type: security
---
title: Prevent interrupted 2FA sign-in from signing-in incorrect user
merge_request:
author:
type: security
---
title: Create new 2FA code each time user is entering 2FA setup page
merge_request:
author:
type: security
---
title: Remove all sessions but current while enabling 2FA
merge_request:
author:
type: security
---
title: Invalidate two factor sign-in when user password changes
merge_request:
author:
type: security
---
title: Delete members invites created by users being deleted
merge_request:
author:
type: security
---
title: Prevent OmniAuth from rendering arbitrary error messages
merge_request:
author:
type: security
---
title: Prevent not-2fa authenticated users that are supposed to use it to consume
api via session
merge_request:
author:
type: security
---
title: Invalidate remember me when an active session is revoked
merge_request:
author:
type: security
---
title: Add rate limit on webhooks testing feature
merge_request:
author:
type: security
---
title: Add scope presence validation to OAuth Application creation
merge_request:
author:
type: security
---
title: Allow only running job tokens for API authentication
merge_request:
author:
type: security
---
title: Prevent Deploy Tokens to read project resources when repository is disabled
merge_request:
author:
type: security
---
title: Change conan api to use proper workhorse validation
merge_request:
author:
type: security
---
title: Ensure global ID is of Snippet type in GraphQL destroy mutation
merge_request:
author:
type: security
---
title: Fix Improper Access Control on Deploy-Key
merge_request:
author:
type: security
---
title: Set maximum limit for profile events
merge_request:
author:
type: security
---
title: Persist EKS External ID before presenting it to the user
merge_request:
author:
type: security
---
title: Prevent project maintainers from editing group badges
merge_request:
author:
type: security
---
title: Upgrade jquery to v3.5
merge_request:
author:
type: security
---
title: Update websocket-extensions gem to 0.1.5
merge_request:
author: Vitor Meireles De Sousa
type: security
---
title: Sanitize vulnerability history comment
merge_request:
author:
type: security
---
title: Fix displaying epics visibility in issue sidebar
merge_request:
author:
type: security
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment