Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
b542c8ae
Commit
b542c8ae
authored
Aug 24, 2020
by
GitLab Bot
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add latest changes from gitlab-org/gitlab@13-3-stable-ee
parent
9119206b
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
34 additions
and
6 deletions
+34
-6
app/services/discussions/capture_diff_note_position_service.rb
...ervices/discussions/capture_diff_note_position_service.rb
+4
-1
changelogs/unreleased/236190-bugfix-issue-promote-with-attachments.yml
...released/236190-bugfix-issue-promote-with-attachments.yml
+5
-0
changelogs/unreleased/id-fix-nil-line-codes-for-diff-positions.yml
...s/unreleased/id-fix-nil-line-codes-for-diff-positions.yml
+5
-0
spec/services/discussions/capture_diff_note_position_service_spec.rb
...es/discussions/capture_diff_note_position_service_spec.rb
+20
-5
No files found.
app/services/discussions/capture_diff_note_position_service.rb
View file @
b542c8ae
...
...
@@ -19,13 +19,16 @@ module Discussions
position
=
result
[
:position
]
return
unless
position
line_code
=
position
.
line_code
(
project
.
repository
)
return
unless
line_code
# Currently position data is copied across all notes of a discussion
# It makes sense to store a position only for the first note instead
# Within the newly introduced table we can start doing just that
DiffNotePosition
.
create_or_update_for
(
discussion
.
notes
.
first
,
diff_type: :head
,
position:
position
,
line_code:
position
.
line_code
(
project
.
repository
)
)
line_code:
line_code
)
end
private
...
...
changelogs/unreleased/236190-bugfix-issue-promote-with-attachments.yml
0 → 100644
View file @
b542c8ae
---
title
:
Fix bug when promoting an Issue with attachments to an Epic
merge_request
:
39654
author
:
type
:
fixed
changelogs/unreleased/id-fix-nil-line-codes-for-diff-positions.yml
0 → 100644
View file @
b542c8ae
---
title
:
Avoid creating diff position when line-code is nil
merge_request
:
40089
author
:
type
:
fixed
spec/services/discussions/capture_diff_note_position_service_spec.rb
View file @
b542c8ae
...
...
@@ -29,18 +29,33 @@ RSpec.describe Discussions::CaptureDiffNotePositionService do
end
end
context
'when position tracer returned
nil
position'
do
context
'when position tracer returned position'
do
let!
(
:note
)
{
create
(
:diff_note_on_merge_request
)
}
let
(
:paths
)
{
[
'files/any_file.txt'
]
}
it
'does not create diff note position'
do
before
do
expect
(
note
.
noteable
).
to
receive
(
:merge_ref_head
).
and_return
(
double
.
as_null_object
)
expect_next_instance_of
(
Gitlab
::
Diff
::
PositionTracer
)
do
|
tracer
|
expect
(
tracer
).
to
receive
(
:trace
).
and_return
({
position:
nil
})
expect
(
tracer
).
to
receive
(
:trace
).
and_return
({
position:
position
})
end
end
expect
(
subject
.
execute
(
note
.
discussion
)).
to
eq
(
nil
)
expect
(
note
.
diff_note_positions
).
to
be_empty
context
'which is nil'
do
let
(
:position
)
{
nil
}
it
'does not create diff note position'
do
expect
(
subject
.
execute
(
note
.
discussion
)).
to
eq
(
nil
)
expect
(
note
.
diff_note_positions
).
to
be_empty
end
end
context
'which does not have a corresponding line'
do
let
(
:position
)
{
double
(
line_code:
nil
)
}
it
'does not create diff note position'
do
expect
(
subject
.
execute
(
note
.
discussion
)).
to
eq
(
nil
)
expect
(
note
.
diff_note_positions
).
to
be_empty
end
end
end
end
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment