| Commit message (Collapse) | Author | Age | Files | Lines |
|\
| |
| |
| |
| | |
Seed abuse reports
See merge request !9234
|
| |
| |
| |
| |
| |
| |
| |
| |
| | |
```
rake db:seed_fu FILTER=abuse_reports
```
Thanks to @stanhu,
https://gitlab.com/gitlab-org/gitlab-ce/issues/28059#note_23325328
|
|\ \
| | |
| | |
| | | |
# Conflicts:
# db/schema.rb
|
| |\ \
| | |/
| |/|
| | |
| | |
| | |
| | | |
Disable invalid service templates
Closes #25112
See merge request !8850
|
| | | |
|
| | | |
|
| | | |
|
| | |
| | |
| | |
| | |
| | | |
Feedback:
https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/8987#note_22938402
|
| | |
| | |
| | |
| | | |
This reverts commit f2ed7cbc9b36b6ad9bcc714b271e98ead756b816.
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
This way we could reuse this pool for other migrations
Feedback:
* https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/8987#note_22923350
* https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/8987#note_22923365
|
| | | |
|
| | | |
|
| | |
| | |
| | |
| | |
| | | |
by ourselves so that even if the setting has 1 connection
we could still use more connections.
|
| | | |
|
| |/
| |
| |
| |
| | |
Note that we no longer generate this by default.
This is for clearing legacy default data.
|
|/ |
|
|\
| |
| |
| |
| | |
Add option to receive email notifications about your own activity
See merge request !8836
|
| | |
|
|\ \
| | |
| | |
| | |
| | |
| | |
| | | |
Add indices to improve loading of labels page
Closes #25413
See merge request !9121
|
| | | |
|
|/ /
| |
| |
| |
| |
| |
| | |
This adds a Rubocop rule to enforce the use of
add_concurrent_foreign_key instead of the regular add_foreign_key
method. This cop has been disabled for existing migrations so we don't
need to change those.
|
| |
| |
| |
| |
| |
| | |
https://gitlab.com/gitlab-org/gitlab-ce/pipelines.json makes
a number of unindexed slow queries. This index should
speed things up.
|
| | |
|
| | |
|
| |
| |
| |
| | |
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
|
| | |
|
| |
| |
| |
| |
| |
| |
| | |
We can't properly use foreign keys on columns that are configured for
polymorphic associations which has disadvantages related to data
integrity and storage. Given we only use time tracking for Issues and
Merge Requests we're moving to the usage of regular associations.
|
|\ \
| | |
| | |
| | |
| | |
| | |
| | | |
Use reCaptcha when an issue identified as spam
Closes #21518
See merge request !8846
|
| | | |
|
|\ \ \
| |/ /
| | |
| | | |
# Conflicts:
# db/schema.rb
|
| | |
| | |
| | |
| | |
| | | |
Store the value in application settings.
Expose the value to Workhorse.
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
When loading pages that display the number of open issues,
the backend runs a query such as:
```sql
SELECT "labels"."id" FROM "labels" WHERE "labels"."type" IN ('ProjectLabel') AND "labels"."project_id" = 1000
```
This results in an entire scan of the `labels` table. To optimize performance,
add the appropriate index to the table.
Closes #27676
|
| | |
| | |
| | |
| | | |
Changed how components are added in objects
|
| | | |
|
| | | |
|
|\ \ \
| |/ / |
|
| |\ \
| | | |
| | | |
| | | |
| | | | |
replace `find_with_namespace` with `find_by_full_path`
See merge request !8949
|
| | | |
| | | |
| | | |
| | | | |
add complete changelog for !8949
|
| |\ \ \
| | |_|/
| |/| |
| | | |
| | | |
| | | |
| | | | |
Add ability to define a coverage regex in the .gitlab-ci.yml
Closes #20428
See merge request !7447
|
| | | |
| | | |
| | | |
| | | | |
* Instead of using the proposed `coverage` key, this expects `coverage_regex`
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | |
| | | |
| | | |
| | | | |
private_key
|
| | | | |
|
|/ / /
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
- The pages are created when build artifacts for `pages` job are uploaded
- Pages serve the content under: http://group.pages.domain.com/project
- Pages can be used to serve the group page, special project named as host: group.pages.domain.com
- User can provide own 403 and 404 error pages by creating 403.html and 404.html in group page project
- Pages can be explicitly removed from the project by clicking Remove Pages in Project Settings
- The size of pages is limited by Application Setting: max pages size, which limits the maximum size of unpacked archive (default: 100MB)
- The public/ is extracted from artifacts and content is served as static pages
- Pages asynchronous worker use `dd` to limit the unpacked tar size
- Pages needs to be explicitly enabled and domain needs to be specified in gitlab.yml
- Pages are part of backups
- Pages notify the deployment status using Commit Status API
- Pages use a new sidekiq queue: pages
- Pages use a separate nginx config which needs to be explicitly added
|
|\ \ \
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Avoid repeated dashes in $CI_ENVIRONMENT_SLUG
Closes #26852
See merge request !8638
|
| | | | |
|
| |_|/
|/| |
| | |
| | |
| | |
| | |
| | |
| | | |
As described in #27443, the `project_authorizations` table is often used to retrieve
all team members of this project. This can lead to a number of slow queries impacting
load times. This MR adds an index for just `project_id`.
Closes #27443
|
|\ \ \
| |_|/
|/| |
| | |
| | |
| | |
| | | |
Fix race conditions for AuthorizedProjectsWorker
Closes #26194 and #26310
See merge request !8701
|