Skip to content

Commit 1ac4eac

Browse files
committed
Merge branch 'master' into eui/30.2
2 parents 7b31355 + 291c34c commit 1ac4eac

File tree

482 files changed

+7882
-4388
lines changed

Some content is hidden

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

482 files changed

+7882
-4388
lines changed

.eslintrc.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -640,6 +640,10 @@ module.exports = {
640640
name: 'lodash/fp/assocPath',
641641
message: 'Please use @elastic/safer-lodash-set instead',
642642
},
643+
{
644+
name: 'react-use',
645+
message: 'Please use react-use/lib/{method} instead.',
646+
},
643647
],
644648
},
645649
],

.github/CODEOWNERS

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -299,6 +299,8 @@ x-pack/plugins/telemetry_collection_xpack/schema/xpack_plugins.json @elastic/kib
299299
/x-pack/plugins/triggers_actions_ui/ @elastic/kibana-alerting-services
300300
/x-pack/test/functional_with_es_ssl/apps/triggers_actions_ui/ @elastic/kibana-alerting-services
301301
/x-pack/test/functional_with_es_ssl/fixtures/plugins/alerts/ @elastic/kibana-alerting-services
302+
/docs/user/alerting/ @elastic/kibana-alerting-services
303+
/docs/management/alerting/ @elastic/kibana-alerting-services
302304
#CC# /x-pack/legacy/plugins/actions/ @elastic/kibana-alerting-services
303305
#CC# /x-pack/legacy/plugins/alerting/ @elastic/kibana-alerting-services
304306
#CC# /x-pack/legacy/plugins/task_manager @elastic/kibana-alerting-services

.github/ISSUE_TEMPLATE/v8_breaking_change.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,8 @@ requesting the breaking change to be surfaced in the Upgrade Assistant.
3030
<!-- e.g. Based on telemetry data, roughly 75% of our users will need to make changes to x. -->
3131
<!-- e.g. A majority of users will need to make changes to x. -->
3232

33+
**How can we programmatically determine whether the cluster is affected by this breaking change?**
34+
3335
**What can users do to address the change manually?**
3436

3537
<!-- If applicable, describe the manual migration steps and/or link to available docs. -->
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
2+
3+
[Home](./index.md) &gt; [kibana-plugin-core-server](./kibana-plugin-core-server.md) &gt; [CoreSetup](./kibana-plugin-core-server.coresetup.md) &gt; [i18n](./kibana-plugin-core-server.coresetup.i18n.md)
4+
5+
## CoreSetup.i18n property
6+
7+
[I18nServiceSetup](./kibana-plugin-core-server.i18nservicesetup.md)
8+
9+
<b>Signature:</b>
10+
11+
```typescript
12+
i18n: I18nServiceSetup;
13+
```

