Skip to content

Commit aa5bafa

Browse files
committed
Add release notes for 2.19.0 release
Signed-off-by: Andriy Redko <andriy.redko@aiven.io>
1 parent 9de7fd3 commit aa5bafa

File tree

4 files changed

+10
-3
lines changed

4 files changed

+10
-3
lines changed

.github/actions/run-bwc-suite/action.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ runs:
4949
-Dbwc.version.previous=${{ steps.build-previous.outputs.built-version }}
5050
-Dbwc.version.next=${{ steps.build-next.outputs.built-version }} -i
5151
52-
- uses: alehechka/upload-tartifact@v2
52+
- uses: actions/upload-artifact@v4
5353
if: always()
5454
with:
5555
name: ${{ inputs.report-artifact-name }}

bwc-test/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ loggerUsageCheck.enabled = false
7676
testingConventions.enabled = false
7777
validateNebulaPom.enabled = false
7878

79-
String previousVersion = System.getProperty("bwc.version.previous", "2.11.1.0")
79+
String previousVersion = System.getProperty("bwc.version.previous", "2.19.0.0")
8080
String nextVersion = System.getProperty("bwc.version.next", "3.0.0.0")
8181

8282
String bwcVersion = previousVersion

bwc-test/src/test/java/org/opensearch/customcodecs/bwc/CustomCodecsBwcCompatibilityIT.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ public void testDataIngestionAndSearchBackwardsCompatibility() throws Exception
175175
private void ingestData(String index) throws IOException {
176176
assertTrue(indexExists(index));
177177
StringBuilder bulkRequestBody = new StringBuilder();
178-
int numberOfRequests = Randomness.get().nextInt(10);
178+
int numberOfRequests = Randomness.get().nextInt(10) + 1;
179179
while (numberOfRequests-- > 0) {
180180
for (int i = 0; i < Randomness.get().nextInt(100); i++) {
181181
Map<String, Map<String, String>> indexRequest = new HashMap<>();
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
## 2024-02-11 Version 2.19.0.0
2+
3+
Compatible with OpenSearch 2.19.0
4+
5+
### Bug fixes
6+
7+
* Wrap a call to QatZipper with AccessController.doPrivileged ([#211](https://github.com/opensearch-project/custom-codecs/pull/211))

0 commit comments

Comments
 (0)