Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2014-10-06Merge branch 'slack_integration' into 'master'Dmitriy Zaporozhets
Slack integration See merge request !1151
2014-10-06Changes to slack service structure added to changelog.Marin Jankovski
2014-10-06Update docs for task listsVinnie Okada
2014-10-03Implement cross-project Markdown referencesVinnie Okada
Enable linking to commits, merge requests, and issues in other projects by prepending a namespaced project path to the reference.
2014-10-03Add Pushover service integrationSullivan SENECHAL
That introduce select field type for services options.
2014-10-03Upgrade to Font Awesome v4.2Sullivan SENECHAL
2014-10-03Add move to html-pipeline-gitlab to changelogRobert Schilling
2014-10-02Merge branch 'feature/zen_for_gfm' of github.com:Razer6/gitlabhq into ↵Marin Jankovski
Razer6-feature/zen_for_gfm Conflicts: CHANGELOG
2014-10-02Merge branch 'backup_fail_hard' into 'master'Dmitriy Zaporozhets
Fail harder in the backup script See merge request !1143
2014-10-02Apply ZEN mode to all GFM formsRobert Schilling
2014-10-01Fail harder in the backup scriptJacob Vosmaer
This change also shows the output of failed Git commands during the backup.
2014-10-01Merge branch 'fork-via-API' into 'master'Dmitriy Zaporozhets
API: Add support for forking a project via the API This adds an API call to create a fork of a project. Such API "fork button" has been requested by feature requests summing up with 37 votes. The GitLab user has flagged one of them as accepting merge/pull requests for this feature. Motivation: The ability to create a fork is missing in the API. (The API currently only supports adding and removing the "forked" relationship between two existing projects) This feature (create fork thru the API) feature has been requested via two feature requests: 15 votes, 13 comments: to be able to fork a project through the API http://feedback.gitlab.com/forums/176466-general/suggestions/4125380-to-be-able-to-fork-a-project-through-the-api (it was marked as completed in error by referring to the much more special change which allows to add&delete fork information) 22 votes, 3 comments: add a "fork project" API call that acts like the "fork button" http://feedback.gitlab.com/forums/176466-general/suggestions/5820264-add-a-fork-project-api-call-that-acts-like-the The implementation is described in the text of the commit message (click on the "..." field to open it). A comprehensive test suite is added as well: It covers all 5 success / failure modes: 1. Success case 2. Failure if authenticated user has no access the the project to be forked 3. Failure if the forked project already exists in the authenticated user's namespace 4. Failure if the forked project does not exist 5. Failure if not authenticated Documentation for the new API call is added to the project help page: doc/api/projects.md I have 2 additional merge requests in progress, one is based on this feature and extend it, the other is related to querying forks. The merge request that would be directly related is based on a request written comment of one of the feature requests (that was independently also requested in a but entry): The ability to fork a project (thru the API) to a given namespace, eg. a group, in one case, for trainings. As this request does not change code, but only adds a new request API for creating forks, it does not have the capability to break existing code, and as the test spec demonstrates, it works. It allocates the API request POST /projects/fork/:id, the only other API path I'd have thought of would have been POST /projects/:id/fork but that path is already taken by the API for creating a new fork relationship between projects, so POST /projects/fork/:id is the remaining possibility that I could see. See merge request !191
2014-10-01API: Initial support for forking a project via the APIBernhard Kaindl
This change adds POST /projects/fork/:id to the API for forking a project into the namespace of the authenticated user, like the "create fork" link in the GUI does. It also calls the same code. Failure and permission checks (except for conflict) are already implemented and handled in ForkService and the API, so the added code is simple and does not alter anything.
2014-10-01Update changelog for 7.3.2Marin Jankovski
Conflicts: CHANGELOG
2014-09-30Add readme tab to changelog.Marin Jankovski
2014-09-30Merge branch 'api/issues-filter-milestone' of ↵Dmitriy Zaporozhets
https://github.com/jubianchi/gitlabhq into jubianchi-api/issues-filter-milestone Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> Conflicts: CHANGELOG
2014-09-29Prevent notes polling when there are not notesJacob Vosmaer
2014-09-29Merge branch 'backup-uploader'Dmitriy Zaporozhets
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> Conflicts: CHANGELOG
2014-09-29Merge branch 'protect_default_branch_by_default' into 'master'Dmitriy Zaporozhets
Protect default branch by default Fixes #1543 See merge request !1130
2014-09-29Keep tmp/repositories during clean-upJacob Vosmaer
2014-09-29Protect default branch by default.Marin Jankovski
2014-09-29Add backup upload support to the rake taskJacob Vosmaer
2014-09-27Filters issues by milestone via APIjubianchi
2014-09-25Sort projects in search autocomplete by amount of stars. Most popular go firstDmitriy Zaporozhets
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2014-09-24New entries for 7.4.0Dmitriy Zaporozhets
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2014-09-24Add fixes to changelogMarin Jankovski
2014-09-23Fix ref parsing in Gitlab::GitAccessJacob Vosmaer
2014-09-22Support sockets in 'rake gitlab:shell:install'Jacob Vosmaer
2014-09-16Add dormant New Relic gemJacob Vosmaer
The gem can be enabled and configured via environment variables.
2014-09-16Merge branch 'order_mr_api' into 'master'Marin Jankovski
API MR ordering Fixes #1477 See merge request !1076
2014-09-15Merge branch 'redis_socket' into 'master'Dmitriy Zaporozhets
Use sockets to connect to Redis See merge request !1088
2014-09-15Ordering and sorting for MR in api.Marin Jankovski
2014-09-13Merge pull request #7749 from wesgurn/masterDmitriy Zaporozhets
Adding ability to configure webhook timeout via gitlab.yml
2014-09-12Adding ability to configure webhook timeout via gitlab.ymlWes Gurney
2014-09-12Use sockets to connect to RedisJacob Vosmaer
2014-09-12Use the default Unicorn socket backlog value: 1024Jacob Vosmaer
2014-09-11Close Zen mode by ESC, foward/backwardRobert Schilling
2014-09-10added omniauth-shibboleth gem for shibboleth supportMatus Banas
added documentation for shibboleth omniauth provider updated changelog
2014-09-09Prevent 500 error when search wiki for non-existing repoDmitriy Zaporozhets
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2014-09-09Merge branch 'bourne_shell' into 'master'Dmitriy Zaporozhets
Wrap arguments for `[ -z` in double quotes See merge request !1071
2014-09-09Prevent people from using ci since we plan to host ci on /ci later.Sytse Sijbrandij
2014-09-09More entries to CHANGELOGDmitriy Zaporozhets
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2014-09-09Update the CHANGELOG for 7.2.1Jacob Vosmaer
Conflicts: CHANGELOG
2014-09-08Add Pavel Novitskiy to the CHANGELOGJacob Vosmaer
2014-09-04Added annotated tags. Updated tag haml file and call to gitlab-shell. ↵Sean Edge
Updated API for annotated tags. Added tests for API. Strip leading/trailing whitespace from message, if present. Update CHANGELOG.
2014-09-04Merge branch 'api/issues-filter-labels' into 'master'Dmitriy Zaporozhets
API: Filter issues by labels While working on [laboard](https://gitlab.com/jubianchi/laboard) I had some issues with the API : I was not able to filter issues by labels so I had to write some logic to do it on my side. I think it will be useful to have this feature supported by the Gitlab API. I added the filtering logic on `/issues` and `/projects/:id/issues`. The commits are not squashed but I'll do it once everything seems ok to you. See merge request !169
2014-09-04Merge branch 'sha-link' of https://github.com/cirosantilli/gitlabhq into ↵Dmitriy Zaporozhets
cirosantilli-sha-link Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> Conflicts: CHANGELOG
2014-09-04Filters issues by labels via APIjubianchi
2014-09-03Add system hook for ssh key changesLukas Erlacher
Add system hook for ssh key create and destroy Update and fix documentation Update tests
2014-09-01Filters issues by state via APIjubianchi