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
0
Merge Requests
0
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
Léo-Paul Géneau
gitlab-ce
Commits
ca95fe0b
Commit
ca95fe0b
authored
Oct 08, 2019
by
GitLab Bot
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add latest changes from gitlab-org/gitlab@master
parent
8c8b94e7
Changes
13
Show whitespace changes
Inline
Side-by-side
Showing
13 changed files
with
48 additions
and
11 deletions
+48
-11
app/assets/javascripts/boards/components/board_form.vue
app/assets/javascripts/boards/components/board_form.vue
+1
-0
app/helpers/projects_helper.rb
app/helpers/projects_helper.rb
+1
-1
app/views/layouts/header/_current_user_dropdown.html.haml
app/views/layouts/header/_current_user_dropdown.html.haml
+2
-1
app/views/layouts/header/_help_dropdown.html.haml
app/views/layouts/header/_help_dropdown.html.haml
+2
-1
app/views/shared/_user_dropdown_contributing_link.html.haml
app/views/shared/_user_dropdown_contributing_link.html.haml
+2
-3
db/migrate/20190905022045_add_issues_prometheus_alert_event_join_table.rb
...905022045_add_issues_prometheus_alert_event_join_table.rb
+22
-0
db/schema.rb
db/schema.rb
+11
-0
doc/user/index.md
doc/user/index.md
+1
-1
doc/user/project/canary_deployments.md
doc/user/project/canary_deployments.md
+1
-1
doc/user/project/index.md
doc/user/project/index.md
+1
-1
doc/user/project/integrations/prometheus.md
doc/user/project/integrations/prometheus.md
+1
-1
doc/user/project/repository/web_editor.md
doc/user/project/repository/web_editor.md
+1
-1
spec/lib/gitlab/import_export/all_models.yml
spec/lib/gitlab/import_export/all_models.yml
+2
-0
No files found.
app/assets/javascripts/boards/components/board_form.vue
View file @
ca95fe0b
...
...
@@ -194,6 +194,7 @@ export default {
ref=
"name"
v-model=
"board.name"
class=
"form-control"
data-qa-selector=
"board_name_field"
type=
"text"
:placeholder=
"__('Enter board name')"
@
keyup.enter=
"submit"
...
...
app/helpers/projects_helper.rb
View file @
ca95fe0b
...
...
@@ -168,7 +168,7 @@ module ProjectsHelper
end
def
link_to_autodeploy_doc
link_to
_
(
'About auto deploy'
),
help_page_path
(
'
ci/autodeploy/index
'
),
target:
'_blank'
link_to
_
(
'About auto deploy'
),
help_page_path
(
'
autodevops/index.md#auto-deploy
'
),
target:
'_blank'
end
def
autodeploy_flash_notice
(
branch_name
)
...
...
app/views/layouts/header/_current_user_dropdown.html.haml
View file @
ca95fe0b
...
...
@@ -32,6 +32,7 @@
%li
.d-md-none
=
link_to
_
(
"Submit feedback"
),
"https://about.gitlab.com/submit-feedback"
-
if
current_user_menu?
(
:help
)
||
current_user_menu?
(
:settings
)
||
current_user_menu?
(
:profile
)
%li
.d-md-none
=
render
'shared/user_dropdown_contributing_link'
=
render_if_exists
'shared/user_dropdown_instance_review'
-
if
Gitlab
.
com?
...
...
app/views/layouts/header/_help_dropdown.html.haml
View file @
ca95fe0b
...
...
@@ -9,6 +9,7 @@
%li
=
link_to
_
(
"Submit feedback"
),
"https://about.gitlab.com/submit-feedback"
-
if
current_user_menu?
(
:help
)
||
current_user_menu?
(
:settings
)
||
current_user_menu?
(
:profile
)
%li
=
render
'shared/user_dropdown_contributing_link'
=
render_if_exists
'shared/user_dropdown_instance_review'
-
if
Gitlab
.
com?
...
...
app/views/shared/_user_dropdown_contributing_link.html.haml
View file @
ca95fe0b
%li
=
link_to
"https://about.gitlab.com/contributing"
,
target:
'_blank'
,
class:
'text-nowrap'
do
=
link_to
"https://about.gitlab.com/contributing"
,
target:
'_blank'
,
class:
'text-nowrap'
do
=
_
(
"Contribute to GitLab"
)
db/migrate/20190905022045_add_issues_prometheus_alert_event_join_table.rb
0 → 100644
View file @
ca95fe0b
# frozen_string_literal: true
class
AddIssuesPrometheusAlertEventJoinTable
<
ActiveRecord
::
Migration
[
5.2
]
include
Gitlab
::
Database
::
MigrationHelpers
DOWNTIME
=
false
def
change
create_table
:issues_prometheus_alert_events
,
id:
false
do
|
t
|
t
.
references
:issue
,
null:
false
,
index:
false
,
# Uses the index below
foreign_key:
{
on_delete: :cascade
}
t
.
references
:prometheus_alert_event
,
null:
false
,
index:
{
name:
'issue_id_issues_prometheus_alert_events_index'
},
foreign_key:
{
on_delete: :cascade
}
t
.
timestamps_with_timezone
t
.
index
[
:issue_id
,
:prometheus_alert_event_id
],
unique:
true
,
name:
'issue_id_prometheus_alert_event_id_index'
end
end
end
db/schema.rb
View file @
ca95fe0b
...
...
@@ -1877,6 +1877,15 @@ ActiveRecord::Schema.define(version: 2019_09_29_180827) do
t
.
index
[
"updated_by_id"
],
name:
"index_issues_on_updated_by_id"
,
where:
"(updated_by_id IS NOT NULL)"
end
create_table
"issues_prometheus_alert_events"
,
id:
false
,
force: :cascade
do
|
t
|
t
.
bigint
"issue_id"
,
null:
false
t
.
bigint
"prometheus_alert_event_id"
,
null:
false
t
.
datetime_with_timezone
"created_at"
,
null:
false
t
.
datetime_with_timezone
"updated_at"
,
null:
false
t
.
index
[
"issue_id"
,
"prometheus_alert_event_id"
],
name:
"issue_id_prometheus_alert_event_id_index"
,
unique:
true
t
.
index
[
"prometheus_alert_event_id"
],
name:
"issue_id_issues_prometheus_alert_events_index"
end
create_table
"jira_connect_installations"
,
force: :cascade
do
|
t
|
t
.
string
"client_key"
t
.
string
"encrypted_shared_secret"
...
...
@@ -4071,6 +4080,8 @@ ActiveRecord::Schema.define(version: 2019_09_29_180827) do
add_foreign_key
"issues"
,
"users"
,
column:
"author_id"
,
name:
"fk_05f1e72feb"
,
on_delete: :nullify
add_foreign_key
"issues"
,
"users"
,
column:
"closed_by_id"
,
name:
"fk_c63cbf6c25"
,
on_delete: :nullify
add_foreign_key
"issues"
,
"users"
,
column:
"updated_by_id"
,
name:
"fk_ffed080f01"
,
on_delete: :nullify
add_foreign_key
"issues_prometheus_alert_events"
,
"issues"
,
on_delete: :cascade
add_foreign_key
"issues_prometheus_alert_events"
,
"prometheus_alert_events"
,
on_delete: :cascade
add_foreign_key
"jira_connect_subscriptions"
,
"jira_connect_installations"
,
on_delete: :cascade
add_foreign_key
"jira_connect_subscriptions"
,
"namespaces"
,
on_delete: :cascade
add_foreign_key
"jira_tracker_data"
,
"services"
,
on_delete: :cascade
...
...
doc/user/index.md
View file @
ca95fe0b
...
...
@@ -88,7 +88,7 @@ it all at once, from one single project.
Use built-in
[
GitLab CI/CD
](
../ci/README.md
)
to test, build, and deploy your applications
directly from GitLab. No third-party integrations needed.
-
[
GitLab Auto Deploy
](
../
ci/autodeploy/index.md
)
: Deploy your application out-of-the-box with GitLab Auto Deploy.
-
[
GitLab Auto Deploy
](
../
topics/autodevops/index.md#auto-deploy
)
: Deploy your application out-of-the-box with GitLab Auto Deploy.
-
[
Review Apps
](
../ci/review_apps/index.md
)
: Live-preview the changes introduced by a merge request with Review Apps.
-
[
GitLab Pages
](
project/pages/index.md
)
: Publish your static site directly from
GitLab with GitLab Pages. You can build, test, and deploy any Static Site Generator with Pages.
...
...
doc/user/project/canary_deployments.md
View file @
ca95fe0b
...
...
@@ -44,7 +44,7 @@ Canary deployments require that you properly configure Deploy Boards:
1.
Follow the steps to
[
enable Deploy Boards
](
deploy_boards.md#enabling-deploy-boards
)
.
1.
To track canary deployments you need to label your Kubernetes deployments and
pods with
`track: canary`
. To get started quickly, you can use the
[
Auto Deploy
](
../../
ci/autodeploy/index.md
)
pods with
`track: canary`
. To get started quickly, you can use the
[
Auto Deploy
](
../../
topics/autodevops/index.md#auto-deploy
)
template for canary deployments that GitLab provides.
Depending on the deploy, the label should be either
`stable`
or
`canary`
.
...
...
doc/user/project/index.md
View file @
ca95fe0b
...
...
@@ -62,7 +62,7 @@ When you create a project in GitLab, you'll have access to a large number of
-
[
GitLab CI/CD
](
../../ci/README.md
)
: GitLab's built-in
[
Continuous Integration, Delivery, and Deployment
](
https://about.gitlab.com/2016/08/05/continuous-integration-delivery-and-deployment-with-gitlab/
)
tool
-
[
Container Registry
](
../packages/container_registry/index.md
)
: Build and push Docker
images out-of-the-box
-
[
Auto Deploy
](
../../
ci/autodeploy/index.md
)
: Configure GitLab CI/CD
-
[
Auto Deploy
](
../../
topics/autodevops/index.md#auto-deploy
)
: Configure GitLab CI/CD
to automatically set up your app's deployment
-
[
Enable and disable GitLab CI
](
../../ci/enable_or_disable_ci.md
)
-
[
Pipelines
](
../../ci/pipelines.md
)
: Configure and visualize
...
...
doc/user/project/integrations/prometheus.md
View file @
ca95fe0b
...
...
@@ -445,7 +445,7 @@ If the "No data found" screen continues to appear, it could be due to:
[
run a query
](
prometheus_library/kubernetes.html#metrics-supported
)
, replacing
`$CI_ENVIRONMENT_SLUG`
with the name of your environment.
[
autodeploy
]:
../../../
ci/autodeploy/index.md
[
autodeploy
]:
../../../
topics/autodevops/index.md#auto-deploy
[
kubernetes
]:
https://kubernetes.io
[
kube
]:
./kubernetes.md
[
prometheus-k8s-sd
]:
https://prometheus.io/docs/operating/configuration/#<kubernetes_sd_config>
...
...
doc/user/project/repository/web_editor.md
View file @
ca95fe0b
...
...
@@ -117,7 +117,7 @@ the description field will automatically display the [issue closing pattern](../
merge request is merged.
[
project-services-doc
]:
../integrations/project_services.md
[
auto-deploy-doc
]:
../../../
ci/autodeploy/index.md
[
auto-deploy-doc
]:
../../../
topics/autodevops/index.md#auto-deploy
### Create a new branch from a project's dashboard
...
...
spec/lib/gitlab/import_export/all_models.yml
View file @
ca95fe0b
...
...
@@ -25,6 +25,8 @@ issues:
-
epic
-
designs
-
design_versions
-
prometheus_alerts
-
prometheus_alert_events
events
:
-
author
-
project
...
...
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