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
49b5d794
Commit
49b5d794
authored
Aug 30, 2021
by
GitLab Bot
Browse files
Options
Browse Files
Download
Plain Diff
Automatic merge of gitlab-org/gitlab master
parents
81ce5447
ea05fcef
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
26 additions
and
9 deletions
+26
-9
doc/user/application_security/security_dashboard/index.md
doc/user/application_security/security_dashboard/index.md
+4
-4
ee/app/assets/javascripts/boards/components/epics_swimlanes.vue
.../assets/javascripts/boards/components/epics_swimlanes.vue
+3
-1
ee/spec/features/boards/swimlanes/epics_swimlanes_drag_drop_spec.rb
...atures/boards/swimlanes/epics_swimlanes_drag_drop_spec.rb
+19
-4
No files found.
doc/user/application_security/security_dashboard/index.md
View file @
49b5d794
...
...
@@ -46,7 +46,7 @@ The security dashboard and vulnerability report displays information about vulne
## Pipeline Security
> [Introduced](https://gitlab.com/gitlab-org/gitlab/-/issues/13496) in
[GitLab Ultimate](https://about.gitlab.com/pricing/)
12.3.
> [Introduced](https://gitlab.com/gitlab-org/gitlab/-/issues/13496) in
GitLab
12.3.
At the pipeline level, the Security section displays the vulnerabilities present in the branch of
the project the pipeline ran against.
...
...
@@ -64,7 +64,7 @@ the analyzer outputs an
### Scan details
> [Introduced](https://gitlab.com/groups/gitlab-org/-/epics/3728) in
[GitLab Ultimate](https://about.gitlab.com/pricing/)
13.10.
> [Introduced](https://gitlab.com/groups/gitlab-org/-/epics/3728) in
GitLab
13.10.
The
**Scan details**
section lists the scans run in the pipeline and the total number of
vulnerabilities per scan. For the DAST scan, select
**Download scanned resources**
to download a
...
...
@@ -104,7 +104,7 @@ To download an SVG image of the chart, select **Save chart to an image** (**{dow
## Group Security Dashboard
> [Introduced](https://gitlab.com/gitlab-org/gitlab/-/issues/6709) in
[GitLab Ultimate](https://about.gitlab.com/pricing/)
11.5.
> [Introduced](https://gitlab.com/gitlab-org/gitlab/-/issues/6709) in
GitLab
11.5.
The group Security Dashboard gives an overview of the vulnerabilities found in the default branches of the
projects in a group and its subgroups. Access it by navigating to
**Security > Security Dashboard**
...
...
@@ -139,7 +139,7 @@ Navigate to the group's [vulnerability report](../vulnerability_report/index.md)
## Security Center
> [Introduced](https://gitlab.com/groups/gitlab-org/-/epics/3426) in
[GitLab Ultimate](https://about.gitlab.com/pricing/)
13.4.
> [Introduced](https://gitlab.com/groups/gitlab-org/-/epics/3426) in
GitLab
13.4.
The Security Center is personal space where you manage vulnerabilities across all your projects. It
displays the vulnerabilities present in the default branches of all the projects you configure. It includes
...
...
ee/app/assets/javascripts/boards/components/epics_swimlanes.vue
View file @
49b5d794
...
...
@@ -11,7 +11,7 @@ import { s__, n__, __ } from '~/locale';
import
defaultSortableConfig
from
'
~/sortable/sortable_config
'
;
import
glFeatureFlagsMixin
from
'
~/vue_shared/mixins/gl_feature_flags_mixin
'
;
import
{
calculateSwimlanesBufferSize
}
from
'
../boards_util
'
;
import
{
DRAGGABLE_TAG
,
EPIC_LANE_BASE_HEIGHT
}
from
'
../constants
'
;
import
{
DRAGGABLE_TAG
,
EPIC_LANE_BASE_HEIGHT
,
DraggableItemTypes
}
from
'
../constants
'
;
import
EpicLane
from
'
./epic_lane.vue
'
;
import
IssuesLaneList
from
'
./issues_lane_list.vue
'
;
import
SwimlanesLoadingSkeleton
from
'
./swimlanes_loading_skeleton.vue
'
;
...
...
@@ -19,6 +19,7 @@ import SwimlanesLoadingSkeleton from './swimlanes_loading_skeleton.vue';
export
default
{
EpicLane
,
epicLaneBaseHeight
:
EPIC_LANE_BASE_HEIGHT
,
draggableItemTypes
:
DraggableItemTypes
,
components
:
{
BoardAddNewColumn
,
BoardListHeader
,
...
...
@@ -215,6 +216,7 @@ export default {
class="board gl-display-inline-block gl-px-3 gl-vertical-align-top gl-white-space-normal"
:data-list-id="list.id"
data-testid="board-header-container"
:data-draggable-item-type="$options.draggableItemTypes.list"
>
<board-list-header
:can-admin-list=
"canAdminList"
...
...
ee/spec/features/boards/swimlanes/epics_swimlanes_drag_
issue
_spec.rb
→
ee/spec/features/boards/swimlanes/epics_swimlanes_drag_
drop
_spec.rb
View file @
49b5d794
...
...
@@ -33,7 +33,7 @@ RSpec.describe 'epics swimlanes', :js do
stub_licensed_features
(
epics:
true
,
swimlanes:
true
)
sign_in
(
user
)
visit_board_page
load_board
project_boards_path
(
project
)
load_epic_swimlanes
load_unassigned_issues
end
...
...
@@ -117,9 +117,24 @@ RSpec.describe 'epics swimlanes', :js do
end
end
def
visit_board_page
visit
project_boards_path
(
project
)
wait_for_requests
context
'drag and drop list'
do
let_it_be
(
:label2
)
{
create
(
:label
,
project:
project
,
name:
'Label 2'
)
}
let_it_be
(
:list2
)
{
create
(
:list
,
board:
board
,
label:
label2
,
position:
1
)
}
it
're-orders lists'
do
drag
(
list_from_index:
1
,
list_to_index:
2
,
selector:
'.board-header'
)
wait_for_requests
expect
(
find_board_list_header
(
2
)).
to
have_content
(
label2
.
title
)
expect
(
find_board_list_header
(
3
)).
to
have_content
(
label
.
title
)
expect
(
list
.
reload
.
position
).
to
eq
(
1
)
expect
(
list2
.
reload
.
position
).
to
eq
(
0
)
end
end
def
find_board_list_header
(
list_idx
)
find
(
".board:nth-child(
#{
list_idx
}
) [data-testid=
\"
board-list-header
\"
]"
)
end
def
select_epics
...
...
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