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

RUN-1771: Upgrade libraries azure plugin libraries for azure 1.41.4 and azure-storage to 8.6.6 #8362

Merged
merged 4 commits into from Jun 1, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
10 changes: 8 additions & 2 deletions plugins/azure-object-store-plugin/build.gradle
Expand Up @@ -21,10 +21,10 @@ dependencies {
// Use the latest Groovy version for building this library
implementation "org.codehaus.groovy:groovy:${groovyVersion}"

pluginLibs (group: 'com.microsoft.azure', name: 'azure', version: '1.3.0'){
pluginLibs (group: 'com.microsoft.azure', name: 'azure', version: '1.41.4'){
exclude group: "com.fasterxml.jackson.core"
}
pluginLibs (group: 'com.microsoft.azure', name: 'azure-storage', version: '6.1.0') {
pluginLibs (group: 'com.microsoft.azure', name: 'azure-storage', version: '8.6.6') {
exclude group: "com.fasterxml.jackson.core"
}

Expand All @@ -37,6 +37,12 @@ dependencies {
testImplementation "org.slf4j:slf4j-simple:1.6.1"
testImplementation "org.codehaus.groovy:groovy-all:${groovyVersion}"
testImplementation "org.spockframework:spock-core:2.0-groovy-3.0"

constraints {
pluginLibs("net.minidev:json-smart:2.4.11") {
because "json-smart affected by CVE-2023-1370 CVE-2021-31684"
}
}
}

repositories {
Expand Down