summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Use gl-empty-state for monitor chartslittle-cluster-health-charts-ceSimon Knox2019-07-046-141/+117
| | | | Move a unit test to jest and use snapshot tests
* Merge branch 'docs-similar-issues-edit' into 'master'Evan Read2019-07-0426-377/+350
|\ | | | | | | | | | | | | Docs: Full Copy Edit and Refactor of Issues docs Closes #60767 See merge request gitlab-org/gitlab-ce!27553
| * Fix notes and update links to issues docMarcel Amirault2019-07-0426-377/+350
|/ | | | | | After review, heading was changed and links to it needed to be updated, and minor tweaks to the issues docs such as note formatting
* Merge branch 'sh-cache-flipper-checks-in-memory' into 'master'Douglas Barbosa Alexandre2019-07-043-3/+87
|\ | | | | | | | | Cache Flipper feature flags in L1 and L2 caches See merge request gitlab-org/gitlab-ce!30276
| * Cache Flipper feature flags in L1 and L2 cachessh-cache-flipper-checks-in-memoryStan Hu2019-07-033-3/+87
| | | | | | | | | | | | | | | | | | | | | | In https://gitlab.com/gitlab-com/gl-infra/production/issues/928, we saw a significant amount of network traffic and CPU usage due to Redis checking feature flags via Flipper. Since these flags are hit with every request, the overhead becomes significant. To alleviate Redis overhead, we now cache the data in the following way: * L1: A thread-local memory store for 1 minute * L2: Redis for 1 hour
* | Merge branch 'docs-environment-stop-git-strategy' into 'master'Evan Read2019-07-031-0/+6
|\ \ | | | | | | | | | | | | Updates the yaml docs to match the environment docs regarding `GIT_STRATEGY=none` See merge request gitlab-org/gitlab-ce!30283
| * | Update docs environment:action:stop GIT_STRATEGYdocs-environment-stop-git-strategyMark Lapierre2019-07-041-0/+6
| | | | | | | | | | | | | | | | | | Notes that `GIT_STRATEGY` should be set to `none` so that the job doesn't fail when triggered automatically when the branch is deleted.
* | | Merge branch 'docs-link-fix' into 'master'Evan Read2019-07-031-1/+1
|\ \ \ | |_|/ |/| | | | | | | | Docs: Update Auto Deploy link to page instead of redirect See merge request gitlab-org/gitlab-ce!30325
| * | Update link to page instead of redirectdocs-link-fixCynthia Ng2019-07-031-1/+1
| | |
* | | Merge branch 'qa/improve-performance-of-plan-issue-e2e-test' into 'master'Dan Davison2019-07-033-18/+29
|\ \ \ | | | | | | | | | | | | | | | | Backport EE MR that improves end-to-end tests See merge request gitlab-org/gitlab-ce!30320
| * | | Backport EE MR that improves end-to-end testsWalmyr Lima2019-07-033-18/+29
| |/ / | | | | | | | | | https://gitlab.com/gitlab-org/gitlab-ee/merge_requests/14533
* | | Merge branch 'limit-amount-of-tests-returned' into 'master'Stan Hu2019-07-0311-88/+189
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | Limit amount of JUnit tests returned Closes #64035 See merge request gitlab-org/gitlab-ce!30274
| * | | Limit amount of JUnit tests returnedKamil Trzciński2019-07-0311-88/+189
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Currently, we do not cap amount of tests returned to frontend, thus in some extreme cases we can see a MBs of data stored in Redis. This adds an upper limit of 100 tests per-suite. We will continue showing the total counters correctly, but we will limit amount of tests that will be presented.
* | | | Merge branch 'docs-rename-release-group-labels' into 'master'Mek Stittri2019-07-031-2/+2
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | Rename Release groups in issue_workflow.md See merge request gitlab-org/gitlab-ce!30293
| * | | | Rename Release groups in issue_workflow.mddocs-rename-release-group-labelsRémy Coutable2019-07-031-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | Based on https://about.gitlab.com/handbook/product/categories/#release-stage: - 'core release' -> 'progressive delivery' - 'supporting capabilities' -> 'release management'
* | | | | Merge branch '22991-fix-sidekiq-testing-inline' into 'master'Mayra Cabrera2019-07-031-1/+1
|\ \ \ \ \ | |_|_|/ / |/| | | | | | | | | | | | | | | | | | | | | | | | Change occurrence of Sidekiq::Testing.inline! Closes #22991 See merge request gitlab-org/gitlab-ce!29890
| * | | | Change occurrence of Sidekiq::Testing.inline!Reuben Pereira2019-07-031-1/+1
|/ / / / | | | | | | | | | | | | - Change it to perform_enqueued_jobs
* | | | Merge branch 'sh-fix-appearance-spec-failure' into 'master'Douglas Barbosa Alexandre2019-07-032-3/+2
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fix order-dependent spec failure in appearance_spec.rb Closes #64083 See merge request gitlab-org/gitlab-ce!30323
| * | | | Fix order-dependent spec failure in appearance_spec.rbStan Hu2019-07-032-3/+2
|/ / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | When file_mover_spec.rb ran, it would initialize fog-aws with `Fog::AWS::Storage::Real` service instead of `Fog::AWS::Storage::Mock` because `Fog.mock!` was not called. Ensure that we use `stub_uploads_object_storage` to prevent that from happening. Closes https://gitlab.com/gitlab-org/gitlab-ce/issues/64083
* | | | Merge branch 'add-commit-signatures-feature-flag' into 'master'Felipe Artur2019-07-031-1/+6
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | Add GetCommitSignatures feature flag See merge request gitlab-org/gitlab-ce!29288
| * | | | Add GetCommitSignatures feature flagadd-commit-signatures-feature-flagFelipe Artur2019-06-281-1/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Adds feature flag for GetCommitSignatures which got ported to go. More info: https://gitlab.com/gitlab-org/gitaly/merge_requests/1283
* | | | | Merge branch 'id-fix-appearance-spec' into 'master'Bob Van Landuyt2019-07-031-1/+1
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | Put a failed example from appearance_spec in quarantine See merge request gitlab-org/gitlab-ce!30318
| * | | | | Put a failed example from appearance_spec in quarantineIgor2019-07-031-1/+1
|/ / / / /
* | | | | Merge branch 'cache-performance_bar_allowed_user_ids-locally' into 'master'Stan Hu2019-07-032-9/+46
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | Cache PerformanceBar.allowed_user_ids list locally instead of in Redis See merge request gitlab-org/gitlab-ce!30304
| * | | | | Cache PerformanceBar.allowed_user_ids list locally and in RedisRémy Coutable2019-07-032-9/+46
|/ / / / / | | | | | | | | | | | | | | | Signed-off-by: Rémy Coutable <remy@rymai.me>
* | | | | Merge branch '61005-grafanaInAdminSettingsMonitoringMenu' into 'master'Rémy Coutable2019-07-0311-0/+113
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add Grafana to Admin > Monitoring menu when enabled Closes #61005 See merge request gitlab-org/gitlab-ce!28937
| * | | | | Add Grafana to Admin > Monitoring menu when enabledManeschi Romain2019-07-0311-0/+113
|/ / / / /
* | | | | Merge branch 'add-salesforce-logo' into 'master'Dmitriy Zaporozhets2019-07-033-1/+6
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add salesforce logo for salesforce SSO Closes #62607 See merge request gitlab-org/gitlab-ce!28857
| * | | | | Add changelog entryadd-salesforce-logoMałgorzata Ksionek2019-07-031-0/+5
| | | | | |
| * | | | | Add salesforce logoMałgorzata Ksionek2019-07-032-1/+1
| | | | | |
* | | | | | Merge branch 'docs/api-single-codebase' into 'master'Marcia Ramos2019-07-032-7/+48
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | Re-align CE and EE API docs See merge request gitlab-org/gitlab-ce!30294
| * | | | | | Re-align CE and EE API docsdocs/api-single-codebaseAchilleas Pipinellis2019-07-032-7/+48
| | | | | | |
* | | | | | | Merge branch 'do-not-save-peek-request-for-unauthenticated-users' into 'master'61056-data-improvements-for-contribution-analyticsSean McGivern2019-07-032-0/+15
|\ \ \ \ \ \ \ | |_|/ / / / / |/| | | | | | | | | | | | | | | | | | | | Only save Peek session in Redis when Peek is enabled See merge request gitlab-org/gitlab-ce!30306
| * | | | | | Only save Peek session in Redis when Peek is enabledRémy Coutable2019-07-032-0/+15
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Rémy Coutable <remy@rymai.me>
* | | | | | | Merge branch '61797-error-tracking-jest' into 'master'Kushal Pandya2019-07-038-7/+10
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Move error_tracking_frontend specs to Jest Closes #61797 See merge request gitlab-org/gitlab-ce!30211
| * | | | | | | Move error_tracking_frontend specs to JestSimon Knox2019-07-038-7/+10
|/ / / / / / / | | | | | | | | | | | | | | | | | | | | | Update TEST_HOST import paths. Tests all pass
* | | | | | | Merge branch '55487-enable-group-terminals-button' into 'master'Fatih Acet2019-07-033-37/+19
|\ \ \ \ \ \ \ | |/ / / / / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Enable terminals button for group clusters Closes #55487 See merge request gitlab-org/gitlab-ce!30255
| * | | | | | Enable terminals button for group clusters55487-enable-group-terminals-buttonTiger2019-07-023-37/+19
| | | | | | |
* | | | | | | Merge branch 'winh-jest-markdown-header' into 'master'Paul Slaughter2019-07-032-9/+10
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Migrate markdown header_spec.js to Jest See merge request gitlab-org/gitlab-ce!30228
| * | | | | | | Migrate markdown header_spec.js to JestWinnie Hellmann2019-07-032-9/+10
|/ / / / / / /
* | | | | | | Merge branch 'asciidoc-syntax-highlighting' into 'master'Douwe Maan2019-07-036-3/+91
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Enable AsciiDoc syntax highlighting (using Rouge) Closes #32635 See merge request gitlab-org/gitlab-ce!29835
| * | | | | | | Enable AsciiDoc syntax highlighting (using Rouge)Guillaume Grossetie2019-07-026-3/+91
| | | | | | | |
* | | | | | | | Merge branch 'fix-todo-allow_collaboration' into 'master'Dmitriy Zaporozhets2019-07-031-0/+1
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Update TODO: allow_collaboration column renaming See merge request gitlab-org/gitlab-ce!30291
| * | | | | | | | Update TODO: allow_collaboration column renamingfix-todo-allow_collaborationMark Chao2019-07-031-0/+1
| | | | | | | | |
* | | | | | | | | Merge branch 'issue/55953' into 'master'Sean McGivern2019-07-0333-240/+247
|\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | rename `discussion` to `thread` Closes #55953 See merge request gitlab-org/gitlab-ce!29553
| * | | | | | | | | Update locale.potSean McGivern2019-07-031-9/+3
| | | | | | | | | |
| * | | | | | | | | Merge branch 'master' into michel.engelen/gitlab-ce-issue/55953Sean McGivern2019-07-031083-24394/+6442
| |\ \ \ \ \ \ \ \ \
| * \ \ \ \ \ \ \ \ \ Merge remote-tracking branch 'origin/issue/55953' into issue/55953Michel Engelen2019-07-021-0/+6
| |\ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | # Conflicts: # locale/gitlab.pot # spec/features/discussion_comments/commit_spec.rb
| | * | | | | | | | | | updated localeMichel Engelen2019-07-021-6/+0
| | | | | | | | | | | |
| | * | | | | | | | | | replaced `discussion` with `thread` in comment buttonMichel Engelen2019-07-021-4/+4
| | | | | | | | | | | |