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
path: root/lib
AgeCommit message (Collapse)Author
2017-04-06Dry up next_time_from. Move cron_parser_spec to appropriate location.Shinya Maeda
2017-04-06Move Ci::CronParser to Gitlab::Ci::CronParserShinya Maeda
2017-04-06Add Import/Export Setting for trigger_schedule. Remove ref validation.Shinya Maeda
2017-04-06Suppress Import/Export function warnings. Add comment for confirmation.Shinya Maeda
2017-04-06Fix rubocop issues. Use add_concurrent_foreign_key.Shinya Maeda
2017-04-06Brush up 2Shinya Maeda
2017-04-06Brush upShinya Maeda
2017-04-06real_next_run (WIP)Shinya Maeda
2017-04-06Use constraint for #validationShinya Maeda
2017-04-06Add validation to Ci::TriggerSchedule (Halfway)Shinya Maeda
2017-04-06Add rufus-scheduler to GemfileShinya Maeda
2017-04-06Add scheduled_trigger model. Add cron parser. Plus, specs.Shinya Maeda
2017-04-06Github import rake taskJames Lopez
2017-04-06Merge branch 'fix/gh-import-status-check' into 'master' Sean McGivern
Periodically mark projects that are stuck in importing as failed Closes #17709 See merge request !10207
2017-04-06Merge branch 'add_remove_concurrent_index_to_database_helper' into 'master' Yorick Peterse
Add remove_concurrent_index to database helper Closes #30376 See merge request !10441
2017-04-06Merge branch '28810-projectfinder-should-handle-more-options' into 'master' Rémy Coutable
ProjectsFinder should handle more options Closes #28810 See merge request !9682
2017-04-06Merge branch '30021-api-deploy_keys-can_push-is-not-honoured' into 'master' Rémy Coutable
Enable creation of deploy keys with write access via the API Closes #30021 See merge request !10488
2017-04-06ProjectsFinder should handle more optionsJacopo
Extended ProjectFinder in order to handle the following options: - current_user - which user use - project_ids_relation: int[] - project ids to use - params: - trending: boolean - non_public: boolean - starred: boolean - sort: string - visibility_level: int - tags: string[] - personal: boolean - search: string - non_archived: boolean GroupProjectsFinder now inherits from ProjectsFinder. Changed the code in order to use the new available options.
2017-04-06Merge remote-tracking branch 'dev/master'DJ Mountney
2017-04-06Merge branch '30125-markdown-security'Robert Speicher
Remove class from SanitizationFilter whitelist See merge request !2079
2017-04-06Issue title realtimeRegis Boudinot
2017-04-06Merge branch 'gitaly-prevent-autoload' into 'master' Rémy Coutable
Deal with Rails autoload instance variable resets See merge request !10338
2017-04-06Add remove_concurrent_index to database helperblackst0ne
2017-04-06Merge branch '30195-document-search-param-on-api' into 'master' Sean McGivern
Add "search" optional param and docs for V4 Closes #30195 See merge request !10358
2017-04-06Merge branch 'workhorse-1.4.3' into 'master' Sean McGivern
Workhorse 1.4.3 Closes gitaly#167 and gitaly#177 See merge request !10479
2017-04-06Merge branch 'convert-poll-interval-to-string' into 'master' Sean McGivern
Convert value to string before setting Poll-Interval header See merge request !10477
2017-04-05Merge branch 'gitaly-refs' into 'master'Robert Speicher
Implement Gitaly refs client See merge request !9291
2017-04-05Add "search" optional param and docs for V4Oswaldo Ferreira
Notice that this param is being supported since V3, but we have not added the proper docs for it
2017-04-05Remove deprecated field from workhorse responseJacob Vosmaer
2017-04-05Periodically mark projects that are stuck in importing as failedJames Lopez
Adds import jid to projects Refactor middleware to set custom expiration time via sidekiq options Add completed_jids option to sidekiq status and a few other changes
2017-04-05Use NamespaceValidator::WILDCARD_ROUTES in ETag caching middlewareAdam Niedzielski
NamespaceValidator::WILDCARD_ROUTES is less restrictive than ProjectPathValidator::RESERVED and we really have to avoid only routes that contain wildcard names.
2017-04-05Convert value to string before setting Poll-Interval headerAdam Niedzielski
2017-04-05Deal with Rails autoload instance variable resetsJacob Vosmaer
Rails auto-load (a development feature) can end up resetting instance variables on classes. This breaks Gitlab::GitalyClient, which uses instance variables to keep global hashes to look up channels and addresses. This change adds code that regenerates the hashes if they suddenly become nil.
2017-04-05Added mock deployment and monitoring service with environments fixturesKamil Trzciński
2017-04-05Enable creation of deploy keys with write access via the APIMark Fletcher
* Documentation was incorrectly advertising the missing param
2017-04-05Handle SSH keys that have multiple spaces between each markerStan Hu
Notice what happens when a user adds a key with a space in between: ``` irb(main):004:0> 'ssh-rsa foobar'.split(/ /) => ["ssh-rsa", "", "foobar"] ``` This would cause gitlab-shell to receive a blank argument for the actual key, leading to users unable to login.
2017-04-04Merge branch 'bug/api_milestone_merge_requests_scope' into 'master' Rémy Coutable
Fixes milestone/merge_request API endpoint to really scope the results See merge request !10369
2017-04-04Fix issues importing forked projectsJames Lopez
2017-04-04Merge branch '30400-fix-blob-highlighting-in-search' into 'master' Sean McGivern
Fix blob highlighting in search Closes #30400 See merge request !10420
2017-04-04Merge branch 'workhorse-gitaly-address' into 'master' Sean McGivern
Pass GitalyAddress to workhorse See merge request !10447
2017-04-04Incorporate Gitaly client for refs serviceAlejandro Rodríguez
2017-04-04Merge branch 'fix/disable-gitaly-post-receive-pack' into 'master' Robert Speicher
Disable support for Gitaly PostReceivePack See merge request !10444
2017-04-04Pass GitalyAddress to workhorseJacob Vosmaer
2017-04-04Disable support for Gitaly PostReceivePackAhmad Sherif
See https://gitlab.com/gitlab-org/gitaly/issues/172
2017-04-04Merge branch 'backport-sticking-api-helper-changes' into 'master' Kamil Trzciński
Backport API changes needed to fix sticking in EE See merge request !10376
2017-04-04Merge branch 'fix-github-importer-slowness' into 'master' Robert Speicher
Improve performance of GitHub importer Closes #28183 See merge request !10273
2017-04-03Merge branch 'namespace-race-condition' into 'master' Douwe Maan
Fix race condition in namespace directory creation See merge request !10268
2017-04-03Merge branch 'feature/support-grpc-calls-over-tcp-conn' into 'master' Robert Speicher
Add support for Gitaly calls over TCP connection Closes gitaly#166 See merge request !10410
2017-04-03Merge branch 'feature/add-feature-flags-for-upload-receive-pack' into 'master' Robert Speicher
Add feature flags for enabling (Upload|Receive)Pack Closes gitaly#168 See merge request !10341
2017-04-03Set the right timeout for Gitlab::Shell#fetch_remoteDouglas Barbosa Alexandre