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-08-24Merge branch 'font-weight-adjusted' into 'master'Annabel Dunstone Gray
Changed all font-weight values to 400 and 600 Closes #34138 See merge request !12896
2017-08-24Changed all font-weight values to 400 and 600Dimitrie Hoekstra
2017-08-24Merge branch ↵Kamil Trzciński
'fix/sm/36731-improve-spec-spec-features-runners_spec-rb-and-spec-features-admin-admin_runners_spec-rb' into 'master' Reorganizes spec: spec/features/runners_spec.rb Closes #36731 See merge request !13716
2017-08-24Merge branch 'backstage/gb/after-save-asynchronous-job-hooks' into 'master'Kamil Trzciński
Do not fire synchronous hooks when creating a job Closes #35286 See merge request !13734
2017-08-24Merge branch 'thenable-ajax-api-calls' into 'master'Fatih Acet
Thenable ajax api calls See merge request !13427
2017-08-24Merge branch 'fix-old-mr-diffs' into 'master'Douwe Maan
Fix old MR diffs Closes #36516 See merge request !13744
2017-08-24Merge branch 'archived-projects-only' into 'master'Douwe Maan
Add an option to list only archived projects Closes #35994 See merge request !13492
2017-08-24Show un-highlighted diffs when blobs are the sameSean McGivern
For some old merge requests, we don't have enough information to figure out the old blob and the new blob for the file. This means that we can't highlight the diff correctly, but we can still display it without highlighting.
2017-08-24Merge branch 'an-gitaly-ref-exists-extras' into 'master'Sean McGivern
Delegate Repository::branch_exists? and ref_exists? to Gitlab::Git Closes gitaly#488 See merge request !13725
2017-08-24Delegate Repository::branch_exists? and ref_exists? to Gitlab::GitAndrew Newdigate
2017-08-24Merge branch '36262_merge_request_reference_in_merge_commit_global' into ↵Sean McGivern
'master' fix Merge request reference in merge commit is not global Closes #36262 See merge request !13518
2017-08-24Merge branch 'fix/gb/avoid-races-when-cleaning-db-in-tests' into 'master'Sean McGivern
Resolve transient failures related to testing migrations Closes #36745 See merge request !13761
2017-08-24Merge branch 'zj-add-pipeline-source-variable' into 'master'Grzegorz Bizon
Expose CI_PIPELINE_SOURCE on CI jobs Closes #34165 See merge request !13759
2017-08-24Add an option to list only archived projectsMehdi Lahmam
Closes #35994
2017-08-24Refactor Admin::ProjectsFinder by extracting finders as private methodsMehdi Lahmam
2017-08-24Merge branch 'sh-fix-branch-count' into 'master'Douwe Maan
Fix inconsistent number of branches when remote branches are present Closes #36934 See merge request !13784
2017-08-24Fix inconsistent number of branches when remote branches are presentStan Hu
Users of project mirrors would see that the number of branches did not match the number in the branch dropdown because remote branches were counted when Rugged was in use. With Gitaly, only local branches are counted. Closes #36934
2017-08-24Merge branch 'use_full_path_in_project_avatar_url_webhook' into 'master'Robert Speicher
Use full path of project's avatar in webhooks Closes #36539 See merge request !13649
2017-08-24Merge branch 'dm-ldap-adapter-attributes' into 'master'Robert Speicher
Support simple string LDAP attribute specifications, and search for name rather… Closes #36841 See merge request !13776
2017-08-24Merge branch '36709-gpg-status' into 'master'Clement Ho
Fix alignment of gpg status Closes #36709 See merge request !13772
2017-08-23Support simple string LDAP attribute specifications, and search for name ↵Douwe Maan
rather than username attributes
2017-08-23Merge branch 'zj-fix-fe-blank-button' into 'master'Clement Ho
Fix blank button not resetting project template value Closes #36816 See merge request !13757
2017-08-23Merge branch '36883-update-license-approval-process' into 'master'Douwe Maan
Update licensing query guidelines Closes #36883 See merge request !13768
2017-08-23[ci skip] changelog entry added for full merge request ref changeshaseeb
2017-08-23Merge branch 'fix/gitlay-raw-blame-request-encoding' into 'master'Robert Speicher
Properly encode Gitaly RawBlame request params See merge request !13764
2017-08-23Fix blank button not resetting project template valueZeger-Jan van de Weg
The button didn't override a value, so the old value was posted again.
2017-08-23Fix alignment of gpg statusAnnabel Dunstone Gray
2017-08-23Merge branch 'cache-issue-and-mr-counts' into 'master'Douwe Maan
Cache the number of open issues and merge requests Closes #36622 See merge request !13639
2017-08-23Merge branch 'bvl-improve-bare-project-import' into 'master'Sean McGivern
Make the import take subgroups into account Closes #36664 and #30546 See merge request !13670
2017-08-23Update CHANGELOG.md for 9.5.1Simon Knox
[ci skip]
2017-08-23Added repo_service_spec for commitFlash and corrected repo_commit-Secion api ↵Luke "Jared" Bennett
spec
2017-08-23Merge branch '36806-update-rbnacl' into 'master'Douwe Maan
Update the rbnacl gem to 4.0.2 Closes #36806 See merge request !13740
2017-08-23Update licensing query guidelinesNick Thomas
2017-08-23Fix testsShinya Maeda
2017-08-23Fix feature specs for pages deploymentGrzegorz Bizon
2017-08-23Refurbish spec/features/runners_spec.rbShinya Maeda
2017-08-23Invalidate cache before cleaning db in tests after contextGrzegorz Bizon
2017-08-23Fix cycle analytics test data generation and specsGrzegorz Bizon
2017-08-23Properly encode Gitaly RawBlame request paramsAhmad Sherif
2017-08-23Cache the number of open issues and merge requestsYorick Peterse
Every project page displays a navigation menu that in turn displays the number of open issues and merge requests. This means that for every project page we run two COUNT(*) queries, each taking up roughly 30 milliseconds on GitLab.com. By caching these numbers and refreshing them whenever necessary we can reduce loading times of all these pages by up to roughly 60 milliseconds. The number of open issues does not include confidential issues. This is a trade-off to keep the code simple and to ensure refreshing the data only needs 2 COUNT(*) queries instead of 3. A downside is that if a project only has 5 confidential issues the counter will be set to 0. Because we now have 3 similar counting service classes the code previously used in Projects::ForksCountService has mostly been moved to Projects::CountService, which in turn is reused by the various service classes. Fixes https://gitlab.com/gitlab-org/gitlab-ce/issues/36622
2017-08-23Fix error when importing a GitHub-wiki repositoryBob Van Landuyt
This would occur when Wiki's are enabled on GitHub, but there is no wiki repository
2017-08-23Migrate creation of nested groups into a serviceBob Van Landuyt
2017-08-23Improve bare repository importBob Van Landuyt
- Allow imports into nested groups - Make sure it sets the correct visibility level when creating new groups While doing this, I moved the import into a testable class, that made it easier to improve.
2017-08-23Expose CI_PIPELINE_SOURCE on CI jobsZeger-Jan van de Weg
It was missing and expected it wouldn't hurt anyone
2017-08-23Merge branch 'gitaly-commit-patch' into 'master'Sean McGivern
Incorporate DiffService.CommitPatch Gitaly RPC Closes gitaly#463 See merge request !13441
2017-08-23Merge branch 'remove-tooltip-filtered-search-user' into 'master'Tim Zallmann
Remove tooltip from filtered search user Closes #36696 See merge request !13752
2017-08-23Merge branch 'master' into backstage/gb/after-save-asynchronous-job-hooksGrzegorz Bizon
* master: (115 commits) Use event-based waiting in Gitlab::JobWaiter Make sure repository's removal work for legacy and hashed storages Use `@hashed` prefix for hashed paths on disk, to avoid collision with existing ones Refactor project and storage types Prevent using gitlab import task when hashed storage is enabled Some codestyle changes and fixes for GitLab pages Removed some useless code, codestyle changes and removed an index Fix repository reloading in some specs Changelog Moving away from the "extend" based factory to a more traditional one. Enable automatic hashed storage for new projects by application settings New storage is now "Hashed" instead of "UUID" Add UUID Storage to Project Move create_repository back to project model as we can use disk_path and share it Codestyle: move hooks to the same place and move dependent methods to private Use non-i18n values for setting new group-level issue/MR button text indexes external issue tracker copyedit indexes user/search/ from /user/index Correctly encode string params for Gitaly's TreeEntries RPC ...
2017-08-23Fix pipeline job worker specsGrzegorz Bizon
2017-08-23Update repo_commit_section to spy serviceLuke "Jared" Bennett
2017-08-23Merge branch 'fix-push-events-branch-removals' into 'master'Sean McGivern
Fix displaying events of removed events and events without commit messages Closes #36685 and #36722 See merge request !13721