-
Notifications
You must be signed in to change notification settings - Fork 592
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
chore(dependencies): Autobump korkVersion #1165
Merged
mergify
merged 4 commits into
spinnaker:master
from
spinnakerbot:autobump-korkVersion-master
Jun 12, 2024
Merged
chore(dependencies): Autobump korkVersion #1165
mergify
merged 4 commits into
spinnaker:master
from
spinnakerbot:autobump-korkVersion-master
Jun 12, 2024
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
…spring boot 2.7.x In spring boot 2.7.8 onwards mysql connector coordinate `mysql:mysql-connector-java` has been removed and only `com.mysql:mysql-connector-j` coordinate exist. https://github.com/spring-projects/spring-boot/wiki/Spring-Boot-2.7-Release-Notes#mysql-jdbc-driver So, updating the mysql connector coordinate as `com.mysql:mysql-connector-j` with spring boot upgrade to 2.7.18. https://repo1.maven.org/maven2/org/springframework/boot/spring-boot-dependencies/2.7.18/spring-boot-dependencies-2.7.18.pom
…ap module during upgrade to spring boot 2.7.x While upgrading spring boot 2.7.18, encounter below error during compilation of fiat-ldap module: ``` > Task :fiat-ldap:compileJava FAILED /fiat/fiat-ldap/src/main/java/com/netflix/spinnaker/fiat/roles/ldap/LdapUserRolesProvider.java:54: error: package org.slf4j does not exist @slf4j ^ 1 error ``` The root cause is the removal of `slf4j-api` transitive dependency from org.springframework.ldap:spring-ldap-core:2.4.1 (via. org.springframework.security:spring-security-ldap:5.7.11, which is part of spring boot 2.7.18). So, adding the dependency explicitly. Before: ``` $ ./gradlew fiat-ldap:dI --dependency slf4j-api > Task :fiat-ldap:dependencyInsight org.slf4j:slf4j-api:1.7.36 Variant compile: | Attribute Name | Provided | Requested | |--------------------------------|----------|-------------------| | org.gradle.status | release | | | org.gradle.category | library | library | | org.gradle.libraryelements | jar | classes+resources | | org.gradle.usage | java-api | java-api | | org.gradle.dependency.bundling | | external | | org.gradle.jvm.environment | | standard-jvm | | org.gradle.jvm.version | | 11 | Selection reasons: - By constraint - Forced org.slf4j:slf4j-api:1.7.36 \--- io.spinnaker.kork:kork-bom:7.227.0 \--- compileClasspath org.slf4j:slf4j-api:1.7.32 -> 1.7.36 \--- org.springframework.ldap:spring-ldap-core:2.3.8.RELEASE +--- io.spinnaker.kork:kork-bom:7.227.0 | \--- compileClasspath \--- org.springframework.security:spring-security-ldap:5.6.10 +--- compileClasspath (requested org.springframework.security:spring-security-ldap) \--- io.spinnaker.kork:kork-bom:7.227.0 (*) ``` After: ``` $ ./gradlew fiat-ldap:dI --dependency slf4j-api > Task :fiat-ldap:dependencyInsight org.slf4j:slf4j-api:1.7.36 Variant compile: | Attribute Name | Provided | Requested | |--------------------------------|----------|-------------------| | org.gradle.status | release | | | org.gradle.category | library | library | | org.gradle.libraryelements | jar | classes+resources | | org.gradle.usage | java-api | java-api | | org.gradle.dependency.bundling | | external | | org.gradle.jvm.environment | | standard-jvm | | org.gradle.jvm.version | | 11 | Selection reasons: - By constraint - Forced org.slf4j:slf4j-api:1.7.36 \--- io.spinnaker.kork:kork-bom:sb2718-SNAPSHOT \--- compileClasspath org.slf4j:slf4j-api -> 1.7.36 \--- compileClasspath ```
… static methods from its interfaces during upgrade to spring boot 2.7.x While upgrading spring boot 2.7.18, encounter below errors during test compilation of fiat-roles module: ``` No signature of method: static java.util.HashSet.of() is applicable for argument types: (com.netflix.spinnaker.fiat.model.resources.Role) values: [Role(resourceType=role, name=role1, source=null)] Possible solutions: is(java.lang.Object), max(), any(), sort(), sum(), min() groovy.lang.MissingMethodException: No signature of method: static java.util.HashSet.of() is applicable for argument types: (com.netflix.spinnaker.fiat.model.resources.Role) values: [Role(resourceType=role, name=role1, source=null)] Possible solutions: is(java.lang.Object), max(), any(), sort(), sum(), min() at com.netflix.spinnaker.fiat.permissions.DefaultPermissionsResolverSpec.should resolve resources for users and service accounts(DefaultPermissionsResolverSpec.groovy:343) ``` ``` No signature of method: static java.util.HashMap.of() is applicable for argument types: (String, String, String, String) values: [foo, bar, xyz, pqr] Possible solutions: any(), sort(), notify(), wait(), size(), clone() groovy.lang.MissingMethodException: No signature of method: static java.util.HashMap.of() is applicable for argument types: (String, String, String, String) values: [foo, bar, xyz, pqr] Possible solutions: any(), sort(), notify(), wait(), size(), clone() at com.netflix.spinnaker.fiat.providers.DefaultApplicationProviderSpec.enable calling Clouddriver during application load based on config(DefaultApplicationProviderSpec.groovy:170) ``` ``` No signature of method: static java.util.HashMap.of() is applicable for argument types: (String, String, String, String) values: [foo, bar, xyz, pqr] Possible solutions: any(), sort(), notify(), wait(), size(), clone() groovy.lang.MissingMethodException: No signature of method: static java.util.HashMap.of() is applicable for argument types: (String, String, String, String) values: [foo, bar, xyz, pqr] Possible solutions: any(), sort(), notify(), wait(), size(), clone() at com.netflix.spinnaker.fiat.providers.DefaultApplicationProviderSpec.should suppress details when loading all applications(DefaultApplicationProviderSpec.groovy:227) ``` Spring boot 2.7.18 brings groovy 3.0.19 as transitive dependency. The root cause of the issue is a breaking change introduced from groovy 3.0.18 onwards, that allows a Java class to inherit static methods from its interface. To fix these issues replacing the HashSet.Of() and HashMap.Of() with Set.Of() and Map.Of(). http://groovy-lang.org/changelogs/changelog-3.0.18.html https://issues.apache.org/jira/browse/GROOVY-8164 Before: ``` $ ./gradlew fiat-roles:dI --dependency org.codehaus.groovy --configuration testCompileClasspath > Task :fiat-roles:dependencyInsight org.codehaus.groovy:groovy:3.0.17 Variant compile: | Attribute Name | Provided | Requested | |--------------------------------|----------|-------------------| | org.gradle.status | release | | | org.gradle.category | library | library | | org.gradle.libraryelements | jar | classes+resources | | org.gradle.usage | java-api | java-api | | org.gradle.dependency.bundling | | external | | org.gradle.jvm.environment | | standard-jvm | | org.gradle.jvm.version | | 11 | Selection reasons: - By constraint - Forced org.codehaus.groovy:groovy:3.0.17 \--- io.spinnaker.kork:kork-bom:7.227.0 \--- testCompileClasspath org.codehaus.groovy:groovy:3.0.8 -> 3.0.17 +--- org.spockframework:spock-core:2.0-groovy-3.0 | +--- testCompileClasspath (requested org.spockframework:spock-core) | +--- io.spinnaker.kork:kork-bom:7.227.0 | | \--- testCompileClasspath | \--- org.spockframework:spock-spring:2.0-groovy-3.0 | +--- testCompileClasspath (requested org.spockframework:spock-spring) | \--- io.spinnaker.kork:kork-bom:7.227.0 (*) \--- org.spockframework:spock-spring:2.0-groovy-3.0 (*) ``` After: ``` $ ./gradlew fiat-roles:dI --dependency org.codehaus.groovy --configuration testCompileClasspath > Task :fiat-roles:dependencyInsight org.codehaus.groovy:groovy:3.0.19 Variant compile: | Attribute Name | Provided | Requested | |--------------------------------|----------|-------------------| | org.gradle.status | release | | | org.gradle.category | library | library | | org.gradle.libraryelements | jar | classes+resources | | org.gradle.usage | java-api | java-api | | org.gradle.dependency.bundling | | external | | org.gradle.jvm.environment | | standard-jvm | | org.gradle.jvm.version | | 11 | Selection reasons: - By constraint - Forced org.codehaus.groovy:groovy:3.0.19 \--- io.spinnaker.kork:kork-bom:sb2718-SNAPSHOT \--- testCompileClasspath org.codehaus.groovy:groovy:3.0.8 -> 3.0.19 +--- org.spockframework:spock-core:2.0-groovy-3.0 | +--- testCompileClasspath (requested org.spockframework:spock-core) | +--- io.spinnaker.kork:kork-bom:sb2718-SNAPSHOT | | \--- testCompileClasspath | \--- org.spockframework:spock-spring:2.0-groovy-3.0 | +--- testCompileClasspath (requested org.spockframework:spock-spring) | \--- io.spinnaker.kork:kork-bom:sb2718-SNAPSHOT (*) \--- org.spockframework:spock-spring:2.0-groovy-3.0 (*) ```
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
No description provided.