Skip to content

Commit

Permalink
Merge branch 'main' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
natexcvi committed Jan 25, 2023
2 parents b6d9c82 + a04a03b commit 082f3cd
Show file tree
Hide file tree
Showing 108 changed files with 3,503 additions and 497 deletions.
2 changes: 1 addition & 1 deletion docs/api/spaces-management/delete.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ WARNING: When you delete a space, all saved objects that belong to the space are
[[spaces-api-delete-request]]
==== Request

`DELETE <kibana host>:<port>/api/spaces/space/marketing`
`DELETE <kibana host>:<port>/api/spaces/space/<space_name>`

[[spaces-api-delete-errors-codes]]
==== Response codes
Expand Down
3 changes: 1 addition & 2 deletions docs/management/advanced-options.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -146,8 +146,7 @@ Enables you to use {es} indices in *TSVB* visualizations.
Affects the *TSVB* histogram density. Must be set higher than `histogram:maxBars`.

[[query-allowleadingwildcards]]`query:allowLeadingWildcards`::
Allows a wildcard (*) as the first character in a query clause. Only applies
when experimental query features are enabled in the query bar. To disallow
Allows a wildcard (*) as the first character in a query clause. To disallow
leading wildcards in Lucene queries, use `query:queryString:options`.

[[query-querystring-options]]`query:queryString:options`::
Expand Down
7 changes: 4 additions & 3 deletions docs/setup/install/rpm.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -107,11 +107,12 @@ The RPM for Kibana v{version} can be downloaded from the website and installed a
["source","sh",subs="attributes"]
--------------------------------------------
wget https://artifacts.elastic.co/downloads/kibana/kibana-{version}-x86_64.rpm
shasum -a 512 kibana-{version}-x86_64.rpm <1>
wget https://artifacts.elastic.co/downloads/kibana/kibana-{version}-x86_64.rpm.sha512
shasum -a 512 -c kibana-{version}-x86_64.rpm <1>
sudo rpm --install kibana-{version}-x86_64.rpm
--------------------------------------------
<1> Compare the SHA produced by `shasum` with the
https://artifacts.elastic.co/downloads/kibana/kibana-{version}-x86_64.rpm.sha512[published SHA].
<1> Compares the SHA of the downloaded RPM and the published checksum, which should output
`kibana-{version}-x86_64.rpm: OK`.

endif::[]

Expand Down
5 changes: 2 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -90,8 +90,7 @@
"**/typescript": "4.6.3",
"**/use-composed-ref": "^1.3.0",
"**/use-latest": "^1.2.1",
"globby/fast-glob": "^3.2.11",
"puppeteer/node-fetch": "^2.6.7"
"globby/fast-glob": "^3.2.11"
},
"dependencies": {
"@appland/sql-parser": "^1.5.1",
Expand Down Expand Up @@ -1156,7 +1155,7 @@
"rxjs-marbles": "^7.0.1",
"sass-loader": "^10.4.1",
"selenium-webdriver": "^4.7.1",
"simple-git": "^3.15.1",
"simple-git": "^3.16.0",
"sinon": "^7.4.2",
"sort-package-json": "^1.53.1",
"source-map": "^0.7.4",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ const cleanUpFilter = (filter: Filter) => {
export function buildCombinedFilter(
relation: BooleanRelation,
filters: Filter[],
indexPattern: DataViewBase,
indexPattern: Pick<DataViewBase, 'id'>,
disabled: FilterMeta['disabled'] = false,
negate: FilterMeta['negate'] = false,
alias?: FilterMeta['alias'],
Expand Down

0 comments on commit 082f3cd

Please sign in to comment.