Skip to content

Commit f70fd71

Browse files
Bump com.azure:azure-storage-common from 12.21.2 to 12.25.1 in /plugins/repository-azure (#14517)
* Bump com.azure:azure-storage-common in /plugins/repository-azure Bumps [com.azure:azure-storage-common](https://github.com/Azure/azure-sdk-for-java) from 12.21.2 to 12.25.1. - [Release notes](https://github.com/Azure/azure-sdk-for-java/releases) - [Commits](Azure/azure-sdk-for-java@azure-storage-common_12.21.2...azure-storage-blob_12.25.1) --- updated-dependencies: - dependency-name: com.azure:azure-storage-common dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> * Updating SHAs Signed-off-by: dependabot[bot] <support@github.com> * Update changelog Signed-off-by: dependabot[bot] <support@github.com> Signed-off-by: Andriy Redko <andriy.redko@aiven.io> --------- Signed-off-by: dependabot[bot] <support@github.com> Signed-off-by: Andriy Redko <andriy.redko@aiven.io> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: dependabot[bot] <dependabot[bot]@users.noreply.github.com>
1 parent 391dee2 commit f70fd71

File tree

6 files changed

+7
-2
lines changed

6 files changed

+7
-2
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
2525
- Bump `com.gradle.develocity` from 3.17.4 to 3.17.5 ([#14397](https://github.com/opensearch-project/OpenSearch/pull/14397))
2626
- Bump `opentelemetry` from 1.36.0 to 1.39.0 ([#14457](https://github.com/opensearch-project/OpenSearch/pull/14457))
2727
- Bump `azure-identity` from 1.11.4 to 1.13.0, Bump `msal4j` from 1.14.3 to 1.15.1, Bump `msal4j-persistence-extension` from 1.2.0 to 1.3.0 ([#14506](https://github.com/opensearch-project/OpenSearch/pull/14506))
28+
- Bump `com.azure:azure-storage-common` from 12.21.2 to 12.25.1 ([#14517](https://github.com/opensearch-project/OpenSearch/pull/14517))
2829

2930
### Changed
3031
- [Tiered Caching] Move query recomputation logic outside write lock ([#14187](https://github.com/opensearch-project/OpenSearch/pull/14187))

plugins/repository-azure/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ dependencies {
4747
api 'com.azure:azure-core:1.49.1'
4848
api 'com.azure:azure-json:1.1.0'
4949
api 'com.azure:azure-xml:1.0.0'
50-
api 'com.azure:azure-storage-common:12.21.2'
50+
api 'com.azure:azure-storage-common:12.25.1'
5151
api 'com.azure:azure-core-http-netty:1.15.1'
5252
api "io.netty:netty-codec-dns:${versions.netty}"
5353
api "io.netty:netty-codec-socks:${versions.netty}"

plugins/repository-azure/licenses/azure-storage-common-12.21.2.jar.sha1

-1
This file was deleted.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
96e2df76ce9a8fa084ae289bb59295d565f2b8d5

plugins/repository-azure/src/main/java/org/opensearch/repositories/azure/AzureStorageService.java

+3
Original file line numberDiff line numberDiff line change
@@ -141,6 +141,9 @@ public Void run() {
141141
// - https://github.com/Azure/azure-sdk-for-java/pull/25004
142142
// - https://github.com/Azure/azure-sdk-for-java/pull/24374
143143
Configuration.getGlobalConfiguration().put("AZURE_JACKSON_ADAPTER_USE_ACCESS_HELPER", "true");
144+
// See please:
145+
// - https://github.com/Azure/azure-sdk-for-java/issues/37464
146+
Configuration.getGlobalConfiguration().put("AZURE_ENABLE_SHUTDOWN_HOOK_WITH_PRIVILEGE", "true");
144147
}
145148

146149
public AzureStorageService(Settings settings) {

plugins/repository-azure/src/main/plugin-metadata/plugin-security.policy

+1
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ grant {
3838
permission java.lang.RuntimePermission "accessDeclaredMembers";
3939
permission java.lang.reflect.ReflectPermission "suppressAccessChecks";
4040
permission java.lang.RuntimePermission "setContextClassLoader";
41+
permission java.lang.RuntimePermission "shutdownHooks";
4142

4243
// azure client set Authenticator for proxy username/password
4344
permission java.net.NetPermission "setDefaultAuthenticator";

0 commit comments

Comments
 (0)