summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Update alerts so Todos are more cleartracking-documentationjejacks0n2019-08-213-6/+6
|
* Update phrasing to reduce usage of “strategy”jejacks0n2019-08-211-4/+4
|
* Add documentation for trackingjejacks0n2019-08-216-49/+90
| | | | This extracts the fe_guide tracking documentation and creates a centralized Event tracking section.
* Merge branch '328-other-ee' into 'master'Stan Hu2019-08-213-15/+35
|\ | | | | | | | | Port of EE "Elasticsearch versioned schema for other ActiveRecord models" See merge request gitlab-org/gitlab-ce!31660
| * Remove links to issues to make docs lint happy328-other-eeStan Hu2019-08-211-6/+1
| |
| * Elasticsearch docs: Minor copyedits and add links to issuesStan Hu2019-08-211-2/+13
| |
| * ES: sync with EEMark Chao2019-08-213-15/+29
| | | | | | | | Doc for multi-indices archtecture
* | Merge branch 'refactor/notes-getters' into 'master'Paul Slaughter2019-08-212-57/+112
|\ \ | | | | | | | | | | | | | | | | | | Refactor nextUnresolvedDiscussionId and previousUnresolvedDiscussionId getters Closes #65817 See merge request gitlab-org/gitlab-ce!31754
| * | Refactor nextUnresolvedDiscussionId and previousUnresolvedDiscussionId gettersArun Kumar Mohan2019-08-152-57/+112
| | |
* | | Merge branch 'demodulize-model-headers' into 'master'Mayra Cabrera2019-08-212-2/+80
|\ \ \ | | | | | | | | | | | | | | | | Demodulize model headers in emails See merge request gitlab-org/gitlab-ce!31968
| * | | Handle namespaced modelsAlex Kalderimis2019-08-212-2/+80
|/ / / | | | | | | | | | | | | | | | We encountered issues with setting module headers for namespaced models. These changes address this. We retain the namespacing, but transform the classnames to make them into safe email headers.
* | | Merge branch '9703-track-clicks-on-the-issue-sidebars' into 'master'Clement Ho2019-08-2112-8/+82
|\ \ \ | | | | | | | | | | | | | | | | Backport: Resolve "Track clicks on the issue sidebars" See merge request gitlab-org/gitlab-ce!31435
| * | | Backport: Issue sidebar trackingDonald Cook2019-08-2112-8/+82
|/ / / | | | | | | | | | Added snowplow event tracking to Edit buttons
* | | Merge branch 'replace-svg-message-with-empty-state' into 'master'Clement Ho2019-08-214-86/+56
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | Remove svg component from Container Registry Closes #66371 See merge request gitlab-org/gitlab-ce!30845
| * | | Fixed tech debt of using custom componentNick Kipling2019-08-214-86/+56
|/ / / | | | | | | | | | | | | Changed the container registry to use the empty state component Removed the custom svg-component
* | | Merge branch ↵Stan Hu2019-08-215-2/+65
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | '64383-pattern-matching-with-variables-causes-gitlabs-ci-lint-to-throw-500' into 'master' Fix 500 errors caused by pattern matching with variables in CI Lint Closes #64383 See merge request gitlab-org/gitlab-ce!31719
| * | | Ensure CI matching operator receives an objectMarius Bobin2019-08-215-2/+65
|/ / / | | | | | | | | | | | | Ensure the evaluation of right-hand side expression always results in the returning of an object or an empty String
* | | Merge branch 'sidekiq-interrupt-running-jobs' into 'master'Stan Hu2019-08-218-7/+650
|\ \ \ | | | | | | | | | | | | | | | | Allow to interrupt running sidekiq jobs See merge request gitlab-org/gitlab-ce!31818
| * | | Properly handle `sidekiq` skipsidekiq-interrupt-running-jobsKamil Trzciński2019-08-215-17/+31
| | | | | | | | | | | | | | | | Transform `CancelledError` into `JobRetry::Skip`
| * | | Improve resillency of monitorKamil Trzciński2019-08-214-41/+141
| | | | | | | | | | | | | | | | | | | | | | | | | | | | - Retry connection when it fails - Properly shutdown daemon - Stop monitor if the Exception is raised - Properly guard exception handling
| * | | Perform cheap thread findKamil Trzciński2019-08-212-12/+17
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | If we process message that is not designated to us previously we would fire a separate Thread for that. We don't need to do it. We can cheaply check if thread is available, if it is, we can perform expensive operation then.
| * | | Rework `Sidekiq::JobsThreads` into `Monitor`Kamil Trzciński2019-08-219-180/+523
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This makes: - very shallow `Middleware::Monitor` to only request tracking of sidekiq jobs, - `SidekiqStatus::Monitor` to be responsible to maintain persistent connection to receive messages, - `SidekiqStatus::Monitor` to always use structured logging and instance variables
| * | | Allow to interrupt running jobsKamil Trzciński2019-08-214-0/+181
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This adds a middleware to track all threads for running jobs. This makes sidekiq to watch for redis-delivered notifications. This makes be able to send notification to interrupt running sidekiq jobs. This does not take into account any native code, as `Thread.raise` generates exception once the control gets back to Ruby. The separate measure should be taken to interrupt gRPC, shellouts, or anything else that escapes Ruby.
* | | | Merge branch 'consider-md-files-as-doc-in-danger-check' into 'master'Achilleas Pipinellis2019-08-211-1/+1
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | Make Danger consider .md files as documentation files See merge request gitlab-org/gitlab-ce!32056
| * | | | Make Danger consider .md files as documentation filesconsider-md-files-as-doc-in-danger-checkRémy Coutable2019-08-211-1/+1
| | | | | | | | | | | | | | | | | | | | Signed-off-by: Rémy Coutable <remy@rymai.me>
* | | | | Merge branch 'winh-jest-require-assertions' into 'master'Mike Greiling2019-08-211-0/+6
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | Make sure that each Jest test contains an assertion See merge request gitlab-org/gitlab-ce!31967
| * | | | | Make sure that each Jest test contains an assertionWinnie Hellmann2019-08-211-0/+6
|/ / / / /
* | | | | Merge branch 'docs-group-managed-accounts' into 'master'Achilleas Pipinellis2019-08-211-0/+19
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Documentation MVC for group managed accounts Closes gitlab-ee#12526 See merge request gitlab-org/gitlab-ce!30876
| * | | | | Documentation MVC for group managed accountsJeremy Watson2019-08-211-0/+19
|/ / / / /
* | | | | Merge branch 'two-factor-auth-docs' into 'master'Achilleas Pipinellis2019-08-211-0/+1
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Docs: Add Sailfish app to 2fa Closes #66316 See merge request gitlab-org/gitlab-ce!32049
| * | | | | Docs: Add Sailfish app to 2faStefan Schmalzhaf2019-08-211-0/+1
|/ / / / /
* | | | | Merge branch '66331-html-code-shown-in-merge-request' into 'master'Paul Slaughter2019-08-213-0/+24
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Resolve "HTML code shown in merge request" Closes #66331 See merge request gitlab-org/gitlab-ce!32032
| * | | | | Resolve "HTML code shown in merge request"Ezekiel Kigbo2019-08-213-0/+24
|/ / / / / | | | | | | | | | | | | | | | - Fixes double escaped text in `mr_widget_rebase.vue`
* | | | | Merge branch 'docs-request-profiling-tag' into 'master'Achilleas Pipinellis2019-08-214-32/+31
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | Fix 4 kramdown warnings See merge request gitlab-org/gitlab-ce!32040
| * | | | | Fix markdown causing kramdown warningsMarcel Amirault2019-08-214-32/+31
|/ / / / / | | | | | | | | | | | | | | | | | | | | Use of square brackets can cause kramdown warnings, as well as angle brackets, so they should be removed or put in backticks
* | | | | Merge branch '65412-add-support-for-line-charts' into 'master'Kushal Pandya2019-08-219-10/+711
|\ \ \ \ \ | |/ / / / |/| | | | | | | | | | | | | | | | | | | | | | | | Create component to display area and line charts in monitor dashboards Closes #65412 See merge request gitlab-org/gitlab-ce!31639
| * | | | This commit adds a new time series componentMiguel Rincon2019-08-219-10/+711
|/ / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | Adds a time series component for line and area charts. Displays new charts in the dashboard. - Use dynamic components for line/area swapping - Add new line charts to dashboard in 2 panels
* | | | Merge branch 'docs/clarify-new-text' into 'master'Achilleas Pipinellis2019-08-211-2/+2
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | Make text clearer See merge request gitlab-org/gitlab-ce!32042
| * | | | Make text clearerEvan Read2019-08-211-2/+2
|/ / / /
* | | | Merge branch ↵Achilleas Pipinellis2019-08-212-0/+6
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | '64950-move-download-csv-button-functionality-in-metrics-dashboard-cards-into-the-dropdown' into 'master' Add docs for csv download Closes #66291 See merge request gitlab-org/gitlab-ce!31870
| * | | | Add docs for csv downloadLaura Montemayor2019-08-212-0/+6
|/ / / /
* | | | Merge branch 'qa-staging-67-fix-add-project-member-spec' into 'master'Sanad Liaquat2019-08-211-1/+1
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fix add project member spec Closes gitlab-org/quality/staging#67 See merge request gitlab-org/gitlab-ce!31974
| * | | | Match space or newline after usernameqa-staging-67-fix-add-project-member-specSanad Liaquat2019-08-201-1/+1
| | | | |
| * | | | Fix add project member specSanad Liaquat2019-08-191-1/+1
| | | | |
* | | | | Merge branch 'docs-muli-gitaly' into 'master'Achilleas Pipinellis2019-08-211-21/+61
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Clarify how to setup and use multiple Gitaly servers Closes omnibus-gitlab#3994 See merge request gitlab-org/gitlab-ce!31929
| * | | | | Clarify how to setup and use multiple Gitaly serversBen Bodenmiller2019-08-211-21/+61
|/ / / / /
* | | | | Merge branch 'ce-22058-improve-ux-multi-assignees-in-mr' into 'master'Rémy Coutable2019-08-2124-408/+1057
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | Improve UX multi assigness in MR See merge request gitlab-org/gitlab-ce!31545
| * | | | | Fix tooltip alignment issue caused by flex-basisce-22058-improve-ux-multi-assignees-in-mrPaul Slaughter2019-08-201-3/+12
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | **Context:** https://gitlab.com/gitlab-org/gitlab-ee/merge_requests/14851#note_205954645
| * | | | | Apply patch and update spec per MR commentsSamantha Ming2019-08-207-132/+92
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Use wrapper instead of global Vue object - Use vue utils helper method - Remove redundant spec tests
| * | | | | Fix comments related to BE partIgor Drozdov2019-08-202-2/+6
| | | | | | | | | | | | | | | | | | | | | | | | - Edit commit messge body to fix "danger-review"