| Commit message (Collapse) | Author | Age | Files | Lines |
... | |
|\ \ \
| | | |
| | | |
| | | |
| | | | |
Backport 10.3.4 security fixes into master
See merge request gitlab-org/gitlab-ce!16509
|
| |/ /
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
'security-10-3'
[10.3] Migrate `can_push` column from `keys` to `deploy_keys_project`
See merge request gitlab/gitlabhq!2276
(cherry picked from commit f6ca52d31bac350a23938e0aebf717c767b4710c)
1f2bd3c0 Backport to 10.3
|
|/ /
| |
| |
| |
| | |
Adds sorting to deployments API through the `order_by` and sort
`fields`.
|
| |
| |
| |
| | |
Enables project milestone deletion via DELETE /projects/:id/milestones/:milestone_id
|
| | |
|
|\ \
| | |
| | |
| | |
| | | |
Fix external links in Snippets API documentation
See merge request gitlab-org/gitlab-ce!16385
|
| | | |
|
|\ \ \
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Remove soft removals related code
Closes #37447
See merge request gitlab-org/gitlab-ce!15789
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
This removes all usage of soft removals except for the "pending delete"
system implemented for projects. This in turn simplifies all the query
plans of the models that used soft removals. Since we don't really use
soft removals for anything useful there's no point in keeping it around.
This _does_ mean that hard removals of issues (which only admins can do
if I'm not mistaken) can influence the "iid" values, but that code is
broken to begin with. More on this (and how to fix it) can be found in
https://gitlab.com/gitlab-org/gitlab-ce/issues/31114.
Fixes https://gitlab.com/gitlab-org/gitlab-ce/issues/37447
|
|\ \ \ \
| | | | |
| | | | |
| | | | |
| | | | | |
apply documentation changes from EE to CE
See merge request gitlab-org/gitlab-ce!16381
|
| | |/ /
| |/| | |
|
|\ \ \ \
| |/ / /
|/| | |
| | | |
| | | |
| | | |
| | | | |
Add `pipelines` endpoint to merge requests API
Closes #39214
See merge request gitlab-org/gitlab-ce!15454
|
| | | | |
|
| | | | |
|
|\ \ \ \
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Specifies the accepted refs for downloading an archive via the API
Closes #19843
See merge request gitlab-org/gitlab-ce!16222
|
| | |_|/
| |/| | |
|
| |_|/
|/| | |
|
| | | |
|
|\ \ \
| | | |
| | | |
| | | |
| | | | |
Expose project_id on /api/v4/pages/domains
See merge request gitlab-org/gitlab-ce!16200
|
| |/ / |
|
|\ \ \
| | | |
| | | |
| | | |
| | | | |
[EE-backport] Add group boards API endpoint
See merge request gitlab-org/gitlab-ce!16194
|
| | | | |
|
| |/ / |
|
|\ \ \
| | | |
| | | |
| | | |
| | | | |
Update settings.md
See merge request gitlab-org/gitlab-ce!16233
|
| |/ / |
|
|\ \ \
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Add online attribute to runner api entity
Closes #25774
See merge request gitlab-org/gitlab-ce!11750
|
| | | | |
|
| |/ / |
|
|/ /
| |
| |
| |
| |
| | |
States this service was deprecated on 10.3 and his behavior depends on
the kubernetes service status. Also includes a link for the release post
for more information.
|
| | |
|
| | |
|
| | |
|
| | |
|
| |
| |
| |
| |
| | |
+ Add support for the new separate channel and events settings
* Dry up chat notifications in the service properties definitions
|
|\ \
| | |
| | |
| | |
| | |
| | |
| | | |
Add new last_commit_id param for create commit endpoint
Closes #38356
See merge request gitlab-org/gitlab-ce!15922
|
| | |
| | |
| | |
| | |
| | |
| | | |
- Apply some refactoring for code reuse
- Add file status validation for Files::DeleteService
- Write additional specs
|
| |/
| |
| |
| |
| |
| | |
When commiting multiple files we're now checking if any of those files
has been modified by another commit and we're rejecting the new commit
in this case.
|
|/ |
|
|\
| |
| |
| |
| | |
fix formatting of parameters for new group and transfer project to group
See merge request gitlab-org/gitlab-ce!15822
|
| | |
|
| | |
|
| | |
|
|\ \
| | |
| | |
| | |
| | |
| | |
| | | |
Adds ordering to projects contributors in API
Closes #13695
See merge request gitlab-org/gitlab-ce!15469
|
| |/
| |
| |
| |
| |
| |
| | |
Allows ordering in GET api/v4/projects/:project_id/repository/contributors
through `order_by` and `sort` params.
The available `order_by` options are: name|email|commits.
The available `sort` options are: asc|desc.
|
|\ \
| |/
|/|
| |
| | |
Document how to remove assignees, labels, and milestones form the issue and MRs API
See merge request gitlab-org/gitlab-ce!15664
|
| | |
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
Moving the check out of the general requests, makes sure we don't have
any slowdown in the regular requests.
To keep the process performing this checks small, the check is still
performed inside a unicorn. But that is called from a process running
on the same server.
Because the checks are now done outside normal request, we can have a
simpler failure strategy:
The check is now performed in the background every
`circuitbreaker_check_interval`. Failures are logged in redis. The
failures are reset when the check succeeds. Per check we will try
`circuitbreaker_access_retries` times within
`circuitbreaker_storage_timeout` seconds.
When the number of failures exceeds
`circuitbreaker_failure_count_threshold`, we will block access to the
storage.
After `failure_reset_time` of no checks, we will clear the stored
failures. This could happen when the process that performs the checks
is not running.
|
|/
|
|
|
| |
In EE we now allow individual users/groups to be set on POST, which required some refactoring.
See https://gitlab.com/gitlab-org/gitlab-ee/merge_requests/3516
|
| |
|
|\
| |
| |
| |
| |
| |
| | |
Add new API endpoint - list jobs of a specified runner
Closes #39699
See merge request gitlab-org/gitlab-ce!15432
|