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
0e9eea40
Commit
0e9eea40
authored
Feb 11, 2020
by
GitLab Bot
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add latest changes from gitlab-org/gitlab@master
parent
1ca9950d
Changes
34
Show whitespace changes
Inline
Side-by-side
Showing
34 changed files
with
75 additions
and
51 deletions
+75
-51
app/assets/javascripts/pipelines/mixins/graph_pipeline_bundle_mixin.js
...vascripts/pipelines/mixins/graph_pipeline_bundle_mixin.js
+1
-1
app/finders/concerns/finder_with_cross_project_access.rb
app/finders/concerns/finder_with_cross_project_access.rb
+1
-1
changelogs/unreleased/revert_rename_services_template_to_instance_migration.yml
...revert_rename_services_template_to_instance_migration.yml
+5
-0
db/post_migrate/20200211152410_remove_instance_from_services.rb
...t_migrate/20200211152410_remove_instance_from_services.rb
+19
-0
db/schema.rb
db/schema.rb
+1
-1
doc/administration/geo/replication/configuration.md
doc/administration/geo/replication/configuration.md
+1
-1
doc/administration/geo/replication/faq.md
doc/administration/geo/replication/faq.md
+1
-1
doc/administration/gitaly/praefect.md
doc/administration/gitaly/praefect.md
+1
-1
doc/administration/operations/moving_repositories.md
doc/administration/operations/moving_repositories.md
+3
-3
doc/administration/operations/unicorn.md
doc/administration/operations/unicorn.md
+1
-1
doc/administration/troubleshooting/gitlab_rails_cheat_sheet.md
...dministration/troubleshooting/gitlab_rails_cheat_sheet.md
+2
-2
doc/administration/troubleshooting/linux_cheat_sheet.md
doc/administration/troubleshooting/linux_cheat_sheet.md
+3
-3
doc/development/adding_database_indexes.md
doc/development/adding_database_indexes.md
+1
-1
doc/development/code_review.md
doc/development/code_review.md
+3
-3
doc/development/contributing/index.md
doc/development/contributing/index.md
+2
-2
doc/development/elasticsearch.md
doc/development/elasticsearch.md
+1
-1
doc/development/fe_guide/performance.md
doc/development/fe_guide/performance.md
+6
-6
doc/development/github_importer.md
doc/development/github_importer.md
+1
-1
doc/development/go_guide/index.md
doc/development/go_guide/index.md
+3
-3
doc/development/logging.md
doc/development/logging.md
+1
-1
doc/development/migration_style_guide.md
doc/development/migration_style_guide.md
+1
-1
doc/development/namespaces_storage_statistics.md
doc/development/namespaces_storage_statistics.md
+1
-1
doc/development/pry_debugging.md
doc/development/pry_debugging.md
+1
-1
doc/development/reactive_caching.md
doc/development/reactive_caching.md
+1
-1
doc/development/renaming_features.md
doc/development/renaming_features.md
+1
-1
doc/development/scalability.md
doc/development/scalability.md
+2
-2
doc/development/shell_commands.md
doc/development/shell_commands.md
+2
-2
doc/development/testing_guide/best_practices.md
doc/development/testing_guide/best_practices.md
+1
-1
doc/development/testing_guide/end_to_end/dynamic_element_validation.md
...nt/testing_guide/end_to_end/dynamic_element_validation.md
+2
-2
doc/development/testing_guide/end_to_end/page_objects.md
doc/development/testing_guide/end_to_end/page_objects.md
+2
-2
doc/development/testing_guide/testing_migrations_guide.md
doc/development/testing_guide/testing_migrations_guide.md
+1
-1
lib/gitlab/git/blob.rb
lib/gitlab/git/blob.rb
+1
-1
lib/support/init.d/gitlab
lib/support/init.d/gitlab
+1
-1
spec/helpers/projects_helper_spec.rb
spec/helpers/projects_helper_spec.rb
+1
-1
No files found.
app/assets/javascripts/pipelines/mixins/graph_pipeline_bundle_mixin.js
View file @
0e9eea40
...
...
@@ -59,7 +59,7 @@ export default {
},
requestRefreshPipelineGraph
()
{
// When an action is clicked
// (wether in the dropdown or in the main nodes, we refresh the big graph)
// (w
h
ether in the dropdown or in the main nodes, we refresh the big graph)
this
.
mediator
.
refreshPipeline
()
.
catch
(()
=>
flash
(
__
(
'
An error occurred while making the request.
'
)));
...
...
app/finders/concerns/finder_with_cross_project_access.rb
View file @
0e9eea40
# frozen_string_literal: true
# Module to prepend into finders to specify wether or not the finder requires
# Module to prepend into finders to specify w
h
ether or not the finder requires
# cross project access
#
# This module depends on the finder implementing the following methods:
...
...
changelogs/unreleased/revert_rename_services_template_to_instance_migration.yml
0 → 100644
View file @
0e9eea40
---
title
:
Revert rename services template to instance migration
merge_request
:
24885
author
:
type
:
fixed
db/post_migrate/20200211152410_remove_instance_from_services.rb
0 → 100644
View file @
0e9eea40
# frozen_string_literal: true
class
RemoveInstanceFromServices
<
ActiveRecord
::
Migration
[
6.0
]
include
Gitlab
::
Database
::
MigrationHelpers
DOWNTIME
=
false
def
up
return
unless
column_exists?
(
:services
,
:instance
)
undo_rename_column_concurrently
:services
,
:template
,
:instance
end
def
down
# This migration should not be rolled back because it
# removes a column that got added in migrations that
# have been reverted in https://gitlab.com/gitlab-org/gitlab/-/merge_requests/24857
end
end
db/schema.rb
View file @
0e9eea40
...
...
@@ -10,7 +10,7 @@
#
# It's strongly recommended that you check this file into your version control system.
ActiveRecord
::
Schema
.
define
(
version:
2020_02_
07_15164
0
)
do
ActiveRecord
::
Schema
.
define
(
version:
2020_02_
11_15241
0
)
do
# These are extensions that must be enabled in order to support this database
enable_extension
"pg_trgm"
...
...
doc/administration/geo/replication/configuration.md
View file @
0e9eea40
doc/administration/geo/replication/faq.md
View file @
0e9eea40
doc/administration/gitaly/praefect.md
View file @
0e9eea40
doc/administration/operations/moving_repositories.md
View file @
0e9eea40
doc/administration/operations/unicorn.md
View file @
0e9eea40
doc/administration/troubleshooting/gitlab_rails_cheat_sheet.md
View file @
0e9eea40
doc/administration/troubleshooting/linux_cheat_sheet.md
View file @
0e9eea40
doc/development/adding_database_indexes.md
View file @
0e9eea40
doc/development/code_review.md
View file @
0e9eea40
doc/development/contributing/index.md
View file @
0e9eea40
doc/development/elasticsearch.md
View file @
0e9eea40
doc/development/fe_guide/performance.md
View file @
0e9eea40
doc/development/github_importer.md
View file @
0e9eea40
doc/development/go_guide/index.md
View file @
0e9eea40
...
...
@@ -188,9 +188,9 @@ code readability and test output.
### Better output in tests
When comparing expected and actual values in tests, use
[
testify/require.Equal
](
https://godoc.org/github.com/stretchr/testify/require#Equal
)
,
[
testify/require.EqualError
](
https://godoc.org/github.com/stretchr/testify/require#EqualError
)
,
[
testify/require.EqualValues
](
https://godoc.org/github.com/stretchr/testify/require#EqualValues
)
,
[
`testify/require.Equal`
](
https://godoc.org/github.com/stretchr/testify/require#Equal
)
,
[
`testify/require.EqualError`
](
https://godoc.org/github.com/stretchr/testify/require#EqualError
)
,
[
`testify/require.EqualValues`
](
https://godoc.org/github.com/stretchr/testify/require#EqualValues
)
,
and others to improve readability when comparing structs, errors,
large portions of text, or JSON documents:
...
...
doc/development/logging.md
View file @
0e9eea40
doc/development/migration_style_guide.md
View file @
0e9eea40
doc/development/namespaces_storage_statistics.md
View file @
0e9eea40
doc/development/pry_debugging.md
View file @
0e9eea40
doc/development/reactive_caching.md
View file @
0e9eea40
doc/development/renaming_features.md
View file @
0e9eea40
doc/development/scalability.md
View file @
0e9eea40
doc/development/shell_commands.md
View file @
0e9eea40
doc/development/testing_guide/best_practices.md
View file @
0e9eea40
...
...
@@ -536,7 +536,7 @@ reset before each example, add the `:prometheus` tag to the Rspec test.
### Matchers
Custom matchers should be created to clarify the intent and/or hide the
complexity of RSpec expectations.They should be placed under
complexity of RSpec expectations.
They should be placed under
`spec/support/matchers/`
. Matchers can be placed in subfolder if they apply to
a certain type of specs only (e.g. features, requests etc.) but shouldn't be if
they apply to multiple type of specs.
...
...
doc/development/testing_guide/end_to_end/dynamic_element_validation.md
View file @
0e9eea40
doc/development/testing_guide/end_to_end/page_objects.md
View file @
0e9eea40
doc/development/testing_guide/testing_migrations_guide.md
View file @
0e9eea40
lib/gitlab/git/blob.rb
View file @
0e9eea40
...
...
@@ -128,7 +128,7 @@ module Gitlab
def
load_all_data!
(
repository
)
return
if
@data
==
''
# don't mess with submodule blobs
# Even if we return early, recalculate wether this blob is binary in
# Even if we return early, recalculate w
h
ether this blob is binary in
# case a blob was initialized as text but the full data isn't
@binary
=
nil
...
...
lib/support/init.d/gitlab
View file @
0e9eea40
...
...
@@ -340,7 +340,7 @@ start_gitlab() {
# Wait for the pids to be planted
wait_for_pids
# Finally check the status to tell wether or not GitLab is running
# Finally check the status to tell w
h
ether or not GitLab is running
print_status
}
...
...
spec/helpers/projects_helper_spec.rb
View file @
0e9eea40
...
...
@@ -194,7 +194,7 @@ describe ProjectsHelper do
expect
(
helper
.
project_list_cache_key
(
project
).
last
).
to
start_with
(
'v'
)
end
it
'includes wether or not the user can read cross project'
do
it
'includes w
h
ether or not the user can read cross project'
do
expect
(
helper
.
project_list_cache_key
(
project
)).
to
include
(
'cross-project:true'
)
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