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
2019-02-25Merge branch '7861-cross-project-pipeline-dashboard-mvc-2-ce' into 'master'Grzegorz Bizon
Delegate last_pipeline to Project See merge request gitlab-org/gitlab-ce!25422
2019-02-25Merge branch 'expose-merge-ref-to-runner' into 'master'Kamil Trzciński
Expose refspec and depth to runner See merge request gitlab-org/gitlab-ce!25233
2019-02-25Merge branch 'sh-fix-users-controller-ruby-2.6-compat' into 'master'Douwe Maan
Make Admin::UsersController work with Ruby 2.6 See merge request gitlab-org/gitlab-ce!25316
2019-02-25Hide CI status when pipelines disabledScott Hampton
Pipeline status was showing failed on projects when CI was disabled. This checks to see if the feature is enabled before showing the status.
2019-02-25Merge branch 'filter-confidential-issues' into 'master'Kamil Trzciński
Ability to filter confidential issues Closes #50747 See merge request gitlab-org/gitlab-ce!24960
2019-02-25Expose refspec and depth to runnerShinya Maeda
fix fix and fix Allow full ref specification for pipeline creation Add spec Support backward compatibility Use ref path Runner feature flag Simplify the things Support fork workflow (Public only) Expose ref spec Use refspec Glooming Decouple unrelated changes Add changelog Revert unrelated file Decouple unnecessary Add spec Use refspecs Fix changelog Simplify Fix coding offence Fix a ok ok ok ok ok a a Fix Add workaround for ignore_column Fix git depth Fix coding offence Fix spec Simplify more Do not set ignored column Fix tests Fix pipeline Fix spec fix fixture yes Revert nonsense fix Revert more ok Decouple mr pipelines fix spev Remove unrelated changes
2019-02-22Update GitLab Runner Helm Chart to 0.2.0Tomasz Maczukin
2019-02-22Merge branch '55057-system-message-to-core' into 'master'Sean McGivern
Port EE System Header And Footer feature to CE Closes #55057 See merge request gitlab-org/gitlab-ce!25241
2019-02-21Merge branch ↵Douglas Barbosa Alexandre
'ce-9858-follow-up-on-a-bug-that-happens-when-using-a-factory-built-object-in-the-where-block-of-rspec-parameterized-tablesyntax' into 'master' Fix and document an RSpec::Parameterized::TableSyntax edge-case See merge request gitlab-org/gitlab-ce!25438
2019-02-21Port EE System Header And Footer feature to CEDouwe Maan
remove EE specific code remove EE licence checks move migration from EE to CE folder structure move specs from EE to CE folder structure remove EE specific flag specs
2019-02-21Add confidential_only scop to issue modelRobert Schilling
2019-02-21Catch exception in calculate reactive cacheReuben Pereira
Return the exception as an error.
2019-02-21Move ChatOps to CoreJames Fargher
ChatOps used to be in the Ultimate tier.
2019-02-20Fix and document an RSpec::Parameterized::TableSyntax edge-caseRémy Coutable
Signed-off-by: Rémy Coutable <remy@rymai.me>
2019-02-20Delegate last_pipeline to ProjectMatija Čupić
2019-02-20Remove undigested token column from personal_access_tokens tableImre Farkas
Token column are no longer used as token values are stored digested in token_digest.
2019-02-20Make Admin::UsersController work with Ruby 2.6Stan Hu
Ruby 2.6 introduced `Enumerable#filter`, which takes no arguments. Attempting to call `filter` on an `ActiveRecord::Relation` with a scope will fail with a `wrong number of arguments (given 1, expected 0)` message because the `Enumerable#filter` implementation overrides the delegated `ActiveRecord::Relation#filter` method. To make Admin::UsersController compatible with Ruby 2.6, rename `User.filter` to `User.filter_items`.
2019-02-19Merge branch 'move_ready_to_application_concern' into 'master'Stan Hu
Remove application `#ready?` See merge request gitlab-org/gitlab-ce!25128
2019-02-19Revert "Merge branch 'use_gitlab_current_settings' into 'master'"Bob Van Landuyt
This reverts merge request !25370
2019-02-19Use Gitlab::CurrentSettings in UrlValidatorThong Kuah
Gitlab::CurrentSettings will create ApplicationSetting.current if not present which means we don't have to use `&.`. We can also more easily use stub_application_setting in specs
2019-02-18Allow blank values to be stored in reactive cacheReuben Pereira
Reactive caching concern was using .present? to determine if it got a valid value from the cache. This returns false for values such as false, [], {}. Change this check to !.nil? instead.
2019-02-15Merge branch 'sh-fix-issue-9787-ce' into 'master'Douwe Maan
Backport commit author changes from CE See merge request gitlab-org/gitlab-ce!25294
2019-02-15Backport commit author changes from CEStan Hu
This backports the changes made in EE to fix merge request approvers from https://gitlab.com/gitlab-org/gitlab-ee/merge_requests/9574.
2019-02-15Merge branch '57650-remove-tld-validation-from-cluster' into 'master'Nick Thomas
Remove TLD validation from cluster domain Closes #57650 See merge request gitlab-org/gitlab-ce!25262
2019-02-15Merge branch 'import-go-to-project-cta-nibble-backend' into 'master'Lin Jen-Shin
BE Improve the GitHub and Gitea import feature table interface See merge request gitlab-org/gitlab-ce!24606
2019-02-15Rename scope to imply :installed and :updated resultJoão Cunha
- Adds to specs the case where apps are also updated - Rename scope calls on Gitlab::UsageData and Clusters::Cluster - Removes a duplicated spec
2019-02-15Base pipeline must be from target branchOlivier Gonzalez
2019-02-15Move common method to application concernThong Kuah
This could be potentially useful to all cluster applications. Address followup issue https://gitlab.com/gitlab-org/gitlab-ce/issues/56524
2019-02-15Remove TLD validation from Cluster#domainDylan Griffith
2019-02-13Support `only: changes:` on MR pipelinesHiroyuki Sato
2019-02-13Add support for FTP assets for releasesRobert Schilling
Extend the list of supported protocols to include FTP.
2019-02-13Improve the GitHub and Gitea import feature table interfaceLuke Bennett
These are backend changes. Use Vue for the import feature UI for "githubish" providers (GitHub and Gitea). Add "Go to project" button after a successful import. Use CI-style status icons and improve spacing of the table and its component. Adds ETag polling to the github and gitea import jobs endpoint.
2019-02-11Adding convenience method to project modelJohn Cai
2019-02-11Merge branch '52424-goodbye-hipchat' into 'master'Douglas Barbosa Alexandre
Remove HipChat integration from GitLab Closes #52424 See merge request gitlab-org/gitlab-ce!22223
2019-02-11Merge branch 'fix_deployment_service_predefined_variables' into 'master'Nick Thomas
Add missing argument to DeploymentService#predefined_variables See merge request gitlab-org/gitlab-ce!24989
2019-02-11Merge branch '55447-validate-k8s-ca-cert' into 'master'Dmitriy Zaporozhets
Validate k8s CA certificate at cluster creation See merge request gitlab-org/gitlab-ce!24990
2019-02-08Remove HipChat integration from GitLabNick Thomas
2019-02-08Add missing argument to DeploymentService#predefined_variablesJames Fargher
2019-02-08Validate kubernetes cluster CA certificateTiger
No certificate is still accepted, but if one is provided it must be valid. Only run validation if the certificate has changed to avoid making existing records invalid.
2019-02-08Upgrade cluster applications, starting with runnerThong Kuah
2019-02-07Merge branch '52363-ui-changes-to-cluster-and-ado-pages' into 'master'Grzegorz Bizon
Moves domain setting to Clusters page Closes #52363 See merge request gitlab-org/gitlab-ce!24580
2019-02-07Merge branch 'local-markdown-version' into 'master'Douglas Barbosa Alexandre
Add local markdown version Closes #32789 See merge request gitlab-org/gitlab-ce!24822
2019-02-07Addresses UX and BE comments:Mayra Cabrera
- Changes help text on clusters form to make it more explicit. - Removes unnecessary warnings on auto devops form - Simplifies cluster methods logic
2019-02-06Add local markdown versionJan Provaznik
Cached markdown version is composed both from global and local markdown version. This allows admins to bump version locally when needed (e.g. when external URL is changed).
2019-02-06Merge branch 'sh-log-project-name-with-gitaly' into 'master'Rémy Coutable
Send project name with Gitaly repository requests Closes gitaly#1394 See merge request gitlab-org/gitlab-ce!23373
2019-02-06Avoid race conditions when creating GpgSignatureBob Van Landuyt
This avoids race conditions when creating GpgSignature.
2019-02-06Allow custom squash commit messagesLuke Duncalfe
2019-02-06Merge branch 'cluster_application_version_updated' into 'master'Grzegorz Bizon
Update version column on updated and installed See merge request gitlab-org/gitlab-ce!24810
2019-02-06Refactor specs to run shared parts only when usedThong Kuah
All applications except for Jupyter have the same #set_initial_status, so create a new shared example which we include in all application specs except for juptyer_spec. Juptyer specs already have specs for it's version of #set_initial_status
2019-02-06Update version on :installed, not :installingThong Kuah
This makes this consistent with :updated. And also avoids a potential issue where an install errors which means that that the recorded version won't necessarily reflect the version that is actually installed.