Skip to content

Commit 0e476e5

Browse files
committed
Merge branch '6.8' into bump-node
2 parents 9fb3ca7 + 0997f4e commit 0e476e5

File tree

241 files changed

+1047
-654
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

241 files changed

+1047
-654
lines changed

package.json

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -98,6 +98,7 @@
9898
"**/grunt-legacy-log-utils/lodash": "^4.17.21",
9999
"**/grunt-legacy-util/lodash": "^4.17.21",
100100
"**/grunt/js-yaml": "^3.13.1",
101+
"**/@elastic/eui/highlight.js": "^9.18.5",
101102
"**/isomorphic-fetch/node-fetch": "^2.6.1",
102103
"**/istanbul-instrumenter-loader/schema-utils": "1.0.0",
103104
"**/load-grunt-config/js-yaml": "^3.13.1",
@@ -126,20 +127,20 @@
126127
]
127128
},
128129
"dependencies": {
130+
"@commercial/boom": "^7.4.12",
131+
"@commercial/hapi": "^17.9.4",
132+
"@commercial/hoek": "^6.2.5",
133+
"@commercial/podium": "^3.4.3",
129134
"@elastic/datemath": "5.0.2",
130135
"@elastic/eui": "6.10.9",
131136
"@elastic/filesaver": "1.1.2",
132137
"@elastic/good": "8.1.1-kibana2",
133138
"@elastic/numeral": "2.3.2",
134139
"@elastic/ui-ace": "0.2.3",
135-
"@hapi/boom": "^7.4.11",
136140
"@hapi/good-squeeze": "^6.0.0",
137141
"@hapi/h2o2": "^8.3.2",
138-
"@hapi/hapi": "^17.9.0",
139-
"@hapi/hoek": "^6.2.4",
140142
"@hapi/inert": "^5.2.2",
141143
"@hapi/oppsy": "^2.1.2",
142-
"@hapi/podium": "^3.4.3",
143144
"@hapi/vision": "^5.5.4",
144145
"@hapi/wreck": "^16.0.1",
145146
"@kbn/babel-code-parser": "1.0.0",
@@ -300,6 +301,10 @@
300301
"@types/bluebird": "^3.1.1",
301302
"@types/chance": "^1.0.0",
302303
"@types/classnames": "^2.2.3",
304+
"@types/commercial__boom": "npm:@types/hapi__boom@^7.4.1",
305+
"@types/commercial__hapi": "npm:@types/[email protected]",
306+
"@types/commercial__hoek": "npm:@types/hapi__hoek@^6.2.0",
307+
"@types/commercial__podium": "npm:@types/hapi__podium@^3.4.1",
303308
"@types/d3": "^3.5.41",
304309
"@types/dedent": "^0.7.0",
305310
"@types/del": "^3.0.1",
@@ -313,10 +318,6 @@
313318
"@types/glob": "^5.0.35",
314319
"@types/globby": "^8.0.0",
315320
"@types/graphql": "^0.13.1",
316-
"@types/hapi__boom": "^7.4.1",
317-
"@types/hapi__hapi": "npm:@types/[email protected]",
318-
"@types/hapi__hoek": "^6.2.0",
319-
"@types/hapi__podium": "^3.4.1",
320321
"@types/has-ansi": "^3.0.0",
321322
"@types/humps": "^1.1.2",
322323
"@types/jest": "^23.3.1",

packages/kbn-ui-framework/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
"grunt-babel": "^7.0.0",
4747
"grunt-contrib-clean": "^1.1.0",
4848
"grunt-contrib-copy": "^1.0.0",
49-
"highlight.js": "9.0.0",
49+
"highlight.js": "^9.18.5",
5050
"html": "1.0.0",
5151
"html-loader": "^0.5.5",
5252
"imports-loader": "^0.8.0",

src/core/server/http/base_path_proxy_server.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
* under the License.
1818
*/
1919

20-
import { Server } from '@hapi/hapi';
20+
import { Server } from '@commercial/hapi';
2121
import { ByteSizeValue } from '@kbn/config-schema';
2222
import { Agent as HttpsAgent, ServerOptions as TlsOptions } from 'https';
2323
import { sample } from 'lodash';

src/core/server/http/http_server.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
* under the License.
1818
*/
1919

20-
import { Server, ServerOptions } from '@hapi/hapi';
20+
import { Server, ServerOptions } from '@commercial/hapi';
2121

2222
import { modifyUrl } from '../../utils';
2323
import { Logger } from '../logging';

src/core/server/http/http_tools.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
* under the License.
1818
*/
1919

20-
import { Request, ResponseToolkit } from '@hapi/hapi';
20+
import { Request, ResponseToolkit } from '@commercial/hapi';
2121
import Joi from 'joi';
2222
import { defaultValidationErrorHandler, HapiValidationError } from './http_tools';
2323

src/core/server/http/http_tools.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@
1717
* under the License.
1818
*/
1919

20-
import { Lifecycle, Request, ResponseToolkit, Server, ServerOptions, Util } from '@hapi/hapi';
21-
import Hoek from '@hapi/hoek';
20+
import { Lifecycle, Request, ResponseToolkit, Server, ServerOptions, Util } from '@commercial/hapi';
21+
import Hoek from '@commercial/hoek';
2222
import { readFileSync } from 'fs';
2323
import { ServerOptions as TLSOptions } from 'https';
2424
import { ValidationError } from 'joi';

src/core/server/http/https_redirect_server.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
* under the License.
1818
*/
1919

20-
import { Request, ResponseToolkit, Server } from '@hapi/hapi';
20+
import { Request, ResponseToolkit, Server } from '@commercial/hapi';
2121
import { format as formatUrl } from 'url';
2222

2323
import { Logger } from '../logging';

src/core/server/http/router/request.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
* under the License.
1818
*/
1919

20-
import { Request } from '@hapi/hapi';
20+
import { Request } from '@commercial/hapi';
2121
import { ObjectType, TypeOf } from '@kbn/config-schema';
2222

2323
import { filterHeaders, Headers } from './headers';

src/core/server/http/router/router.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
* under the License.
1818
*/
1919

20-
import { Request, ResponseObject, ResponseToolkit } from '@hapi/hapi';
20+
import { Request, ResponseObject, ResponseToolkit } from '@commercial/hapi';
2121
import { ObjectType, schema, TypeOf } from '@kbn/config-schema';
2222

2323
import { KibanaRequest } from './request';

src/core/server/legacy_compat/legacy_service.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
* under the License.
1818
*/
1919

20-
import { Server as HapiServer } from '@hapi/hapi';
20+
import { Server as HapiServer } from '@commercial/hapi';
2121
import { combineLatest, ConnectableObservable, EMPTY, Subscription } from 'rxjs';
2222
import { first, map, mergeMap, publishReplay, tap } from 'rxjs/operators';
2323
import { CoreContext, CoreService } from '../../types';

0 commit comments

Comments
 (0)