- 03 Sep, 2019 10 commits
-
-
Valery Sizov authored
-
Ash McKenzie authored
Remove all references to Gitlab::CorrelationId See merge request gitlab-org/gitlab-ce!32228
-
Thong Kuah authored
If user can push to docker then it can delete too Closes #40096 See merge request gitlab-org/gitlab-ce!31796
-
Giorgenes Gelatti authored
Extends the permission of $CI_REGISTRY_USER to allow them to delete tags in addition to just pushing. https://gitlab.com/gitlab-org/gitlab-ce/issues/40096
-
Evan Read authored
Make badging less confusing in quick actions doc Closes #66886 See merge request gitlab-org/gitlab-ce!32515
-
Marcel Amirault authored
-
Evan Read authored
Add suggested changes to docker build doc Closes #66802 See merge request gitlab-org/gitlab-ce!32442
-
Marcel Amirault authored
-
Evan Read authored
Add Danger bot development documentation Closes #58192 See merge request gitlab-org/gitlab-ce!32506
-
Nick Thomas authored
This is overdue, and some of the suggestions are embarrassing, but this is how we actually develop Danger today.
-
- 02 Sep, 2019 30 commits
-
-
Tim Zallmann authored
Remove area chart in favor of time series Closes #66393 See merge request gitlab-org/gitlab-ce!32129
-
Tim Zallmann authored
Expand textarea for CA cert in cluster form See merge request gitlab-org/gitlab-ce!32508
-
Mayra Cabrera authored
Add X-GitLab-NotificationReason header to note emails See merge request gitlab-org/gitlab-ce!32422
-
Walmyr Lima e Silva Filho authored
Backport EE changes for built-in project template test See merge request gitlab-org/gitlab-ce!32358
-
Lin Jen-Shin authored
Provide filename and line number for `class_eval` See merge request gitlab-org/gitlab-ce!32500
-
Peter Leitzen authored
This commit removes one RuboCop offense from its todo file.
-
Sean McGivern authored
The 'assigned' reason doesn't apply to notes, but the other two can ('mentioned' and 'own_activity'), so we can still use this for note emails.
-
Achilleas Pipinellis authored
Docs: Clarify config value true is a string See merge request gitlab-org/gitlab-ce!32209
-
yonatan miller authored
Gitlab CI Linter otherwise gives error `variables config should be a hash value of key value pairs`
-
Filipa Lacerda authored
Skip requesting diverging commit counts if no branches are listed See merge request gitlab-org/gitlab-ce!32496
-
Stan Hu authored
This fixes a regression where an underscore in labels no longer worked: https://github.com/knsv/mermaid/releases
-
Douglas Barbosa Alexandre authored
Update Code-Quality.gitlab-ci.yml to use `only.refs` See merge request gitlab-org/gitlab-ce!32394
-
Stan Hu authored
[CE] Use atlassian-jwt-ruby gem See merge request gitlab-org/gitlab-ce!32519
-
Rémy Coutable authored
This allows overriding `only.refs` to something else if needed.
-
Andreas Brandl authored
Replace indexes for counting active users See merge request gitlab-org/gitlab-ce!32538
-
Andreas Brandl authored
Replace indexes for counting active users See merge request gitlab-org/gitlab-ce!32538
-
Sean McGivern authored
Handle :9090 and 0.0.0.0:9090 listen_address formats See merge request gitlab-org/gitlab-ce!32456
-
Reuben Pereira authored
Prometheus listen_address can be in formats of :9090 and 0.0.0.0:9090. But before these can be used to connect a project to Prometheus, they have to converted into absolute URIs.
-
GitLab Release Tools Bot authored
[ci skip]
-
Heinrich Lee Yu authored
This is used by the Jira integration in EE
-
Marcia Ramos authored
Update screenshots for License Compliance Closes gitlab-ee#8910 See merge request gitlab-org/gitlab-ce!32537
-
Douwe Maan authored
Support selective highlighting of lines See merge request gitlab-org/gitlab-ce!32514
-
Achilleas Pipinellis authored
Added example for passing Maven repo credentials Closes gitlab-ee#6711 See merge request gitlab-org/gitlab-ce!32073
-
Matt Penna authored
-
Achilleas Pipinellis authored
Docs james gill contribution See merge request gitlab-org/gitlab-ce!32520
-
Marcel Amirault authored
-
Stan Hu authored
CE: Reduce amount of property definitions in ChatNotificationService See merge request gitlab-org/gitlab-ce!32363
-
Peter Leitzen authored
Before this commit we redefined properties for supported events on each new instance of ChatNotificationService during "runtime". This commit defines the properties only once during "compile time".
-
Andreas Brandl authored
This adjusts the partial condition for an index. The index is intended to be used when counting active users with `ghost IS NOT TRUE AND bot_type IS NULL`. With the current index, this wasn't working as the partial condition didn't match the query: `ghost <> TRUE` is not semantically equivalent to `ghost IS NOT TRUE` (null semantics). The reason we add an index particularly intended for EE is that the EE query is going to have the additional part `AND bot_type IS NULL` whereas the CE query doesn't. Logically, it'd be enough to have an index for `ghost IS NOT TRUE`. However, on GitLab.com, the query planner makes poor choices when the additional `AND bot_type IS NULL` part is present: It goes for the index on `bot_type` and doesn't use the partial index. Note the existing index isn't being used at all according to GitLab.com index statistics. Hence we can first remove it and don't have to worry about the window of time without an index. Relates to https://gitlab.com/gitlab-org/gitlab-ce/issues/66770
-
Achilleas Pipinellis authored
-