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-04-02Merge branch 'sh-cache-pipeline-find-commits' into 'master'Kamil Trzciński
Cache FindCommit results in pipelines view See merge request gitlab-org/gitlab-ce!26776
2019-04-02Stop calling UnlinkRepositoryFromObjectPool RPCJacob Vosmaer
Fixes https://gitlab.com/gitlab-org/gitlab-ce/issues/59777. In earlier iterations of our implementation of Git object deduplication we thought we would be making extensive use of Git remotes in pool repositories in the future, and that we should manage these remotes carefully from the start. We now expect we only care about one remote, namely the source project. The other remotes are there only for forensic purposes. Before this MR we tried to also remove pool remotes when member projects got deleted, with the UnlinkRepositoryFromObjectPool RPC. This is fragile when there are race conditions (see https://gitlab.com/gitlab-org/gitaly/issues/1568#note_153955926). We have spent some time making this RPC less fragile in https://gitlab.com/gitlab-org/gitaly/merge_requests/1151 but looking at this problem again, I think we should just stop calling it.
2019-04-02Merge branch 'jarv/dev-to-gitlab-2019-04-02' into 'master'Robert Speicher
Jarv/dev to gitlab 2019 04 02 Closes #2810 See merge request gitlab-org/gitlab-ce!26846
2019-04-02Merge branch 'expose-mr-pipeline-parameters-for-merge-widget-ce' into 'master'Kamil Trzciński
Backport: Expose merge request pipeline parameters for MR widget See merge request gitlab-org/gitlab-ce!26826
2019-04-02Merge branch 'diff-tree-mobile-bug' into 'master'Filipa Lacerda
Fixed positioning of the diff tree list on mobile Closes #59739 See merge request gitlab-org/gitlab-ce!26820
2019-04-02Cache FindCommit results in pipelines viewStan Hu
For each pipeline, the controller will call `Pipeline#latest?` to determine if the pipeline's ref is the latest for that branch. Since it's likely that the same branches are being used in each pipeline, we can reduce Gitaly overhead by caching the results of the FindCommit call.
2019-04-02Backport splitting approval changes from CEIgor
Author and committers approvals are split in EE This commit provides backports for those changes This reverts commit 886f00bcba23d67e2c86591c2eb5359ef457a2f9.
2019-04-02Merge branch 'fix-expand-full-file-on-image' into 'master'Douwe Maan
Fixed expand full file button showing on images Closes #59695 See merge request gitlab-org/gitlab-ce!26830
2019-04-02Monitor GraphQL with PrometheusJan Provaznik
Extends graphql's platform tracing class to observe duration of graphql methods. In graphql 1.8.11 is added prometheus class but it's not very useful for us because it uses prometheus_exporter to export results.
2019-04-02Merge branch 'design-management-upload-client-ce' into 'master'Filipa Lacerda
CE backport of design-management-upload-client See merge request gitlab-org/gitlab-ce!26766
2019-04-02(CE Port) "Follow-up from "(EE port) Externalize strings in projects ↵Martin Wortschack
controllers""
2019-04-02Fixed positioning of the diff tree list on mobilePhil Hughes
Closes https://gitlab.com/gitlab-org/gitlab-ce/issues/59739
2019-04-02Backport EE changeShinya Maeda
This is for merge request pipelines
2019-04-02Merge branch 'issue_51789_part_1' into 'master'Sean McGivern
Migrate issuable states to integer patch 1 of 2 Closes #51789 See merge request gitlab-org/gitlab-ce!25107
2019-04-02Merge branch 'contribute/fix-project-name-members-page' into 'master'Sean McGivern
Don't sanitize project names on project members page Closes #58751 See merge request gitlab-org/gitlab-ce!25946
2019-04-02CE backport of design-management-upload-clientPhil Hughes
2019-04-02Merge branch 'master' of dev.gitlab.org:gitlab/gitlabhq into ↵John Jarvis
jarv/dev-to-gitlab-2019-04-02
2019-04-02Merge branch 'security-2819-xss-resolve-conflicts-branch-name' into 'master'GitLab Release Tools Bot
Fix XSS in resolve conflicts form See merge request gitlab/gitlabhq!2977
2019-04-02Merge branch 'security-56224' into 'master'GitLab Release Tools Bot
Fix related branches visible in issues for guests See merge request gitlab/gitlabhq!2996
2019-04-02Merge branch 'security-id-potential-denial-languages' into 'master'GitLab Release Tools Bot
Return cached languages if they've been detected before See merge request gitlab/gitlabhq!2998
2019-04-02Merge branch 'security-55503-fix-pdf-js-vulnerability' into 'master'GitLab Release Tools Bot
Fix PDF.js vulnerability See merge request gitlab/gitlabhq!2999
2019-04-02Merge branch 'security-milestone-labels' into 'master'GitLab Release Tools Bot
[master] Check label_ids parent when updating issue board See merge request gitlab/gitlabhq!3027
2019-04-02Merge branch 'security-mass-assignment-on-project-update' into 'master'GitLab Release Tools Bot
Disallow changing namespace of a project in update method See merge request gitlab/gitlabhq!3028
2019-04-02Merge branch 'coverage-parsing-examples' into 'master'Grzegorz Bizon
Tweak coverage parsing examples See merge request gitlab-org/gitlab-ce!26732
2019-04-02Fix group transfer selection possibilitiesPeter Marko
2019-04-02Merge branch 'bvl-stream-io-into-gitaly' into 'master'Nick Thomas
Allow streaming io objects into Gitaly See merge request gitlab-org/gitlab-ce!26738
2019-04-01Merge branch 'nfriend-css-updates-for-gitlab-design-system-compliance' into ↵Fatih Acet
'master' Update border radius of form controls and remove space above page titles See merge request gitlab-org/gitlab-ce!24497
2019-04-01Allow streaming io objects into GitalyBob Van Landuyt
This allows us to set the encoding of an IO passed without reading it into memory. This is useful if we want to stream files into Gitaly. Like we do when uploading a new file to the repository.
2019-04-01Fixed expand full file button showing on imagesPhil Hughes
Closes https://gitlab.com/gitlab-org/gitlab-ce/issues/59695
2019-04-01Force a full GC after importing a projectStan Hu
During a project import, it's possible that new branches are created by the importer to handle pull requests that have been created from forked projects, which would increment the `pushes_since_gc` value via `HousekeepingService.increment!` before a full garbage collection gets to run. This causes HousekeepingService to skip the full `git gc` and move to the incremental repack mode. To ensure that a garbage collection is run to pack refs and objects, explicitly execute the task. Closes https://gitlab.com/gitlab-org/gitlab-ce/issues/59477
2019-04-01Merge branch 'check-mergeability-in-merge-to-ref-service' into 'master'Douglas Barbosa Alexandre
Check mergeability in merge to ref service See merge request gitlab-org/gitlab-ce!26757
2019-04-01Merge branch 'contribute/fix-nav-links-archived-project' into 'master'Douglas Barbosa Alexandre
Disable inaccessible navigation links upon archiving a project Closes #58793 See merge request gitlab-org/gitlab-ce!26020
2019-04-01Merge branch '57669-fix-bug-clicking-file-header-refreshes-page' into 'master'Clement Ho
Fix bug where clicking file header in diff refreshes page Closes #57669 See merge request gitlab-org/gitlab-ce!26422
2019-04-01Fix MergeRequest#has_commits? nil comparisonFrancisco Javier López
2019-04-01Dry up and remove responsibilitiesJoão Cunha
- Dry create_service.rb and update_service.rb duplicated code - Remove known list of applications responsibility from services - Refactor the complex builders->builder call from base_service.rb
2019-04-01Merge branch '59694-markdown-area' into 'master'Phil Hughes
Fix styleling for `app/assets/stylesheets/framework/markdown_area.scss` See merge request gitlab-org/gitlab-ce!26768
2019-04-01Merge branch 'ce-10220-link-to-note-from-email' into 'master'Kushal Pandya
Display link to next to note in text email See merge request gitlab-org/gitlab-ce!26695
2019-04-01Replaces md-area with position-relative for markdown areasFilipa Lacerda
2019-04-01add a uniq constraints on issues and mrs labelsAntoine Huret
2019-04-01Don't sanitize project names on project members pageElias Werberich
2019-04-01Check mergeability in merge to ref serviceShinya Maeda
and add spec Add changelog ok ok
2019-03-31Disable inaccessible navigation links upon archiving a projectElias Werberich
2019-03-31Remove executable permission on imagesStan Hu
Fixes https://gitlab.com/gitlab-org/gitlab-ee/-/jobs/187433314
2019-03-30Don't try to set any ACL on uploaded objectsBastian Blank
Set ACL of uploaded objects to not-public (fog-aws) or no ACL at all (fog-google). Value is ignored by other supported backends (fog-aliyun, fog-openstack, fog-rackspace) This allows uploads to GCS with ACL support disabled.
2019-03-29Merge branch 'dennis-positioning-important' into 'master'Clement Ho
Designate common positioning classes as `!important` a la Bootstrap See merge request gitlab-org/gitlab-ce!26621
2019-03-29Scroll to diff file when clicking on file nameSam Bigelow
- Add an ID to the diff content - handle clicking on file name in diffFileHeader when it is not a link to another page but rather a link to an element on the page
2019-03-29Renames Cluster#managed? to provided_by_user?Mayra Cabrera
This will allow to user the term managed? on https://gitlab.com/gitlab-org/gitlab-ce/issues/56557. Managed? will be used to distinct clusters that are automatically managed by GitLab
2019-03-29Handle missing keys in sentry api responseReuben Pereira
- Do not raise error when there are missing non-essential keys in sentry api response. - Add specs for to check for missing keys behavior.
2019-03-29Merge branch '50199-quick-actions-refactor' into 'master'Sean McGivern
Extend quick actions dsl Closes #50199 See merge request gitlab-org/gitlab-ce!26095
2019-03-29Merge branch 'ce-1607-elastic_feature_flag_per_group' into 'master'Nick Thomas
Backport of 1607-elastic_feature_flag_per_group See merge request gitlab-org/gitlab-ce!25825