From 20ca8152f8c4e548717c2b29204d5f6fb2a54223 Mon Sep 17 00:00:00 2001 From: root Date: Wed, 25 Sep 2024 14:52:54 +0000 Subject: [PATCH 1/3] chore(dependencies): Autobump korkVersion --- gradle.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gradle.properties b/gradle.properties index 05e0d82f4..6ad387418 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,4 +1,4 @@ -korkVersion=7.237.0 +korkVersion=7.239.0 clouddriverVersion=5.88.0 fiatVersion=1.50.0 front50Version=2.35.0 From 9c8c03aa16ddba3df9b04b9e164706fa3070d8f1 Mon Sep 17 00:00:00 2001 From: j-sandy <30489233+j-sandy@users.noreply.github.com> Date: Mon, 9 Sep 2024 19:15:30 +0530 Subject: [PATCH 2/3] refactor(dependency): replace groovy coordinates during upgrade of groovy 4.x Replacing the groovy coordinates from `org.codehaus.groovy` to `org.apache.groovy` supported by groovy 4.x and above versions. --- halyard-backup/halyard-backup.gradle | 2 +- halyard-cli/halyard-cli.gradle | 2 +- halyard-config/halyard-config.gradle | 2 +- halyard-deploy/halyard-deploy.gradle | 2 +- halyard-web/halyard-web.gradle | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/halyard-backup/halyard-backup.gradle b/halyard-backup/halyard-backup.gradle index 9d849bbe4..a495a2ed3 100644 --- a/halyard-backup/halyard-backup.gradle +++ b/halyard-backup/halyard-backup.gradle @@ -12,7 +12,7 @@ dependencies { implementation 'commons-io:commons-io' implementation 'org.apache.commons:commons-compress:1.20' implementation 'io.fabric8:kubernetes-client:4.1.1' - implementation 'org.codehaus.groovy:groovy' + implementation 'org.apache.groovy:groovy' implementation project(':halyard-config') implementation project(':halyard-core') diff --git a/halyard-cli/halyard-cli.gradle b/halyard-cli/halyard-cli.gradle index 7d29775da..2e4de10b8 100644 --- a/halyard-cli/halyard-cli.gradle +++ b/halyard-cli/halyard-cli.gradle @@ -15,7 +15,7 @@ dependencies { implementation 'com.fasterxml.jackson.core:jackson-databind' implementation 'org.aspectj:aspectjweaver' implementation 'org.yaml:snakeyaml:1.24' - implementation 'org.codehaus.groovy:groovy' + implementation 'org.apache.groovy:groovy' implementation 'com.beust:jcommander:1.81' implementation 'org.nibor.autolink:autolink:0.10.0' diff --git a/halyard-config/halyard-config.gradle b/halyard-config/halyard-config.gradle index 504b68cd7..0f8cab533 100644 --- a/halyard-config/halyard-config.gradle +++ b/halyard-config/halyard-config.gradle @@ -49,7 +49,7 @@ dependencies { testImplementation 'org.spockframework:spock-core' testImplementation 'org.springframework:spring-test' testImplementation 'org.springframework.boot:spring-boot-starter-test' - testImplementation 'org.codehaus.groovy:groovy' + testImplementation 'org.apache.groovy:groovy' testRuntimeOnly 'net.bytebuddy:byte-buddy' testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine' } diff --git a/halyard-deploy/halyard-deploy.gradle b/halyard-deploy/halyard-deploy.gradle index 1ecd147ae..64a587e32 100644 --- a/halyard-deploy/halyard-deploy.gradle +++ b/halyard-deploy/halyard-deploy.gradle @@ -23,7 +23,7 @@ dependencies { implementation "com.jakewharton.retrofit:retrofit1-okhttp3-client:1.1.0" implementation 'io.fabric8:kubernetes-client' implementation 'redis.clients:jedis' - implementation 'org.codehaus.groovy:groovy' + implementation 'org.apache.groovy:groovy' implementation project(':halyard-config') implementation project(':halyard-core') diff --git a/halyard-web/halyard-web.gradle b/halyard-web/halyard-web.gradle index 3fe301fcc..1c7399fcd 100644 --- a/halyard-web/halyard-web.gradle +++ b/halyard-web/halyard-web.gradle @@ -24,7 +24,7 @@ dependencies { implementation 'org.apache.commons:commons-lang3' implementation 'com.squareup.retrofit:retrofit' implementation 'io.github.lognet:grpc-spring-boot-starter:2.4.4' - implementation 'org.codehaus.groovy:groovy' + implementation 'org.apache.groovy:groovy' implementation "io.spinnaker.kork:kork-web" implementation "io.spinnaker.kork:kork-cloud-config-server" implementation "io.spinnaker.kork:kork-config" From 53dccb40329ce4f991a6768e7d634b3dc41af720 Mon Sep 17 00:00:00 2001 From: root Date: Wed, 25 Sep 2024 18:37:46 +0000 Subject: [PATCH 3/3] chore(dependencies): Autobump clouddriverVersion --- gradle.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gradle.properties b/gradle.properties index 6ad387418..328dd6931 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,5 +1,5 @@ korkVersion=7.239.0 -clouddriverVersion=5.88.0 +clouddriverVersion=5.89.0 fiatVersion=1.50.0 front50Version=2.35.0 org.gradle.parallel=true