| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
|\
| |
| |
| |
| | |
Remove vue resource from sidebar service
See merge request gitlab-org/gitlab-ce!32400
|
|/
|
|
| |
This reverts commit af5242ecb682189c5d8276e1ab1ffe5ce844f2e5.
|
|\
| |
| |
| |
| |
| |
| | |
Resolve "Typo in RELEASE_ENDPOINT_REQUIREMETS constant"
Closes #66464
See merge request gitlab-org/gitlab-ce!32468
|
| | |
|
|\ \
| | |
| | |
| | |
| | | |
Remove vue resource from issue
See merge request gitlab-org/gitlab-ce!32421
|
|/ /
| |
| |
| | |
This reverts commit af5242ecb682189c5d8276e1ab1ffe5ce844f2e5.
|
|\ \
| | |
| | |
| | |
| | |
| | |
| | | |
Add new RailsHelpers module for specs
Closes #66688
See merge request gitlab-org/gitlab-ce!32309
|
| | | |
|
| | | |
|
|\ \ \
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Uses spec_helper instead of rails_helper
Closes #66952
See merge request gitlab-org/gitlab-ce!32594
|
|/ / /
| | |
| | |
| | |
| | | |
spec/rails_helper.rb was removed on
1068ec2e9201af3de1fc5ebe9c8d9f7953c89b51
|
|\ \ \
| | | |
| | | |
| | | |
| | | | |
Edit to new rules documentation
See merge request gitlab-org/gitlab-ce!32244
|
|/ / / |
|
|\ \ \
| | | |
| | | |
| | | |
| | | | |
Development docs: how to add Prometheus metrics
See merge request gitlab-org/gitlab-ce!32306
|
|/ / /
| | |
| | |
| | |
| | | |
This documents the various knowledge needed to add new GitLab
self-monitoring Prometheus metrics.
|
|\ \ \
| | | |
| | | |
| | | |
| | | | |
Updated Feature flags doc
See merge request gitlab-org/gitlab-ce!32578
|
|/ / / |
|
|\ \ \
| | | |
| | | |
| | | |
| | | | |
Fixes two bugs with the `package-and-qa-manual:master` and `build-qa-image` jobs
See merge request gitlab-org/gitlab-ce!32584
|
| | | |
| | | |
| | | |
| | | | |
Signed-off-by: Rémy Coutable <remy@rymai.me>
|
|\ \ \ \
| | | | |
| | | | |
| | | | |
| | | | | |
Improve output for yarn integrity check
See merge request gitlab-org/gitlab-ce!32569
|
|/ / / / |
|
|\ \ \ \
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Fix wording on milestone due date today
Closes #62591
See merge request gitlab-org/gitlab-ce!32096
|
| |/ / /
| | | |
| | | |
| | | |
| | | | |
Fix wording on milestone due date, to show today instead of
hours ago or remaining, when milestone is due today.
|
|\ \ \ \
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Remove spec/rails_helper.rb
Closes #66741
See merge request gitlab-org/gitlab-ce!32380
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
rails_helper.rb's only logic was to require
spec_helper.rb.
|
|\ \ \ \ \
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Improve GC_REPORT_BUCKETS granularity
See merge request gitlab-org/gitlab-ce!32586
|
| | | | | | |
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
Remove outdated mail_room check
See merge request gitlab-org/gitlab-ce!32588
|
|/ / / / / / |
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
Clarify limits for needs keyword
See merge request gitlab-org/gitlab-ce!32444
|
|/ / / / / / |
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
Preload routes information in Routable
See merge request gitlab-org/gitlab-ce!32352
|
| |/ / / / /
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
This fixes a high frequency N+1 issue:
`RoutableActions#find_routable!` is used across many controllers to
retrieve e.g. the Project or Namespace by path. The `#find_routable!`
method calls `#ensure_canonical_path` which in turn retrieves
`#full_path` from the given Routable.
This in turn triggers a lookup on `routes`, leading to a high frequency
of these queries:
```sql
SELECT "routes".* FROM "routes" WHERE "routes"."source_id" = $1 AND
"routes"."source_type" = $2 LIMIT $3
```
This is unnecessary as we already join `routes` in
`Routable#find_by_full_path` anyways.
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
Backport documentation for status checking behaviors
See merge request gitlab-org/gitlab-ce!32184
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
Backport documentation from
https://gitlab.com/gitlab-org/gitlab-ee/merge_requests/15580
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
Creates utility parser for the job log
See merge request gitlab-org/gitlab-ce!32555
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
With the new job log json format
we need a parser on the frontend
|
|\ \ \ \ \ \ \ \
| |_|_|_|_|/ / /
|/| | | | | | |
| | | | | | | |
| | | | | | | | |
Make unmocked requests fail in Jest again
See merge request gitlab-org/gitlab-ce!31863
|
| | | | | | | | |
|
|\ \ \ \ \ \ \ \
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | | |
Remove Users.support_bot column
See merge request gitlab-org/gitlab-ce!32554
|
| | |/ / / / / /
| |/| | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
This column is not present in `db/schema.rb` and hence needs to be
removed conditionally.
See https://gitlab.com/gitlab-org/gitlab-ce/issues/66901 for background
|
|\ \ \ \ \ \ \ \
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | | |
Add #environments_cluster_path which will always return nil in CE
See merge request gitlab-org/gitlab-ce!32527
|
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | | |
This method will be overridden in EE
|
|\ \ \ \ \ \ \ \ \
| |_|_|_|_|/ / / /
|/| | | | | | | |
| | | | | | | | |
| | | | | | | | | |
Make sure 'build-qa-image' is created for all pipelines
See merge request gitlab-org/gitlab-ce!32570
|
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | | |
This is needed because in `master`, the `gitlab:assets:compile` is
created, but not the `gitlab:assets:compile pull-cache` job, and the
`needs` keyword cannot take jobs that don't exist, thus we have to
create a dedicated job for `master`, with `needs: ["build-qa-image",
"gitlab:assets:compile"]` instead of `needs: ["build-qa-image",
"gitlab:assets:compile pull-cache"]`.
Signed-off-by: Rémy Coutable <remy@rymai.me>
|
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | | |
This also makes 'package-and-qa-manual' created for 'master' because
it's a valid use-case to run manual QA on 'master'.
Without this change, no pipeline could be created for auto-deploy
branches due to the following error:
The form contains the following error:
package-and-qa-manual: needs 'build-qa-image'
Signed-off-by: Rémy Coutable <remy@rymai.me>
|
|\ \ \ \ \ \ \ \ \
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | | |
Fix cycle analytics seed script
See merge request gitlab-org/gitlab-ce!32536
|
|/ / / / / / / / / |
|
|\ \ \ \ \ \ \ \ \
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | | |
Quarantine flaky dashboard_spec.js
See merge request gitlab-org/gitlab-ce!32574
|