-
- Downloads
Merge branch 'new-diff-notes' into 'master'
New diff notes Fixes #12732, #14731, #19375, #14783 Builds on https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/4110 To do: - [x] Get it mostly working - [x] Validate position validity - [x] Fix: Don’t link to `#` - [x] Fix: Base ref can be `nil`, potentially, when the MR has an oprhan source branch => Yep, doesn’t work. We need to store a `start_id` - [x] Optimize: Fewer duplicate `git diff` compares - [x] Optimize: Pass paths to `PositionTracer#diff` for faster diffs - [x] Refactor: Use `head_id` in `MergeRequest`/`MergeRequestDiff` instead of `source_sha` - [x] Refactor: Convert existing array-based diff refs to the DiffRefs model - [x] Tweak: Use `note_type` in `Autosave` key - [x] Tweak: Remove `line_code: note.line_code` from `link_to_reply_discussion` - [x] Update: `SentNotifications` and reply-by-email receiver - [x] Update: MR diff notification email - [x] Update: API (MR, Commit note creation and entity) - [x] Update: GitHub importer - [x] Address any other TODO comments - [x] Fix: Suppress "edited 4 minutes ago" - [x] Write tests - [x] `LineMapper` - [x] `PositionTracer` - [x] `Position` - [x] `DiffPositionUpdateService` - [x] `DiffNote` - [x] `MergeRequests::RefreshService` / `MergeRequest#update_diff_notes_positions` - [x] Make sure commits with diff notes don't get cleaned up, since this would prevent the diff notes from being rendered (https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/5062) Future improvements: - Display unresolved comments on files outside the diff, if the comment was added when that file _was_ part of the diff - Allow commenting on sections between hunks, when expanding the diff using `...` - (We'd need to generate line code based on Position if we have it, even if it falls outside bounds of diff) - `diff_hunk` on diff note API entity - Show diff hunk in notification email - Resolved line notes would have a boolean, and be inactive through `notes.any? { !active? || resolved? }` - Multi line notes would store a number of positions, and do the right thing (™) in grouping and then rendering if the first item is multiline? => true - Image diff notes could store x,y,width,height instead of old_line,new_line for similar grouping. Does it need a reference to say if it's on old or new? These can't have line_codes, clearly. Rendering would be interesting. - Show commit line comments in the MR diff - Comment on specific selected words - Comment on file header - Unfold top of discussion diff note - New diff notes API for commits and MRs /cc @rspeicher See merge request !4101
No related branches found
No related tags found
Showing
- app/assets/javascripts/notes.js.coffee 11 additions, 2 deletionsapp/assets/javascripts/notes.js.coffee
- app/assets/stylesheets/framework/files.scss 1 addition, 1 deletionapp/assets/stylesheets/framework/files.scss
- app/assets/stylesheets/pages/diff.scss 0 additions, 10 deletionsapp/assets/stylesheets/pages/diff.scss
- app/controllers/projects/blob_controller.rb 1 addition, 1 deletionapp/controllers/projects/blob_controller.rb
- app/controllers/projects/commit_controller.rb 0 additions, 1 deletionapp/controllers/projects/commit_controller.rb
- app/controllers/projects/compare_controller.rb 13 additions, 5 deletionsapp/controllers/projects/compare_controller.rb
- app/controllers/projects/merge_requests_controller.rb 17 additions, 17 deletionsapp/controllers/projects/merge_requests_controller.rb
- app/controllers/projects/notes_controller.rb 19 additions, 2 deletionsapp/controllers/projects/notes_controller.rb
- app/helpers/application_helper.rb 11 additions, 0 deletionsapp/helpers/application_helper.rb
- app/helpers/diff_helper.rb 7 additions, 8 deletionsapp/helpers/diff_helper.rb
- app/helpers/merge_requests_helper.rb 1 addition, 1 deletionapp/helpers/merge_requests_helper.rb
- app/helpers/notes_helper.rb 58 additions, 15 deletionsapp/helpers/notes_helper.rb
- app/helpers/workhorse_helper.rb 8 additions, 1 deletionapp/helpers/workhorse_helper.rb
- app/mailers/emails/projects.rb 1 addition, 2 deletionsapp/mailers/emails/projects.rb
- app/models/commit.rb 7 additions, 0 deletionsapp/models/commit.rb
- app/models/concerns/note_on_diff.rb 52 additions, 0 deletionsapp/models/concerns/note_on_diff.rb
- app/models/deployment.rb 6 additions, 0 deletionsapp/models/deployment.rb
- app/models/diff_note.rb 127 additions, 0 deletionsapp/models/diff_note.rb
- app/models/legacy_diff_note.rb 11 additions, 58 deletionsapp/models/legacy_diff_note.rb
- app/models/merge_request.rb 132 additions, 57 deletionsapp/models/merge_request.rb
Loading
Please register or sign in to comment