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
2016-04-13Merge branch 'push-ref' into 'master' Kamil Trzciński
Fix high CPU usage when PostReceive receives refs/merge-requests/<id> Fixes https://gitlab.com/gitlab-org/gitlab-ce/issues/12661 See merge request !3651
2016-04-13Merge branch 'api-star-project' into 'master' Rémy Coutable
API: Star and unstar a project Add two new endpoints `POST /projects/:id/star` and `POST /projects/:id/unstar` to star and unstar a project. * Closes #12739 See merge request !3578
2016-04-13Merge branch 'master' into push-refKamil Trzcinski
2016-04-13Instrument the HousekeepingService classYorick Peterse
This allows us to track how much time is spent in updating the "pushes_since_gc" column as well as the time needed to obtain the lease.
2016-04-13Merge branch 'external-omniauth-providers' into 'master' Marin Jankovski
Allow Omniauth providers to be marked as external Related to #4009 With this MR we will be able to allow the user to set which Omniauth Providers they would like to have as external. All users login in via these providers will be marked as external, even if they already had an account before. If the provider is removed form the list of external providers, the users will be marked as internal at their next login. MR for Omnibus: gitlab-org/omnibus-gitlab!727 /cc @dblessing @DouweM See merge request !3657
2016-04-13API: Star and unstar a projectRobert Schilling
2016-04-13Merge branch 'api-group-leaking' into 'master' Rémy Coutable
API: Return 404 if user does not have access to group Closes #15185 After !3587 is merged, I'll update this one to also fix the return code of the tests in !3587. See merge request !3683
2016-04-13Merge branch 'api-move-issues' into 'master' Rémy Coutable
API: Ability to move an issue Closes https://gitlab.com/gitlab-org/gitlab-ce/issues/14741 See merge request !3593
2016-04-13Merge branch 'custom-transaction-tags' into 'master' Rémy Coutable
Added ability to add custom tags to transactions cc @pcarranza See merge request !3674
2016-04-13Merge branch 'configure_trusted_proxies' into 'master' Rémy Coutable
Adjust the default trusted_proxies to only include localhost And also allow other trusted proxies to be added from the config.yml. Fixes https://gitlab.com/gitlab-org/gitlab-ce/issues/3538 Omnibus config: https://gitlab.com/gitlab-org/omnibus-gitlab/issues/1208 See merge request !3524
2016-04-13Update tests for moving issues via APIRobert Schilling
2016-04-13API: Ability to move an issueRobert Schilling
2016-04-13Added ability to add custom tags to transactionsYorick Peterse
One use case for this is manually setting the "action" tag for Grape API calls. Due to Grape running blocks there are no human readable method names that can be used for the "action" tag, thus we have to set these manually on a case by case basis.
2016-04-13API: Return 404 if user does not have access to groupRobert Schilling
2016-04-13Merge branch 'issue_15044' into 'master' Rémy Coutable
Allow to close invalid merge request fixes #15044 See merge request !3664
2016-04-13Merge branch 'fix-stale-branch-count-cache' into 'master' Yorick Peterse
Fix repository cache invalidation issue when project is recreated with an empty repo See merge request !3692
2016-04-13Merge branch 'api-group-visibility' into 'master' Rémy Coutable
API: Ability to update a group This makes it much easier to update a group after introducing the group visibility. * Closes #14991 See merge request !3587
2016-04-13Fix repository cache invalidation issue when project is recreated with an ↵Stan Hu
empty repo To reproduce: 1. Create a project with some content 2. Rename the project 3. Create a new project with the same name. 4. Boom - 404. After step 2, the branch and tag counts were not being cleared. This would cause `repository.has_visible_content?` to erroneously return `true` for the newly-created project. Closes #13384
2016-04-12Add changelog entry, improve specs and model codeFelipe Artur
2016-04-12Add changelog entries, install docs, and gitlab.yml.example entry for the ↵DJ Mountney
trusted_proxies setting
2016-04-12Updated CHANGELOGPhil Hughes
2016-04-12Updated based on Ruby feedbackPhil Hughes
2016-04-12Updated RubyPhil Hughes
Added CHANGELOG item
2016-04-12Merge branch 'decouple-member-notification' into 'master' Douwe Maan
Decouple membership and notifications This allow you to have notification setting per project even if you are member of group. It also creates background for having notification settings in project you are not member of. - [x] Make it work - [x] Migrations - [x] CHANGELOG - [x] More tests - [x] API For #3359 After this merge request there is still some work to be done: * create migration that remove duplicates in notification settings table and create uniq index (8.8 probably) * remove notification_level field from Member model in 9.0 * make proper API for notification settings * use `MemberCreateService` instead of Member#after_create callback for creating notification settings (after #14709) * maybe more tests Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> See merge request !3421
2016-04-12Merge branch 'feature/fix-14753' into 'master' Rémy Coutable
Fix #14753: Check if head is born before trying to detect main language This MR makes sure that head exists before trying to detect the main language. This prevents errors on repo's without a master branch. Closes #14753 See merge request !3654
2016-04-12Add my nameJeroen Bobbeldijk
2016-04-12Merge branch 'instrument-service-classes' into 'master' Rémy Coutable
Instrument all service classes This will help us see where (mostly) Sidekiq code is spending time. See merge request !3675
2016-04-12Merge branch 'hide_help_block_when_creating_project_inside_group' into 'master' Rémy Coutable
Hide help block when user is creating a new project inside a group closes #14092 ![fix](/uploads/13721117c410c8fe6937d44a3b0a90a8/fix.gif) See merge request !3427
2016-04-12Merge branch 'api-delete-note' into 'master' Rémy Coutable
Delete notes via API Supports deleting issues, snippets, and merge requests via the API. * Closes #14944 * Closes #14845 * Closes #6060 @zj I did not see that you assigned yourself in #6060. Hopefully, you did not start yet. @rymai In #6060 this is targeted for 8.7 release. Could you review that and maybe this still lands in 8.7. See merge request !3557
2016-04-12Changelog entry for service class instrumentationYorick Peterse
[ci skip]
2016-04-12Merge branch 'api-get-tag' into 'master' Rémy Coutable
API: Ability to retrieve a single tag * Closes #14330 /cc @dblessing See merge request !3577
2016-04-12API: Ability to update a groupRobert Schilling
2016-04-12hide help block when user is creating a new project inside a groupArinde Eniola
2016-04-12Add changelog entryRobert Schilling
2016-04-12Allow a project member to leave the projected through the APIZeger-Jan van de Weg
2016-04-12Fix changelog entryRobert Schilling
2016-04-12Delete notes via APIRobert Schilling
2016-04-12Merge branch 'api-fix-milestone-iid-filter' into 'master' Rémy Coutable
API: Add iid filter to milestones This was documented in the API docs but it was never working because the iid filter was never applied to the milestones. The tests were working by accident because the were checking the first element, which was by accident the request element. * Closes https://github.com/gitlabhq/gitlabhq/issues/10122 See merge request !3588
2016-04-12API: Add iid filter to milestonesRobert Schilling
2016-04-12API: Expose updated_at for notesRobert Schilling
2016-04-12Merge branch 'api-labels-info' into 'master' Rémy Coutable
API: Expose open_issues_count, closed_issues_count, open_merge_requests_count on labels Partly fixes https://gitlab.com/gitlab-org/gitlab-ce/issues/13238 See merge request !3569
2016-04-11Add changelog, change code to guard clauseJeroen Bobbeldijk
2016-04-11Added CHANGELOG itemPatricio Cano
2016-04-11Merge branch 'master' into decouple-member-notificationDouglas Barbosa Alexandre
2016-04-11Fix high CPU usage when PostReceive receives refs/merge-requests/<id>Kamil Trzcinski
2016-04-10Merge branch 'redesign_labels_page' into 'master' Jacob Schatz
Redesign labels page closes #14227 ## Desktop ![Screen_Shot_2016-04-05_at_7.19.37_PM](/uploads/a52b764565b6e2739fb6932178f8bde5/Screen_Shot_2016-04-05_at_7.19.37_PM.png) ## Mobile ![Screen_Shot_2016-04-04_at_6.40.57_PM](/uploads/9804b074126fcdb6755918e9f4c472a7/Screen_Shot_2016-04-04_at_6.40.57_PM.png) See merge request !3507
2016-04-10Enable asset compression in production.connorshea
`config.assets.compress` needed to be explicitly enabled. Follow-up to !3544. Resolves #14344.
2016-04-09Merge branch 'efficient-emoji-loading' into 'master' Robert Speicher
Only load emoji spritesheet when necessary On a normal issue where the only award emoji displayed by default are the thumbs-up and thumbs-down emoji, this decreases the page load by 670KB or 250KB depending on pixel density. Resolves #14334. See merge request !3449
2016-04-09Add "sprite" parameter to emoji_icon helperconnorshea
The emoji_icon helper used to display the award emoji in Issue and Merge Request views. By default the spritesheet is used, but passing `sprite: false` to the `emoji_icon` helper makes the emoji render as separate images. For award emoji displayed by default (e.g. thumbs-up, thumbs-down, and any that have been awarded to the issue/MR) the independent images are used. Only when the full emoji menu is opened does the full spritesheet load. On a normal issue this change decreases the page load by 670KB or 250KB depending on pixel density. Resolves #14334.
2016-04-09Fix CHANGELOGDouglas Barbosa Alexandre