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-29Use users.admins instead of where()api-admin-searchBrian Neel
2017-08-24Fix space, 40x specBrian Neel
2017-08-24add the missing DBrian Neel
2017-08-24Add specsBrian Neel
2017-08-24Return 403 on non-admin requestsBrian Neel
2017-08-24Add changelogBrian Neel
2017-08-24Add admin search option to API /usersBrian Neel
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-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-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-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-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 '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
2017-08-23Merge branch 'tc-remove-nonexisting-namespace-pending-delete-projects' into ↵Douwe Maan
'master' Add migration to remove pending delete projects with non-existing namespace Closes #36541 See merge request !13598
2017-08-23Merge branch 'rs-fix-admin-logs-timeout' into 'master'Douwe Maan
Fix a potential timeout in `Gitlab::Logger.read_latest` See merge request !13751
2017-08-23Merge branch 'rs-stub-storage-availability-check' into 'master'Douwe Maan
Stub `ForkedStorageCheck.storage_available?` by default in all specs See merge request !13726
2017-08-23Merge branch 'fix-broken-testing-of-some-integrations' into 'master'Douwe Maan
Fix inability to test some project integrations Closes gitlab-ee#3194 See merge request !13729
2017-08-23Merge branch 'disable-webpack-optimization' into 'master'Tim Zallmann
Disable webpack.optimize because it's breaking karma in EE See merge request !13720
2017-08-23Merge branch '33503-new-icons-for-system-notes' into 'master'Clement Ho
Implement new system note icons Closes #33503 See merge request !13673
2017-08-23Implement new system note iconsBryce Johnson
2017-08-23Remove tooltip from filtered search userClement Ho
2017-08-23Merge branch 'fix-group-policy-specs-on-mysql' into 'master'Robert Speicher
Fixes group policy specs on MySQL. Closes https://gitlab.com/gitlab-org/gitlab-ce/issues/36810 See merge request !13747
2017-08-23Merge branch 'rs-fix-master' into 'master'Stan Hu
Add `:nested_groups` metadata to two subgroup-related specs Closes #36811 and #36812 See merge request !13746
2017-08-23Refactor `Admin::LogsController#show`Robert Speicher
We should be defining the list of loggers in the controller, not the view.
2017-08-23Fix a potential timeout in `Gitlab::Logger.read_latest`Robert Speicher
If this method was called for a file that didn't exist, we attempted to first `build` it. But if the file wasn't writeable, such as a symlink pointing to an unmounted filesystem, the method would just hang and eventually timeout. Further, this was entirely pointless since we were creating a file and then shelling out to `tail`, eventually returning an empty Array. Now we just skip building it and return the empty Array straight away.
2017-08-22Merge branch '36779-update-kubernetes-install-docs' into 'master'Marcia Ramos
Update Kubernetes install docs Closes #36779 See merge request !13730
2017-08-22Incorporate DiffService.CommitPatch Gitaly RPCAlejandro Rodríguez
2017-08-22Merge branch '36496-badges-should-not-be-huge' into 'master'Clement Ho
Resolve "Badges should not be HUGE" Closes #36496 See merge request !13635
2017-08-22Apply feedbackJoshua Lambert
2017-08-22Fix display of push events for removed refsYorick Peterse
This changes the style of push events that remove tags or branches so they don't display the commit details. This prevents displaying commit details such as: 000000 . --broken encoding Instead we now simply display the header such as: Administrator deleted branch example-branch This is displayed in the same style as events for newly created branches/tags. This commit also ensures that if no commit message is present we simply don't display anything, instead of "--broken encoding". Fixes https://gitlab.com/gitlab-org/gitlab-ce/issues/36685 Fixes https://gitlab.com/gitlab-org/gitlab-ce/issues/36722
2017-08-22Fix spacing with code blockJoshua Lambert
2017-08-22Merge branch 'update-monaco-loader-test' into 'master'Jacob Schatz
Fix monaco loader test See merge request !13682
2017-08-22Fixes group policy specs on MySQL.Tiago Botelho
2017-08-22Merge branch 'docs-merge-request-diff-nav' into 'master'Marcia Ramos
Docs merge request diff nav See merge request !13743
2017-08-22Stub `ForkedStorageCheck.storage_available?` by default in all specsRobert Speicher
Add `:broken_storage` metadata to examples to disable this behavior only when necessary.