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
2017-01-14Merge branch 'fix-build-sort-order' into 'master' Robert Speicher
Resolve "Sort order for pipeline build lists doesn't properly handle numbers" Closes #25428 See merge request !8277
2017-01-13revise sortable_name test formattingMike Greiling
2017-01-13Fix Rubocop offense in build specsGrzegorz Bizon
2017-01-13Remove empty build spec file from invalid locationGrzegorz Bizon
2017-01-13Merge build specs into file that has valid locationGrzegorz Bizon
2017-01-13Merge branch '24185-legacy-ci-status-reactive-cache' into 'security'Robert Speicher
Use ReactiveCaching to update external CI status asynchronously See https://dev.gitlab.org/gitlab/gitlabhq/merge_requests/2055
2017-01-11New error message recreating projects on pending deleteJames Lopez
2017-01-10Merge branch '24139-production-wildcard-for-cycle-analytics' into 'master' Sean McGivern
Treat environments matching `production/*` as Production for Cycle Analytics Closes #24139 See merge request !8500
2017-01-10Merge branch 'auto-pipelines-vue' into 'master' Fatih Acet
Pipelines Vue See merge request !7196
2017-01-09Merge branch 'label-length-validation' into 'master' Rémy Coutable
Validate label's title length See merge request !5767
2017-01-09Merge branch 'master' into auto-pipelines-vueRegis
2017-01-09Treat environments matching `production/*` as ProductionToon Claes
For Cycle Analytics, the environment `production` is treated as a special case, and used to update the `first_deployed_to_production_at` metric. With the Review Apps changes, slash syntax is used to group related environments in the list. This is mostly used for `review/<branch>` environments, but it's possible for people to have multiple production environments, and someone might then want to group them like `production/eu`, `production/us`, or even just make it look prettier with `production/www.example.com`. In any of these cases, the first deploy to one of these `production/*` environments now is treated as a Production deploy.
2017-01-09validate length of label.titleTomáš Kukrál
+ add test for label.title length validation
2017-01-09Merge branch 'track_last_used_date_of_ssh_keys' into 'master' Sean McGivern
Record and show last used date of SSH Keys See merge request !8113
2017-01-08Record and show last used date of SSH KeysVincent Wong
Addresses: Issue #13810 1. Adds a last_used_at attribute to the Key table/model 2. Update a key's last_used_at whenever it gets used 3. Display how long ago an ssh key was last used
2017-01-06Speed up group milestone index by passing group_id to IssuesFinderAdam Niedzielski
2017-01-04Merge branch 'master' into auto-pipelines-vueRegis
2017-01-04Merge branch 'rs-remove-unused-method' into 'master' Douwe Maan
Remove unused `Project#web_url_without_protocol` method See merge request !8416
2017-01-03Remove unused `Project#web_url_without_protocol` methodRobert Speicher
2017-01-03Fix cross-project references copy to include the project referenceJames Lopez
Also added relevant specs and refactored to_references in a bunch of places to be more consistent.
2017-01-03fix pipelines/index.html.haml merge conflictRegis
2017-01-02prefer unit test on model over view testMike Greiling
2016-12-29Merge branch 'issue_22664' into 'master' Sean McGivern
Check if user can read project before being assigned to issue Closes #22664 See merge request !7980
2016-12-29Merge branch 'mentioned-but-not-closed-issues-messages' into 'master' Sean McGivern
Fix unclear closing issue behaviour on Merge Request show page Closes #26152 See merge request !8345
2016-12-29Merge branch 'dz-nested-group-access' into 'master' Dmitriy Zaporozhets
Inherit permissions from parent group See merge request !8071
2016-12-28use MergeRequest#closes_issues instead of rewriting code to retrieve closing ↵Gabriel Gizotti
issues on MergeRequest#issues_mentioned_but_not_closing
2016-12-28Check if user can read issue before being assignedFelipe Artur
2016-12-27Merge branch 'feature/1376-allow-write-access-deploy-keys' into 'master' Douwe Maan
Allow to add deploy keys with write-access Closes #1376 See merge request !7383
2016-12-27Add missing specs for new methods in pipeline classGrzegorz Bizon
2016-12-27Merge branch 'fix-latest-pipeine-ordering-again' into 'master' Kamil Trzciński
Order only for latest_successful_for See merge request !8301
2016-12-26Merge branch 'feature/more-storage-statistics' into 'master' Sean McGivern
Add more storage statistics See merge request !7754
2016-12-26Include group parents into read access for project and groupDmitriy Zaporozhets
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2016-12-26Add a test for latest_successful_forLin Jen-Shin
2016-12-24Revert "Merge branch 'fix-latest-pipeine-ordering' into 'master'"Grzegorz Bizon
This reverts merge request !8286
2016-12-23Merge branch 'zj-fix-issue-search-chat-command' into 'master' Rémy Coutable
Fix errorcode 500 on slash commands Closes #26013 See merge request !8285
2016-12-23Update description stating that ordering is importantLin Jen-Shin
Feedback from Grzegorz
2016-12-23Ci::Pipeline.latest order by id DESCLin Jen-Shin
The name latest implies that it's reverse chronological, and we did expect it that way. https://gitlab.com/gitlab-org/gitlab-ce/issues/25993#note_20429761 >>> ok, I think markglenfletchera is correct in https://gitlab.com/gitlab-com/support-forum/issues/1394#note_20399939 that `Project#latest_successful_builds_for` is giving oldest pipeline rather than latest pipeline. This is a ~regression introduced by !7333 where `order(id: :desc)` was removed causing this. The offending change was: https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/7333/diffs#b22732e5f39e176c7c719fe485847d0fb0564275_92_108 The confusion was caused by the `latest` name implication, which actually didn't order anything, and I think we should add `order(id: :desc)` to `Ci::Pipeline.latest` otherwise it's confusing that it's not actually ordered. >>> Closes #25993
2016-12-23Fix errorcode 500 on slash commandsZ.J. van de Weg
Coverage was failing, so this could slip through the cracks
2016-12-22Merge branch 'zj-slack-404-error' into 'master' Kamil Trzciński
Fix format of Slack when result is nil Closes #25954 See merge request !8248
2016-12-22Merge branch 'fix-mattermost-username' into 'master' Douglas Barbosa Alexandre
Fix Mattermost command creation by specifying username See merge request !8257
2016-12-22Fix format of Slack when result is nilZ.J. van de Weg
2016-12-22Merge branch 'cache-last-commit-sha-for-path' into 'master' Yorick Peterse
Cache last commit id for path See merge request !8098
2016-12-22Fix Mattermost command creation by specifying usernameKamil Trzcinski
2016-12-21Add more storage statisticsMarkus Koller
This adds counters for build artifacts and LFS objects, and moves the preexisting repository_size and commit_count from the projects table into a new project_statistics table. The counters are displayed in the administration area for projects and groups, and also available through the API for admins (on */all) and normal users (on */owned) The statistics are updated through ProjectCacheWorker, which can now do more granular updates with the new :statistics argument.
2016-12-21Merge branch 'zj-mattermost-slash-config' into 'master' Kamil Trzciński
Mattermost slash auto config Closes #24769 See merge request !8070
2016-12-21Improve API specsKamil Trzcinski
2016-12-21Merge branch 'fix/25843' into 'master' Sean McGivern
Rename SlackNotificationService back to SlackService ## What does this MR do? See https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/8191#note_20310845 ## What are the relevant issue numbers? Closes https://gitlab.com/gitlab-org/gitlab-ce/issues/25843 /cc @yorickpeterse @stanhu @smcgivern @felipe_artur @ayufan See merge request !8208
2016-12-21Merge branch 'zj-mattermost-slash-config' of gitlab.com:gitlab-org/gitlab-ce ↵Kamil Trzcinski
into zj-mattermost-slash-config
2016-12-21Rename MattermostNotificationService back to MattermostServiceDouglas Barbosa Alexandre
2016-12-21Rename SlackNotificationService back to SlackServiceDouglas Barbosa Alexandre