summaryrefslogtreecommitdiff
path: root/GITLAB_WORKHORSE_VERSION
Commit message (Collapse)AuthorAgeFilesLines
* Add latest changes from gitlab-org/gitlab@13-10-stable-eev13.10.0-rc40GitLab Bot2021-03-161-1/+1
|
* Add latest changes from gitlab-org/security/gitlab@13-9-stable-eeGitLab Bot2021-03-031-1/+1
|
* Add latest changes from gitlab-org/gitlab@13-9-stable-eev13.9.0-rc42GitLab Bot2021-02-181-1/+1
|
* Add latest changes from gitlab-org/gitlab@13-8-stable-eev13.8.0-rc42Robert Speicher2021-01-201-1/+1
|
* Add latest changes from gitlab-org/security/gitlab@13-7-stable-eeGitLab Bot2021-01-061-1/+1
|
* Add latest changes from gitlab-org/gitlab@13-7-stable-eev13.7.0-rc42GitLab Bot2020-12-171-1/+1
|
* Add latest changes from gitlab-org/gitlab@13-6-stable-eev13.6.0-rc42GitLab Bot2020-11-191-1/+1
|
* Add latest changes from gitlab-org/gitlab@13-5-stable-eev13.5.0-rc42GitLab Bot2020-10-211-1/+1
|
* Add latest changes from gitlab-org/gitlab@13-4-stable-eeGitLab Bot2020-09-191-1/+1
|
* Add latest changes from gitlab-org/gitlab@13-3-stable-eeGitLab Bot2020-08-201-1/+1
|
* Add latest changes from gitlab-org/gitlab@13-2-stable-eeGitLab Bot2020-07-201-1/+1
|
* Add latest changes from gitlab-org/gitlab@13-1-stable-eeGitLab Bot2020-06-181-1/+1
|
* Add latest changes from gitlab-org/gitlab@13-0-stable-eeGitLab Bot2020-06-041-1/+1
|
* Add latest changes from gitlab-org/security/gitlab@13-0-stable-eeGitLab Bot2020-05-261-1/+1
|
* Add latest changes from gitlab-org/gitlab@13-0-stable-eeGitLab Bot2020-05-201-1/+1
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2020-04-151-1/+1
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2020-04-061-1/+1
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2020-03-311-1/+1
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2020-03-261-1/+1
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2020-03-231-1/+1
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2020-03-191-1/+1
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2020-03-131-1/+1
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2020-03-031-1/+1
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2020-02-241-1/+1
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2020-02-191-1/+1
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2020-02-111-1/+1
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2020-01-301-1/+1
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2020-01-101-1/+1
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2019-12-191-1/+1
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2019-12-101-1/+1
|
* Update Workhorse and Gitaly to fix a security issueNick Thomas2019-11-251-1/+1
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2019-10-111-1/+1
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2019-10-021-1/+1
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2019-09-251-1/+1
|
* Update GitLab Workhorse to v8.10.0Nick Thomas2019-09-011-1/+1
|
* Add direct upload support for personal snippetsJan Provaznik2019-08-231-1/+1
|
* Bump GitLab Workhorse to v8.8.0Stan Hu2019-08-091-1/+1
| | | | | | | This sanitizes some log messages to be consistent with CE. Full list of changes: https://gitlab.com/gitlab-org/gitlab-workhorse/blob/master/CHANGELOG
* Update Workhorse to v8.7.0Nick Thomas2019-04-241-1/+1
|
* Update GitLab Workhorse to v8.6.0Francisco Javier López2019-04-111-1/+1
|
* Update GitLab Workhorse to v8.5.1Nick Thomas2019-04-101-1/+1
|
* Renamed terminal_specification to channel_specificationFrancisco Javier López2019-04-041-1/+1
| | | | | | We're moving from using terminology related to terminals when we refer to Websockets connections in Workhorse. It's more appropiate a concept like channel.
* Update gitaly and workhorse version to stablePatrick Bajao2019-04-021-1/+1
|
* Download a folder from repositoryPatrick Bajao2019-04-021-1/+1
| | | | | | | | Add `GetArchiveRequest` to git-archive params. Modifies `Git::Repository#archive_metadata` to append `path` to `ArchivePrefix` so it'll not hit the cache of repository archive when it already exists.
* Rake task for removing exif from uploadsJan Provaznik2019-04-021-1/+1
| | | | | Adds a rake task which can be used for removing EXIF data from existing uploads.
* Update Workhorse to v8.3.1Nick Thomas2019-02-131-1/+1
|
* Update Workhorse to v8.3.0Nick Thomas2019-02-061-1/+1
|
* Update Workhorse to v8.2.0Nick Thomas2019-02-041-1/+1
|
* Verify that LFS upload requests are genuineNick Thomas2019-01-311-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | LFS uploads are handled in concert by workhorse and rails. In normal use, workhorse: * Authorizes the request with rails (upload_authorize) * Handles the upload of the file to a tempfile - disk or object storage * Validates the file size and contents * Hands off to rails to complete the upload (upload_finalize) In `upload_finalize`, the LFS object is linked to the project. As LFS objects are deduplicated across all projects, it may already exist. If not, the temporary file is copied to the correct place, and will be used by all future LFS objects with the same OID. Workhorse uses the Content-Type of the request to decide to follow this routine, as the URLs are ambiguous. If the Content-Type is anything but "application/octet-stream", the request is proxied directly to rails, on the assumption that this is a normal file edit request. If it's an actual LFS request with a different content-type, however, it is routed to the Rails `upload_finalize` action, which treats it as an LFS upload just as it would a workhorse-modified request. The outcome is that users can upload LFS objects that don't match the declared size or OID. They can also create links to LFS objects they don't really own, allowing them to read the contents of files if they know just the size or OID. We can close this hole by requiring requests to `upload_finalize` to be sourced from Workhorse. The mechanism to do this already exists.
* Upgrade gitlab-workhorse to 8.1.0Andrew Newdigate2019-01-221-1/+1
|
* Update GitLab Workhorse to v8.0.0Nick Thomas2018-12-111-1/+1
|