-
Notifications
You must be signed in to change notification settings - Fork 201
8.17.0 Release notes #6224
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
Merged
Merged
8.17.0 Release notes #6224
Changes from all commits
Commits
Show all changes
39 commits
Select commit
Hold shift + click to select a range
65bf05f
First draft
nastasha-solomon e0c4f7b
Adds ver header
nastasha-solomon cb1a21e
Merge branch '8.x' into rn-8.17.0
nastasha-solomon 20e930d
Adds latest info
nastasha-solomon 55bf030
Merge branch '8.x' into rn-8.17.0
nastasha-solomon fe67734
Updates my areas
nastasha-solomon 08f8885
Edits
benironside 5884f7c
Minor adjustments
nastasha-solomon 5e496eb
small tweaks
nastasha-solomon 6a827cb
known issue for exceptions
nastasha-solomon 0a9591d
Update docs/release-notes/8.17.asciidoc
nastasha-solomon 0b1090f
Update docs/release-notes/8.17.asciidoc
nastasha-solomon 89f3454
Applies same changes
nastasha-solomon 7fa1b09
ryland's input
nastasha-solomon a8d3a48
Update docs/release-notes/8.17.asciidoc
nastasha-solomon e2eadc2
Update docs/release-notes/8.17.asciidoc
nastasha-solomon a5a0f8c
Update docs/release-notes/8.17.asciidoc
nastasha-solomon 4724cb4
Update docs/release-notes/8.17.asciidoc
nastasha-solomon 82c5a47
Update docs/release-notes/8.17.asciidoc
nastasha-solomon 160932e
Update docs/release-notes/8.17.asciidoc
nastasha-solomon ad0d32c
Update docs/release-notes/8.17.asciidoc
nastasha-solomon f48ea90
Update docs/release-notes/8.17.asciidoc
nastasha-solomon 81aef9b
Update docs/release-notes/8.17.asciidoc
nastasha-solomon d2d206c
Update docs/release-notes/8.17.asciidoc
nastasha-solomon 0411314
Moar bugs
nastasha-solomon cc89501
Adds two new features
benironside f1e3eca
revised ki summary
nastasha-solomon e01155a
Update docs/release-notes/8.17.asciidoc
nastasha-solomon b3bfaa6
Update docs/release-notes/8.17.asciidoc
nastasha-solomon 0fcc135
Update docs/release-notes/8.17.asciidoc
nastasha-solomon d4265b7
Update docs/release-notes/8.17.asciidoc
nastasha-solomon 63fb15b
editorial fixes
nastasha-solomon a3c5996
Update docs/release-notes/8.17.asciidoc
nastasha-solomon 3e93175
Update docs/release-notes/8.17.asciidoc
nastasha-solomon ef12742
Update docs/release-notes/8.17.asciidoc
nastasha-solomon fa798a5
Update docs/release-notes/8.17.asciidoc
nastasha-solomon 55ef508
Update docs/release-notes/8.17.asciidoc
nastasha-solomon a6574ee
Update docs/release-notes/8.17.asciidoc
nastasha-solomon 9f25bc1
Update docs/release-notes/8.17.asciidoc
nastasha-solomon File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,130 @@ | ||
[[release-notes-header-8.17.0]] | ||
== 8.17 | ||
|
||
[discrete] | ||
[[release-notes-8.17.0]] | ||
=== 8.17.0 | ||
|
||
[discrete] | ||
[[known-issue-8.17.0]] | ||
==== Known issues | ||
|
||
// tag::known-issue[201820] | ||
[discrete] | ||
.The **Exceptions** tab won't properly load if exceptions contain comments with newline characters (`\n`) | ||
[%collapsible] | ||
==== | ||
*Details* + | ||
On December 5, 2024, it was discovered that the **Exceptions** tab won't load properly if any exceptions contain comments with newline characters (`\n`). This issue occurs when you upgrade to 8.16.0 or later ({kibana-issue}201820[#201820]). | ||
|
||
*Workaround* + | ||
|
||
For custom rules: | ||
|
||
. From the **Rules** page, <<import-export-rules-ui,export>> the rule or rules with the affected exception lists. | ||
. Modify the `.ndjson` file so `comments` no longer contain newline characters. | ||
. Return to the **Rules** page and <<import-export-rules-ui,re-import>> the rules. Ensure you select the **Overwrite existing exception lists with conflicting "list_id"** option. | ||
|
||
For prebuilt rules: | ||
|
||
NOTE: If you only need to fix exceptions for the Elastic Endpoint rule, you can export and re-import its exception list from the <<shared-exception-lists,**Shared Exception Lists**>> page. | ||
|
||
. Follow these steps to fetch the affected exception list ID or IDs that are associated with the rule: | ||
.. Find the affected rule's ID (`id`). From the **Rules** page, open the details of a rule, go to the page URL, and copy the string at the end. For example, in the URL http://host.name/app/security/rules/id/167a5f6f-2148-4792-8226-b5e7a58ef46e, the string at the end (`167a5f6f-2148-4792-8226-b5e7a58ef46e`) is the `id`. | ||
.. Specify the `id` when fetching the rule's details using the {api-kibana}/operation/operation-readrule[Retrieve a detection rule API]. Here is an example request that includes the `id`: | ||
+ | ||
[source,console] | ||
---- | ||
curl -H 'Authorization: ApiKey API_KEY_HERE' -H 'kbn-xsrf: true' -H 'elastic-api-version: 2023-10-31' KIBANA_URL/api/detection_engine/rules?id=167a5f6f-2148-4792-8226-b5e7a58ef46e | ||
---- | ||
+ | ||
.. The JSON response contains the `id`, `list_id`, and `namespace_type` values within the `exceptions_list` key (as shown below). You need these values when using the Exception list API to retrieve the affected exception list. | ||
+ | ||
[source,console] | ||
---- | ||
{ | ||
"id": "167a5f6f-2148-4792-8226-b5e7a58ef46e", | ||
"exceptions_list": [ | ||
{ | ||
"id": "490525a2-eb66-4320-95b5-88bdd1302dc4", | ||
"list_id": "f75aae6f-0229-413f-881d-81cb3abfbe2d", | ||
"namespace_type": "single" | ||
} | ||
] | ||
} | ||
---- | ||
+ | ||
. Use the export exceptions API to retrieve the affected exception list. Insert the values for the `id`, `list_id`, and `namespace_type` parameters into the following API call: | ||
+ | ||
[source,console] | ||
---- | ||
curl -XPOST -H 'Authorization: ApiKey API_KEY_HERE' -H 'kbn-xsrf: true' -H 'elastic-api-version: 2023-10-31' 'KIBANA_URL/api/exception_lists/_export?list_id=f75aae6f-0229-413f-881d-81cb3abfbe2d&id=490525a2-eb66-4320-95b5-88bdd1302dc4&namespace_type=single' -o list.ndjson | ||
---- | ||
+ | ||
. Modify the exception list's `.ndjson` file to ensure `comments[].comment` values don't contain newline characters (`\n`). | ||
. Re-import the modified exception list using **Import exception lists** option on the <<shared-exception-lists,**Shared Exception Lists**>> page. The import will initially fail because the exception list already exists, and an option to overwrite the existing list will appear. Select the option, then resubmit the request to import the corrected exception list. | ||
==== | ||
// end::known-issue[201820] | ||
|
||
// tag::known-issue[] | ||
[discrete] | ||
.Duplicate alerts can be produced from manually running threshold rules | ||
nastasha-solomon marked this conversation as resolved.
Show resolved
Hide resolved
|
||
[%collapsible] | ||
==== | ||
*Details* + | ||
On November 12, 2024, it was discovered that manually running threshold rules could produce duplicate alerts if the date range was already covered by a scheduled rule execution. | ||
nastasha-solomon marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
==== | ||
// end::known-issue[] | ||
|
||
// tag::known-issue[] | ||
[discrete] | ||
.Manually running custom query rules with suppression could suppress more alerts than expected | ||
nastasha-solomon marked this conversation as resolved.
Show resolved
Hide resolved
|
||
[%collapsible] | ||
==== | ||
*Details* + | ||
On November 12, 2024, it was discovered that manually running a custom query rule with suppression could incorrectly inflate the number of suppressed alerts. | ||
|
||
==== | ||
// end::known-issue[] | ||
|
||
[discrete] | ||
[[features-8.17.0]] | ||
==== New features | ||
* Adds a signature option for trusted applications on macOS ({kibana-pull}197821[#197821]). | ||
* Allows you to use alert suppression on EQL sequence alerts ({kibana-pull}189725[#189725]). | ||
nastasha-solomon marked this conversation as resolved.
Show resolved
Hide resolved
|
||
* Adds GA support for the case action feature, which lets rules automatically create cases ({kibana-pull}196973[#196973]). | ||
|
||
[discrete] | ||
[[enhancements-8.17.0]] | ||
==== Enhancements | ||
* Checks user permissions before initializing the entity engine ({kibana-pull}198661[#198661]). | ||
nastasha-solomon marked this conversation as resolved.
Show resolved
Hide resolved
nastasha-solomon marked this conversation as resolved.
Show resolved
Hide resolved
|
||
* Updates LangChain dependencies, adding support for the new Bedrock cross-region inference profiles ({kibana-pull}198622[#198622]). | ||
|
||
[discrete] | ||
[[bug-fixes-8.17.0]] | ||
==== Bug fixes | ||
* Clears the error on the second entity engine initialization ({kibana-pull}202903[#202903]). | ||
* Modifies the empty state message that appears when installing prebuilt rules ({kibana-pull}202226[#202226]). | ||
* Rejects CEF logs from Automatic Import and instead redirects you to the CEF integration ({kibana-pull}201792[#201792], {kibana-pull}202994[#202994]). | ||
* Fixes a bug in Automatic Import where icons did not display after the integration was installed ({kibana-pull}201139[#201139]). | ||
* Removes an erroneous duplicate Preserve Original Event flag as one was additionally added from the common settings file ({kibana-pull}201622[#201622]). | ||
* Turns off the **Install All** button on the **Add Elastic Rules** page while rules are being installed ({kibana-pull}201731[#201731]). | ||
* Turns off the **Add note** button in the alert details flyout if you don't have the appropriate permission ({kibana-pull}201707[#201707]). | ||
* Removes fields with an `@` from the script processor ({kibana-pull}201548[#201548]). | ||
* Fixes an issue that could interfere with Knowledge Base setup ({kibana-pull}201175[#201175]). | ||
* Fixes an issue with Gemini streaming in the AI Assistant ({kibana-pull}201299[#201299]). | ||
* Updates LangChain dependencies, adding support for the new Bedrock cross-region inference endpoints ({kibana-pull}198622[#198622]). | ||
* Fixes a bug with threshold rules that prevented cardinality details from appearing ({kibana-pull}201162[#201162]). | ||
* Fixes a bug that caused an entity engine to get stuck in the `Installing` status if the default Security data view didn't exist. With this fix, engines now correctly report the `Error` state ({kibana-pull}201140[#201140]). | ||
* Fixes an issue that prevented you from successfully importing TSV files with asset criticality data if you're on Windows ({kibana-pull}199791[#199791]). | ||
* Fixes asset criticality index issue when setting up entity engines concurrently ({kibana-pull}199486[#199486]). | ||
* Fixes a bug where the `@timestamp` field wouldn't update upon asset criticality soft delete ({kibana-pull}196722[#196722]). | ||
* Fixes a bug that prevented the save notification from displaying on duplicated Timelines with changes ({kibana-pull}198652[#198652]). | ||
* Improves the flow for the Insights section in the alert details flyout ({kibana-pull}197349[#197349]). | ||
* Fixes an issue where users without the {fleet} `read` permission were blocked from interacting with any onboarding card ({kibana-pull}202413[#202413]). | ||
* Improves {elastic-defend} for Linux endpoints by enabling process information enrichment for file and network events when process events are disabled. | ||
* Improves {elastic-defend} by refactoring the kernel driver to work around a `CRITICAL_PROCESS_DIED` bug check (BSOD) that can occur due to a conflict with CrowdStrike Falcon. | ||
nastasha-solomon marked this conversation as resolved.
Show resolved
Hide resolved
|
||
* Fixes an issue in {elastic-defend} versions 8.15.2 and 8.15.3 which can result in Windows boot failure `0xC000007B` referencing `ElasticElam.sys` or recovery mode prompt at boot. We have only received reports of this happening when {elastic-defend} is installed alongside CrowdStrike Falcon. | ||
* Fixes an {elastic-defend} bug where the Linux system call (`setsid`) wasn't properly gathered for RHEL 9/CentOS Stream 9 process events. | ||
* Fixes an issue where {elastic-defend} can enter an infinite loop if an external application opens and retains handles to files within {elastic-defend}s directory while it is processing a `get-file` response action. This can result in {elastic-defend} flooding Elasticsearch with documents until the handles are closed. |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.