Skip to content

Commit 43cc9ea

Browse files
authored
Merge branch '3.x' into backport/backport-1919-to-3.x
Signed-off-by: Thomas Farr <tsfarr@amazon.com>
2 parents 10dd4fb + b21f142 commit 43cc9ea

9 files changed

Lines changed: 12 additions & 9 deletions

File tree

.github/workflows/backport.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
steps:
1717
- name: GitHub App token
1818
id: github_app_token
19-
uses: actions/create-github-app-token@v2
19+
uses: actions/create-github-app-token@v3
2020
with:
2121
app-id: ${{ secrets.APP_ID }}
2222
private-key: ${{ secrets.APP_PRIVATE_KEY }}

.github/workflows/bump-version.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
steps:
2020
- name: Generate GitHub App Token
2121
id: github_app_token
22-
uses: actions/create-github-app-token@v2
22+
uses: actions/create-github-app-token@v3
2323
with:
2424
app-id: ${{ secrets.APP_ID }}
2525
private-key: ${{ secrets.APP_PRIVATE_KEY }}
@@ -110,7 +110,7 @@ jobs:
110110
111111
- name: Generate GitHub App Token
112112
id: github_app_token
113-
uses: actions/create-github-app-token@v2
113+
uses: actions/create-github-app-token@v3
114114
if: env.is_version_tag == 'true' || env.is_patch_indev_branch == 'true' || env.is_minor_indev_branch == 'true'
115115
with:
116116
app-id: ${{ secrets.APP_ID }}

.github/workflows/code-generation.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ jobs:
6767
- name: Generate GitHub App Token
6868
if: github.repository == 'opensearch-project/opensearch-java'
6969
id: github_app_token
70-
uses: actions/create-github-app-token@v2
70+
uses: actions/create-github-app-token@v3
7171
with:
7272
app-id: ${{ secrets.APP_ID }}
7373
private-key: ${{ secrets.APP_PRIVATE_KEY }}

.github/workflows/dependabot_pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
steps:
1919
- name: GitHub App token
2020
id: github_app_token
21-
uses: actions/create-github-app-token@v2
21+
uses: actions/create-github-app-token@v3
2222
with:
2323
app-id: ${{ secrets.APP_ID }}
2424
private-key: ${{ secrets.APP_PRIVATE_KEY }}

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ Inspired from [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
55
### Added
66

77
### Dependencies
8+
- Bump `gradle-wrapper` from 9.31. to 9.4.0 ([#1930](https://github.com/opensearch-project/opensearch-java/pull/1930))
9+
- Bump `commons-logging:commons-logging` from 1.3.5 to 1.3.6 ([#1922](https://github.com/opensearch-project/opensearch-java/pull/1922))
810
- Bump `org.apache.httpcomponents.core5:httpcore5-h2` from 5.4.1 to 5.4.2 ([#1919](https://github.com/opensearch-project/opensearch-java/pull/1919))
911

1012
### Changed

gradle/wrapper/gradle-wrapper.jar

2.73 KB
Binary file not shown.

gradle/wrapper/gradle-wrapper.properties

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,8 @@
2828

2929
distributionBase=GRADLE_USER_HOME
3030
distributionPath=wrapper/dists
31-
distributionUrl=https\://services.gradle.org/distributions/gradle-9.3.1-bin.zip
31+
distributionSha256Sum=60ea723356d81263e8002fec0fcf9e2b0eee0c0850c7a3d7ab0a63f2ccc601f3
32+
distributionUrl=https\://services.gradle.org/distributions/gradle-9.4.0-bin.zip
33+
networkTimeout=10000
3234
zipStoreBase=GRADLE_USER_HOME
3335
zipStorePath=wrapper/dists
34-
distributionSha256Sum=b266d5ff6b90eada6dc3b20cb090e3731302e553a27c5d3e4df1f0d76beaff06

gradlew

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

java-client/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@ dependencies {
183183
val jacksonDatabindVersion = "2.20.1"
184184

185185
// Apache 2.0
186-
api("commons-logging:commons-logging:1.3.5")
186+
api("commons-logging:commons-logging:1.3.6")
187187
compileOnly("org.opensearch.client", "opensearch-rest-client", opensearchVersion)
188188
testImplementation("org.hamcrest:hamcrest:3.0")
189189
testImplementation("com.carrotsearch.randomizedtesting:randomizedtesting-runner:2.8.4") {

0 commit comments

Comments
 (0)