Commit ff6f0ada authored by Patricio Cano's avatar Patricio Cano

Added documentation and CHANGELOG item

parent e2f9c876
...@@ -51,6 +51,7 @@ v 8.11.0 (unreleased) ...@@ -51,6 +51,7 @@ v 8.11.0 (unreleased)
- Get issue and merge request description templates from repositories - Get issue and merge request description templates from repositories
- Add hover state to todos !5361 (winniehell) - Add hover state to todos !5361 (winniehell)
- Fix icon alignment of star and fork buttons !5451 (winniehell) - Fix icon alignment of star and fork buttons !5451 (winniehell)
- Enforce 2FA restrictions on API authentication endpoints !5820
- Limit git rev-list output count to one in forced push check - Limit git rev-list output count to one in forced push check
- Show deployment status on merge requests with external URLs - Show deployment status on merge requests with external URLs
- Clean up unused routes (Josef Strzibny) - Clean up unused routes (Josef Strzibny)
......
...@@ -10,4 +10,4 @@ class UserRetrievalService ...@@ -10,4 +10,4 @@ class UserRetrievalService
user = Gitlab::Auth.find_with_user_password(login, password) user = Gitlab::Auth.find_with_user_password(login, password)
user unless user.two_factor_enabled? user unless user.two_factor_enabled?
end end
end end
\ No newline at end of file
...@@ -90,7 +90,7 @@ curl --header "Authorization: Bearer OAUTH-TOKEN" https://localhost:3000/api/v3/ ...@@ -90,7 +90,7 @@ curl --header "Authorization: Bearer OAUTH-TOKEN" https://localhost:3000/api/v3/
## Deprecation Notice ## Deprecation Notice
1. Starting in GitLab 9.0, the Resource Owner Password Credentials will be *disabled* for users with two-factor authentication turned on. 1. Starting in GitLab 8.11, the Resource Owner Password Credentials has been *disabled* for users with two-factor authentication turned on.
2. These users can access the API using [personal access tokens] instead. 2. These users can access the API using [personal access tokens] instead.
--- ---
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
## Deprecation Notice ## Deprecation Notice
1. Starting in GitLab 9.0, this feature will be *disabled* for users with two-factor authentication turned on. 1. Starting in GitLab 8.11, this feature has been *disabled* for users with two-factor authentication turned on.
2. These users can access the API using [personal access tokens] instead. 2. These users can access the API using [personal access tokens] instead.
--- ---
......
...@@ -28,4 +28,4 @@ describe API::API, api: true do ...@@ -28,4 +28,4 @@ describe API::API, api: true do
end end
end end
end end
end end
\ No newline at end of file
...@@ -16,4 +16,4 @@ describe UserRetrievalService, services: true do ...@@ -16,4 +16,4 @@ describe UserRetrievalService, services: true do
expect(retrieved_user).to be_nil expect(retrieved_user).to be_nil
end end
end end
end end
\ No newline at end of file
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