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-08-26Do not use sanitize in url_blockerfix-sanitize-usagerpereira2
- Encode the URLs instead to prevent the use of any special chars.
2019-08-24Merge branch 'mc/bug/nplusone-pipelines-show' into 'master'Stan Hu
Preload tags when loading Ci::Pipeline Closes #60925 See merge request gitlab-org/gitlab-ce!32149
2019-08-24Merge branch '64764-fix-serverless-layout' into 'master'Fatih Acet
Fix Serverless entry page layout Closes #64764 See merge request gitlab-org/gitlab-ce!32029
2019-08-24Merge branch ↵Tim Zallmann
'66073-use-time-series-chart-instead-of-area-chart-in-panel_types' into 'master' Enable line charts in dashbaord panels and embedded charts Closes #66073 See merge request gitlab-org/gitlab-ce!31920
2019-08-24Merge branch 'fix-migration' into 'master'Stan Hu
Delete rename trigger before creating to prevent error See merge request gitlab-org/gitlab-ce!32147
2019-08-24Drop existing trigger before creating new oneReuben Pereira
- When renaming a column concurrently, drop any existing trigger before attempting to create a new one. When running migration specs multiple times (as it happens during local development), the down method of previous migrations are called. If any of the called methods contains a call to rename_column_concurrently, a trigger will be created and not removed. So, the next time a migration spec is run, if the same down method is executed again, it will cause an error when attempting to create the trigger (since it already exists). Dropping the trigger if it already exists will prevent this problem.
2019-08-24Merge branch '56883-migration' into 'master'Mayra Cabrera
Add migration to execute SelfMonitoring::Project::CreateService See merge request gitlab-org/gitlab-ce!31389
2019-08-24Add a link to docs in project descriptionReuben Pereira
Add to the service and migration both.
2019-08-24Merge branch 'fe-fix-issuable-sidebar-icon-of-notification-disabled' into ↵Mike Greiling
'master' Fix issuable sidebar icon of notification disabled See merge request gitlab-org/gitlab-ce!32134
2019-08-24Merge branch 'docs/fix-template-link' into 'master'Mike Lewis
Fix link to issue template See merge request gitlab-org/gitlab-ce!32144
2019-08-24Fix link to issue templateAchilleas Pipinellis
2019-08-24Merge branch '64505-add-rubocop-cop-to-enforce-string-length-on-migrations' ↵Stan Hu
into 'master' Adds cop to enforce string limits on migrations See merge request gitlab-org/gitlab-ce!31433
2019-08-24Adds cop to enforce string limits on migrationsMayra Cabrera
This cop will analyze migrations that add columns with string, and report an offense if the string has no limit enforced Related to https://gitlab.com/gitlab-org/gitlab-ce/issues/64505
2019-08-24Merge branch ↵Mayra Cabrera
'55999-misleading-pipeline-tooltip-messages-and-misleading-ci-status-icons-on-simple-commits' into 'master' Change misleading pipeline status tooltip See merge request gitlab-org/gitlab-ce!31861
2019-08-24Change misleading pipeline status tooltipScott Hampton
Some pipeline status icon tooltips were showing "Commit: ..." which customers found to be misleading since it was not the commit that was failing but the pipeline. We are changing all status icon tooltips to say "Pipeline: ..." instead of "Commit: ..." now.
2019-08-24Merge branch '66402-use-visual-review-tools-npm-package' into 'master'Mike Greiling
Resolve "Use Visual Review Tools NPM package" See merge request gitlab-org/gitlab-ce!32159
2019-08-23Merge branch '64269-pipeline-api-fails-with-401' into 'master'Mayra Cabrera
Read pipelines from public projects though API See merge request gitlab-org/gitlab-ce!31816
2019-08-23Read pipelines from public projects though APIMarius Bobin
Allow users to read pipelines for public projects with public builds enabled without providing an access token.
2019-08-23Merge branch '66037-deployment-user' into 'master'Tim Zallmann
Return correct user for manual deployments See merge request gitlab-org/gitlab-ce!32004
2019-08-23Merge branch 'new-cycle-analytics-backend-stage-events' into 'master'Mayra Cabrera
New cycle analytics backend stage events See merge request gitlab-org/gitlab-ce!31713
2019-08-23Implement validation logic to ProjectStageAdam Hegyi
- Introducting StageEvents to define the available events - Define the event pairing rules, since some events are not compatible - Express default Cycle Analytics stages with the event structure
2019-08-23Move visual review toolbar to NPMshampton
Remove the visual review toolbar code in favor of using the NPM package.
2019-08-23Merge branch 'jc-add-ff-for-all-lfs-pointers-go' into 'master'Stan Hu
Adding gitaly feature flag for go implementation of get all lfs pointers See merge request gitlab-org/gitlab-ce!31696
2019-08-23Fix issuable sidebar icon of notification disabledPaul Slaughter
by adding the proper notification icon
2019-08-23Merge branch '55360-redundant-index-in-the-releases-table_v2' into 'master'Mayra Cabrera
Remove redundant index See merge request gitlab-org/gitlab-ce!31487
2019-08-23Remove redundant indexSean Carroll
2019-08-23Adding gitaly feature flag for go implementation of get all lfs pointersJohn Cai
2019-08-23Merge branch 'ce-jej/fix-sso-enforced-docker-registry-auth' into 'master'Kamil Trzciński
[CE backport] Enforced SSO shouldn't break container registry authentication See merge request gitlab-org/gitlab-ce!32110
2019-08-23Merge branch '62322-add-optional-id-to-label-api-put-delete-pd' into 'master'Kamil Trzciński
Add label_id parameter to label API for PUT and DELETE Closes #62322 See merge request gitlab-org/gitlab-ce!31804
2019-08-23Add label_id parameter to label API for PUT and DELETEPatrick Derichs
Add specs for new parameter and updated documentation as well.
2019-08-23Merge branch 'jc-fix-auto-rugged-detection' into 'master'Lin Jen-Shin
Handle when server info doesn't have the storage in question See merge request gitlab-org/gitlab-ce!32023
2019-08-23Update CHANGELOG.md for 12.2.1GitLab Release Tools Bot
[ci skip]
2019-08-23Merge branch 'sh-eliminate-gitaly-nplus-one-notes' into 'master'Kamil Trzciński
Eliminate Gitaly N+1 queries with notes API See merge request gitlab-org/gitlab-ce!32089
2019-08-23Merge branch 'qa/quarantine-filter-issue-comments-test' into 'master'Walmyr Lima e Silva Filho
Quarantine filter issue comments test See merge request gitlab-org/gitlab-ce!32152
2019-08-23Handle when server info doesn't have the storage in questionJohn Cai
2019-08-23Merge branch 'docs-health-check-failure-examples' into 'master'Achilleas Pipinellis
Docs health check failure examples Closes #64193 See merge request gitlab-org/gitlab-ce!31945
2019-08-23Docs health check failure examplesSean Arnold
2019-08-23Merge branch '57402-upate-issues-list-sort-options-ce' into 'master'Jan Provaznik
CE: Update sort options for issues list See merge request gitlab-org/gitlab-ce!31849
2019-08-23Merge branch 'qa-ml-fail-early-if-template-not-found' into 'master'Walmyr Lima e Silva Filho
Fail E2E tests early if template not found via API See merge request gitlab-org/gitlab-ce!31955
2019-08-23Fail E2E tests early if template not found via APIMark Lapierre
2019-08-23Quarantine filter issue comments testWalmyr Lima
2019-08-23Merge branch '62514-update-prometheus-metrics-docs' into 'master'Achilleas Pipinellis
62514 - update prometheus metrics docs Closes #62514 See merge request gitlab-org/gitlab-ce!31987
2019-08-2362514 - update prometheus metrics docsDavid Wilkins
- Strikeout for metrics that aren't reported anymore - added :thumbsup: for all the metrics that appear to be still available - Added :new: for the new metrics. - Determine Release when the new metrics appeared - Add descriptions for the new metrics - remove the adornments :new: and :thumbsup: - removce the lines with strikeout
2019-08-23Preload tags when loading Ci::PipelineMatija Čupić
2019-08-23Merge branch 'master' into 'master'Stan Hu
Reduce dedup calls to gc only See merge request gitlab-org/gitlab-ce!32083
2019-08-23Merge branch 'winh-deduplicate-board-headers' into 'master'Kushal Pandya
Hide duplicate board list while dragging See merge request gitlab-org/gitlab-ce!32099
2019-08-23Hide duplicate board list while draggingWinnie Hellmann
2019-08-23Merge branch 'docs-12713-vulnerabilities-dl-api' into 'master'Achilleas Pipinellis
Update dependencies api doc See merge request gitlab-org/gitlab-ce!32061
2019-08-23Update dependencies api docTetiana Chupryna
2019-08-23Merge branch 'ac-uploads-docs' into 'master'Nick Thomas
Document uploads development guidelines Closes #63097 See merge request gitlab-org/gitlab-ce!31290