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
2018-11-27Suggests issues when typing titlePhil Hughes
This suggests possibly related issues when the user types a title. This uses GraphQL to allow the frontend to request the exact data that is requires. We also get free caching through the Vue Apollo plugin. With this we can include the ability to import .graphql files in JS and Vue files. Also we now have the Vue test utils library to make testing Vue components easier. Closes #22071
2018-11-23render :nothing option is deprecated, Use head method to respond with empty ↵Jasper Maes
response body.
2018-11-19SSH public-key authentication for push mirroringNick Thomas
2018-11-17Fix enabling project deploy key for adminsStan Hu
Admins would be prevented from adding a project deploy key since the accessible keys would be restricted to the user's keys. Also backports a spec for DeployKeysController from https://gitlab.com/gitlab-org/gitlab-ee/merge_requests/8432.
2018-11-15Remove 'comment_on_any_diff_line' feature flagOswaldo Ferreira
2018-11-12Removes feature flag for ciEnvironmentsStatusChangesFilipa Lacerda
2018-11-12Merge branch 'osw-comment-on-any-line-on-diffs-w-feature-flag' into 'master'Douwe Maan
Comment on any expanded diff line on MRs (with feature-flag) Closes #13950 See merge request gitlab-org/gitlab-ce!22914
2018-11-09Comment on any expanded diff line on MRsOswaldo Ferreira
2018-11-09Merge branch 'always-proxy-reports' into 'master'Grzegorz Bizon
backport: Always proxy reports downloads See merge request gitlab-org/gitlab-ce!22889
2018-11-08Revert "Merge branch 'osw-comment-on-any-line-on-diffs' into 'master'"Oswaldo Ferreira
This reverts commit a82a595728d54bdc12e51dfcfb22e9eddc449143, reversing changes made to e7df959b8f99875edd246c7ac7779c3203e8755e.
2018-11-07backport: Always proxy reports downloadsKamil Trzciński
This makes to always proxy reports
2018-11-07Revert "Merge branch 'blackst0ne-update-push-new-merge-request-url' into ↵Douwe Maan
'master'" This reverts merge request !22526
2018-11-07Merge branch 'osw-comment-on-any-line-on-diffs' into 'master'Douwe Maan
Comment on any expanded diff line on MRs See merge request gitlab-org/gitlab-ce!22398
2018-11-06Comment on any expanded diff line on MRsOswaldo Ferreira
2018-11-06Remove instance autocomplete_service variableJarka Košanová
2018-11-02Merge branch 'top_level_clusters_controller' into 'master'Kamil Trzciński
Top level clusters controller See merge request gitlab-org/gitlab-ce!22438
2018-11-01Resolve controller sharing concernThong Kuah
Use ClustersController as base while having Projects::ClustersController to inform what `clusterable` is. Thanks @ayufan for the great suggestion ! - View changes to work with new approach - Fix javascript for new approach - Fix feature specs for new approach - Fix QA
2018-11-01Restore 403 functionality for external auth (EE)Thong Kuah
When we unhooked ClustersController from Project::ApplicationsController, we missed an EE override to handle_not_found_or_authorized. Rather than carry on with override RoutingActions, make a specific proc for Project that we override in EE instead. Use that proc in both Clusters::BaseController and Project::ApplicationsController.
2018-11-01Convert clusters to use a top-level controllerThong Kuah
In preparation so that we can create both cluster attached to project and cluster attached to group. - Move ClustersController to top level - Move Clusters::ApplicationsController to top-level too - Creates a Clusters::BaseController to share common functions - Do not rely on @project ivar. Anything could set the ivar. - Fix Vue page components due to new data-page value Because of the controller change we have gone from `projects:clusters:new` to `clusters:new`, so we need to update the file location of the page components. There is somewhere a function that will convert data-page to a file location. On that note, projects/clusters/gcp/new/, translate to Projects::Clusters::Gcp#new doesn't exist so replace that with clusters/create_gcp/ and clusters/create_user/
2018-10-31Adds pagination to pipelines table in merge request pageFilipa Lacerda
2018-10-30Merge branch 'add-language-param-to-highlight' into 'master'Douwe Maan
Add language param to highlight See merge request gitlab-org/gitlab-ce!21584
2018-10-30Renaming Secret Variables in the codebaseMarcel Amirault
2018-10-30Make Highlight accept language paramMark Chao
This replaces the repository param. This allows more flexiblity as sometimes we have highlight content not related to repository. Sometimes we know ahead of time the language of the content. Lastly language determination seems better fit as a logic in the Blob class. `repository` param is only used to determine the language, which seems to be the responsiblity of Blob.
2018-10-30Merge branch 'blackst0ne-update-push-new-merge-request-url' into 'master'Douwe Maan
Make new merge request URL more friendly when pushing code Closes #53012 See merge request gitlab-org/gitlab-ce!22526
2018-10-29Merge branch 'extract-ee-specific-lines-for-issues-and-mr-controllers' into ↵Nick Thomas
'master' Extract ee specific lines for issues and mr controllers See merge request gitlab-org/gitlab-ce!22569
2018-10-29post merge pipeline and environments statusAlessio Caiazza
2018-10-26Merge branch ↵Douwe Maan
'42790-improve-feedback-for-internal-git-access-checks-timeouts' into 'master' Adds trace of each access check when git push times out Closes #42790 See merge request gitlab-org/gitlab-ce!22265
2018-10-26Extract EE-specific lines from MRs controllerSean McGivern
Move access checks to their own method so they can be overridden, and port an EE-only method to exist in CE too, with an EE-specific override.
2018-10-26Automatically navigate to last board visitedBrett Walker
2018-10-25Backport SSH host key detection code to CENick Thomas
This functionality is needed for SSH push mirroring support, which is a CE feature.
2018-10-25Adds tracing messages for slow git pushesTiago Botelho
Whenever a git push takes more than 50 seconds the user will receive a trace from each check performed along with their timings
2018-10-24Extract EE-specific lines from issues controllerSean McGivern
2018-10-23Resolve "Filter discussion (tab) by comments or activity in issues and merge ↵Oswaldo Ferreira
requests"
2018-10-23Make new merge request URL more friendly when pushing codeblackst0ne
2018-10-22Frontend: Review app changesFilipa Lacerda
2018-10-22Merge branch 'rails5-fix-delete-blob' into 'master'Grzegorz Bizon
Rails5: fix delete blob See merge request gitlab-org/gitlab-ce!22456
2018-10-19Merge branch 'ac-review-app-changes-33418' into 'master'Nick Thomas
Expose changed URLs in MR ci_environments_status See merge request gitlab-org/gitlab-ce!22228
2018-10-18Rails5: fix delete blobJasper Maes
2018-10-18Move ci_environments_status to a modelAlessio Caiazza
GET :namespace/merge_requests/:id/ci_environments_status complexity already reached a limit for a direct serialization from an hash computed at within the controller function. Here we introduce a virtual model EnvironmentStatus and its serializer.
2018-10-17Fixed bug with the content disposition with wiki attachmentsFrancisco Javier López
2018-10-17Resolve "In web editor, when delete a file, should navigate to enclosing ↵George Thomas
directory"
2018-10-16Disable artifact validation for download actionMatija Čupić
2018-10-15Merge branch '34758-refactor-cluster-services' into 'master'Dmitriy Zaporozhets
Refactor Cluster services to enable groups or projects See merge request gitlab-org/gitlab-ce!22181
2018-10-15Remove un-used inheritance from serviceThong Kuah
Remove the inheritance from ::BaseService which is causing us to inherit the initializer that has project as the first arg, as we will not have access to project with forthcoming group clusters. Also call install service from create service - 1 less thing to re-use Extract TestRequest code into a spec helper. Given that we need different behaviour for Rails 5.0 (and again in Rails 5.1!), it's handy to have that branching behaviour in one place
2018-10-15Move non-controller code into dedicated serviceThong Kuah
This should help with code re-use when we create applications for group level cluster next. Change `find_or_initialize_by` to explicitly find or build the right association based on the application name. The benefit here is that we use the associations on @cluster rather than querying from the other side of the association.
2018-10-15Pass in project as kwarg for CreateServiceThong Kuah
This enables us to have other options in the future such as passing in `group:`. Also, remove project arg from UpdateService, as un-used. This will help group cluster controller to re-use this services.
2018-10-09Merge branch 'sh-handle-invalid-comparison' into 'master'Douwe Maan
Reject invalid branch names in repository compare controller Closes #51003 See merge request gitlab-org/gitlab-ce!22186
2018-10-08Reject invalid branch names in repository compare controllerStan Hu
Closes #51003
2018-10-08Merge branch 'osw-remove-dead-code-on-mr-show' into 'master'Robert Speicher
Removes expensive dead code on main MR page request Closes #51172 See merge request gitlab-org/gitlab-ce!22153
2018-10-08Merge branch 'Fix-pipeline-redirect' into 'master'Grzegorz Bizon
Redirect to the pipeline builds page when a build is canceled Closes #39161 See merge request gitlab-org/gitlab-ce!21595