| Commit message (Collapse) | Author | Age | Files | Lines |
|\
| |
| |
| |
| |
| |
| | |
Delete container repository tags outside of transaction
Closes #51380
See merge request gitlab-org/gitlab-ce!21679
|
| | |
|
|\ \
| | |
| | |
| | |
| | | |
Fix rubocop Style/ZeroLengthPredicate
See merge request gitlab-org/gitlab-ce!21793
|
| | | |
|
| |/
|/| |
|
|\ \
| | |
| | |
| | |
| | | |
Remove EE-specific lines from Plan concerns
See merge request gitlab-org/gitlab-ce!21448
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | |
| | |
| | |
| | |
| | |
| | | |
This refactors the DashboardGroupMilestone model so that it no
longer uses the MilestoneFinder, instead using methods defined
on the Milestone model directly.
|
|\ \ \
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Respect the user commit email in more places
Closes #51564
See merge request gitlab-org/gitlab-ce!21773
|
| | | | |
|
| | | | |
|
|\ \ \ \
| |_|_|/
|/| | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
'45754-open-issues-from-archived-project-listed-in-group-issue-board' into 'master'
Resolve "Open issues from archived project listed in group issue board"
Closes #45754
See merge request gitlab-org/gitlab-ce!21721
|
| | | |
| | | |
| | | |
| | | | |
Pass the 'non_archived' flag to finder methods
|
|\ \ \ \
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Return a default commit email if migration has not completed
Closes #51530
See merge request gitlab-org/gitlab-ce!21790
|
| |/ / /
| | | |
| | | |
| | | | |
Closes https://gitlab.com/gitlab-org/gitlab-ce/issues/51530
|
|\ \ \ \
| |_|/ /
|/| | |
| | | |
| | | |
| | | |
| | | | |
Replace direct use of Gitlab::SQL::Union with a "from_union" method
Closes #51307
See merge request gitlab-org/gitlab-ce!21672
|
| | |/
| |/|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
This commit adds the module `FromUnion`, which provides the class method
`from_union`. This simplifies the process of selecting data from the
result of a UNION, and reduces the likelihood of making mistakes. As a
result, instead of this:
union = Gitlab::SQL::Union.new([foo, bar])
Foo.from("(#{union.to_sql}) #{Foo.table_name}")
We can now write this instead:
Foo.from_union([foo, bar])
This commit also includes some changes to make this new setup work
properly. For example, a bug in Rails 4
(https://github.com/rails/rails/issues/24193) would break the use of
`from("sub-query-here").includes(:relation)` in certain cases. There was
also a CI query which appeared to repeat a lot of conditions from an
outer query on an inner query, which isn't necessary.
Finally, we include a RuboCop cop to ensure developers use this new
module, instead of using Gitlab::SQL::Union directly.
Fixes https://gitlab.com/gitlab-org/gitlab-ce/issues/51307
|
|\ \ \
| |/ /
|/| |
| | |
| | |
| | |
| | | |
Fix double title in merge request chat messages
Closes #44586
See merge request gitlab-org/gitlab-ce!21670
|
| | | |
|
| | | |
|
|\ \ \
| |_|/
|/| |
| | |
| | |
| | |
| | | |
Resolve "Send deployment information in job API"
Closes #50460
See merge request gitlab-org/gitlab-ce!21307
|
| | |
| | |
| | |
| | | |
closes https://gitlab.com/gitlab-org/gitlab-ce/issues/50460
|
|\ \ \
| | | |
| | | |
| | | |
| | | | |
CE: Properly implement prepending for Concern
See merge request gitlab-org/gitlab-ce!21444
|
| | |/
| |/|
| | |
| | |
| | |
| | | |
This is a mess... Using prepend will give a different ancestors
chain we're not expecting. To fix this we'll need to know what
exactly methods we want to use in each classes using this module.
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
In https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/19625 some
changes were introduced that do not meet our abstraction reuse rules.
This commit cleans up some of these changes so the requirements are met.
Most notably, sorting of the runners in Admin::RunnersFinder has been
delegated to Ci::Runner.order_by, similar to how we order data in
models that include the Sortable module. If we need more sort orders in
the future we can include Sortable and have Ci::Runner.order_by call
`super` to delegate to Sortable.order_by.
|
| | |
| | |
| | |
| | | |
commit using"
|
|\ \ \
| | | |
| | | |
| | | |
| | | | |
Revert "Merge branch 'dz-add-project-id-to-jupyter' into 'master'"
See merge request gitlab-org/gitlab-ce!21722
|
| | |/
| |/|
| | | |
This reverts merge request !21341
|
|\ \ \
| | | |
| | | |
| | | |
| | | | |
Feature: State filter for admin runners view
See merge request gitlab-org/gitlab-ce!19625
|
| | | | |
|
| | | | |
|
| | | | |
|
| |/ /
|/| | |
|
|\ \ \
| | | |
| | | |
| | | |
| | | | |
Add RuboCop cops to enforce code reusing rules
See merge request gitlab-org/gitlab-ce!21391
|
| | |/
| |/|
| | |
| | |
| | | |
This whitelists all existing offenses for the various CodeReuse cops, of
which most are triggered by the CodeReuse/ActiveRecord cop.
|
|\ \ \
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
'42861-move-include-external-files-in-gitlab-ci-yml-from-starter-to-libre' into 'master'
Resolve "Move "include external files in .gitlab-ci.yml" from Starter to Libre"
Closes #42861
See merge request gitlab-org/gitlab-ce!21603
|
| | | | |
|
| | | |
| | | |
| | | |
| | | | |
CE mirror of c4578b951e331fe8c75cd4f948ce74cec6587bad
|
| | | |
| | | |
| | | |
| | | | |
CE mirror of 4f17c7b2c30188302e6a73421acbf5a09fb2c823
|
| | | |
| | | |
| | | |
| | | | |
CE mirror of 17de13ada1a98da060802c55889489a512183cd1
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
project
CE mirror of 03c6094997023d9c8875ced421a6c9ef39a4af44
|
| | | |
| | | |
| | | |
| | | | |
CE mirror of a10b777f8cb1902bba3964a4cbad2b1dd6bce785
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Adding extra whitespace in the DSN could prevent the server from
starting due to InvalidURIErrors in sentry-raven.
Closes https://gitlab.com/gitlab-org/gitlab-ce/issues/49621
|
|\ \ \ \
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Remove Rugged and shell code from Gitlab::Git
Closes gitaly#1124
See merge request gitlab-org/gitlab-ce!21488
|
| | | | | |
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Create new entity called TriggerVariablesEnitity for trigger variables,
to aid reuseablity in the future.
Update JSON schema to include trigger information in the response.
Refactor rspec tests a bit to reduce duplication and for the `context`
to make sense.
closes https://gitlab.com/gitlab-org/gitlab-ce/issues/50989
|
|\ \ \ \ \
| |/ / / /
|/| | | |
| | | | |
| | | | | |
Add GitLab project id to jupyter config installed via cluster apps
See merge request gitlab-org/gitlab-ce!21341
|