docs/development/core/server/kibana-plugin-core-server.coresetup.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ export interface CoreSetup<TPluginsStart extends object = object, TStart = unkno
2121
| [elasticsearch](./kibana-plugin-core-server.coresetup.elasticsearch.md) | <code>ElasticsearchServiceSetup</code> | [ElasticsearchServiceSetup](./kibana-plugin-core-server.elasticsearchservicesetup.md) |
2222
| [getStartServices](./kibana-plugin-core-server.coresetup.getstartservices.md) | <code>StartServicesAccessor&lt;TPluginsStart, TStart&gt;</code> | [StartServicesAccessor](./kibana-plugin-core-server.startservicesaccessor.md) |
2323
| [http](./kibana-plugin-core-server.coresetup.http.md) | <code>HttpServiceSetup &amp; {</code><br/><code> resources: HttpResources;</code><br/><code> }</code> | [HttpServiceSetup](./kibana-plugin-core-server.httpservicesetup.md) |
24+
| [i18n](./kibana-plugin-core-server.coresetup.i18n.md) | <code>I18nServiceSetup</code> | [I18nServiceSetup](./kibana-plugin-core-server.i18nservicesetup.md) |
2425
| [logging](./kibana-plugin-core-server.coresetup.logging.md) | <code>LoggingServiceSetup</code> | [LoggingServiceSetup](./kibana-plugin-core-server.loggingservicesetup.md) |
2526
| [metrics](./kibana-plugin-core-server.coresetup.metrics.md) | <code>MetricsServiceSetup</code> | [MetricsServiceSetup](./kibana-plugin-core-server.metricsservicesetup.md) |
2627
| [savedObjects](./kibana-plugin-core-server.coresetup.savedobjects.md) | <code>SavedObjectsServiceSetup</code> | [SavedObjectsServiceSetup](./kibana-plugin-core-server.savedobjectsservicesetup.md) |
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
2+
3+
[Home](./index.md) &gt; [kibana-plugin-core-server](./kibana-plugin-core-server.md) &gt; [I18nServiceSetup](./kibana-plugin-core-server.i18nservicesetup.md) &gt; [getLocale](./kibana-plugin-core-server.i18nservicesetup.getlocale.md)
4+
5+
## I18nServiceSetup.getLocale() method
6+
7+
Return the locale currently in use.
8+
9+
<b>Signature:</b>
10+
11+
```typescript
12+
getLocale(): string;
13+
```
14+
<b>Returns:</b>
15+
16+
`string`
17+
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
2+
3+
[Home](./index.md) &gt; [kibana-plugin-core-server](./kibana-plugin-core-server.md) &gt; [I18nServiceSetup](./kibana-plugin-core-server.i18nservicesetup.md) &gt; [getTranslationFiles](./kibana-plugin-core-server.i18nservicesetup.gettranslationfiles.md)
4+
5+
## I18nServiceSetup.getTranslationFiles() method
6+
7+
Return the absolute paths to translation files currently in use.
8+
9+
<b>Signature:</b>
10+
11+
```typescript
12+
getTranslationFiles(): string[];
13+
```
14+
<b>Returns:</b>
15+
16+
`string[]`
17+
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
2+
3+
[Home](./index.md) &gt; [kibana-plugin-core-server](./kibana-plugin-core-server.md) &gt; [I18nServiceSetup](./kibana-plugin-core-server.i18nservicesetup.md)
4+
5+
## I18nServiceSetup interface
6+
7+
8+
<b>Signature:</b>
9+
10+
```typescript
11+
export interface I18nServiceSetup
12+
```
13+
14+
## Methods
15+
16+
| Method | Description |
17+
| --- | --- |
18+
| [getLocale()](./kibana-plugin-core-server.i18nservicesetup.getlocale.md) | Return the locale currently in use. |
19+
| [getTranslationFiles()](./kibana-plugin-core-server.i18nservicesetup.gettranslationfiles.md) | Return the absolute paths to translation files currently in use. |
20+

docs/development/core/server/kibana-plugin-core-server.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,7 @@ The plugin integrates with the core system via lifecycle events: `setup`<!-- -->
8989
| [HttpServerInfo](./kibana-plugin-core-server.httpserverinfo.md) | |
9090
| [HttpServiceSetup](./kibana-plugin-core-server.httpservicesetup.md) | Kibana HTTP Service provides own abstraction for work with HTTP stack. Plugins don't have direct access to <code>hapi</code> server and its primitives anymore. Moreover, plugins shouldn't rely on the fact that HTTP Service uses one or another library under the hood. This gives the platform flexibility to upgrade or changing our internal HTTP stack without breaking plugins. If the HTTP Service lacks functionality you need, we are happy to discuss and support your needs. |
9191
| [HttpServiceStart](./kibana-plugin-core-server.httpservicestart.md) | |
92+
| [I18nServiceSetup](./kibana-plugin-core-server.i18nservicesetup.md) | |
9293
| [IClusterClient](./kibana-plugin-core-server.iclusterclient.md) | Represents an Elasticsearch cluster API client created by the platform. It allows to call API on behalf of the internal Kibana user and the actual user that is derived from the request headers (via <code>asScoped(...)</code>). |
9394
| [IContextContainer](./kibana-plugin-core-server.icontextcontainer.md) | An object that handles registration of context providers and configuring handlers with context. |
9495
| [ICspConfig](./kibana-plugin-core-server.icspconfig.md) | CSP configuration for use in Kibana. |
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
2+
3+
[Home](./index.md) &gt; [kibana-plugin-plugins-data-public](./kibana-plugin-plugins-data-public.md) &gt; [ExecutionContextSearch](./kibana-plugin-plugins-data-public.executioncontextsearch.md)
4+
5+
## ExecutionContextSearch type
6+
7+
<b>Signature:</b>
8+
9+
```typescript
10+
export declare type ExecutionContextSearch = {
11+
filters?: Filter[];
12+
query?: Query | Query[];
13+
timeRange?: TimeRange;
14+
};
15+
```

0 commit comments

Comments
 (0)