| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
|\
| |
| |
| |
| | |
Fix conflict highlighting
See merge request gitlab-org/gitlab-ce!15463
|
| |
| |
| |
| |
| |
| |
| |
| |
| | |
Conflicts used to take a `Repository` and pass that to
`Gitlab::Highlight.highlight`, which would call `#gitattribute` on the
repository. Now they use a `Gitlab::Git::Repository`, which didn't have that
method defined - but defining it on `Gitlab::Git::Repository` does make it
available on `Repository` through `method_missing`, so we can do that and both
cases will work.
|
|\ \
| | |
| | |
| | |
| | | |
Use axios instead of vue resource - step 1
See merge request gitlab-org/gitlab-ce!15339
|
|/ / |
|
|\ \
| | |
| | |
| | |
| | |
| | |
| | | |
Adds Rubocop rule for line break after guard clause
Closes #18040
See merge request gitlab-org/gitlab-ce!15188
|
| | |
| | |
| | |
| | | |
Adds a rubocop rule (with autocorrect) to ensure line break after guard clauses.
|
|\ \ \
| | | |
| | | |
| | | |
| | | | |
Fix a wrong anchor to job permissions doc
See merge request gitlab-org/gitlab-ce!15478
|
| | | |
| | | |
| | | |
| | | | |
Signed-off-by: Rémy Coutable <remy@rymai.me>
|
|\ \ \ \
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Hide log size in mobile
Closes #40016
See merge request gitlab-org/gitlab-ce!15431
|
|/ / / / |
|
|\ \ \ \
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
'40300-cannot-list-tags-in-a-repository-mirror-when-hashed-storage-in-use' into 'master'
Fix Gitlab::Git::Repository#remote_tags using unexisting variable
Closes #40300
See merge request gitlab-org/gitlab-ce!15466
|
|/ / / / |
|
|\ \ \ \
| |/ / /
|/| | |
| | | |
| | | | |
Document how to troubleshoot internal API calls
See merge request gitlab-org/gitlab-ce!15337
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
[ci skip]
iFoo
|
|\ \ \ \
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Update CycleAnalytics seed to account for multiple issue assignees
Closes #40245
See merge request gitlab-org/gitlab-ce!15435
|
| | | | | |
|
|\ \ \ \ \
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Remove executable bit from images for docs lint
See merge request gitlab-org/gitlab-ce!15468
|
| | |/ / /
| |/| | |
| | | | |
| | | | | |
This was causing a docs lint failure in https://gitlab.com/gitlab-org/gitlab-ee/-/jobs/40901316.
|
|\ \ \ \ \
| |/ / / /
|/| | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Document when Groups API `/subgroups` endpoint introduced
Closes #40247
See merge request gitlab-org/gitlab-ce!15453
|
| | | | | |
|
|\ \ \ \ \
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Rollback to a safer place to stop
See merge request gitlab-org/gitlab-ce!15465
|
|/ / / / / |
|
|\ \ \ \ \
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Fix project transfer with hashed-storage attachments
Closes gitlab-ee#4056
See merge request gitlab-org/gitlab-ce!15457
|
| | | | | | |
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
Restrict update column in batches for large tables
See merge request gitlab-org/gitlab-ce!15458
|
| | | | | | | |
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
add_column_with_default is implemented in terms of update_column_in_batches, but
update_column_in_batches can be used independently. Neither of these should be
used on the specified large tables, because they will cause issues on large
instances like GitLab.com.
This also ignores the cop for all existing migrations, renaming
AddColumnWithDefaultToLargeTable where appropriate.
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
Improved the design of the changed files dropdown
Closes #36687
See merge request gitlab-org/gitlab-ce!15367
|
| | | | | | | | |
|
| | | | | | | | |
|
| | | | | | | | |
|
| | | | | | | | |
|
| | |/ / / / /
| |/| | | | |
| | | | | | |
| | | | | | | |
Closes #36687
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
Fix QA test subject address by configuring capybara
Closes gitlab-qa#113
See merge request gitlab-org/gitlab-ce!15446
|
| | | | | | | | |
|
|\ \ \ \ \ \ \ \
| |_|_|_|_|_|_|/
|/| | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
Remove the selects when counting the last page
Closes #40266
See merge request gitlab-org/gitlab-ce!15456
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
The last page of the first collection is only loaded into memory when
it is being viewed. If it isn't loaded into memory, the `#size` call
triggers a count query.
This `#count` would generate an invalid query if our custom preloaded
counts are included by adding a separate `as count_column` alias on
top of the count aliases. Removing the selects in this case will make
sure a valid `COUNT(*)` is generated.
|
|\ \ \ \ \ \ \ \
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | | |
Add request rate limits
Closes #30053
See merge request gitlab-org/gitlab-ce!14708
|
| | | | | | | | | |
|
| | | | | | | | | |
|
| | | | | | | | | |
|
| | | | | | | | | |
|
| | | | | | | | | |
|
| | | | | | | | | |
|
| | | | | | | | | |
|
| | | | | | | | | |
|
| | | | | | | | | |
|
| | | | | | | | | |
|
| | | | | | | | | |
|