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/app
AgeCommit message (Collapse)Author
2019-08-06Update reliable fetcherValery Sizov
We added retry_count increment when job is recovered
2019-08-06Fix Admin area user access level radio button labelsDrew Blessing
In the admin user edit form, access level radio button labels didn't have the correct 'for' value. Clicking on the label did not select the radio button. This makes usability a bit nicer since the click area is increased when the label is clickable.
2019-08-06Revert "Make status icon in merge widget borderless"Marcel van Remmerden
This reverts commit c3751046d217008404a0bd371e59d6ffd6734923.
2019-08-06Fix error on project nameGosia Ksionek
Add project path to sql query to build proper path
2019-08-05Add group level container repository endpointsSteve Abrams
API endpoints for requesting container repositories and container repositories with their tag information are enabled for users that want to specify the group containing the repository rather than the specific project.
2019-08-05Removed external dashboard legend borderOlena Horal-Koretska
2019-08-05Merge branch ↵Clement Ho
'63474-applying-a-quick-action-does-not-show-the-correct-message' into 'master' Fixed bug from extra parenthesis Closes #63474 See merge request gitlab-org/gitlab-ce!31479
2019-08-05Use select instead of filter to support 2.5Igor
2019-08-05Fixed bug from extra parenthesisDonald Cook
2019-08-05Merge branch ↵Douwe Maan
'11467-remove-feature-flag-for-visual-review-app-button-ce-backport' into 'master' Remove visual review app feature flag See merge request gitlab-org/gitlab-ce!31429
2019-08-05Merge branch 'improve-mr-enhance-style-of-the-shared-runners-limit' into ↵Kushal Pandya
'master' Refactor passing props to jobs/index.js See merge request gitlab-org/gitlab-ce!31472
2019-08-05Add help text next to Custom Metrics sectionReuben Pereira
- Also add requirements to the docs for custom metrics.
2019-08-05Refactor passing props to jobs/index.jsAmmar Alakkad
2019-08-05Merge branch 'jprovazn-fix-positioning' into 'master'Sean McGivern
Optimize relative re-positioning See merge request gitlab-org/gitlab-ce!30938
2019-08-05Merge branch '60664-kubernetes-applications-uninstall-cert-manager' into ↵Thong Kuah
'master' Resolve "Kubernetes > Applications > Uninstall Cert Manager" See merge request gitlab-org/gitlab-ce!31166
2019-08-05Enhance style of the shared runners limitAmmar Alakkad
It also prepare for the EE merge request https://gitlab.com/gitlab-org/gitlab-ee/merge_requests/14786
2019-08-05Use SQL to find the gap instead of iteratingHeinrich Lee Yu
Also removes unnecessary methods causing extra queries
2019-08-05Optimize rebalancing of relative positioningJan Provaznik
Moving of neighbour items was done recursively - this was extremely expensive when multiple items had to be moved. This change optimizes the code to find nearest possible gap where items can be moved and moves all of them with single update query.
2019-08-05Merge branch 'prefer-to-use-process-pipeline-worker' into 'master'Sean McGivern
Extend PipelineProcessWorker to accept a list of builds See merge request gitlab-org/gitlab-ce!31425
2019-08-05Fix display of performance bar shortcut help textMarcel Amirault
2019-08-05Add support for deferred links in persistent user calloutsDennis Tang
Persistent user callouts now support deferred links, which are links that can be used to dismiss the callout, and then proceed to follow the link's original location. This ensures that the callout dismissal is properly recorded before the user leaves the page.
2019-08-05Merge branch 'georgekoltsov/55474-outbound-setting-system-hooks' into 'master'Rémy Coutable
Add outbound setting for system hooks See merge request gitlab-org/gitlab-ce!31177
2019-08-05Merge branch 'properly-process-all-needs' into 'master'Sean McGivern
Properly process all needs Closes #65488 See merge request gitlab-org/gitlab-ce!31415
2019-08-05Merge branch 'bvl-fix-sentry-error-grouping' into 'master'Sean McGivern
Group `parent not preloaded` errors in sentry See merge request gitlab-org/gitlab-ce!31424
2019-08-05Merge branch 'telemetry-70-remove-pendo-poc-from-staging' into 'master'Kushal Pandya
Backport: Removed pendo poc code See merge request gitlab-org/gitlab-ce!31307
2019-08-05Allow Cert-Manager to be uninstalledTiger
Our current version of Cert-Manager does not uninstall cleanly, and we must manually remove custom resource definitions.
2019-08-02Hide cluster details until cluster is createdMike Greiling
Only display the details of the cluster page when the cluster exists. If it is in "creating" state, show a message and a spinner
2019-08-02All Kubectl command should return array by defaultJoão Cunha
2019-08-02Upgrade gitlab-ui to 5.12Enrique Alcántara
- Also, include pikaday styles through gitlab-ui
2019-08-02Implement Helm ResetCommand for removing TillerDylan Griffith
Also creates specs Only allow Helm to be uninstalled if it's the only app - Remove Tiller leftovers after reser command - Fixes specs and offenses Adds changelog file Fix reset_command specs
2019-08-02Merge branch 'make-needs-strong-connection' into 'master'Sean McGivern
Make `needs:` to require a strong reference Closes #65512 See merge request gitlab-org/gitlab-ce!31419
2019-08-02Extend PipelineProcessWorker to accept a list of buildsKamil Trzciński
This changes used worker from `BuildProcessWorker` to `PipelineProcessWorker` to make pipeline processing much simpler. We process `pipeline_id`, based on some triggers.
2019-08-02Remove visual review app feature flagshampton
This is the CE backport for https://gitlab.com/gitlab-org/gitlab-ee/merge_requests/14958 Now that we are confident with the visual review app link being there, we are removing the feature flag entirely.
2019-08-02Merge branch '64092-removes-update-statistics-namespace-feature-flag' into ↵Bob Van Landuyt
'master' Removes update_statistics_namespace feature flag See merge request gitlab-org/gitlab-ce!31392
2019-08-02Group `parent not preloaded` errors in sentryBob Van Landuyt
I still haven't found a moment to look into the exact cases that causes this error, but we're not loosing any information this way. In fact, it will be easier to find the right information as we only need to look to one entry in Sentry.
2019-08-02Properly process `needs:` with `when:`Kamil Trzciński
Currently, some of the jobs with `needs:` would be processed in stages, it means that `when:` for such jobs would not be respected. This changes the behavior to have a separate execution paths for jobs with `needs:`.
2019-08-02Make needs: to require previous jobsKamil Trzciński
This changes `needs:` from weak reference to have a strong reference. This means that job will not be created unless all needs are present as part of a pipeline.
2019-08-02Merge branch 'respect-needs-on-artifacts' into 'master'Sean McGivern
Respect needs on artifacts Closes #65466 See merge request gitlab-org/gitlab-ce!31413
2019-08-02Add backwards compatibility for legacy settingGeorge Koltsov
`allow_local_requests_for_hooks_and_services` was renamed to `allow_local_requests_for_web_hooks_and_services`.
2019-08-02Refactor SystemHookUrlValidator and specsGeorge Koltsov
Simplify SystemHookUrlValidator to inherit from PublicUrlValidator Refactor specs to move out shared examples to be used in both system hooks and public url validators.
2019-08-02Update security/webhooks.md doc page & specsGeorge Koltsov
Updating security/webhooks.md to match new behaviour as well as drying up few specs to extract shared examples
2019-08-02Update translations in gitlab.potGeorge Koltsov
2019-08-02Add outbound requests setting for system hooksGeorge Koltsov
This MR adds new application setting to network section `allow_local_requests_from_system_hooks`. Prior to this change system hooks were allowed to do local network requests by default and we are adding an ability for admins to control it.
2019-08-02Prevent empty classes in ansi2html conversionLukas '+ alert('Eipi') + ' Eipert
Currently we write out empty CSS classes (`class=""`) every time we create a new tag. This adds 9 unnecessary bytes per span element. In a recent trace, I have counted 11950 span elements. So we transported 105 unnecessary kilobytes!
2019-08-02Removes update_statistics_namespace feature flagMayra Cabrera
After measuring the impact of the namespace storage on https://gitlab.com/gitlab-org/gitlab-ce/issues/64092. It was decided that it's performant enough. So we can freely remove the feature flag Related to https://gitlab.com/gitlab-org/gitlab-ce/issues/64092
2019-08-02Merge branch 'sh-fix-performance-bar-warnings' into 'master'Sean McGivern
Fix performance bar warnings when Rugged is disabled Closes #65491 See merge request gitlab-org/gitlab-ce!31395
2019-08-02Respect needs for artifactsKamil Trzciński
When `needs:` is defined, the value of it is not respected when returning a list of artifacts to the runner from the job.
2019-08-02Resolve Incorrect empty state message on "Explore projects"Dennis Tang
2019-08-02Only render job sidebar block if it has contentMiranda Fluharty
Change sidebar's renderBlock() to return true only if any of the block's <detail-row>s will be rendered Change block to render only if renderBlock() returns true
2019-08-02Merge branch '10646-create-drafts-with-commit-id-ce' into 'master'Paul Slaughter
CE port of https://gitlab.com/gitlab-org/gitlab-ee/merge_requests/14520 See merge request gitlab-org/gitlab-ce!30284