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
2018-10-17Fixed bug with the content disposition with wiki attachmentsFrancisco Javier López
2018-10-17Use cached readme blobs where appropriateNick Thomas
GitLab keeps a cache of the rendered HTML for a repository's README as stored in the HEAD branch. However, it was not used in all circumstances. In particular, the new blob viewer framework bypassed this cache entirely. This MR ensures a ::ReadmeBlob is returned instead of a ::Blob when asking a repository for an individual blob, if the commit and path match the readme for HEAD. This makes the cached HTML available to consumers, including the blob viewer. The ReadmeBlob is a simple delegator to the Blob, so should be compatible in all cases. Adding the rendered_markdown method is the only additional behaviour it contains.
2018-10-17Merge branch '44361-remove-gitlab-grit' into 'master'Rémy Coutable
Remove gitlab-grit as a transitive dependency of GitLab Closes #44361 See merge request gitlab-org/gitlab-ce!22373
2018-10-17Harden the wiki against missing last_versionsNick Thomas
Currently, we assume a "last_version" always exists for a wiki page. In production, this is not always true. So, guard uses of it with a null check.
2018-10-17Extend Create New Merge Request test to also add a labelAleksandr Soborov
2018-10-17Merge branch 'gt-update-environments-empty-state' into 'master'Filipa Lacerda
Update environments empty state See merge request gitlab-org/gitlab-ce!22297
2018-10-17Update environments empty stateGeorge Tsiolis
2018-10-17Replace job with group in frontend components to be consistent with backendWinnie Hellmann
2018-10-17Fixes broken borders in reports section MR widgetFilipa Lacerda
2018-10-17Allow JIRA to login using email and API tokenFelipe Artur
2018-10-17Resolve "Integrate new vue+vuex code base with new API and remove old haml code"Filipa Lacerda
2018-10-17Resolve "In web editor, when delete a file, should navigate to enclosing ↵George Thomas
directory"
2018-10-17Remove prometheus configuration help textGeorge Tsiolis
2018-10-17Merge branch 'prettify-all-the-things-8' into 'master'Fatih Acet
Prettify all the things (part 8) See merge request gitlab-org/gitlab-ce!22258
2018-10-17Merge branch 'prettify-all-the-things-1' into 'master'Fatih Acet
Prettify all the things (part 1) See merge request gitlab-org/gitlab-ce!22248
2018-10-16Merge branch 'sh-fix-commit-signatures-error' into 'master'Douwe Maan
Fix commit signature error when project is disabled Closes #50903 See merge request gitlab-org/gitlab-ce!22344
2018-10-16Merge branch 'prettify-all-the-things-6' into 'master'Fatih Acet
Prettify all the things (part 6) See merge request gitlab-org/gitlab-ce!22256
2018-10-16Prettify additional modules (I through Z)Mike Greiling
2018-10-16Merge branch '52147-loading-state' into 'master'Mike Greiling
Fixes styling issues in test reports Closes #51386 and #52147 See merge request gitlab-org/gitlab-ce!22204
2018-10-16Merge branch '52686-project-slug-does-not-auto-populate-in-ie11' into 'master'Mike Greiling
Resolve "Project slug does not auto populate in IE11" Closes #52686 See merge request gitlab-org/gitlab-ce!22367
2018-10-16Prettify environments feature_highlight and filtered_search modulesMike Greiling
2018-10-16Prettify diff_notes diffs and droplab modulesMike Greiling
2018-10-16Prettify blob behaviors and cycle_analytics modulesMike Greiling
2018-10-16Merge branch 'qa-handle-sign-up-with-terms' into 'master'Nick Thomas
[QA] Handle sign-up when terms must be accepted See merge request gitlab-org/gitlab-ce!22374
2018-10-16Merge branch '52477-add-iid-headers-to-emails' into 'master'Sean McGivern
Add IID headers to E-Mail notifications Closes #52477 See merge request gitlab-org/gitlab-ce!22263
2018-10-16Merge branch 'ide-file-templates-clear' into 'master'Filipa Lacerda
Fixed file templates not clearing in Web IDE Closes #52487 See merge request gitlab-org/gitlab-ce!22357
2018-10-16Merge branch 'diff-stats-perf-bar' into 'master'Filipa Lacerda
Fixes diff stats not being visible with performance bar See merge request gitlab-org/gitlab-ce!22390
2018-10-16Disable artifact validation for download actionMatija Čupić
2018-10-16Add IID headers to E-Mail notificationsLukas Eipert
These headers can be used to build URLs for API requests. Good examples would be Issues and Merge Requests
2018-10-16Merge flowdock monkeypatch into the inlined gemNick Thomas
2018-10-16Inline the gitlab-flowdock-git-hooks gemNick Thomas
This allows us to avoid one transitive dependency on gitlab-grit. The aim is to remove all transitive dependencies.
2018-10-16Fixes diff stats not being visible with performance barPhil Hughes
2018-10-16change generating url functions for external urlbenjamin
2018-10-16Merge branch '51972-prometheus-not-showing-as-installed-even-though-it-is' ↵Sean McGivern
into 'master' Resolve "Prometheus not showing as installed, even though it is" Closes #51972 See merge request gitlab-org/gitlab-ce!22356
2018-10-16Merge branch 'ce-7015-epic-states-notes' into 'master'Kamil Trzciński
Make source param optional according to EE change See merge request gitlab-org/gitlab-ce!22283
2018-10-16Merge branch 'rails5-fix-utf' into 'master'Sean McGivern
Use InvalidUTF8ErrorHandler only for rails 4 Closes #51908 See merge request gitlab-org/gitlab-ce!22340
2018-10-16Show available clusters when installed or updatedPeter Leitzen
Before this commit updating Prometheus (e.g. adding alerts) made it "updated" therefore not installed.
2018-10-16Merge branch 'da-fix-does-not-import-projects-over-ssh' into 'master'Stan Hu
Does not allow a SSH URI when importing a project See merge request gitlab-org/gitlab-ce!22309
2018-10-16Merge branch 'revert-f90fc922' into 'master'Mike Greiling
Revert "Merge branch 'ce-6983-promote-starting-a-gitlab-com-trial' into 'master'" See merge request gitlab-org/gitlab-ce!22315
2018-10-16Does not allow an import_url with SSH protocolDouglas Barbosa Alexandre
2018-10-15Replace `<i>` in vue components with `<icon>`George Tsiolis
2018-10-15Fix commit signature error when project is disabledStan Hu
When a project is disabled, visiting the home page would show, "An error occurred while loading commit signatures". This change checks that the user has permission to view the project to avoid unnecessary GPG signature lookups. Closes https://gitlab.com/gitlab-org/gitlab-ce/issues/50903
2018-10-15Merge branch 'sh-remove-koding' into 'master'Douwe Maan
Remove Koding integration and documentation Closes #39697 See merge request gitlab-org/gitlab-ce!22334
2018-10-15Merge branch ↵Clement Ho
'52532-unable-to-toggle-issuable-sidebar-out-of-collapsed-state' into 'master' Allow Issue and Merge Request sidebar to be toggled from collapsed state Closes #52532 See merge request gitlab-org/gitlab-ce!22353
2018-10-15Merge branch 'bvl-merge-base-multiple-revisions' into 'master'Douwe Maan
Allow getting the merge base of multiple revisions Closes #52573 See merge request gitlab-org/gitlab-ce!22295
2018-10-15Merge branch 'zj-remove-linguist' into 'master'Robert Speicher
Remove dependencies on Linguist Closes #35450 See merge request gitlab-org/gitlab-ce!21008
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-15[QA] Handle sign-up when terms must be acceptedRémy Coutable
Signed-off-by: Rémy Coutable <remy@rymai.me>
2018-10-15Merge branch '52669-fixes-quick-actions-preview' into 'master'Douglas Barbosa Alexandre
Fixes close/reopen quick actions preview for issues and merge_requests Closes #52669 See merge request gitlab-org/gitlab-ce!22343
2018-10-15Merge branch '34758-fix-code-reuse-clusters-applications_controller' into ↵Dmitriy Zaporozhets
'master' Fix code reuse issue in Projects::Clusters::ApplicationController#index See merge request gitlab-org/gitlab-ce!22182