| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
| |
With the advent of the new chart docs, we should deprecate the old ones
and redirect them to the new ones.
|
|\
| |
| |
| |
| | |
Add merge request pipeline flag to pipeline entity
See merge request gitlab-org/gitlab-ce!25846
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
Add spec
Fix
Fix
Add changelog
Drop attached
Remove attached
Update changelog
ok
|
|\ \
| | |
| | |
| | |
| | | |
CE port of "e2e test for creating a project from instance template"
See merge request gitlab-org/gitlab-ce!25760
|
| | | |
|
| | | |
|
|\ \ \
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Allow modifying squash commit message for fast-forward only merge method
Closes #48324, #58805, and #58631
See merge request gitlab-org/gitlab-ce!26017
|
|/ / /
| | |
| | |
| | | |
- fixed tests for edit components
|
|\ \ \
| | | |
| | | |
| | | |
| | | | |
Resolve differences in Webpack config between CE and EE
See merge request gitlab-org/gitlab-ce!26100
|
| | | | |
|
|\ \ \ \
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Use project name and ID in Review App environment URLs instead of the project path slug
Closes #52990
See merge request gitlab-org/gitlab-ce!25990
|
| | | | | |
|
|\ \ \ \ \
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Fix some 404ing links
See merge request gitlab-org/gitlab-ce!25789
|
|/ / / / / |
|
|\ \ \ \ \
| |_|_|_|/
|/| | | |
| | | | |
| | | | | |
Update recaptcha gem from 3.x to 4.11
See merge request gitlab-org/gitlab-ce!25921
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
In recaptcha 4.0.0 there was an API change:
- `public_key` -> `site_key`
- `private_key` -> secret_key
See:
https://github.com/ambethia/recaptcha/blob/master/CHANGELOG.md
|
| | | | | |
|
|\ \ \ \ \
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Allow filtering labels by a single character
Closes #58795
See merge request gitlab-org/gitlab-ce!26012
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
When we use Gitlab::SQL::Pattern, this typically relates to a trigram
index. As the 'tri' indicates, we need at least three characters to be
able to use that index.
Labels don't have a trigram index, because we never allow you to search
for them globally: it's always in the context of a project or a
group. In that context, it's just as fast to search for a single
character (in general) because there is already a pretty specific index
being used.
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
Docs: Bring Javascript Style Guide in line with docs standards
See merge request gitlab-org/gitlab-ce!25026
|
|/ / / / / / |
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
Resolve "Remove jquery-atwho-rails gem"
Closes #58876
See merge request gitlab-org/gitlab-ce!26058
|
|/ / / / / /
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Remove references to the vendored copies of At.js and jquery.carat
as well as the legacy rails wrapper gem.
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
Refactor all_pipelines in Merge request in order to support all pipelines for merge request
See merge request gitlab-org/gitlab-ce!25676
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
Make it sane
Include merge ref head
Fix union
Improve a bit
Add spec
remove
add spec
Add changelog
fix coding offence
Apply suggestion to spec/models/merge_request_spec.rb
ok
ok
Fix
Fix spec
Fix spec
fix
Simplify the things
Memoize
OK
a
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
Fix 500 error caused by CODEOWNERS with no matches
Closes gitlab-ee#10282
See merge request gitlab-org/gitlab-ce!26072
|
| | | | | | | | |
|
| | |_|_|/ / /
| |/| | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
Including a CODEOWNERS file with lines without any matching username or
e-mail regular expressions would cause an Error 500. Don't attempt a
database query if there is nothing to query.
Closes https://gitlab.com/gitlab-org/gitlab-ee/issues/10282
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
Removes the CDN loading for emojis.json
See merge request gitlab-org/gitlab-ce!26102
|
|/ / / / / / / |
|
|\ \ \ \ \ \ \
| |_|_|_|_|/ /
|/| | | | | |
| | | | | | |
| | | | | | | |
Update group policy to reflect all the requirements
See merge request gitlab-org/gitlab-ce!25854
|
|/ / / / / / |
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
Ignore user status emoji in assertion
Closes gitlab-org/quality/staging#45
See merge request gitlab-org/gitlab-ce!26085
|
| | | | | | | |
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
Filter Jira shared secret from logs
See merge request gitlab-org/gitlab-ce!26077
|
| |/ / / / / / |
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
Improve precision of group docs
Closes #58635
See merge request gitlab-org/gitlab-ce!25950
|
|/ / / / / / / |
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
Reduce dangerbot message to the essentials
Closes #58231
See merge request gitlab-org/gitlab-ce!25585
|
|/ / / / / / / |
|
|\ \ \ \ \ \ \
| |_|_|/ / / /
|/| | | | | |
| | | | | | |
| | | | | | | |
Remove icon in activity only message on smaller screen widths
See merge request gitlab-org/gitlab-ce!26032
|
| | | | | | | |
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
Removes EE differences for environments_app
Closes gitlab-ee#10079
See merge request gitlab-org/gitlab-ce!26030
|
| | | | | | | | |
|
|\ \ \ \ \ \ \ \
| |_|_|/ / / / /
|/| | | | | | |
| | | | | | | |
| | | | | | | | |
Update spacers to increment 1 unit at a time
See merge request gitlab-org/gitlab-ce!26033
|
| | | | | | | | |
|
|\ \ \ \ \ \ \ \
| |_|_|_|/ / / /
|/| | | | | | |
| | | | | | | |
| | | | | | | | |
Refactor AutoDevOps test to one test with two expectations
See merge request gitlab-org/gitlab-ce!25836
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
The test was previously split into two specs
Having one spec with shared functionality seems
more efficient
Add job checks before the second push is made
Revert "Add job checks before the second push is made"
This reverts commit 64be444cd9d00f2f36eef6dd8a57b464bddbc4ef.
|
|\ \ \ \ \ \ \ \
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | | |
Add table entries from EE docs
See merge request gitlab-org/gitlab-ce!25995
|
|/ / / / / / / / |
|