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
2019-02-26testpersist-source-sha-and-target-sha-for-pipelines-testShinya Maeda
2019-02-26Persist source sha and target sha for merge pipelinesShinya Maeda
Add changelog Fix doc Fix Add safe model attributes Use binary column Allow nil source sha and target sha Fix spec Fix doc Add scopes Add spec Fix coding offence Fix Fix spec ok ok
2019-02-26Merge branch 'enable_trace_sidekiq_development' into 'master'Douwe Maan
Turn on backtrace for sidekiq in development See merge request gitlab-org/gitlab-ce!25515
2019-02-26Merge branch ↵Lin Jen-Shin
'quarantine-spec/features/issues/filtered_search/search_bar_spec.rb' into 'master' [CE] Quarantine spec/features/issues/filtered_search/search_bar_spec.rb:89 See merge request gitlab-org/gitlab-ce!25551
2019-02-26Merge branch '50313-use-kaniko-to-build-containers-in-autodevops' into 'master'Kamil Trzciński
Use auto-build-image in AutoDevOps See merge request gitlab-org/gitlab-ce!24279
2019-02-26Merge branch '54417-improve-authorize-dsl' into 'master'Kamil Trzciński
Improve GraphQL Authorization DSL Closes #57828 See merge request gitlab-org/gitlab-ce!25328
2019-02-26Quarantine spec/features/issues/filtered_search/search_bar_spec.rb:89Rémy Coutable
Signed-off-by: Rémy Coutable <remy@rymai.me>
2019-02-26Merge branch 'docs-anchors4-ha' into 'master'Evan Read
Docs: Fix anchors in HA docs See merge request gitlab-org/gitlab-ce!25415
2019-02-26Merge branch 'revert-82d7b5a0-ce' into 'master'Robert Speicher
[CE port] Revert "Automatic merge of gitlab-org/gitlab-ce master" See merge request gitlab-org/gitlab-ce!25537
2019-02-26Merge branch ↵Clement Ho
'57582-dropdown-icon-misalignment-on-issues-list-on-mobile-screen' into 'master' Fix alignment of dropdown icon on issuable on mobile Closes #57582 See merge request gitlab-org/gitlab-ce!25205
2019-02-26Improve GraphQL Authorization DSLLuke Duncalfe
Previously GraphQL field authorization happened like this: class ProjectType field :my_field, MyFieldType do authorize :permission end end This change allowed us to authorize like this instead: class ProjectType field :my_field, MyFieldType, authorize: :permission end A new initializer registers the `authorize` metadata keyword on GraphQL Schema Objects and Fields, and we can collect this data within the context of Instrumentation like this: field.metadata[:authorize] The previous functionality of authorize is still being used for mutations, as the #authorize method here is called at during the code that executes during the mutation, rather than when a field resolves. https://gitlab.com/gitlab-org/gitlab-ce/issues/57828
2019-02-25Revert "Merge branch 'fix-misspellings-app-comments' into 'master'"Michael Kozono
This reverts commit 9202bbd129537a698b986e6295d0c783b5a84815, reversing changes made to 4b282e9ce1ae246c4538b3ede18d1380ea778029.
2019-02-25Revert "Merge branch 'sh-fix-cpp-templates-404' into 'master'"Michael Kozono
This reverts commit 4b282e9ce1ae246c4538b3ede18d1380ea778029, reversing changes made to b6f37434a7022be1be40c0d0519aea3ceca25ea5.
2019-02-25Revert "Merge branch ↵Michael Kozono
'49449-add-an-api-endpoint-for-bulk-updating-issues-and-mrs' into 'master'" This reverts commit 7981c0292b07a0138b096fa082341fcb13e9ce2b, reversing changes made to 9202bbd129537a698b986e6295d0c783b5a84815.
2019-02-25Revert "Merge branch 'filter-confidential-issues' into 'master'"Michael Kozono
This reverts commit d133bf84c668df3dfc9938bb04150754cb873c8b, reversing changes made to 7981c0292b07a0138b096fa082341fcb13e9ce2b.
2019-02-25Merge branch 'zj-load-languages-from-database' into 'master'Nick Thomas
Load repository language from the DB if detected Closes #47390 See merge request gitlab-org/gitlab-ce!25518
2019-02-25Merge branch 'refactor/56367-extract-resolve-with-issue-button-component' ↵Filipa Lacerda
into 'master' Extract ResolveWithIssueButton from NoteableDiscussion component Closes #56367 See merge request gitlab-org/gitlab-ce!25093
2019-02-25Extract ResolveWithIssueButton from NoteableDiscussion componentWinnie Hellmann
2019-02-25Merge branch ↵Filipa Lacerda
'55925-if-there-is-only-one-changed-page-in-review-app-go-directly-there' into 'master' If there is one changed page in review app, link to it Closes #55925 See merge request gitlab-org/gitlab-ce!25048
2019-02-25Merge branch '53655-board-milestone-fix' into 'master'Douwe Maan
Port of See merge request gitlab-org/gitlab-ce!23868
2019-02-25Merge branch '58020-fix-merge-api-endpoint-param' into 'master'Lin Jen-Shin
Respect the `should_remove_source_branch` parameter to the merge API Closes #58020 See merge request gitlab-org/gitlab-ce!25525
2019-02-25Link to Changed Page if Only One Change PresentAndrew Fontaine
Given a static page mapping, and a review app with a single static page change, the review app link will now go directly to that change instead of to the home page of the review app.
2019-02-25Merge branch '57794-project-template-for-net' into 'master'Filipa Lacerda
Project template for .NET Closes #57794 See merge request gitlab-org/gitlab-ce!25486
2019-02-25Merge branch '57794-project-template-for-net' of ↵Jason Lenny
https://gitlab.com/gitlab-org/gitlab-ce into 57794-project-template-for-net
2019-02-25Merge branch 'ce-gitaly-np1-mr-creations' into 'master'Stan Hu
CE Allow Gitaly N+1 in MR CreationsController See merge request gitlab-org/gitlab-ce!25499
2019-02-25Load repository language from the DB if detectedZeger-Jan van de Weg
The repository charts page used to detect the repository language for each request that was made to the page. Given the detection is an expensive operation and the same data is stored in the database the database is now serving the request. The same goes for an API endpoint that serves the languages. When a repository is empty or non-existent the languages will always be empty. And the language detection RPC isn't requested. Closes: https://gitlab.com/gitlab-org/gitlab-ce/issues/47390
2019-02-25Respect the should_remove_source_branch parameter to the merge APINick Thomas
2019-02-25Merge branch '57712-project-import-error-user-expected-got-hash' into 'master'Lin Jen-Shin
Resolve "Project import error, User expected, got Hash" Closes #57712 See merge request gitlab-org/gitlab-ce!25495
2019-02-25Merge branch '52734-styling-of-user-project-and-group-avatars' into 'master'Filipa Lacerda
Resolve "Styling of user, project and group avatars" Closes #52734 See merge request gitlab-org/gitlab-ce!25098
2019-02-25Style avatars for groups and projectsMartin Wortschack
- Add rectangular avatar classes - Update avatar for groups - Update avatar for projects - Update avatar for frequent items - Update avatar on "Fork project" page - Conditionally add rectangular avatar class to autocomplete items
2019-02-25Add specs checking keeping milestonesJarka Košanová
2019-02-25Merge branch 'docs/remove-unnecessary-difference' into 'master'Marcia Ramos
Remove unnecessary difference between CE and EE Closes #58070 See merge request gitlab-org/gitlab-ce!25513
2019-02-25Remove unnecessary difference between CE and EEEvan Read
2019-02-25Merge branch '7861-cross-project-pipeline-dashboard-mvc-2-ce' into 'master'Grzegorz Bizon
Delegate last_pipeline to Project See merge request gitlab-org/gitlab-ce!25422
2019-02-25Merge branch 'allow-maintainers-to-remove-pages' into 'master'Kamil Trzciński
Allow maintainers to remove pages See merge request gitlab-org/gitlab-ce!25458
2019-02-25Allow maintainers to remove pagesVladimir Shushlin
Move remove_pages permission to maintainer Fix before_action in pages controller to check `remove_pages` permission Add specs
2019-02-25Merge branch 'expose-merge-ref-to-runner' into 'master'Kamil Trzciński
Expose refspec and depth to runner See merge request gitlab-org/gitlab-ce!25233
2019-02-25Merge branch 'docs-update-reviewers-guidelines' into 'master'Douwe Maan
Docs: update code review guidelines Closes #57305 See merge request gitlab-org/gitlab-ce!25460
2019-02-25Merge branch '40795-set-project-name-on-fork-api' into 'master'Douwe Maan
Add ability to set project path and name on fork using API Closes #40795 See merge request gitlab-org/gitlab-ce!25363
2019-02-25Merge branch 'sh-fix-users-controller-ruby-2.6-compat' into 'master'Douwe Maan
Make Admin::UsersController work with Ruby 2.6 See merge request gitlab-org/gitlab-ce!25316
2019-02-25Merge branch '58098-auto-devops-postgres-version-variable' into 'master'Sean McGivern
Allow configuring POSTGRES_VERSION in Auto DevOps Closes #58098 See merge request gitlab-org/gitlab-ce!25500
2019-02-25Merge branch '52778-don-t-display-pipeline-status-if-pipelines-are-disabled' ↵Kamil Trzciński
into 'master' Resolve "Don't display pipeline status if pipelines are disabled" Closes #52778 See merge request gitlab-org/gitlab-ce!25204
2019-02-25Hide CI status when pipelines disabledScott Hampton
Pipeline status was showing failed on projects when CI was disabled. This checks to see if the feature is enabled before showing the status.
2019-02-25Merge branch 'am-fix-pagination-relative-links' into 'master'Rémy Coutable
Properly implement API pagination headers and add specs Closes #57684 See merge request gitlab-org/gitlab-ce!25267
2019-02-25Merge branch 'filter-confidential-issues' into 'master'Kamil Trzciński
Ability to filter confidential issues Closes #50747 See merge request gitlab-org/gitlab-ce!24960
2019-02-25Merge branch '49449-add-an-api-endpoint-for-bulk-updating-issues-and-mrs' ↵Rémy Coutable
into 'master' API endpoint for bulk updating issues and MRs Closes #49449 See merge request gitlab-org/gitlab-ce!25201
2019-02-25Merge branch 'fix-misspellings-app-comments' into 'master'Rémy Coutable
Fix misspellings in app/spec comments See merge request gitlab-org/gitlab-ce!25517
2019-02-25Merge branch 'sh-fix-cpp-templates-404' into 'master'Nick Thomas
Fix 404s when C++ .gitignore template selected Closes #57857 See merge request gitlab-org/gitlab-ce!25416
2019-02-25Merge branch 'update-gitlab-runner-helm-chart-to-0-2-0' into 'master'Kamil Trzciński
Update GitLab Runner Helm Chart to 0.2.0 See merge request gitlab-org/gitlab-ce!25493
2019-02-25Merge branch 'design-management-vue-app-ce' into 'master'Filipa Lacerda
Port design-management-vue-app to CE See merge request gitlab-org/gitlab-ce!25494