From e38a468f51ddf5199d885f86c7963d74ad100591 Mon Sep 17 00:00:00 2001 From: Sai Asish Y Date: Mon, 11 May 2026 00:40:45 +0000 Subject: [PATCH 1/3] Fix typo: occured -> occurred Signed-off-by: SAY-5 --- .../asynchronous/processor/AsynchronousSearchPostProcessor.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/org/opensearch/search/asynchronous/processor/AsynchronousSearchPostProcessor.java b/src/main/java/org/opensearch/search/asynchronous/processor/AsynchronousSearchPostProcessor.java index 7c466653..5ca6ad93 100644 --- a/src/main/java/org/opensearch/search/asynchronous/processor/AsynchronousSearchPostProcessor.java +++ b/src/main/java/org/opensearch/search/asynchronous/processor/AsynchronousSearchPostProcessor.java @@ -201,7 +201,7 @@ public void persistResponse( logger.log( level, () -> new ParameterizedMessage( - "Exception occured while acquiring the permit for " + "asynchronousSearchContext [{}]", + "Exception occurred while acquiring the permit for " + "asynchronousSearchContext [{}]", asynchronousSearchContext.getAsynchronousSearchId() ), e From e5e12636edbbf5107761efdfc686fe277314ddc5 Mon Sep 17 00:00:00 2001 From: Sai Asish Y Date: Mon, 25 May 2026 06:08:25 +0000 Subject: [PATCH 2/3] Merge branch 'main' into fix-typo-occured --- .github/workflows/add-untriaged.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/add-untriaged.yml b/.github/workflows/add-untriaged.yml index 15b9a556..a76cd852 100644 --- a/.github/workflows/add-untriaged.yml +++ b/.github/workflows/add-untriaged.yml @@ -4,11 +4,14 @@ on: issues: types: [opened, reopened, transferred] +permissions: + issues: write + jobs: apply-label: runs-on: ubuntu-latest steps: - - uses: actions/github-script@v6 + - uses: actions/github-script@3a2844b7e9c422d3c10d287c895573f7108da1b3 with: script: | github.rest.issues.addLabels({ From ac0e51c254cbf21aac135c033b46d2481bfe33fa Mon Sep 17 00:00:00 2001 From: Sai Asish Y Date: Thu, 28 May 2026 08:27:49 +0000 Subject: [PATCH 3/3] Merge branch 'main' into fix-typo-occured --- build.gradle | 2 ++ gradle/wrapper/gradle-wrapper.properties | 4 ++-- ...pensearch-asynchronous-search.release-notes-3.7.0.0.md | 8 ++++++++ settings.gradle | 8 +++++++- 4 files changed, 19 insertions(+), 3 deletions(-) create mode 100644 release-notes/opensearch-asynchronous-search.release-notes-3.7.0.0.md diff --git a/build.gradle b/build.gradle index a72cda03..bc666af7 100644 --- a/build.gradle +++ b/build.gradle @@ -26,6 +26,7 @@ buildscript { repositories { mavenLocal() + maven { url "https://ci.opensearch.org/maven2/" } mavenCentral() maven { url "https://plugins.gradle.org/m2/" } maven { url "https://ci.opensearch.org/ci/dbc/snapshots/maven/" } @@ -49,6 +50,7 @@ plugins { repositories { mavenLocal() + maven { url "https://ci.opensearch.org/maven2/" } mavenCentral() maven { url "https://plugins.gradle.org/m2/" } maven { url "https://ci.opensearch.org/ci/dbc/snapshots/maven/" } diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties index b11741a1..ffc9416b 100644 --- a/gradle/wrapper/gradle-wrapper.properties +++ b/gradle/wrapper/gradle-wrapper.properties @@ -1,7 +1,7 @@ distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists -distributionSha256Sum=16f2b95838c1ddcf7242b1c39e7bbbb43c842f1f1a1a0dc4959b6d4d68abcac3 -distributionUrl=https\://services.gradle.org/distributions/gradle-9.2.0-all.zip +distributionSha256Sum=708d2c6ecc97ca9a11838ef64a6c2301151b8dd10387e22dc1a12c30557cab5b +distributionUrl=https\://services.gradle.org/distributions/gradle-9.4.1-all.zip networkTimeout=10000 validateDistributionUrl=true zipStoreBase=GRADLE_USER_HOME diff --git a/release-notes/opensearch-asynchronous-search.release-notes-3.7.0.0.md b/release-notes/opensearch-asynchronous-search.release-notes-3.7.0.0.md new file mode 100644 index 00000000..023887c6 --- /dev/null +++ b/release-notes/opensearch-asynchronous-search.release-notes-3.7.0.0.md @@ -0,0 +1,8 @@ +## Version 3.7.0 Release Notes + +Compatible with OpenSearch and OpenSearch Dashboards version 3.7.0 + +### Infrastructure + +* Add issues write permission to untriaged label workflow to fix 403 error when applying labels ([#833](https://github.com/opensearch-project/asynchronous-search/pull/833)) +* Upgrade Gradle wrapper to 9.4.1 to meet GlobalBuildInfoPlugin requirements ([#835](https://github.com/opensearch-project/asynchronous-search/pull/835)) diff --git a/settings.gradle b/settings.gradle index c4fca75b..26911e77 100644 --- a/settings.gradle +++ b/settings.gradle @@ -3,6 +3,12 @@ * SPDX-License-Identifier: Apache-2.0 */ - +pluginManagement { + repositories { + maven { url "https://ci.opensearch.org/maven2/" } + gradlePluginPortal() + mavenCentral() + } +} rootProject.name = 'asynchronous-search'