Skip to content
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

Add release notes for 2.19.0 release #217

Merged
merged 1 commit into from
Feb 26, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/actions/run-bwc-suite/action.yaml
Original file line number Diff line number Diff line change
@@ -49,7 +49,7 @@ runs:
-Dbwc.version.previous=${{ steps.build-previous.outputs.built-version }}
-Dbwc.version.next=${{ steps.build-next.outputs.built-version }} -i

- uses: alehechka/upload-tartifact@v2
- uses: actions/upload-artifact@v4
if: always()
with:
name: ${{ inputs.report-artifact-name }}
Original file line number Diff line number Diff line change
@@ -175,7 +175,7 @@ public void testDataIngestionAndSearchBackwardsCompatibility() throws Exception
private void ingestData(String index) throws IOException {
assertTrue(indexExists(index));
StringBuilder bulkRequestBody = new StringBuilder();
int numberOfRequests = Randomness.get().nextInt(10);
int numberOfRequests = Randomness.get().nextInt(10) + 1;
while (numberOfRequests-- > 0) {
for (int i = 0; i < Randomness.get().nextInt(100); i++) {
Map<String, Map<String, String>> indexRequest = new HashMap<>();
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
## 2024-02-11 Version 2.19.0.0

Compatible with OpenSearch 2.19.0

### Bug fixes

* Wrap a call to QatZipper with AccessController.doPrivileged ([#211](https://github.com/opensearch-project/custom-codecs/pull/211))