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
2018-07-03Add readme button to non-empty project pageImre Farkas
2018-07-03Merge branch '36907-fix-new-issue-link-from-failed-job' into 'master'Grzegorz Bizon
Resolve "New issue from failed build no longer links to failed build" Closes #36907 See merge request gitlab-org/gitlab-ce!20328
2018-07-03Merge branch 'sh-fix-bamboo-change-set' into 'master'Rémy Coutable
Fix Bamboo CI status not showing for branch plans Closes #1355 See merge request gitlab-org/gitlab-ce!20277
2018-07-03Merge branch 'fix-gitaly-mr-creation-limits' into 'master'Douwe Maan
Fix MR diffs created with gitaly_diff_between enabled Closes gitaly#1256 See merge request gitlab-org/gitlab-ce!20300
2018-07-03Merge branch 'prune-web-hook-logs' into 'master'Douwe Maan
Prune web hook logs older than one month Closes #46120 See merge request gitlab-org/gitlab-ce!20183
2018-07-03Fix link to job when creating a new issue from a failed jobRémy Coutable
Signed-off-by: Rémy Coutable <remy@rymai.me>
2018-07-03Merge branch 'jprovazn-extra-line' into 'master'Sean McGivern
Don't add bottom 'match' line for deleted files Closes #48160 See merge request gitlab-org/gitlab-ce!20255
2018-07-02Merge branch 'add-title-placeholder-for-new-issues' into 'master'Annabel Gray
Add title placeholder for new issues Closes #48085 See merge request gitlab-org/gitlab-ce!20271
2018-07-02Fixed last commit author link is blue regressionConstance Okoghenun
2018-07-02Merge branch 'update-external-link-icon-in-merge-request-widget' into 'master'Phil Hughes
Update external link icon in merge request widget See merge request gitlab-org/gitlab-ce!20154
2018-07-02Merge branch '48653-mr-target-branch-missing' into 'master'Sean McGivern
Fix notify_conflict? raising exception due to absent branches Closes #48653 See merge request gitlab-org/gitlab-ce!20280
2018-07-02Fix notify_conflict? raising exception when branches do not existMark Chao
repository.can_be_merged? can raise error if diff_head_sha or target_branch are absent, therefore check those explicitly.
2018-07-02Prune web hook logs older than 90 daysYorick Peterse
This adds a recurring Sidekiq job that removes up to 50 000 old web hook logs per hour, if they are older than 90 days. This will prevent the web_hook_logs table from growing indefinitely. Fixes https://gitlab.com/gitlab-org/gitlab-ce/issues/46120
2018-07-02Merge branch 'dm-user-without-projects-performance' into 'master'Yorick Peterse
Improve performance of User.without_projects scope Closes #48577 See merge request gitlab-org/gitlab-ce!20264
2018-07-02Merge branch '39543-milestone-page-list-redesign' into 'master'Fatih Acet
Resolve "Milestone page list redesign" Closes #39543 See merge request gitlab-org/gitlab-ce!19832
2018-07-02Improve performance of User.without_projects scopeDouwe Maan
2018-07-02Merge branch '43270-import-with-milestones-failing' into 'master'Douwe Maan
Resolve "Import with Milestones Failing" Closes #43270 and #47626 See merge request gitlab-org/gitlab-ce!19961
2018-07-02Merge branch '44726-cancel_lease_upon_completion_in_project_cache_worker' ↵Sean McGivern
into 'master' Cancel ExclusiveLease upon completion in ProjectCacheWorker Closes #44726 See merge request gitlab-org/gitlab-ce!20103
2018-07-02Resolve "404 when trying to create a new issue from the group"Jan Beckmann
2018-07-02Merge branch '44725-expire_correct_methods_after_change_head' into 'master'Grzegorz Bizon
Expire correct method caches after HEAD changed Closes #44725 See merge request gitlab-org/gitlab-ce!20102
2018-07-01Merge branch 'ccr/add_locked_state' into 'master'Rémy Coutable
Add locked state to merge request API See merge request gitlab-org/gitlab-ce!20186
2018-07-01update to support latest bcrypt. resolves #48149Muhammad Nuzaihan
2018-06-30Cancel ExclusiveLease upon completion in ProjectCacheWorkerImre Farkas
2018-06-30namespace partial paths on dashboardBrett Walker
2018-06-30Fix Bamboo CI status not showing for branch plansStan Hu
The original API that queries by label (`/rest/api/latest/result?label=#{sha1}`) only works for results from main plans and not branch plans. The `/rest/api/latest/result/byChangeset/#{sha1}` endpoint gives results from branch plans but not for the first push to the branch. Subsequent pushes work. For more details, see https://jira.atlassian.com/browse/BAM-16121. Closes #1355
2018-06-29Fix tooltip flickerClement Ho
2018-06-29Resolve "Tooltips scroll along the list within Pipeline jobs dropdown on MR ↵Simon Knox
widget"
2018-06-29Replace deprecated bs.affix in merge request tabs with sticky polyfillClement Ho
2018-06-29Merge branch '47865-changelog-for-style-updates' into 'master'Clement Ho
Update personal access token form styles See merge request gitlab-org/gitlab-ce!20275
2018-06-29Resolve "Merge request refactor: Title and copy to clipboard button are ↵André Luís
behind the action buttons"
2018-06-29Add changelog for personal access token style updatesPaul Slaughter
2018-06-29Add title placeholder for new issuesGeorge Tsiolis
2018-06-29Expire correct method caches after HEAD changedImre Farkas
2018-06-29Add pipeline stages position clean-up migrationGrzegorz Bizon
2018-06-29Merge branch 'transfer_project_api_endpoint' into 'master'Grzegorz Bizon
Add transfer project endpoint to the Projects API Closes #45146 See merge request gitlab-org/gitlab-ce!20122
2018-06-29Fix MR diffs created with gitaly_diff_between enabledSean McGivern
When we save merge request diffs to the database, we need to expand the diff before doing so. That's so that we can expand diffs (within the normal limits) without hitting the repository, but just by going to the database. This is done implicitly - diffs are expanded unless we say otherwise. However, we have another option we can pass, that lets us enforce diff size limits, that defaults to true. Prior to this commit: - The Rugged code path defaulted to setting `expanded: true` and `enforce_limits: true`. - The Gitaly code path defaulted to setting `expanded: false` and `enforce_limits: true`. This was introduced by eb36fa17a6ae5cda8950904b5a52e6aa365ae591, which implemented the initial feature. Since then, if the `gitaly_diff_between` feature flag was enabled, MRs would have diffs that could not be expanded in some cases, with no fix other than to disable the feature flag and force push to the MR to refresh the diff in the database.
2018-06-29Merge branch '47769-fix_ambiguous_due_date_for_issue_scopes' into 'master'Sean McGivern
Fix ambiguous due_date column for Issue scopes Closes #47769 See merge request gitlab-org/gitlab-ce!20251
2018-06-29Fix ambiguous due_date column for Issue scopesImre Farkas
2018-06-29Merge branch 'dm-favicon-asset-host' into 'master'Sean McGivern
Always serve favicon from main GitLab domain so that CI badge can be drawn over it Closes #47802 See merge request gitlab-org/gitlab-ce!20263
2018-06-29Enabling Doorkeeper reuse_access_token optionFrancisco Javier López
2018-06-29Merge branch 'rails5-fix-48430' into 'master'Rémy Coutable
Rails5 fix MySQL milliseconds problem in specs Closes #48430 See merge request gitlab-org/gitlab-ce!20221
2018-06-29Merge branch 'rails5-fix-48432' into 'master'Rémy Coutable
Rails5 fix Mysql comparison failure caused by milliseconds problem Closes #48432 See merge request gitlab-org/gitlab-ce!20222
2018-06-29Read asset host from ActionController::Base instead of application configDouwe Maan
2018-06-29Resolve "Remove "environment scope" field on cluster creation form for ↵Sam Beckham
core/starter plans"
2018-06-29Fix OAuth application authorization screen to appear with every accessFrancisco Javier López
2018-06-29Merge branch 'osw-delete-non-latest-mr-diff-files-migration' into 'master'Sean McGivern
Schedule workers to delete non-latest diffs in post-migration See merge request gitlab-org/gitlab-ce!20013
2018-06-29Merge branch 'ccr/maintain_labels' into 'master'Sean McGivern
Keep label on issue when moving Closes #46098 See merge request gitlab-org/gitlab-ce!20036
2018-06-29Resolve "SQL Queries are not shown from the Performance Bar in Safari"Simon Knox
2018-06-29Resolve "Sidebar on jobs and wikis is missing at small widths"Clement Ho
2018-06-29Resolve "Markdown header `code` does not have the correct font-size"Simon Knox