Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
49 commits
Select commit Hold shift + click to select a range
a540e68
Convert our manual throwing of TypeError to a custom Error
rylnd Mar 4, 2020
66c7120
Present API Error messages to the user
rylnd Mar 4, 2020
b71f90d
Remove unnecessary use of throwIfNotOk in our client API calls
rylnd Mar 4, 2020
5ab8824
Move errorToToaster and ToasterError to general location
rylnd Mar 4, 2020
964b148
Refactor Rules API functions to not use throwIfNotOk
rylnd Mar 4, 2020
c1bd216
Define a type for our BulkRule responses
rylnd Mar 5, 2020
15edf2d
Address case where bulk rules errors were not handled
rylnd Mar 5, 2020
797b607
Remove more throwIfNotOk uses from API calls
rylnd Mar 5, 2020
6421322
Display an error toaster on newsfeed fetch failure
rylnd Mar 5, 2020
cf80333
Remove dead code
rylnd Mar 5, 2020
69b90f8
Remove throwIfNotOk from case API calls
rylnd Mar 5, 2020
36c05f6
Update use_get_tags for NP
rylnd Mar 5, 2020
924508f
Remove throwIfNotOk from signals API
rylnd Mar 5, 2020
dcd8edf
Remove throwIfNotOk
rylnd Mar 5, 2020
d83a21c
Remove custom errors in favor of KibanaApiError and isApiError type p…
rylnd Mar 5, 2020
fd0e273
Fix test failures
rylnd Mar 5, 2020
5f7467a
Replace use of core mocks with our simpler local ones
rylnd Mar 5, 2020
71acc43
add signal api unit tests
XavierM Feb 21, 2020
4caf9ad
privilege unit test api
XavierM Feb 21, 2020
252c77c
Add unit tests on the signals container
XavierM Feb 25, 2020
780bbaf
Refactor signals API tests to use core mocks
rylnd Feb 27, 2020
063d60a
Simplify signals API tests now that the subjects do less
rylnd Mar 5, 2020
f3477df
Merge branch 'master' into fix_siem_errors
rylnd Mar 5, 2020
b044ad3
WIP: Move everything into the NP folder
rylnd Mar 6, 2020
173b363
Fixing relative imports post-mv
rylnd Mar 6, 2020
2ef1f3e
Gets our server running
rylnd Mar 5, 2020
f8b1ef9
First attempt to get frontend working
rylnd Mar 6, 2020
c761104
Move defaultIndexPattern to a constant
rylnd Mar 6, 2020
f4052e0
Register uiSettings in NP manner
rylnd Mar 6, 2020
b204b64
Register saved objects types in NP
rylnd Mar 6, 2020
dd5bade
Update broken/legacy imports with direct equivalents
rylnd Mar 6, 2020
52cfaa5
Add some polish on our app
rylnd Mar 6, 2020
56025f1
Replace use of ui/new_platform mocks
rylnd Mar 6, 2020
3f36873
Fix errant uses of ui/chrome
rylnd Mar 6, 2020
d7eb348
Remove legacy index file
rylnd Mar 6, 2020
947c76e
Use local 'any' overrides for types in src/core/public
rylnd Mar 6, 2020
8148600
Fix incorrect import
rylnd Mar 6, 2020
8e6d1ab
Fix remaining jest tests
rylnd Mar 6, 2020
dd24d12
gitignore siem target folder
rylnd Mar 6, 2020
2fb77b5
Exclude embeddableFactories import
rylnd Mar 6, 2020
9ca2c16
Merge branch 'master' into fix_siem_errors
rylnd Mar 6, 2020
f412563
Merge branch 'fix_siem_errors' into siem_all_np
rylnd Mar 6, 2020
665bb0a
Move new cypress code into NP
rylnd Mar 6, 2020
1178ee6
Move new signals tests into NP
rylnd Mar 6, 2020
be4f336
Update relative paths for new case work
rylnd Mar 6, 2020
56ce6c5
Fix relative path in cypress config
rylnd Mar 7, 2020
e25df7d
Merge branch 'master' into siem_all_np
rylnd Mar 8, 2020
59a2e15
Merge branch 'master' into siem_all_np
rylnd Mar 10, 2020
19e178e
Fix core import to pull from public module
rylnd Mar 10, 2020
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
2 changes: 1 addition & 1 deletion src/dev/typescript/projects.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ export const PROJECTS = [
new Project(resolve(REPO_ROOT, 'test/tsconfig.json'), { name: 'kibana/test' }),
new Project(resolve(REPO_ROOT, 'x-pack/tsconfig.json')),
new Project(resolve(REPO_ROOT, 'x-pack/test/tsconfig.json'), { name: 'x-pack/test' }),
new Project(resolve(REPO_ROOT, 'x-pack/legacy/plugins/siem/cypress/tsconfig.json'), {
new Project(resolve(REPO_ROOT, 'x-pack/plugins/siem/cypress/tsconfig.json'), {
name: 'siem/cypress',
}),
new Project(resolve(REPO_ROOT, 'x-pack/legacy/plugins/apm/e2e/tsconfig.json'), {
Expand Down
1 change: 0 additions & 1 deletion x-pack/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,3 @@
/.kibana-plugin-helpers.dev.*
!/legacy/plugins/infra/**/target
.cache
!/legacy/plugins/siem/**/target
2 changes: 0 additions & 2 deletions x-pack/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ import { canvas } from './legacy/plugins/canvas';
import { infra } from './legacy/plugins/infra';
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';
Expand Down Expand Up @@ -62,7 +61,6 @@ module.exports = function(kibana) {
taskManager(kibana),
rollup(kibana),
transform(kibana),
siem(kibana),
remoteClusters(kibana),
crossClusterReplication(kibana),
upgradeAssistant(kibana),
Expand Down
15 changes: 0 additions & 15 deletions x-pack/legacy/plugins/siem/default_index_pattern.ts

This file was deleted.

193 changes: 0 additions & 193 deletions x-pack/legacy/plugins/siem/index.ts

This file was deleted.

15 changes: 0 additions & 15 deletions x-pack/legacy/plugins/siem/public/legacy.ts

This file was deleted.

13 changes: 0 additions & 13 deletions x-pack/legacy/plugins/siem/public/mock/kibana_core.ts

This file was deleted.

20 changes: 0 additions & 20 deletions x-pack/legacy/plugins/siem/public/register_feature.ts

This file was deleted.

12 changes: 0 additions & 12 deletions x-pack/legacy/plugins/siem/server/index.ts

This file was deleted.

This file was deleted.

This file was deleted.

Loading