Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Move CCR out of legacy #62890

Merged
merged 22 commits into from
Apr 22, 2020
Merged
Show file tree
Hide file tree
Changes from 21 commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
b9adddf
Move CCR to plugins directory.
cjcenizal Apr 2, 2020
043496d
Migrate server to NP.
cjcenizal Apr 2, 2020
ce4693b
Update plugin paths in sasslint and eslint config files.
cjcenizal Apr 15, 2020
ed6673f
Convert common/services and server/lib to TypeScript. Update Jest tests.
cjcenizal Apr 7, 2020
343f9c0
Migrate public to NP.
cjcenizal Apr 12, 2020
f6adfaf
Update API unit tests to use NP mocks.
cjcenizal Apr 14, 2020
2652482
Fix shape of ES errors returned by the API.
cjcenizal Apr 15, 2020
a38fc93
Make API route validation more strict. Incorporate bugfix from #63653.
cjcenizal Apr 16, 2020
7423216
Sequester app-specific services into an asynchronously loaded mount f…
cjcenizal Apr 16, 2020
155fcfc
Disable UI and "Follower" index management badges when either the CCR…
cjcenizal Apr 16, 2020
8076605
Default trackUiMetric service to be a no-op.
cjcenizal Apr 16, 2020
1daf9ad
Clean up permissions, security, and stats logic.
cjcenizal Apr 17, 2020
af76d67
Fix API integration tests.
cjcenizal Apr 19, 2020
8654d34
Fix i18n.
cjcenizal Apr 19, 2020
934a7b2
Fix index management API integration tests.
cjcenizal Apr 19, 2020
640b712
Merge branch 'master' into np/ccr-out-of-legacy
elasticmachine Apr 20, 2020
5aa2947
Merge branch 'master' into np/ccr-out-of-legacy
elasticmachine Apr 21, 2020
032b844
Address JL's feedback:
cjcenizal Apr 21, 2020
f63f03c
Remove use of 'as' in route handler definitions.
cjcenizal Apr 21, 2020
11e117b
Extract mockRouteContext into a helper.
cjcenizal Apr 21, 2020
4baad16
Remove unnecessary styles.
cjcenizal Apr 21, 2020
a661666
Migrate kibana/server dependencies to src/core/server.
cjcenizal Apr 22, 2020
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ module.exports = {
},
},
{
files: ['x-pack/legacy/plugins/cross_cluster_replication/**/*.{js,ts,tsx}'],
files: ['x-pack/plugins/cross_cluster_replication/**/*.{js,ts,tsx}'],
rules: {
'jsx-a11y/click-events-have-key-events': 'off',
},
Expand Down
1 change: 1 addition & 0 deletions .sass-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ files:
- 'x-pack/legacy/plugins/canvas/**/*.s+(a|c)ss'
- 'x-pack/plugins/triggers_actions_ui/**/*.s+(a|c)ss'
- 'x-pack/plugins/lens/**/*.s+(a|c)ss'
- 'x-pack/plugins/cross_cluster_replication/**/*.s+(a|c)ss'
- 'x-pack/legacy/plugins/maps/**/*.s+(a|c)ss'
- 'x-pack/plugins/maps/**/*.s+(a|c)ss'
ignore:
Expand Down
2 changes: 1 addition & 1 deletion x-pack/.i18nrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"xpack.apm": ["legacy/plugins/apm", "plugins/apm"],
"xpack.beatsManagement": "legacy/plugins/beats_management",
"xpack.canvas": "legacy/plugins/canvas",
"xpack.crossClusterReplication": "legacy/plugins/cross_cluster_replication",
"xpack.crossClusterReplication": "plugins/cross_cluster_replication",
"xpack.dashboardMode": "legacy/plugins/dashboard_mode",
"xpack.data": "plugins/data_enhanced",
"xpack.drilldowns": "plugins/drilldowns",
Expand Down
2 changes: 0 additions & 2 deletions x-pack/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ import { taskManager } from './legacy/plugins/task_manager';
import { rollup } from './legacy/plugins/rollup';
import { siem } from './legacy/plugins/siem';
import { remoteClusters } from './legacy/plugins/remote_clusters';
import { crossClusterReplication } from './legacy/plugins/cross_cluster_replication';
import { upgradeAssistant } from './legacy/plugins/upgrade_assistant';
import { uptime } from './legacy/plugins/uptime';
import { encryptedSavedObjects } from './legacy/plugins/encrypted_saved_objects';
Expand Down Expand Up @@ -49,7 +48,6 @@ module.exports = function(kibana) {
rollup(kibana),
siem(kibana),
remoteClusters(kibana),
crossClusterReplication(kibana),
upgradeAssistant(kibana),
uptime(kibana),
encryptedSavedObjects(kibana),
Expand Down

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

Loading