Skip to content

Commit

Permalink
Merge pull request #14 from sbcd90/main__ver_fix
Browse files Browse the repository at this point in the history
Main  ver fix
  • Loading branch information
AWSHurneyt authored Feb 6, 2025
2 parents b37d343 + 58f2191 commit dbe798f
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
## Version 2.19.0.0 2025-02-03
Compatible with OpenSearch 2.19.0

### Maintenance
* Incremented version to 2.19.0 ([#1444](https://github.com/opensearch-project/security-analytics/pull/1444))
* Fix CVE-2024-47535. ([#1460](https://github.com/opensearch-project/security-analytics/pull/1460))

### Refactoring
* optimize sigma aggregation rule based detectors execution workflow ([#1418](https://github.com/opensearch-project/security-analytics/pull/1418))
* Adding various OCSF 1.1 fields to log type static mappings ([#1403](https://github.com/opensearch-project/security-analytics/pull/1403))

### Bug Fixes
* Add validation for threat intel source config ([#1393](https://github.com/opensearch-project/security-analytics/pull/1393))
* fix detector to work for trigger conditions filtering on aggregation rules ([#1423](https://github.com/opensearch-project/security-analytics/pull/1423))
* fixes the duplicate alerts generated by Aggregation Sigma Roles ([#1424](https://github.com/opensearch-project/security-analytics/pull/1424))
* OCSF1.1 Fixes ([#1439](https://github.com/opensearch-project/security-analytics/pull/1439))
* Added catch for unexpected inputs. ([#1442](https://github.com/opensearch-project/security-analytics/pull/1442))
* Refactored flaky test. ([#1464](https://github.com/opensearch-project/security-analytics/pull/1464))

### Documentation
* Added 2.19.0 release notes. ([#1468](https://github.com/opensearch-project/security-analytics/pull/1468))
Binary file modified security-analytics-commons-1.0.0.jar
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -805,7 +805,7 @@ public void testMultipleAggregationAndDocRules_alertSuccess() throws IOException

Response createMappingResponse = client().performRequest(createMappingRequest);

assertEquals(org.apache.http.HttpStatus.SC_OK, createMappingResponse.getStatusLine().getStatusCode());
assertEquals(HttpStatus.SC_OK, createMappingResponse.getStatusLine().getStatusCode());

String infoOpCode = "Info";

Expand Down Expand Up @@ -980,7 +980,7 @@ public void test_detectorWith1AggRuleAndTriggeronRule_updateWithSecondAggRule()

Response createMappingResponse = client().performRequest(createMappingRequest);

assertEquals(org.apache.http.HttpStatus.SC_OK, createMappingResponse.getStatusLine().getStatusCode());
assertEquals(HttpStatus.SC_OK, createMappingResponse.getStatusLine().getStatusCode());

String infoOpCode = "Info";
/** 1st agg rule*/
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
package org.opensearch.securityanalytics.resthandler;

import org.apache.hc.core5.http.ContentType;
import org.apache.hc.core5.http.HttpStatus;
import org.apache.hc.core5.http.io.entity.StringEntity;
import org.apache.http.HttpStatus;
import org.apache.logging.log4j.LogManager;
import org.apache.logging.log4j.Logger;
import org.junit.Assert;
Expand Down

0 comments on commit dbe798f

Please sign in to comment.