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-08-06Merge branch 'sh-support-bitbucket-server-import' into 'master'Tim Zallmann
Add support for Bitbucket Server imports Closes #25393 See merge request gitlab-org/gitlab-ce!20164
2018-08-06Merge branch '48419-charts-with-long-label-appear-oversized' into 'master'Clement Ho
Resolve "Charts with long label appear oversized" Closes #48419 See merge request gitlab-org/gitlab-ce!20866
2018-08-06Merge branch 'revert-77c75d2b' into 'master'Jose Ivan Vargas
Revert "Merge branch 'bvl-instance-stats-default' into 'master'" See merge request gitlab-org/gitlab-ce!21054
2018-08-06Simplify importer_status.js failed status implementationStan Hu
2018-08-06Merge branch '48657-persist-auto-devops-banner-dismissal-per-user-cookie' ↵Fatih Acet
into 'master' Persist 'auto devops' banner dismissal globally Closes #48657 See merge request gitlab-org/gitlab-ce!20540
2018-08-06Merge branch 'background-migrations-system-load' into 'master'Stan Hu
Respond to DB health in background migrations See merge request gitlab-org/gitlab-ce!20720
2018-08-06Merge branch 'issue_44821' into 'master'Sean McGivern
Retrieve merge request closing issues from database cache Closes #44821 See merge request gitlab-org/gitlab-ce!20911
2018-08-06Revert "Merge branch 'bvl-instance-stats-default' into 'master'"Bob Van Landuyt
This reverts merge request !21044
2018-08-06Retrieve merge request closing issues from database cacheFelipe Artur
2018-08-06Merge branch '49835-increase-width' into 'master'Phil Hughes
Resolve "Increase width of left column in reports modal" Closes #49835 See merge request gitlab-org/gitlab-ce!21048
2018-08-06Merge branch 'issue_43602' into 'master'Sean McGivern
Allow multiple JIRA transitions id split by comma or semicolon Closes #43602 See merge request gitlab-org/gitlab-ce!20939
2018-08-06Respond to DB health in background migrationsYorick Peterse
This changes the BackgroundMigration worker so it checks for the health of the DB before performing a background migration. This in turn allows us to reduce the minimum interval, without having to worry about blowing things up if we schedule too many migrations. In this setup, the BackgroundMigration worker will reschedule jobs as long as the database is considered to be in an unhealthy state. Once the database has recovered, the migration can be performed. To determine if the database is in a healthy state, we look at the replication lag of any replication slots defined on the primary. If the lag is deemed to great (100 MB by default) for too many slots, the migration is rescheduled for a later point in time. The health checking code is hidden behind a feature flag, allowing us to disable it if necessary.
2018-08-06Merge branch 'bvl-instance-stats-default' into 'master'Sean McGivern
Hide instance statistics by default Closes #50000 See merge request gitlab-org/gitlab-ce!21044
2018-08-06Increases title column on modal for reportsFilipa Lacerda
2018-08-06Hide instance statistics on new installationsBob Van Landuyt
Making the migrations and the default do the right thing in the first place. This makes 20180806094307 a no-op.
2018-08-06Merge branch ↵Filipa Lacerda
'7065-performance-metrics-not-rendered-properly-in-merge-request-widget' into 'master' Add a generic more CSS class to render expandable reports correctly See merge request gitlab-org/gitlab-ce!21014
2018-08-06Merge branch 'jr-archive-hook' into 'master'Nick Thomas
Trigger `project_update` system hook when archiving projects See merge request gitlab-org/gitlab-ce!20995
2018-08-06Merge branch '49375-move-help-popover' into 'master'Phil Hughes
Moves help_popover.vue to a common location See merge request gitlab-org/gitlab-ce!21011
2018-08-06Merge branch '35952-keep-admin-settings-open-after-submit' into 'master'Filipa Lacerda
Keep Admin settings sections expanded after submitting form See merge request gitlab-org/gitlab-ce!21040
2018-08-06fix `/failures` JS init in pipelines viewLukas Eipert
2018-08-06Merge branch '25990-improve-web-terminal' into 'master'Phil Hughes
Move xterm to a node dependency and remove it from vendor's folder Closes #49741 See merge request gitlab-org/gitlab-ce!20588
2018-08-06ensure all admin settings panels remain open after form submissionMike Greiling
2018-08-06make auto devops banner dismissal global instead of per-projectMike Greiling
2018-08-05Merge branch '6860-FE-instance-level-project-templates' into 'master'Tim Zallmann
Backport changes from gitlab-ee!6740 See merge request gitlab-org/gitlab-ce!21012
2018-08-03revert changes from gitlab-org/gitlab-ce!21018Mike Greiling
2018-08-03Port of protected environments frontend changes from EE to CEMike Greiling
2018-08-03Add group milestones to dashboard milestone pageChantal Rollison
2018-08-03Merge branch '47548-monospace-commit-messages' into 'master'Mike Greiling
Resolve "Commit messages are no longer monospace, but still white-space: pre-wrap" Closes #47548 See merge request gitlab-org/gitlab-ce!20988
2018-08-03Remove modal and standardize capsStan Hu
2018-08-03Use prepend to add margins to top of tableStan Hu
2018-08-03Merge branch 'artifact-format-v2-with-parser' into 'master'Kamil Trzciński
Parse junit.xml.gz and calculate the difference between head and base See merge request gitlab-org/gitlab-ce!20576
2018-08-03Update commit description border and paddingPaul Slaughter
2018-08-03Update commit description styles to monospace font and overflow-xPaul Slaughter
2018-08-03Port EE lines into CE for commits.scssPaul Slaughter
2018-08-03backport changes from ↵Lukas Eipert
https://gitlab.com/gitlab-org/gitlab-ee/merge_requests/6740
2018-08-03Adds a css class for mr reports to render them correctlyLukas Eipert
2018-08-03Use Projects::UpdateService to archive projectsJames Ramsay
System hooks were not being triggered when projects were archived or unarchived. Reuse the Projects::UpdateService to automatically trigger system hooks and increase code reuse.
2018-08-03Moves help_popover component to a common locationFilipa Lacerda
2018-08-03Allow multiple JIRA transition idsFelipe Artur
2018-08-03Resolve "Hashed storage: extend "Enable hashed storage for all new projects" ↵Valery Sizov
to "for all new and renamed projects""
2018-08-03Resolve "Pipeline job log page uses too much CPU for loading animation"Dennis Tang
2018-08-03Merge branch 'frozen-string-enable-app-models-more' into 'master'Rémy Coutable
Enable frozen string for app/models/**/*.rb See merge request gitlab-org/gitlab-ce!21001
2018-08-03Focus terminal on loadFilipa Lacerda
Use object.assign for default option
2018-08-03Uses npm css and removes css from vendor folderFilipa Lacerda
2018-08-03Move xterm to a node dependency and remove global code [ci skip]Filipa Lacerda
2018-08-03Merge branch '45318-junit-FE' into 'master'Phil Hughes
Frontend code for "JUnit XML Test Summary In MR widget" See merge request gitlab-org/gitlab-ce!20936
2018-08-03Merge branch 'fix/gb/improve-blocked-user-tracking' into 'master'Sean McGivern
Improve blocked user tracking and fire some events only once Closes #49784 See merge request gitlab-org/gitlab-ce!20959
2018-08-03Merge branch '49899-merge-request-e-mail-link-has-full-url' into 'master'Sean McGivern
Resolve "Merge request e-mail link has full URL" Closes #49899 See merge request gitlab-org/gitlab-ce!21000
2018-08-03Merge branch 'zj-update-repository-languages-rails5' into 'master'Yorick Peterse
Update query simplification Closes #49873 See merge request gitlab-org/gitlab-ce!20982
2018-08-03Ensure links in notifications footer are not escapedRémy Coutable
Signed-off-by: Rémy Coutable <remy@rymai.me>