summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Merge branch 'fix-build-status-caching' into 'master' Dmitriy Zaporozhets2016-01-112-5/+9
|\ | | | | | | | | | | | | | | | | Fix caching issue where build status was not updating in project dashboard The project dashboard page would show a stale build status since the caching key did not depend on it. Fix by adding the commit status if CI is applicable. Closes #3268 See merge request !2353
| * Fix caching issue where build status was not updating in project dashboardStan Hu2016-01-082-5/+9
| | | | | | | | Closes #3268
* | Merge branch 'load-autocomplete-when-needed' into 'master' Dmitriy Zaporozhets2016-01-112-12/+15
|\ \ | | | | | | | | | | | | | | | | | | Only load autocomplete data when actually needed See merge request !2365
| * | Only load autocomplete data when actually neededYorick Peterse2016-01-112-12/+15
| | | | | | | | | | | | | | | Previously this would result in autocomplete data being loaded for every page (e.g. the page showing all Git branches of a project).
* | | Merge branch 'fix-build-page-typo' into 'master' Kamil Trzciński2016-01-111-1/+1
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fix typo in build page of projects The column containing links to the builds is named Runner but actually contains the Build. See merge request !2347
| * | | Fix typo in build page of projectsSteffen Köhler2016-01-101-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | The column containing links to the builds is named Runner but actually contains the Build ID. [ci skip]
* | | | Merge branch 'doc-update' into 'master' Achilleas Pipinellis2016-01-111-2/+3
|\ \ \ \ | |_|/ / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | Update docs for shared runner default settings GitLab 8.2 updated shared runners to default to `ENABLED` on all projects. Fixes #5993 See merge request !2358
| * | | Update docs for shared runner default settingsLuke Waite2016-01-101-2/+3
| | | | | | | | | | | | | | | | Fixes #5993
* | | | Merge branch 'autocomplete-on-load' into 'master' Dmitriy Zaporozhets2016-01-111-13/+12
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Load autocomplete data when loading an issue page See merge request !2312
| * | | | Load autocomplete data when loading an issue pageautocomplete-on-loadYorick Peterse2016-01-081-13/+12
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This ensures the dropdown is fully available the moment a user starts typing out a username, issue ID, etc. While this won't speed up loading the autocomplete data itself it should at least make it less annoying for the user.
* | | | | Merge branch 'new-branch-position-fix' into 'master' Dmitriy Zaporozhets2016-01-112-2/+7
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | fixes new branch button positioning, when visible and not visible container Fixes #5893 #5893 was not completely fixed. If a new branch was pushed the container is in correct position but if no container existed the position was incorrect. This MR fixes that. See merge request !2348
| * | | | | fixes new branch button positioning, when visible and not visible containernew-branch-position-fixJacob Schatz2016-01-082-2/+7
| | | | | |
* | | | | | Merge branch 'add-pencil-icon-to-group-page' into 'master' Dmitriy Zaporozhets2016-01-111-3/+6
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add pencil icon to edit group settings Move icons to upper-right corner of group page Before: ![image](/uploads/6694c33eae6e10a4e21efef465a07114/image.png) After: ![image](/uploads/0c17c2cf89fc0fde4344911b30f2635c/image.png) Closes #6038 See merge request !2361
| * | | | | | Check for current userStan Hu2016-01-101-1/+2
| | | | | | |
| * | | | | | Add pencil icon to edit group settingsStan Hu2016-01-101-3/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Move icons to upper-right corner of group page Closes #6038
* | | | | | | Merge branch 'fix-duplicate-branch-activity' of ↵Dmitriy Zaporozhets2016-01-113-2/+1
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | https://gitlab.com/stanhu/gitlab-ce
| * | | | | | | Fix duplicated branch creation/deletion events when using Web UIStan Hu2016-01-083-2/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | When deleting a branch, this is what was happening: 1. DeleteBranchService calls EventCreateService and creates an event. 2. The call to repository.rm_branch triggers the GitHooksService. 3. This, in turn, calls GitPushService and then calls EventCreateService again. 5145706c now makes it no longer necessary for DeleteBranchService and CreateBranchService to create an event. Closes #4304
* | | | | | | | Merge branch 'master' into 'master' Jeroen Nijhof2016-01-117-2/+58
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Added housekeeping for git repositories This merge request will add a housekeeping button in the project setting page which invoke the gitlab shell to run a `git gc` in the project repository. see gitlab-org/gitlab-ce#3041 Depends on gitlab-org/gitlab-shell!23 which has been merged. See merge request !1658
| * \ \ \ \ \ \ \ Merge gitlab.com:gitlab-org/gitlab-ceJeroen Nijhof2016-01-1141-78/+258
| |\ \ \ \ \ \ \ \ | |/ / / / / / / / |/| | | | | | | |
* | | | | | | | | Merge branch 'Issue#5817' into 'master' Stan Hu2016-01-112-4/+4
|\ \ \ \ \ \ \ \ \ | |_|_|/ / / / / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Issue#5817 Improve wording of the web hooks page on the project's setting Merge Request !2362 had a typo, I'm resubmitting the merge request about issue #5817. See merge request !2363
| * | | | | | | | Issue #5817 wording of the web hooks updated on issue and merge eventsiqualisoni2016-01-112-4/+4
| | | | | | | | |
* | | | | | | | | Merge branch 'check-for-present-runner-token' into 'master' Stan Hu2016-01-114-5/+31
|\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fix Error 500 when visiting build page of project with nil runners_token Properly ensure that the token exists and add defensively check for a non-nil value. Closes #4294 See merge request !2294
| * | | | | | | | | Before project save ensure that a runners_token existsStan Hu2016-01-102-1/+2
| | | | | | | | | |
| * | | | | | | | | Fix Error 500 when visiting build page of project with nil runners_tokenStan Hu2016-01-104-5/+30
|/ / / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Properly ensure that the token exists and add defensively check for a non-nil value. Closes #4294
* | | | | | | | | Remove outdated gitlab-git-http-server reference from Install docRobert Speicher2016-01-101-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | [ci skip]
* | | | | | | | | Merge branch 'fix_jira_shortterm' into 'master' Robert Speicher2016-01-102-0/+4
|\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Do not call API if there is no API URL Fixes #5878 CE users may not be interested in the new JIRA features. In this case, we should detect they haven't set an API URL and fallback to the behavior pre-8.3. This patch does that very easily. There are planned improvements to JIRA in future releases such as gitlab-org/gitlab-ce#5541 which will make this more configurable. See merge request !2341
| * | | | | | | | | Do not call API if there is no API URLDrew Blessing2016-01-072-0/+4
| | |_|/ / / / / / | |/| | | | | | |
* | | | | | | | | Merge branch 'update-changelog-with-email-reply-fix' into 'master' Robert Speicher2016-01-101-0/+1
|\ \ \ \ \ \ \ \ \ | |_|/ / / / / / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add CHANGELOG entry for reply-by-email fix [ci skip] See merge request !2359
| * | | | | | | | Add CHANGELOG entry for reply-by-email fixStan Hu2016-01-091-0/+1
| | |_|_|_|/ / / | |/| | | | | | | | | | | | | | | | | | | | | | [ci skip]
* | | | | | | | Merge branch 'disable-blocked-in-abuse-reports' into 'master' Robert Speicher2016-01-101-1/+1
|\ \ \ \ \ \ \ \ | |/ / / / / / / |/| | | | | | | | | | | | | | | | | | | | | | | Disable "Already Blocked" button in admin abuse report page See merge request !2360
| * | | | | | | Disable "Already Blocked" button in admin abuse report pageStan Hu2016-01-091-1/+1
|/ / / / / / /
* | | | | | | Merge branch 'doc_clean_up_add_users' into 'master' Achilleas Pipinellis2016-01-0914-13/+77
|\ \ \ \ \ \ \ | |_|_|_|_|_|/ |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Clean up document on adding users to a project Closes #3093, #3648 See merge request !2356
| * | | | | | Clean up document on adding users to a projectAchilleas Pipinellis2016-01-0914-13/+77
|/ / / / / / | | | | | | | | | | | | | | | | | | [ci skip]
* | | | | | Merge branch 'cross-project-reference-typo-fix' into 'master' Robert Speicher2016-01-081-1/+1
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | changes verb `references` to noun `reference`. See merge request !2349
| * | | | | | changes verb `references` to noun `reference`.cross-project-reference-typo-fixJacob Schatz2016-01-081-1/+1
| | |_|/ / / | |/| | | |
* | | | | | Remove Block Button from Abuse Reports page if User is Already Blocked Robert Speicher2016-01-081-1/+4
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | An addition to https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/2292 Related to https://gitlab.com/gitlab-org/gitlab-ce/issues/4667 See merge request !2313
| * | | | | | Show that user is already blocked on Abuse Reportsfix-block-button-still-showing-on-abuse-reports-after-user-is-blockedKelvin2016-01-061-0/+3
| | | | | | |
| * | | | | | Remove block button on abuse reports if user is already blockedKelvin2016-01-061-1/+1
| | | | | | |
* | | | | | | Add a CHANGELOG entry for The Most Important Feature of All Time(TM)Robert Speicher2016-01-081-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Also, Open Graph data, if you're into that kind of thing. [ci skip]
* | | | | | | Merge branch 'api-project-upload' into 'master' Robert Speicher2016-01-0811-51/+94
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add API project upload endpoint Fixes https://gitlab.com/gitlab-org/gitlab-ce/issues/4317 See merge request !2329
| * | | | | | | DRY up upload and download servicesapi-project-uploadDouwe Maan2016-01-085-37/+30
| | | | | | | |
| * | | | | | | Update specDouwe Maan2016-01-072-9/+12
| | | | | | | |
| * | | | | | | Satisfy RubocpDouwe Maan2016-01-071-1/+1
| | | | | | | |
| * | | | | | | Add API project upload endpointDouwe Maan2016-01-078-23/+70
| | | | | | | |
* | | | | | | | Merge branch 'blacklist-new' into 'master' Robert Speicher2016-01-081-0/+1
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add 'new' as a reserved namespace name Closes #5930 See merge request !2344
| * | | | | | | | Blacklist 'new'blacklist-newRobert Schilling2016-01-081-0/+1
| | | | | | | | |
* | | | | | | | | Merge branch 'suppress-allow-failure-builds' into 'master' Stan Hu2016-01-085-1/+31
|\ \ \ \ \ \ \ \ \ | |_|_|_|/ / / / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Suppress e-mails on failed builds if allow_failure is set Every time I push to GitLab, I get > 2 emails saying a spec failed when I don't care about the benchmarks and others that have `allow_failure` set to `true`. @ayufan mentioned creating a summary e-mail to prevent getting one e-mail per build, but the latter might actually be desirable. For example, I do want to know if Rubocop errors fail right away. See merge request !2178
| * | | | | | | | Suppress e-mails on failed builds if allow_failure is setStan Hu2016-01-075-1/+31
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Every time I push to GitLab, I get > 2 emails saying a spec failed when I don't care about benchmarks and other specs that have `allow_failure` set to `true`.
* | | | | | | | | Merge branch 'rs-single-item-task-list-spec' into 'master' Douwe Maan2016-01-081-0/+6
|\ \ \ \ \ \ \ \ \ | |_|_|_|_|_|_|/ / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add spec for single-item task lists Follow-up to https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/2330 See merge request !2340
| * | | | | | | | Add spec for single-item task listsrs-single-item-task-list-specRobert Speicher2016-01-071-0/+6
| | |_|_|_|/ / / | |/| | | | | |