Skip to content
Snippets Groups Projects
Commit 0eb0a609 authored by Douwe Maan's avatar Douwe Maan Committed by Robert Speicher
Browse files

Use issue editor as cross reference comment author when issue is edited with a new mention.

parent 52994bb9
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -6,6 +6,19 @@ v 8.1.3
v 8.1.2
v 8.1.3
- Spread out runner contacted_at updates
v 8.2.0 (unreleased)
- Improved performance of replacing references in comments
- Show last project commit to default branch on project home page
- Highlight comment based on anchor in URL
- Adds ability to remove the forked relationship from project settings screen. (Han Loong Liauw)
- Improved performance of sorting milestone issues
- Allow users to select the Files view as default project view (Cristian Bica)
- Show "Empty Repository Page" for repository without branches (Artem V. Navrotskiy)
- Fix: Inability to reply to code comments in the MR view, if the MR comes from a fork
- Use git follow flag for commits page when retrieve history for file or directory
- Show merge request CI status on merge requests index page
- Fix: 500 error returned if destroy request without HTTP referer (Kazuki Shimizu)
- Use issue editor as cross reference comment author when issue is edited with a new mention.
 
v 8.1.1
- Fix cloning Wiki repositories via HTTP (Stan Hu)
Loading
Loading
Loading
Loading
@@ -35,7 +35,7 @@ module Issues
create_title_change_note(issue, issue.previous_changes['title'].first)
end
 
issue.create_new_cross_references!
issue.create_new_cross_references!(current_user)
execute_hooks(issue, 'update')
end
 
Loading
Loading
Loading
Loading
@@ -59,7 +59,7 @@ module MergeRequests
merge_request.mark_as_unchecked
end
 
merge_request.create_new_cross_references!
merge_request.create_new_cross_references!(current_user)
execute_hooks(merge_request, 'update')
end
 
Loading
Loading
Loading
Loading
@@ -4,7 +4,7 @@ module Notes
return note unless note.editable?
 
note.update_attributes(params.merge(updated_by: current_user))
note.create_new_cross_references!
note.create_new_cross_references!(current_user)
note.reset_events_cache
 
note
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment