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-04-23Bump gRPC to 1.19.0 and protobuf to 3.7.1Stan Hu
These upgrades are necessary to support Ruby 2.6. This matches the Gitaly MR: https://gitlab.com/gitlab-org/gitaly/merge_requests/1066
2019-04-22Revert "Created a hack to prevent setting content on image"Natalia Tepluhina
This reverts commit e8c1c930c3bc7c159463ed3bed8765db01b40328.
2019-04-22Merge branch 'update-gitlab-runner-helm-chart-to-0-4-0' into 'master'James Lopez
Update GitLab Runner Helm Chart to 0.4.0/11.10.0 See merge request gitlab-org/gitlab-ce!27508
2019-04-20Fix wrong use of ActiveRecord in PoolRepositoryJacob Vosmaer
2019-04-19Merge branch '57247-show-prioritized-labels-to-guests' into 'master'Clement Ho
Show prioritized labels to guests Closes #57247 See merge request gitlab-org/gitlab-ce!27307
2019-04-19Improvements to Project overview UIIllya Klymov
2019-04-19Update CHANGELOG.md for 11.10.0GitLab Release Tools Bot
[ci skip]
2019-04-19Update GitLab Runner Helm Chart to 0.4.0Steve Azzopardi
2019-04-19Merge branch 'protected-runner-registration' into 'master'Kamil Trzciński
Add configuration of access_level for runners on registration via API See merge request gitlab-org/gitlab-ce!27490
2019-04-19Show prioritized labels to guestsHeinrich Lee Yu
Disables sorting when guests are viewing
2019-04-18Merge branch 'sh-bump-ruby-required-version-check' into 'master'Michael Kozono
Bump required Ruby version check to 2.5.3 Closes #60704 See merge request gitlab-org/gitlab-ce!27495
2019-04-18Bump required Ruby version check to 2.5.3Stan Hu
Relates to https://gitlab.com/gitlab-org/gitlab-ce/issues/58079 Closes https://gitlab.com/gitlab-org/gitlab-ce/issues/60704
2019-04-18Upgrade Gitaly to 1.34.0John Cai
2019-04-18Merge branch 'ce-10725-restructure-project-merge-request-settings-page' into ↵Michael Kozono
'master' CE Backport for "Restructure project merge request settings page" See merge request gitlab-org/gitlab-ce!26834
2019-04-18Fix link issues with labelsTanya Pazitny
* On the project labels page, the label itself should not be clickable. * On the group labels page, the links for Issues and Merge Requests should be shown.
2019-04-18Replace ee-specific code for boards/issue_card_innerRoman Rodionov
2019-04-18Add configuration of access_level for runners on registration via APIzelin-l
Allow setting access_level of new runner to not_protected (default) or ref_protected Minor update to relevant docs and tests
2019-04-18Merge branch 'an-use-labkit' into 'master'Rémy Coutable
Migrate correlation and tracing code to LabKit See merge request gitlab-org/gitlab-ce!25379
2019-04-18Add instructions on how to contribute a "Built-In" template on projects/new"Illya Klymov
2019-04-18Merge branch 'markdown-autocomplete-escaping' into 'master'Kushal Pandya
Only use backslash escapes in autocomplete when needed Closes #45348 See merge request gitlab-org/gitlab-ce!27457
2019-04-18Merge branch '58293-extract-discussion-actions' into 'master'Filipa Lacerda
Extract discussion actions into separate component Closes #58293 See merge request gitlab-org/gitlab-ce!27227
2019-04-18Migrate correlation and tracing code to LabKitAndrew Newdigate
This change is a fairly straightforward refactor to extract the tracing and correlation-id code from the gitlab rails codebase into the new LabKit-Ruby project. The corresponding import into LabKit-Ruby was in https://gitlab.com/gitlab-org/labkit-ruby/merge_requests/1 The code itself remains very similar for now. Extracting it allows us to reuse it in other projects, such as Gitaly-Ruby. This will give us the advantages of correlation-ids and distributed tracing in that project too.
2019-04-18Update links to new gitlab-org/charts/auto-deploy-appDylan Griffith
2019-04-17Merge branch ↵Kamil Trzciński
'60500-disable-jit-kubernetes-resource-creation-for-project-level-clusters' into 'master' Disable JIT Kubernetes resource creation for project level clusters Closes #60500 See merge request gitlab-org/gitlab-ce!27352
2019-04-17Bump version of knative from 0.3 -> 0.5Chris Baumbauer
2019-04-17Extract discussion actions into separate componentPaul Gascou-Vaillancourt
- Created DiscussionActions component - Updated NoteableDiscussion component accordingly - Wrote Jest tests for DiscussionActions - Updated Jest config to enable emojis aliases mock - Updated qa specs to reflect changes in NoteableDiscussions
2019-04-17Update CE-specific files for project MR settings UINathan Friend
This commit updates the CE-specific files that reorganizes the project merge request settings UI.
2019-04-17Merge branch 'weimeng-user-autocomplete-fix' into 'master'Robert Speicher
Only show author in autocomplete dropdown if author is active See merge request gitlab-org/gitlab-ce!27292
2019-04-17Merge branch '57815' into 'master'Sean McGivern
#57815 Omniauth UltraAuth strategy See merge request gitlab-org/gitlab-ce!26348
2019-04-17Merge branch 'sh-backport-list-commits-by-oid-rugged' into 'master'Douwe Maan
Bring back Rugged implementation of ListCommitsByOid See merge request gitlab-org/gitlab-ce!27441
2019-04-17Merge branch 'sh-add-gitaly-backtrace' into 'master'Sean McGivern
Add backtrace to Gitaly performance bar Closes #60092 See merge request gitlab-org/gitlab-ce!27345
2019-04-17Only use backslash escapes in autocomplete when neededSean McGivern
Autocompletion for references happens on the frontend. Those references are turned into actual references on the backend, but only after Markdown processing has happened. That means that if a reference contains a character that Markdown might consume, it won't render correctly. So we need to do some escaping on the frontend. We have these potential problem characters: https://docs.gitlab.com/ee/user/markdown.html#emphasis 1. ~ - this is ~~strikethrough~~, but only when doubled. 2. _ - used for _emphasis_, doubled is __bold__. 3. * - also used for *emphasis*, doubled is **bold** also. 4. ` - used for `code spans`, any number works. We don't need to escape `-` any more. When it comes to being inside a word: 1. a~~b~~ has strikethrough, so it needs to be escaped everywhere. 2. a_b_ has no emphasis (see [a]) so it only needs to be escaped at the start and end of words. 3. a*b* has emphasis, so it needs to be escaped everywhere. 4. a`b` has a code span, so it needs to be escaped everywhere. Or, in code terms: 1. Always escape ~~, *, and ` when being inserted by autocomplete. 2. Escape _ when it's either at the beginning or the end of a word. [a]: https://docs.gitlab.com/ee/user/markdown.html#multiple-underscores-in-words
2019-04-17Bring back Rugged implementation of ListCommitsByOidStan Hu
This brings back changes in https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/20432. For users using Gitaly on top of NFS, accessing the Git data directly via Rugged may be faster than going through than Gitaly. This merge request introduces the feature flag `rugged_list_commits_by_oid` to activate the Rugged method. For one customer, we saw that ListCommitsByOid was the second highest used endpoint that may be causing increased load.
2019-04-17Add backtrace to Gitaly performance barStan Hu
This adds the backtrace to a table to show exactly where the Gitaly call was made to make it easier to understand where the call originated. This change also collapses the details in the same row to improve the usability when there is a backtrace.
2019-04-17Include link to raw job log in plain-text emailsToon Claes
People who prefer plain text email also might prefer the raw job log files. So include the link directly to there. Closes https://gitlab.com/gitlab-org/gitlab-ce/issues/56849
2019-04-17#57815 Omniauth UltraAuth strategyKartikey Tanna
2019-04-17Merge branch '24704-restore-download-repository-path' into 'master'Rémy Coutable
Restore "download repository path" feature, now with fixes and a feature flag Closes gitlab-workhorse#218 and #24704 See merge request gitlab-org/gitlab-ce!27275
2019-04-17Fix unexpected extra notification mailsPatrick Derichs
Using custom_action and recipient filtering Add more generic filtering to user_ids_notifiable_on Add changelog entry Remove commented class Method is no longer needed Overloading no longer required Filter by action just in case of custom notification level Add participant check Fix unexpected extra notification mails Using custom_action and recipient filtering Add more generic filtering to user_ids_notifiable_on Add changelog entry Remove commented class Method is no longer needed Overloading no longer required Filter by action just in case of custom notification level Fix comment Add repond_to? checks Reverted custom_action filtering Enhanced output of should_email helper Changed :watch to :participating for custom notifiable users Change spec variable name Enhanced participating check These conditions are no longer needed Fix custom notification handling for participating type Participating level should include maintainers Fixed add_guest notification Fix successful pipeline notification Refactoring: Use maintainer? method on team instead Add spec for new_issue: true for a custom group setting which should have lower prio than an available project setting Clean up specs
2019-04-17Merge branch '10083-dropdown-ce-ee-difference' into 'master'Filipa Lacerda
Removes EE diffs for dropdown_value_collapsed.vue Closes gitlab-ee#10083 See merge request gitlab-org/gitlab-ce!27367
2019-04-17Add help texts to K8 form fieldsEnrique Alcántara
2019-04-17Merge branch 'tortuetorche/gitlab-ce-patch-auto-deploy-extra-values' into ↵Grzegorz Bizon
'master' Allow extra args for helm in Auto-DevOps See merge request gitlab-org/gitlab-ce!26838
2019-04-17Merge branch '58361-issue-create-system-note-timestamp' into 'master'Stan Hu
Set correct timestamps when creating past issues Closes #58361 See merge request gitlab-org/gitlab-ce!27406
2019-04-16Merge branch 'zj-git-2.21-tests' into 'master'Douglas Barbosa Alexandre
Test using Git 2.21 See merge request gitlab-org/gitlab-ce!27418
2019-04-16Merge branch '59034-external-link-button' into 'master'Tim Zallmann
Replaced "View file" button with doc-text icon Closes #59034 See merge request gitlab-org/gitlab-ce!27365
2019-04-16Merge branch 'nfriend-update-merge-request-widget-for-post-merge-pipelines' ↵Filipa Lacerda
into 'master' Update merge request widget to accommodate post-merge pipelines See merge request gitlab-org/gitlab-ce!25983
2019-04-16Revert "Revert "Merge branch '24704-download-repository-path' into 'master'""Nick Thomas
This reverts commit 171818df0a72097aa1a804c8213666b3f66b0966.
2019-04-16Test using Git 2.21Zeger-Jan van de Weg
Given Rails doesn't use the Git binary anymore, this shouldn't be a problem.
2019-04-16Set correct timestamps when creating past issuesHeinrich Lee Yu
Sets `system_note_timestamp` from `created_at`
2019-04-16Merge branch 'rewind-iid-on-pipelines' into 'master'Sean McGivern
Rewind iid on pipelines Closes #59362 See merge request gitlab-org/gitlab-ce!26490
2019-04-16Merge branch '58748-update-nodejs-to-10.15.3' into 'master'Kamil Trzciński
Update Node.js to 10.15.3 in CI template for Hexo See merge request gitlab-org/gitlab-ce!25943