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

[Upgrade Assistant] Move out of legacy folder #58034

Merged
merged 22 commits into from
Feb 25, 2020
Merged
Changes from 1 commit
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
b631a40
Create x-pack/plugins skeleton for upgrade assistant
jloleysens Feb 18, 2020
c1fe10a
Move public folder contents
jloleysens Feb 18, 2020
0272a14
Include stylesheets in public
jloleysens Feb 18, 2020
e93348e
Move server side out of legacy
jloleysens Feb 19, 2020
c7691a9
Updated the routes with new dependencies and removed server shim
jloleysens Feb 19, 2020
5938e91
Fix router unit tests
jloleysens Feb 19, 2020
64ec947
Fix server lib tests
jloleysens Feb 19, 2020
e91d248
Clean up types issues
jloleysens Feb 19, 2020
3362e94
Fix setting credentials on request header
jloleysens Feb 19, 2020
1f646ec
Removed the security plugin from Upgrade Assistant
jloleysens Feb 19, 2020
b540a6e
Migrate to config to new platform config
jloleysens Feb 19, 2020
ee141c0
Remove unused types
jloleysens Feb 19, 2020
a0e1bd2
Fix import issue
jloleysens Feb 20, 2020
db64a18
Move upgrade assistant back to Elasticsearch management section
jloleysens Feb 21, 2020
9684204
Update dotfiles
jloleysens Feb 21, 2020
8d944ba
Merge branch 'master' of github.com:elastic/kibana into ua/chore/move…
jloleysens Feb 21, 2020
73c6267
Merge branch 'master' of github.com:elastic/kibana into ua/chore/move…
jloleysens Feb 24, 2020
c8b2da1
Merge branch 'master' into ua/chore/move-out-of-legacy
elasticmachine Feb 24, 2020
b7d17db
Merge branch 'master' into ua/chore/move-out-of-legacy
elasticmachine Feb 24, 2020
1d793d7
Alphabetical ordering in xpack/i18nrc.json
jloleysens Feb 25, 2020
e4dba40
Implemented PR feedback
jloleysens Feb 25, 2020
5c32021
Revert to longer import path
jloleysens Feb 25, 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
Prev Previous commit
Revert to longer import path
In plugin.ts importing from 'kibana/server' or 'src/core/server'
results in a module not found error.
  • Loading branch information
jloleysens committed Feb 25, 2020
commit 5c32021b047407b1182d309790d52a5a838dba45
2 changes: 1 addition & 1 deletion x-pack/plugins/upgrade_assistant/server/plugin.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import {
ElasticsearchServiceSetup,
SavedObjectsClient,
SavedObjectsServiceStart,
} from 'src/core/server';
} from '../../../../src/core/server';

import { CloudSetup } from '../../cloud/server';
import { LicensingPluginSetup } from '../../licensing/server';
Expand Down