summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Add allow_failure field to commit status APIStan Hu2015-11-034-4/+9
| | | | Closes #3196
* Merge branch 'improve-profile-page'Dmitriy Zaporozhets2015-11-039-50/+109
|\
| * Add extra padding between user description and links on profile pageDmitriy Zaporozhets2015-11-031-1/+1
| | | | | | | | Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
| * Fix testsDmitriy Zaporozhets2015-11-032-5/+11
| | | | | | | | Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
| * Apply new design for user profile pageDmitriy Zaporozhets2015-11-036-33/+59
| | | | | | | | Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
| * Improve profile page UIDmitriy Zaporozhets2015-11-032-11/+38
| | | | | | | | Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
* | Merge branch 'spread-runner-last-updated-at' into 'master' Robert Speicher2015-11-032-1/+6
|\ \ | | | | | | | | | | | | | | | | | | | | | Spread out runner contacted_at updates This is meant to prevent having too many concurrent UPDATE requests caused by runners checking in. See merge request !1722
| * \ Merge branch 'master' of gitlab.com:gitlab-org/gitlab-ce into ↵spread-runner-last-updated-atJacob Vosmaer2015-11-0327-150/+347
| |\ \ | | |/ | | | | | | spread-runner-last-updated-at
| * | Add changelog entry for contacted_atJacob Vosmaer2015-11-021-0/+3
| | |
| * | Spread out runner contacted_at updatesJacob Vosmaer2015-11-021-1/+3
| | |
* | | Merge branch 'fix-clipboard-btn' into 'master' Dmitriy Zaporozhets2015-11-031-0/+4
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | Fix clipboard button overflow Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> See merge request !1739
| * | | Fix clipboard button overflowDmitriy Zaporozhets2015-11-031-0/+4
| | |/ | |/| | | | | | | Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
* | | Merge branch 'go-to-nav'Dmitriy Zaporozhets2015-11-039-16/+17
|\ \ \
| * | | Better name for up-level linksgo-to-navDmitriy Zaporozhets2015-11-039-16/+17
| | | | | | | | | | | | | | | | Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
* | | | Merge branch 'drop-old-builds' into 'master' Kamil Trzciński2015-11-033-0/+63
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Cleanup stuck CI builds Fixes #3143 /cc @dzaporozhets @jacobvosmaer See merge request !1655
| * | | | Cleanup stuck CI builds dailydrop-old-buildsKamil Trzcinski2015-11-033-0/+63
| | | | |
* | | | | Merge branch 'web_hook_repo_changes'Valery Sizov2015-11-034-3/+42
|\ \ \ \ \ | |_|_|/ / |/| | | |
| * | | | Add added, modified and removed properties to commit object in webhookweb_hook_repo_changesValery Sizov2015-11-034-3/+42
| | | | |
* | | | | Merge branch 'only-syntax' into 'master' Kamil Trzciński2015-11-035-111/+269
|\ \ \ \ \ | |_|_|/ / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Extend yml syntax for only and except to support specifying repository path This allows to limit execution of jobs to specific repository. For example: ```yaml job: only: - branches@gitlab-org/gitlab-ce except: - master@gitlab-org/gitlab-ce ``` The above will run `job` for all branches on `gitlab-org/gitlab-ce`, except master. @dzaporozhets @JobV @vsizov Please review. See merge request !1720
| * | | | Fix testsonly-syntaxKamil Trzcinski2015-11-031-15/+11
| | | | |
| * | | | SpellingKamil Trzcinski2015-11-021-1/+1
| | | | |
| * | | | Extend yml syntax for only and except to support specifying repository pathKamil Trzcinski2015-11-025-111/+273
| | | | |
* | | | | Merge branch 'fix-inflector' into 'master' Dmitriy Zaporozhets2015-11-033-23/+2
|\ \ \ \ \ | |_|_|/ / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Remove inflector rule that makes commits uncountable Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> Before: ``` >> "commits".singularize => "commits" >> "commit".pluralize => “commits” ``` After: ``` >> "commits".singularize => "commit" >> "commit".pluralize => “commits” ``` cc @rspeicher See merge request !1726
| * | | | Fix code that depends on incorrect inflector behaviorDmitriy Zaporozhets2015-11-032-2/+2
| | | | | | | | | | | | | | | | | | | | Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
| * | | | Remove inflector rule that makes commits uncountableDmitriy Zaporozhets2015-11-031-21/+0
|/ / / / | | | | | | | | | | | | Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
* | | | Merge branch 'olhado/gitlab-ce-commit-search'Dmitriy Zaporozhets2015-11-0310-6/+52
|\ \ \ \
| * | | | Fix commits search for empty repositoryDmitriy Zaporozhets2015-11-031-1/+5
| | | | | | | | | | | | | | | | | | | | Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
| * | | | Refactor search by commits messageolhado/gitlab-ce-commit-searchDmitriy Zaporozhets2015-11-027-41/+11
| | | | | | | | | | | | | | | | | | | | Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
| * | | | Actually converted code to following suggestions.Michael Chmielewski2015-10-282-7/+4
| | | | |
| * | | | Fixed method to use git log via Popen as recommended, and made output match ↵Michael Chmielewski2015-10-282-2/+7
| | | | | | | | | | | | | | | | | | | | test (and thus system) expectations.
| * | | | Trying to incorporate suggestions from comments on Merge Request 1661Michael Chmielewski2015-10-283-7/+8
| | | | |
| * | | | Trailing new lines at ends of files are important.Michael Chmielewski2015-10-281-1/+1
| | | | |
| * | | | Moved changelog entry to 8.2Michael Chmielewski2015-10-281-1/+3
| | | | |
| * | | | Added @commits to list of tags.Mike Chmielewski2015-10-281-3/+3
| | | | |
| * | | | Make subject of spec line up on one line to satisfy rubocop requirementsMike Chmielewski2015-10-281-4/+2
| | | | |
| * | | | Add support for searching commit log messagesJonathan Schoeffling2015-10-288-3/+72
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Include the log messages of recent commits in project-level search results, providing functionality similar to 'git log --grep'. Update repository model rspec tests to validate the output of Repository#commits_with_log_matching.
* | | | | Merge branch 'new-file-link' into 'master' Dmitriy Zaporozhets2015-11-032-0/+5
|\ \ \ \ \ | |_|_|/ / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add 'New file' link to dropdown on project page Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> Screenshot: ![Screenshot_2015-11-02_15.33.41](/uploads/ecc87c6bda9e3f0680e5422d5cdc08f9/Screenshot_2015-11-02_15.33.41.png) Fixes internal issue https://dev.gitlab.org/gitlab/gitlabhq/issues/2562 See merge request !1719
| * | | | Add 'New file' link to dropdown on project pageDmitriy Zaporozhets2015-11-032-0/+5
| | | | | | | | | | | | | | | | | | | | Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
* | | | | Merge branch 'update-links-to-ci-status' into 'master' Kamil Trzciński2015-11-034-8/+8
|\ \ \ \ \ | |/ / / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Update links in CI docs after GitLab 8.1 Fix that some links to CI status in docs were broken even after following redirects. As CI build overview is now missing (cf. #3008), this MR uses `?scope=all` parameter. See merge request !1733
| * | | | Update links in CI docs after GitLab 8.1Takuya Noguchi2015-11-034-8/+8
| | | | |
* | | | | Merge branch 'rs-require-backup-files' into 'master' Dmitriy Zaporozhets2015-11-032-0/+4
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Explicitly require backup/files Fixes a test failure we were seeing on CI after merging !1520 See merge request !1731
| * | | | | Explicitly require backup/filesrs-require-backup-filesRobert Speicher2015-11-022-0/+4
| |/ / / /
* | | | | Merge pull request #9791 from konpyu/fix-deprecatedStan Hu2015-11-021-1/+1
|\ \ \ \ \ | |/ / / / |/| | | | Fix deprecated `prepend_before_filter` -> `prepend_before_action`
| * | | | fix deprecatedKON YUICHI2015-10-311-1/+1
| | | | |
* | | | | Merge branch 'api_file_touched_at' into 'master' Dmitriy Zaporozhets2015-11-024-2/+7
|\ \ \ \ \ | |_|_|_|/ |/| | | | | | | | | | | | | | | | | | | | | | | | Add ability to fetch the commit ID of the last commit that actually touched a file https://dev.gitlab.org/gitlab/gitlabhq/issues/2564 See merge request !1718
| * | | | Add ability to fetch the commit ID of the last commit that actually touched ↵api_file_touched_atValery Sizov2015-11-024-2/+7
| | | | | | | | | | | | | | | | | | | | a file
* | | | | Merge branch 'master' of gitlab.com:gitlab-org/gitlab-ceDmitriy Zaporozhets2015-11-0210-110/+200
|\ \ \ \ \
| * \ \ \ \ Merge branch 'backup-improvements' into 'master' Kamil Trzciński2015-11-026-92/+82
| |\ \ \ \ \ | | |_|_|_|/ | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Reduce disk IO and space usage during backups This is based on improvements made to the GitLab CI 8.0 backup script. - Avoid creating many small intermediate files while backing up builds and uploads by using tar and light gzip compression - Use same backup/restore code for uploads and builds - Only store a compressed intermediate DB dump See merge request !1520
| | * | | | Do no rely on basename of builds, uploadsbackup-improvementsJacob Vosmaer2015-10-163-6/+15
| | | | | |
| | * | | | One more backup spec fixJacob Vosmaer2015-10-061-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | Stop the 'uploads' part from actually running.