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
d3584e80
Commit
d3584e80
authored
May 20, 2019
by
GitLab Bot
Browse files
Options
Browse Files
Download
Plain Diff
Automatic merge of gitlab-org/gitlab-ce master
parents
57bbe64e
4b407a68
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
49 additions
and
34 deletions
+49
-34
.codeclimate.yml
.codeclimate.yml
+29
-29
.haml-lint.yml
.haml-lint.yml
+1
-1
.pkgr.yml
.pkgr.yml
+2
-2
changelogs/unreleased/49517-fix-notes-import-export.yml
changelogs/unreleased/49517-fix-notes-import-export.yml
+5
-0
changelogs/unreleased/60818_yamllint_project_root.yml
changelogs/unreleased/60818_yamllint_project_root.yml
+5
-0
lib/gitlab/import_export/import_export.yml
lib/gitlab/import_export/import_export.yml
+2
-0
spec/lib/gitlab/import_export/project_tree_saver_spec.rb
spec/lib/gitlab/import_export/project_tree_saver_spec.rb
+5
-2
No files found.
.codeclimate.yml
View file @
d3584e80
...
...
@@ -6,35 +6,35 @@ engines:
enabled
:
true
config
:
languages
:
-
ruby
-
javascript
-
ruby
-
javascript
ratings
:
paths
:
-
Gemfile.lock
-
"
**.erb"
-
"
**.haml"
-
"
**.rb"
-
"
**.rhtml"
-
"
**.slim"
-
"
**.inc"
-
"
**.js"
-
"
**.jsx"
-
"
**.module"
-
Gemfile.lock
-
"
**.erb"
-
"
**.haml"
-
"
**.rb"
-
"
**.rhtml"
-
"
**.slim"
-
"
**.inc"
-
"
**.js"
-
"
**.jsx"
-
"
**.module"
exclude_paths
:
-
config/
-
db/
-
features/
-
node_modules/
-
spec/
-
vendor/
-
.yarn-cache/
-
tmp/
-
builds/
-
coverage/
-
public/
-
shared/
-
webpack-report/
-
log/
-
backups/
-
coverage-javascript/
-
plugins/
-
config/
-
db/
-
features/
-
node_modules/
-
spec/
-
vendor/
-
.yarn-cache/
-
tmp/
-
builds/
-
coverage/
-
public/
-
shared/
-
webpack-report/
-
log/
-
backups/
-
coverage-javascript/
-
plugins/
.haml-lint.yml
View file @
d3584e80
...
...
@@ -153,7 +153,7 @@ linters:
Indentation
:
enabled
:
true
character
:
space
# or tab
character
:
space
# or tab
TagName
:
enabled
:
true
...
...
.pkgr.yml
View file @
d3584e80
...
...
@@ -3,8 +3,8 @@ group: git
services
:
-
postgres
before_precompile
:
./bin/pkgr_before_precompile.sh
env
:
-
SKIP_STORAGE_VALIDATION=true
env
:
-
SKIP_STORAGE_VALIDATION=true
targets
:
debian-7
:
&wheezy
build_dependencies
:
...
...
changelogs/unreleased/49517-fix-notes-import-export.yml
0 → 100644
View file @
d3584e80
---
title
:
Fix diff notes and discussion notes being exported as regular notes
merge_request
:
28401
author
:
type
:
fixed
changelogs/unreleased/60818_yamllint_project_root.yml
0 → 100644
View file @
d3584e80
---
title
:
Fix yaml linting for project root *.yml files
merge_request
:
27579
author
:
Will Hall
type
:
fixed
lib/gitlab/import_export/import_export.yml
View file @
d3584e80
...
...
@@ -189,6 +189,8 @@ excluded_attributes:
-
:enabled
methods
:
notes
:
-
:type
labels
:
-
:type
label
:
...
...
spec/lib/gitlab/import_export/project_tree_saver_spec.rb
View file @
d3584e80
...
...
@@ -95,7 +95,10 @@ describe Gitlab::ImportExport::ProjectTreeSaver do
end
it
'has issue comments'
do
expect
(
saved_project_json
[
'issues'
].
first
[
'notes'
]).
not_to
be_empty
notes
=
saved_project_json
[
'issues'
].
first
[
'notes'
]
expect
(
notes
).
not_to
be_empty
expect
(
notes
.
first
[
'type'
]).
to
eq
(
'DiscussionNote'
)
end
it
'has issue assignees'
do
...
...
@@ -304,7 +307,7 @@ describe Gitlab::ImportExport::ProjectTreeSaver do
create
(
:commit_status
,
project:
project
,
pipeline:
ci_build
.
pipeline
)
create
(
:milestone
,
project:
project
)
create
(
:note
,
noteable:
issue
,
project:
project
)
create
(
:
discussion_
note
,
noteable:
issue
,
project:
project
)
create
(
:note
,
noteable:
merge_request
,
project:
project
)
create
(
:note
,
noteable:
snippet
,
project:
project
)
create
(
:note_on_commit
,
...
...
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