summaryrefslogtreecommitdiff
path: root/changelogs
Commit message (Collapse)AuthorAgeFilesLines
* Disable password autocomplete in mirror repository formsh-fix-autocomplete-mirror-repoStan Hu2019-04-211-0/+5
| | | | | | | | | | | | | | | | Chrome and other browsers ignore `autocomplete=false` and `autocomplete=off` now. This likely caused the mirroring section to expand whenever a user clicked "Expand" in the protected branches settings. https://developers.google.com/web/fundamentals/design-and-ux/input/forms/?hl=en recommends using `new-password` as the new field to prevent automatic filling. This is similar to https://gitlab.com/gitlab-org/gitlab-ee/merge_requests/8477. Closes https://gitlab.com/gitlab-org/gitlab-ee/issues/11237
* Fix wrong use of ActiveRecord in PoolRepositoryJacob Vosmaer2019-04-201-0/+6
|
* Merge branch '57247-show-prioritized-labels-to-guests' into 'master'Clement Ho2019-04-191-0/+5
|\ | | | | | | | | | | | | Show prioritized labels to guests Closes #57247 See merge request gitlab-org/gitlab-ce!27307
| * Show prioritized labels to guests57247-show-prioritized-labels-to-guestsHeinrich Lee Yu2019-04-191-0/+5
| | | | | | | | Disables sorting when guests are viewing
* | Improvements to Project overview UIIllya Klymov2019-04-191-0/+5
| |
* | Update CHANGELOG.md for 11.10.0GitLab Release Tools Bot2019-04-19203-1021/+0
| | | | | | [ci skip]
* | Merge branch 'protected-runner-registration' into 'master'Kamil Trzciński2019-04-191-0/+5
|\ \ | |/ |/| | | | | Add configuration of access_level for runners on registration via API See merge request gitlab-org/gitlab-ce!27490
| * Add configuration of access_level for runners on registration via APIzelin-l2019-04-181-0/+5
| | | | | | | | | | Allow setting access_level of new runner to not_protected (default) or ref_protected Minor update to relevant docs and tests
* | Merge branch 'sh-bump-ruby-required-version-check' into 'master'Michael Kozono2019-04-181-0/+5
|\ \ | | | | | | | | | | | | | | | | | | Bump required Ruby version check to 2.5.3 Closes #60704 See merge request gitlab-org/gitlab-ce!27495
| * | Bump required Ruby version check to 2.5.3Stan Hu2019-04-181-0/+5
| |/ | | | | | | | | | | Relates to https://gitlab.com/gitlab-org/gitlab-ce/issues/58079 Closes https://gitlab.com/gitlab-org/gitlab-ce/issues/60704
* | Upgrade Gitaly to 1.34.0John Cai2019-04-181-0/+5
| |
* | Merge branch 'ce-10725-restructure-project-merge-request-settings-page' into ↵Michael Kozono2019-04-181-0/+5
|\ \ | | | | | | | | | | | | | | | | | | 'master' CE Backport for "Restructure project merge request settings page" See merge request gitlab-org/gitlab-ce!26834
| * | Update CE-specific files for project MR settings UIce-10725-restructure-project-merge-request-settings-pageNathan Friend2019-04-171-0/+5
| | | | | | | | | | | | | | | This commit updates the CE-specific files that reorganizes the project merge request settings UI.
* | | Fix link issues with labelsTanya Pazitny2019-04-181-0/+6
| | | | | | | | | | | | | | | * 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.
* | | Replace ee-specific code for boards/issue_card_innerRoman Rodionov2019-04-181-0/+5
| | |
* | | Merge branch 'an-use-labkit' into 'master'ce-xanf-add-links-to-admin-areaRémy Coutable2019-04-181-0/+5
|\ \ \ | | | | | | | | | | | | | | | | Migrate correlation and tracing code to LabKit See merge request gitlab-org/gitlab-ce!25379
| * | | Migrate correlation and tracing code to LabKitan-use-labkitAndrew Newdigate2019-04-181-0/+5
| | |/ | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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.
* | | Add instructions on how to contribute a "Built-In" template on projects/new"Illya Klymov2019-04-181-0/+5
| | |
* | | Merge branch 'markdown-autocomplete-escaping' into 'master'Kushal Pandya2019-04-181-0/+5
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | Only use backslash escapes in autocomplete when needed Closes #45348 See merge request gitlab-org/gitlab-ce!27457
| * | | Only use backslash escapes in autocomplete when neededmarkdown-autocomplete-escapingSean McGivern2019-04-171-0/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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
* | | | Merge branch '58293-extract-discussion-actions' into 'master'Filipa Lacerda2019-04-181-0/+5
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Extract discussion actions into separate component Closes #58293 See merge request gitlab-org/gitlab-ce!27227
| * | | | Extract discussion actions into separate component58293-extract-discussion-actionsPaul Gascou-Vaillancourt2019-04-171-0/+5
| | |_|/ | |/| | | | | | | | | | | | | | | | | | | | | | | | | | - 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
* | | | Update links to new gitlab-org/charts/auto-deploy-appDylan Griffith2019-04-181-0/+5
| |_|/ |/| |
* | | Merge branch ↵Kamil Trzciński2019-04-171-0/+5
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | '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
| * | | Disable JIT resource creation for project clusters60500-disable-jit-kubernetes-resource-creation-for-project-level-clustersTiger2019-04-161-0/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | JIT resource creation blocks deployments if a user is self-managing their cluster, as it will fail the build if unable to create a namespace and service account. Using a custom namespace and service account was previously supported for project level clusters, so we should preserve this functionality. https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/27352
* | | | Bump version of knative from 0.3 -> 0.5Chris Baumbauer2019-04-171-0/+5
| |/ / |/| |
* | | Merge branch 'weimeng-user-autocomplete-fix' into 'master'Robert Speicher2019-04-171-0/+5
|\ \ \ | | | | | | | | | | | | | | | | Only show author in autocomplete dropdown if author is active See merge request gitlab-org/gitlab-ce!27292
| * | | Only show in autocomplete when author activeWei-Meng Lee2019-04-121-0/+5
| | | |
* | | | Merge branch '57815' into 'master'Sean McGivern2019-04-171-0/+5
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | #57815 Omniauth UltraAuth strategy See merge request gitlab-org/gitlab-ce!26348
| * | | | #57815 Omniauth UltraAuth strategyKartikey Tanna2019-04-171-0/+5
| | |_|/ | |/| |
* | | | Merge branch 'sh-backport-list-commits-by-oid-rugged' into 'master'Douwe Maan2019-04-171-0/+5
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | Bring back Rugged implementation of ListCommitsByOid See merge request gitlab-org/gitlab-ce!27441
| * | | | Bring back Rugged implementation of ListCommitsByOidStan Hu2019-04-171-0/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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.
* | | | | Merge branch 'sh-add-gitaly-backtrace' into 'master'Sean McGivern2019-04-171-0/+5
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add backtrace to Gitaly performance bar Closes #60092 See merge request gitlab-org/gitlab-ce!27345
| * | | | | Add backtrace to Gitaly performance barStan Hu2019-04-171-0/+5
| |/ / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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.
* | | | | Include link to raw job log in plain-text emailsToon Claes2019-04-171-0/+5
| |/ / / |/| | | | | | | | | | | | | | | | | | | | | | | 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
* | | | Merge branch '24704-restore-download-repository-path' into 'master'Rémy Coutable2019-04-171-0/+5
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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
| * | | | Revert "Revert "Merge branch '24704-download-repository-path' into 'master'""Nick Thomas2019-04-161-0/+5
| | | | | | | | | | | | | | | | | | | | This reverts commit 171818df0a72097aa1a804c8213666b3f66b0966.
* | | | | Fix unexpected extra notification mailsPatrick Derichs2019-04-171-0/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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
* | | | | Merge branch '10083-dropdown-ce-ee-difference' into 'master'Filipa Lacerda2019-04-171-0/+5
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Removes EE diffs for dropdown_value_collapsed.vue Closes gitlab-ee#10083 See merge request gitlab-org/gitlab-ce!27367
| * | | | | Removes EE diffs for dropdown_value_collapsed10083-dropdown-ce-ee-differenceDenys Mishunov2019-04-151-0/+5
| | |_|_|/ | |/| | |
* | | | | Add help texts to K8 form fieldsEnrique Alcántara2019-04-171-0/+5
| | | | |
* | | | | Merge branch 'tortuetorche/gitlab-ce-patch-auto-deploy-extra-values' into ↵Grzegorz Bizon2019-04-171-0/+5
|\ \ \ \ \ | |_|_|/ / |/| | | | | | | | | | | | | | | | | | | | | | | | 'master' Allow extra args for helm in Auto-DevOps See merge request gitlab-org/gitlab-ce!26838
| * | | | Add HELM_EXTRA_ARGS to all Auto-DevOps helm invocationsJames Fargher2019-04-081-0/+5
| | | | |
* | | | | Merge branch '58361-issue-create-system-note-timestamp' into 'master'Stan Hu2019-04-161-0/+5
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Set correct timestamps when creating past issues Closes #58361 See merge request gitlab-org/gitlab-ce!27406
| * | | | | Set correct timestamps when creating past issues58361-issue-create-system-note-timestampHeinrich Lee Yu2019-04-161-0/+5
| | | | | | | | | | | | | | | | | | | | | | | | Sets `system_note_timestamp` from `created_at`
* | | | | | Merge branch 'zj-git-2.21-tests' into 'master'Douglas Barbosa Alexandre2019-04-161-0/+5
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | Test using Git 2.21 See merge request gitlab-org/gitlab-ce!27418
| * | | | | | Test using Git 2.21Zeger-Jan van de Weg2019-04-161-0/+5
| | |_|_|/ / | |/| | | | | | | | | | | | | | | | | | | | | | Given Rails doesn't use the Git binary anymore, this shouldn't be a problem.
* | | | | | Merge branch '59034-external-link-button' into 'master'Tim Zallmann2019-04-161-0/+5
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Replaced "View file" button with doc-text icon Closes #59034 See merge request gitlab-org/gitlab-ce!27365
| * | | | | | Replaced external link button with doc-text icon59034-external-link-buttonDenys Mishunov2019-04-151-0/+5
| | |_|_|/ / | |/| | | | | | | | | | | | | | | | Closes https://gitlab.com/gitlab-org/gitlab-ce/issues/59034
* | | | | | Merge branch 'nfriend-update-merge-request-widget-for-post-merge-pipelines' ↵Filipa Lacerda2019-04-161-0/+5
|\ \ \ \ \ \ | |_|/ / / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | into 'master' Update merge request widget to accommodate post-merge pipelines See merge request gitlab-org/gitlab-ce!25983