An error occurred while loading commit signatures
Commits on Source (21)
-
Alper Akgun authored
Uses memoized min/max for user id. Automatic batch size will halve smartly depending on the particular gitlab instances data
-
Adam Hegyi authored
-
Mayra Cabrera authored
Issue and merge request security templates were modified to require AppSec approval. AppSec approval will be required on the merge request targeting master. It also simplifies issue security template by removing 'Security Release Tracking Issue' link, since security issues are related to the Tracking issue, it's not really necessary to also include it on the Links section Related to gitlab-com/gl-infra/delivery#839
-
Nick Thomas authored
This reverts merge request !35750
-
Rémy Coutable authored
The goal is to reduce the mean time to review and mean time review to merge for the GitLab project by using timezones for the the reviewer selection process. Relates to #216875 . Signed-off-by:
Rémy Coutable <remy@rymai.me>
-
Rémy Coutable authored
Signed-off-by:
Rémy Coutable <remy@rymai.me>
-
Michael Leopard authored
-
derek-knox authored
Appease danger bot with a description...
-
Bob Van Landuyt authored
Use timezones for Danger Reviewer Roulette implementation Closes #216875 See merge request !34862
-
Bob Van Landuyt authored
Revert "Remove tempfile from external diff creation" See merge request !36196
-
Sean McGivern authored
This reverts merge request !36071
-
Enrique Alcántara authored
Refactor rich_content_editor mocks (tighter cohesion) Closes #224679 See merge request !35663
-
Mayra Cabrera authored
Remove non-unique index on MR metrics See merge request !36170
-
Robert Speicher authored
Modify security templates to include AppSec approval See merge request !36076
-
-
Mayra Cabrera authored
Merge branch '217918-follow-up-from-implement-a-switch-to-pause-all-of-the-write-requests-to-elasticsearch' into 'master' Add metrics for paused indexing Sidekiq queue size See merge request !35871
-
Also updates the documentation
-
Robert Speicher authored
Move manage stage usage activity to CE See merge request !36089
-
Mayra Cabrera authored
Revert "Merge branch 'update-rack-timeout' into 'master'" See merge request !36229
Showing
- .gitlab/issue_templates/Security developer workflow.md 3 additions, 6 deletions.gitlab/issue_templates/Security developer workflow.md
- .gitlab/merge_request_templates/Security Release.md 15 additions, 7 deletions.gitlab/merge_request_templates/Security Release.md
- Gemfile 1 addition, 1 deletionGemfile
- Gemfile.lock 2 additions, 2 deletionsGemfile.lock
- app/models/merge_request_diff.rb 10 additions, 10 deletionsapp/models/merge_request_diff.rb
- changelogs/unreleased/216458-remove-tempfile-from-external-diff-creation.yml 0 additions, 5 deletions...ed/216458-remove-tempfile-from-external-diff-creation.yml
- changelogs/unreleased/217362-move-manage-stage-usage-activity-to-ce.yml 5 additions, 0 deletions...eleased/217362-move-manage-stage-usage-activity-to-ce.yml
- changelogs/unreleased/drop-old-non-unique-index-on-mr-metrics.yml 5 additions, 0 deletions...gs/unreleased/drop-old-non-unique-index-on-mr-metrics.yml
- changelogs/unreleased/update-rack-timeout.yml 0 additions, 5 deletionschangelogs/unreleased/update-rack-timeout.yml
- danger/roulette/Dangerfile 12 additions, 8 deletionsdanger/roulette/Dangerfile
- db/migrate/20200707071941_drop_old_non_unique_index_on_mr_metrics.rb 18 additions, 0 deletions...20200707071941_drop_old_non_unique_index_on_mr_metrics.rb
- db/structure.sql 1 addition, 2 deletionsdb/structure.sql
- doc/administration/monitoring/prometheus/gitlab_metrics.md 1 addition, 0 deletionsdoc/administration/monitoring/prometheus/gitlab_metrics.md
- doc/api/import.md 1 addition, 1 deletiondoc/api/import.md
- doc/development/dangerbot.md 11 additions, 3 deletionsdoc/development/dangerbot.md
- doc/development/telemetry/usage_ping.md 12 additions, 0 deletionsdoc/development/telemetry/usage_ping.md
- ee/changelogs/unreleased/217918-follow-up-from-implement-a-switch-to-pause-all-of-the-write-req.yml 5 additions, 0 deletions...from-implement-a-switch-to-pause-all-of-the-write-req.yml
- ee/lib/ee/gitlab/usage_data.rb 2 additions, 18 deletionsee/lib/ee/gitlab/usage_data.rb
- ee/lib/elastic/metrics_update_service.rb 3 additions, 0 deletionsee/lib/elastic/metrics_update_service.rb
- ee/spec/lib/ee/gitlab/usage_data_spec.rb 13 additions, 33 deletionsee/spec/lib/ee/gitlab/usage_data_spec.rb
... | ... | @@ -164,7 +164,6 @@ gem 'diff_match_patch', '~> 0.1.0' |
# Application server | ||
gem 'rack', '~> 2.0.9' | ||
gem 'rack-timeout', '~> 0.5.1' | ||
group :unicorn do | ||
gem 'unicorn', '~> 5.5' | ||
... | ... | @@ -174,6 +173,7 @@ end |
group :puma do | ||
gem 'gitlab-puma', '~> 4.3.3.gitlab.2', require: false | ||
gem 'gitlab-puma_worker_killer', '~> 0.1.1.gitlab.1', require: false | ||
gem 'rack-timeout', require: false | ||
end | ||
# State machine | ||
... | ... |