diff --git a/Explanations/00a7cc31784ac4a9cc27d506a73ae589d6df36d6.md b/Explanations/00a7cc31784ac4a9cc27d506a73ae589d6df36d6.md new file mode 100644 index 0000000..99d0c0e --- /dev/null +++ b/Explanations/00a7cc31784ac4a9cc27d506a73ae589d6df36d6.md @@ -0,0 +1,39 @@ +CI detected that the dependency upgrade from version **mina-core-2.1.5** to **mina-core-2.2.1** has failed. Here are details to help you understand and fix the problem: +1. Your client utilizes **2** instructions which has been modified in the new version of the dependency. + *
+ Method setUseClientMode(boolean) which has been removed in the new version of the dependency + + *
+ The failure is identified from the logs generated in the build process. + + * >[[ERROR] /quickfixj/quickfixj-core/src/main/java/quickfix/mina/acceptor/AbstractSocketAcceptor.java:[136,18] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1552) + * An error was detected in line 136 which is making use of an outdated API. + ``` java + 136 sslFilter.setUseClientMode(false); + ``` + * >[[ERROR] /quickfixj/quickfixj-core/src/main/java/quickfix/mina/initiator/IoSessionInitiator.java:[195,22] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1555) + * An error was detected in line 195 which is making use of an outdated API. + ``` java + 195 sslFilter.setUseClientMode(true); + ``` + +
+ +
+ *
+ Method initiateHandshake(org.apache.mina.core.session.IoSession) which has been removed in the new version of the dependency + + *
+ The failure is identified from the logs generated in the build process. + + * >[[ERROR] /quickfixj/quickfixj-core/src/main/java/quickfix/mina/initiator/InitiatorProxyIoHandler.java:[65,27] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1565) + * An error was detected in line 65 which is making use of an outdated API. + ``` java + 65 this.sslFilter.initiateHandshake(ioSession); + ``` + +
+ +
+ + diff --git a/Explanations/0abf7148300f40a1da0538ab060552bca4a2f1d8.md b/Explanations/0abf7148300f40a1da0538ab060552bca4a2f1d8.md new file mode 100644 index 0000000..8aa6ccc --- /dev/null +++ b/Explanations/0abf7148300f40a1da0538ab060552bca4a2f1d8.md @@ -0,0 +1,22 @@ +CI detected that the dependency upgrade from version **jasperreports-6.18.1** to **jasperreports-6.19.1** has failed. Here are details to help you understand and fix the problem: +1. Your client utilizes **1** instruction which has been modified in the new version of the dependency. + * Method setLineWidth() which has been removed in the new version of the dependency + + * The failure is identified from the logs generated in the build process. + + * >[[ERROR] /biapi/src/main/java/xdev/tableexport/export/ReportBuilder.java:[369,81] incompatible types: int cannot be converted to java.lang.Float](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1534) + * An error was detected in line 369 which is making use of an outdated API. + ``` java + 369 textField.getLineBox().getPen().setLineWidth(border.getLineWidth()); + ``` +
+ + * >[[ERROR] /biapi/src/main/java/xdev/tableexport/export/ReportBuilder.java:[369,81] incompatible types: int cannot be converted to java.lang.Float](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1534) + + * An error was detected in line 369 which is making use of an outdated API. + ``` java + 369 textField.getLineBox().getPen().setLineWidth(border.getLineWidth()); + ``` +
+ + diff --git a/Explanations/0e8625f492854a78c0e1ceff67b2abd7e081d42b.md b/Explanations/0e8625f492854a78c0e1ceff67b2abd7e081d42b.md new file mode 100644 index 0000000..cf0e7b7 --- /dev/null +++ b/Explanations/0e8625f492854a78c0e1ceff67b2abd7e081d42b.md @@ -0,0 +1,83 @@ +CI detected that the dependency upgrade from version **jetty-server-8.1.11.v20130520** to **jetty-server-11.0.10** has failed. Here are details to help you understand and fix the problem: +1. Your client utilizes **4** instructions which has been modified in the new version of the dependency. + *
+ Method getLocalPort() which has been removed in the new version of the dependency + + *
+ The failure is identified from the logs generated in the build process. + + * >[[ERROR] /jadler/jadler-jetty/src/main/java/net/jadler/stubbing/server/jetty/JettyStubHttpServer.java:[80,28] error: cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1252) + * An error was detected in line 80 which is making use of an outdated API. + ``` java + 80 httpConnector.getLocalPort(); + ``` + +
+ + To address this incompatibility, there are 2 alternative options available in the new version of the dependency that can replace the incompatible method currently used in the client. You can consider substituting the existing method with one of the following options provided by the new version of the dependency: + ``` java + int getLocalPort(); + ``` + ``` java + int getLocalPort(); + ``` +
+ *
+ Method setSendDateHeader(boolean) which has been removed in the new version of the dependency + + *
+ The failure is identified from the logs generated in the build process. + + * >[[ERROR] /jadler/jadler-jetty/src/main/java/net/jadler/stubbing/server/jetty/JettyStubHttpServer.java:[34,19] error: cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1243) + * An error was detected in line 34 which is making use of an outdated API. + ``` java + 34 this.server.setSendDateHeader(true); + ``` + +
+ + To resolve this issue, there are alternative options available in the new version of the dependency that can replace the incompatible method currently used in the client. You can consider substituting the existing method with one of the following options provided by the new version of the dependency + ``` java + void setSendDateHeader(boolean); + ``` +
+ *
+ Method setSendServerVersion(boolean) which has been removed in the new version of the dependency + + *
+ The failure is identified from the logs generated in the build process. + + * >[[ERROR] /jadler/jadler-jetty/src/main/java/net/jadler/stubbing/server/jetty/JettyStubHttpServer.java:[33,19] error: cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1240) + * An error was detected in line 33 which is making use of an outdated API. + ``` java + 33 this.server.setSendServerVersion(false); + ``` + +
+ + To resolve this issue, there are alternative options available in the new version of the dependency that can replace the incompatible method currently used in the client. You can consider substituting the existing method with one of the following options provided by the new version of the dependency + ``` java + void setSendServerVersion(boolean); + ``` +
+ *
+ Method setPort(int) which has been removed in the new version of the dependency + + *
+ The failure is identified from the logs generated in the build process. + + * >[[ERROR] /jadler/jadler-jetty/src/main/java/net/jadler/stubbing/server/jetty/JettyStubHttpServer.java:[37,26] error: cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1249) + * An error was detected in line 37 which is making use of an outdated API. + ``` java + 37 this.httpConnector.setPort(port); + ``` + +
+ + To resolve this issue, there are alternative options available in the new version of the dependency that can replace the incompatible method currently used in the client. You can consider substituting the existing method with one of the following options provided by the new version of the dependency + ``` java + void setPort(int); + ``` +
+ + diff --git a/Explanations/10d7545c5771b03dd9f6122bd5973a759eb2cd03.md b/Explanations/10d7545c5771b03dd9f6122bd5973a759eb2cd03.md new file mode 100644 index 0000000..9cfa00b --- /dev/null +++ b/Explanations/10d7545c5771b03dd9f6122bd5973a759eb2cd03.md @@ -0,0 +1,21 @@ +CI detected that the dependency upgrade from version **dropwizard-client-2.1.5** to **dropwizard-client-4.0.0** has failed. Here are details to help you understand and fix the problem: +1. Your client utilizes **1** instruction which has been modified in the new version of the dependency. + * Method using() which has been removed in the new version of the dependency + + * The failure is identified from the logs generated in the build process. + + * >[[ERROR] /lithium/src/main/java/com/wire/lithium/Server.java:[160,16] cannot access io.dropwizard.core.setup.Environment](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:2818) + * An error was detected in line 160 which is making use of an outdated API. + ``` java + 160 new io.dropwizard.client.JerseyClientBuilder(env).using(config.getJerseyClient()); + ``` + + To address this incompatibility, there are 2 alternative options available in the new version of the dependency that can replace the incompatible method currently used in the client. You can consider substituting the existing method with one of the following options provided by the new version of the dependency: + ``` java + HttpClientBuilder using(List); + ``` + ``` java + HttpClientBuilder using(DnsResolver); + ``` + + diff --git a/Explanations/14fc5fa696f499cac48401b3a86882b3bf7d9b82.md b/Explanations/14fc5fa696f499cac48401b3a86882b3bf7d9b82.md new file mode 100644 index 0000000..1a0ef63 --- /dev/null +++ b/Explanations/14fc5fa696f499cac48401b3a86882b3bf7d9b82.md @@ -0,0 +1,121 @@ +CI detected that the dependency upgrade from version **flyway-core-3.2.1** to **flyway-core-9.21.1** has failed. Here are details to help you understand and fix the problem: +1. Your client utilizes **6** instructions which has been modified in the new version of the dependency. + *
+ Method valueOf(java.lang.String) which has been removed in the new version of the dependency + + *
+ The failure is identified from the logs generated in the build process. + + * >[[ERROR] /nem/nis/src/main/java/org/nem/specific/deploy/appconfig/NisAppConfig.java:[112,23] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:2017) + * An error was detected in line 112 which is making use of an outdated API. + ``` java + 112 java.lang.Boolean.valueOf(prop.getProperty("flyway.validate")); + ``` + +
+ + To resolve this issue, there are alternative options available in the new version of the dependency that can replace the incompatible method currently used in the client. You can consider substituting the existing method with one of the following options provided by the new version of the dependency + ``` java + Event valueOf(String); + ``` +
+ *
+ Method setLocations(java.lang.String) which has been removed in the new version of the dependency + + *
+ The failure is identified from the logs generated in the build process. + + * >[[ERROR] /nem/nis/src/main/java/org/nem/specific/deploy/appconfig/NisAppConfig.java:[111,23] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:2014) + * An error was detected in line 111 which is making use of an outdated API. + ``` java + 111 flyway.setLocations(prop.getProperty("flyway.locations")); + ``` + +
+ + To resolve this issue, there are alternative options available in the new version of the dependency that can replace the incompatible method currently used in the client. You can consider substituting the existing method with one of the following options provided by the new version of the dependency + ``` java + void setLocations(Location[]); + ``` +
+ *
+ Method setDataSource(javax.sql.DataSource) which has been removed in the new version of the dependency + + *
+ The failure is identified from the logs generated in the build process. + + * >[[ERROR] /nem/nis/src/main/java/org/nem/specific/deploy/appconfig/NisAppConfig.java:[109,23] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:2008) + * An error was detected in line 109 which is making use of an outdated API. + ``` java + 109 flyway.setDataSource(this.dataSource()); + ``` + +
+ + To resolve this issue, there are alternative options available in the new version of the dependency that can replace the incompatible method currently used in the client. You can consider substituting the existing method with one of the following options provided by the new version of the dependency + ``` java + void setDataSource(String,String,String); + ``` +
+ *
+ Method getClassLoader() which has been removed in the new version of the dependency + + *
+ The failure is identified from the logs generated in the build process. + + * >[[ERROR] /nem/nis/src/main/java/org/nem/specific/deploy/appconfig/NisAppConfig.java:[110,23] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:2011) + * An error was detected in line 110 which is making use of an outdated API. + ``` java + 110 org.nem.specific.deploy.appconfig.NisAppConfig.class.getClassLoader(); + ``` + +
+ + To address this incompatibility, there are 2 alternative options available in the new version of the dependency that can replace the incompatible method currently used in the client. You can consider substituting the existing method with one of the following options provided by the new version of the dependency: + ``` java + ClassLoader getClassLoader(); + ``` + ``` java + ClassLoader getClassLoader(); + ``` +
+ *
+ Method setClassLoader(java.lang.ClassLoader) which has been removed in the new version of the dependency + + *
+ The failure is identified from the logs generated in the build process. + + * >[[ERROR] /nem/nis/src/main/java/org/nem/specific/deploy/appconfig/NisAppConfig.java:[110,23] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:2011) + * An error was detected in line 110 which is making use of an outdated API. + ``` java + 110 flyway.setClassLoader(org.nem.specific.deploy.appconfig.NisAppConfig.class.getClassLoader()); + ``` + +
+ + To resolve this issue, there are alternative options available in the new version of the dependency that can replace the incompatible method currently used in the client. You can consider substituting the existing method with one of the following options provided by the new version of the dependency + ``` java + void setClassLoader(ClassLoader); + ``` +
+ *
+ Method setValidateOnMigrate(java.lang.Boolean) which has been removed in the new version of the dependency + + *
+ The failure is identified from the logs generated in the build process. + + * >[[ERROR] /nem/nis/src/main/java/org/nem/specific/deploy/appconfig/NisAppConfig.java:[112,23] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:2017) + * An error was detected in line 112 which is making use of an outdated API. + ``` java + 112 flyway.setValidateOnMigrate(java.lang.Boolean.valueOf(prop.getProperty("flyway.validate"))); + ``` + +
+ + To resolve this issue, there are alternative options available in the new version of the dependency that can replace the incompatible method currently used in the client. You can consider substituting the existing method with one of the following options provided by the new version of the dependency + ``` java + void setValidateOnMigrate(Boolean); + ``` +
+ + diff --git a/Explanations/165381d26b2c3d2278fde88c16f95807506451fe.md b/Explanations/165381d26b2c3d2278fde88c16f95807506451fe.md new file mode 100644 index 0000000..edd4b78 --- /dev/null +++ b/Explanations/165381d26b2c3d2278fde88c16f95807506451fe.md @@ -0,0 +1,18 @@ +CI detected that the dependency upgrade from version **javaparser-core-3.18.0** to **javaparser-core-3.24.0** has failed. Here are details to help you understand and fix the problem: +1. Your client utilizes **1** instruction which has been modified in the new version of the dependency. + * Method setPrintComments(boolean) which has been removed in the new version of the dependency + + * The failure is identified from the logs generated in the build process. + + * >[[ERROR] /scheduler/safeplace/src/test/java/org/btrplace/safeplace/DSN.java:[335,21] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:2378) + * An error was detected in line 335 which is making use of an outdated API. + ``` java + 335 new com.github.javaparser.printer.PrettyPrinterConfiguration().setPrintComments(false); + ``` + + To resolve this issue, there are alternative options available in the new version of the dependency that can replace the incompatible method currently used in the client. You can consider substituting the existing method with one of the following options provided by the new version of the dependency + ``` java + PrettyPrinterConfiguration setPrintComments(boolean); + ``` + + diff --git a/Explanations/1cc7071371953a7880c2c2c3a5a32c36af7f88f9.md b/Explanations/1cc7071371953a7880c2c2c3a5a32c36af7f88f9.md new file mode 100644 index 0000000..0c7a73a --- /dev/null +++ b/Explanations/1cc7071371953a7880c2c2c3a5a32c36af7f88f9.md @@ -0,0 +1,129 @@ +CI detected that the dependency upgrade from version **assertj-core-3.22.0** to **assertj-core-3.23.0** has failed. Here are details to help you understand and fix the problem: +1. Your client utilizes **6** instructions which has been modified in the new version of the dependency. + *
+ Method with(AuxiliaryType.NamingStrategy.SuffixingRandom) which has been removed in the new version of the dependency + + *
+ The failure is identified from the logs generated in the build process. + + * >[[ERROR] /assertj-vavr/src/main/java/org/assertj/vavr/api/VavrAssumptions.java:[50,26] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1135) + * An error was detected in line 50 which is making use of an outdated API. + ``` java + 50 new org.assertj.core.internal.bytebuddy.ByteBuddy().with(org.assertj.core.internal.bytebuddy.dynamic.scaffold.TypeValidation.DISABLED).with(new org.assertj.core.internal.bytebuddy.implementation.auxiliary.AuxiliaryType.NamingStrategy.SuffixingRandom("Assertj$Assumptions")); + ``` + * >[[ERROR] /assertj-vavr/src/main/java/org/assertj/vavr/api/VavrAssumptions.java:[50,26] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1135) + * An error was detected in line 50 which is making use of an outdated API. + ``` java + 50 new org.assertj.core.internal.bytebuddy.ByteBuddy().with(org.assertj.core.internal.bytebuddy.dynamic.scaffold.TypeValidation.DISABLED).with(new org.assertj.core.internal.bytebuddy.implementation.auxiliary.AuxiliaryType.NamingStrategy.SuffixingRandom("Assertj$Assumptions")); + ``` + * >[[ERROR] /assertj-vavr/src/main/java/org/assertj/vavr/api/VavrAssumptions.java:[50,26] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1135) + * An error was detected in line 50 which is making use of an outdated API. + ``` java + 50 new org.assertj.core.internal.bytebuddy.ByteBuddy().with(org.assertj.core.internal.bytebuddy.dynamic.scaffold.TypeValidation.DISABLED); + ``` + * >[[ERROR] /assertj-vavr/src/main/java/org/assertj/vavr/api/VavrAssumptions.java:[50,26] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1135) + * An error was detected in line 50 which is making use of an outdated API. + ``` java + 50 new org.assertj.core.internal.bytebuddy.ByteBuddy().with(org.assertj.core.internal.bytebuddy.dynamic.scaffold.TypeValidation.DISABLED); + ``` + +
+ +
+ *
+ Method isAvailable() which has been removed in the new version of the dependency + + *
+ The failure is identified from the logs generated in the build process. + + * >[[ERROR] /assertj-vavr/src/main/java/org/assertj/vavr/api/ClassLoadingStrategyFactory.java:[30,26] package ClassInjector does not exist](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1159) + * An error was detected in line 30 which is making use of an outdated API. + ``` java + 30 org.assertj.core.internal.bytebuddy.dynamic.loading.ClassInjector.UsingReflection.isAvailable(); + ``` + * >[[ERROR] /assertj-vavr/src/main/java/org/assertj/vavr/api/ClassLoadingStrategyFactory.java:[30,26] package ClassInjector does not exist](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1159) + * An error was detected in line 30 which is making use of an outdated API. + ``` java + 30 org.assertj.core.internal.bytebuddy.dynamic.loading.ClassInjector.UsingReflection.isAvailable(); + ``` + * >[[ERROR] /assertj-vavr/src/main/java/org/assertj/vavr/api/ClassLoadingStrategyFactory.java:[32,33] package ClassInjector does not exist](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1161) + * An error was detected in line 32 which is making use of an outdated API. + ``` java + 32 org.assertj.core.internal.bytebuddy.dynamic.loading.ClassInjector.UsingLookup.isAvailable(); + ``` + * >[[ERROR] /assertj-vavr/src/main/java/org/assertj/vavr/api/ClassLoadingStrategyFactory.java:[32,33] package ClassInjector does not exist](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1161) + * An error was detected in line 32 which is making use of an outdated API. + ``` java + 32 org.assertj.core.internal.bytebuddy.dynamic.loading.ClassInjector.UsingLookup.isAvailable(); + ``` + +
+ +
+ *
+ Method of(java.lang.Object) which has been removed in the new version of the dependency + + *
+ The failure is identified from the logs generated in the build process. + + * >[[ERROR] /assertj-vavr/src/main/java/org/assertj/vavr/api/ClassLoadingStrategyFactory.java:[34,44] package ClassLoadingStrategy does not exist](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1162) + * An error was detected in line 34 which is making use of an outdated API. + ``` java + 34 org.assertj.core.internal.bytebuddy.dynamic.loading.ClassLoadingStrategy.UsingLookup.of(org.assertj.vavr.api.ClassLoadingStrategyFactory.PRIVATE_LOOKUP_IN.invoke(null, assertClass, org.assertj.vavr.api.ClassLoadingStrategyFactory.LOOKUP)); + ``` + +
+ +
+ *
+ Method invoke(java.lang.Object,java.lang.Object[]) which has been removed in the new version of the dependency + + *
+ The failure is identified from the logs generated in the build process. + + * >[[ERROR] /assertj-vavr/src/main/java/org/assertj/vavr/api/ClassLoadingStrategyFactory.java:[34,44] package ClassLoadingStrategy does not exist](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1162) + * An error was detected in line 34 which is making use of an outdated API. + ``` java + 34 org.assertj.vavr.api.ClassLoadingStrategyFactory.PRIVATE_LOOKUP_IN.invoke(null, assertClass, org.assertj.vavr.api.ClassLoadingStrategyFactory.LOOKUP); + ``` + * >[[ERROR] /assertj-vavr/src/main/java/org/assertj/vavr/api/ClassLoadingStrategyFactory.java:[34,44] package ClassLoadingStrategy does not exist](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1162) + * An error was detected in line 34 which is making use of an outdated API. + ``` java + 34 org.assertj.vavr.api.ClassLoadingStrategyFactory.PRIVATE_LOOKUP_IN.invoke(null, assertClass, org.assertj.vavr.api.ClassLoadingStrategyFactory.LOOKUP); + ``` + +
+ +
+ *
+ Method to(java.lang.Class) which has been removed in the new version of the dependency + + *
+ The failure is identified from the logs generated in the build process. + + * >[[ERROR] /assertj-vavr/src/main/java/org/assertj/vavr/api/VavrAssumptions.java:[53,26] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1138) + * An error was detected in line 53 which is making use of an outdated API. + ``` java + 53 org.assertj.core.internal.bytebuddy.implementation.MethodDelegation.to(org.assertj.vavr.api.VavrAssumptions.AssumptionMethodInterceptor.class); + ``` + +
+ +
+ *
+ Method any() which has been removed in the new version of the dependency + + *
+ The failure is identified from the logs generated in the build process. + + * >[[ERROR] /assertj-vavr/src/main/java/org/assertj/vavr/api/VavrAssumptions.java:[223,25] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1181) + * An error was detected in line 223 which is making use of an outdated API. + ``` java + 223 any(); + ``` + +
+ +
+ + diff --git a/Explanations/1d43bce1de6a81ac017c233d72f348d3c850299e.md b/Explanations/1d43bce1de6a81ac017c233d72f348d3c850299e.md new file mode 100644 index 0000000..5ede774 --- /dev/null +++ b/Explanations/1d43bce1de6a81ac017c233d72f348d3c850299e.md @@ -0,0 +1,121 @@ +CI detected that the dependency upgrade from version **flyway-core-3.2.1** to **flyway-core-9.15.0** has failed. Here are details to help you understand and fix the problem: +1. Your client utilizes **6** instructions which has been modified in the new version of the dependency. + *
+ Method valueOf(java.lang.String) which has been removed in the new version of the dependency + + *
+ The failure is identified from the logs generated in the build process. + + * >[[ERROR] /nem/nis/src/main/java/org/nem/specific/deploy/appconfig/NisAppConfig.java:[112,23] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:2076) + * An error was detected in line 112 which is making use of an outdated API. + ``` java + 112 java.lang.Boolean.valueOf(prop.getProperty("flyway.validate")); + ``` + +
+ + To resolve this issue, there are alternative options available in the new version of the dependency that can replace the incompatible method currently used in the client. You can consider substituting the existing method with one of the following options provided by the new version of the dependency + ``` java + Event valueOf(String); + ``` +
+ *
+ Method setLocations(java.lang.String) which has been removed in the new version of the dependency + + *
+ The failure is identified from the logs generated in the build process. + + * >[[ERROR] /nem/nis/src/main/java/org/nem/specific/deploy/appconfig/NisAppConfig.java:[111,23] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:2073) + * An error was detected in line 111 which is making use of an outdated API. + ``` java + 111 flyway.setLocations(prop.getProperty("flyway.locations")); + ``` + +
+ + To resolve this issue, there are alternative options available in the new version of the dependency that can replace the incompatible method currently used in the client. You can consider substituting the existing method with one of the following options provided by the new version of the dependency + ``` java + void setLocations(Location[]); + ``` +
+ *
+ Method setDataSource(javax.sql.DataSource) which has been removed in the new version of the dependency + + *
+ The failure is identified from the logs generated in the build process. + + * >[[ERROR] /nem/nis/src/main/java/org/nem/specific/deploy/appconfig/NisAppConfig.java:[109,23] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:2067) + * An error was detected in line 109 which is making use of an outdated API. + ``` java + 109 flyway.setDataSource(this.dataSource()); + ``` + +
+ + To resolve this issue, there are alternative options available in the new version of the dependency that can replace the incompatible method currently used in the client. You can consider substituting the existing method with one of the following options provided by the new version of the dependency + ``` java + void setDataSource(String,String,String); + ``` +
+ *
+ Method getClassLoader() which has been removed in the new version of the dependency + + *
+ The failure is identified from the logs generated in the build process. + + * >[[ERROR] /nem/nis/src/main/java/org/nem/specific/deploy/appconfig/NisAppConfig.java:[110,23] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:2070) + * An error was detected in line 110 which is making use of an outdated API. + ``` java + 110 org.nem.specific.deploy.appconfig.NisAppConfig.class.getClassLoader(); + ``` + +
+ + To address this incompatibility, there are 2 alternative options available in the new version of the dependency that can replace the incompatible method currently used in the client. You can consider substituting the existing method with one of the following options provided by the new version of the dependency: + ``` java + ClassLoader getClassLoader(); + ``` + ``` java + ClassLoader getClassLoader(); + ``` +
+ *
+ Method setClassLoader(java.lang.ClassLoader) which has been removed in the new version of the dependency + + *
+ The failure is identified from the logs generated in the build process. + + * >[[ERROR] /nem/nis/src/main/java/org/nem/specific/deploy/appconfig/NisAppConfig.java:[110,23] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:2070) + * An error was detected in line 110 which is making use of an outdated API. + ``` java + 110 flyway.setClassLoader(org.nem.specific.deploy.appconfig.NisAppConfig.class.getClassLoader()); + ``` + +
+ + To resolve this issue, there are alternative options available in the new version of the dependency that can replace the incompatible method currently used in the client. You can consider substituting the existing method with one of the following options provided by the new version of the dependency + ``` java + void setClassLoader(ClassLoader); + ``` +
+ *
+ Method setValidateOnMigrate(java.lang.Boolean) which has been removed in the new version of the dependency + + *
+ The failure is identified from the logs generated in the build process. + + * >[[ERROR] /nem/nis/src/main/java/org/nem/specific/deploy/appconfig/NisAppConfig.java:[112,23] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:2076) + * An error was detected in line 112 which is making use of an outdated API. + ``` java + 112 flyway.setValidateOnMigrate(java.lang.Boolean.valueOf(prop.getProperty("flyway.validate"))); + ``` + +
+ + To resolve this issue, there are alternative options available in the new version of the dependency that can replace the incompatible method currently used in the client. You can consider substituting the existing method with one of the following options provided by the new version of the dependency + ``` java + void setValidateOnMigrate(Boolean); + ``` +
+ + diff --git a/Explanations/1ef97ea6c5b6e34151fe6167001b69e003449f95.md b/Explanations/1ef97ea6c5b6e34151fe6167001b69e003449f95.md new file mode 100644 index 0000000..ecf5bb8 --- /dev/null +++ b/Explanations/1ef97ea6c5b6e34151fe6167001b69e003449f95.md @@ -0,0 +1,18 @@ +CI detected that the dependency upgrade from version **datafaker-1.3.0** to **datafaker-1.4.0** has failed. Here are details to help you understand and fix the problem: +1. Your client utilizes **1** instruction which has been modified in the new version of the dependency. + * Method between(java.util.Date,java.util.Date) which has been removed in the new version of the dependency + + * The failure is identified from the logs generated in the build process. + + * >[[ERROR] /flink-faker/src/main/java/com/github/knaufk/flink/faker/DateTime.java:[45,40] incompatible types: java.util.Date cannot be converted to java.sql.Timestamp](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:709) + * An error was detected in line 45 which is making use of an outdated API. + ``` java + 45 super.between(from, to); + ``` + + To resolve this issue, there are alternative options available in the new version of the dependency that can replace the incompatible method currently used in the client. You can consider substituting the existing method with one of the following options provided by the new version of the dependency + ``` java + Timestamp between(Timestamp,Timestamp); + ``` + + diff --git a/Explanations/1fc5281e0688c44025fe2b390a7d6e3e3088f385.md b/Explanations/1fc5281e0688c44025fe2b390a7d6e3e3088f385.md new file mode 100644 index 0000000..a88bdc0 --- /dev/null +++ b/Explanations/1fc5281e0688c44025fe2b390a7d6e3e3088f385.md @@ -0,0 +1,83 @@ +CI detected that the dependency upgrade from version **jetty-server-8.1.11.v20130520** to **jetty-server-11.0.11** has failed. Here are details to help you understand and fix the problem: +1. Your client utilizes **4** instructions which has been modified in the new version of the dependency. + *
+ Method getLocalPort() which has been removed in the new version of the dependency + + *
+ The failure is identified from the logs generated in the build process. + + * >[[ERROR] /jadler/jadler-jetty/src/main/java/net/jadler/stubbing/server/jetty/JettyStubHttpServer.java:[80,28] error: cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1252) + * An error was detected in line 80 which is making use of an outdated API. + ``` java + 80 httpConnector.getLocalPort(); + ``` + +
+ + To address this incompatibility, there are 2 alternative options available in the new version of the dependency that can replace the incompatible method currently used in the client. You can consider substituting the existing method with one of the following options provided by the new version of the dependency: + ``` java + int getLocalPort(); + ``` + ``` java + int getLocalPort(); + ``` +
+ *
+ Method setSendDateHeader(boolean) which has been removed in the new version of the dependency + + *
+ The failure is identified from the logs generated in the build process. + + * >[[ERROR] /jadler/jadler-jetty/src/main/java/net/jadler/stubbing/server/jetty/JettyStubHttpServer.java:[34,19] error: cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1243) + * An error was detected in line 34 which is making use of an outdated API. + ``` java + 34 this.server.setSendDateHeader(true); + ``` + +
+ + To resolve this issue, there are alternative options available in the new version of the dependency that can replace the incompatible method currently used in the client. You can consider substituting the existing method with one of the following options provided by the new version of the dependency + ``` java + void setSendDateHeader(boolean); + ``` +
+ *
+ Method setSendServerVersion(boolean) which has been removed in the new version of the dependency + + *
+ The failure is identified from the logs generated in the build process. + + * >[[ERROR] /jadler/jadler-jetty/src/main/java/net/jadler/stubbing/server/jetty/JettyStubHttpServer.java:[33,19] error: cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1240) + * An error was detected in line 33 which is making use of an outdated API. + ``` java + 33 this.server.setSendServerVersion(false); + ``` + +
+ + To resolve this issue, there are alternative options available in the new version of the dependency that can replace the incompatible method currently used in the client. You can consider substituting the existing method with one of the following options provided by the new version of the dependency + ``` java + void setSendServerVersion(boolean); + ``` +
+ *
+ Method setPort(int) which has been removed in the new version of the dependency + + *
+ The failure is identified from the logs generated in the build process. + + * >[[ERROR] /jadler/jadler-jetty/src/main/java/net/jadler/stubbing/server/jetty/JettyStubHttpServer.java:[37,26] error: cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1249) + * An error was detected in line 37 which is making use of an outdated API. + ``` java + 37 this.httpConnector.setPort(port); + ``` + +
+ + To resolve this issue, there are alternative options available in the new version of the dependency that can replace the incompatible method currently used in the client. You can consider substituting the existing method with one of the following options provided by the new version of the dependency + ``` java + void setPort(int); + ``` +
+ + diff --git a/Explanations/250cafc7d6ae47d5d4803b5a5e58186eb81fa3b5.md b/Explanations/250cafc7d6ae47d5d4803b5a5e58186eb81fa3b5.md new file mode 100644 index 0000000..fea5fca --- /dev/null +++ b/Explanations/250cafc7d6ae47d5d4803b5a5e58186eb81fa3b5.md @@ -0,0 +1,121 @@ +CI detected that the dependency upgrade from version **flyway-core-3.2.1** to **flyway-core-9.21.0** has failed. Here are details to help you understand and fix the problem: +1. Your client utilizes **6** instructions which has been modified in the new version of the dependency. + *
+ Method valueOf(java.lang.String) which has been removed in the new version of the dependency + + *
+ The failure is identified from the logs generated in the build process. + + * >[[ERROR] /nem/nis/src/main/java/org/nem/specific/deploy/appconfig/NisAppConfig.java:[112,23] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:2017) + * An error was detected in line 112 which is making use of an outdated API. + ``` java + 112 java.lang.Boolean.valueOf(prop.getProperty("flyway.validate")); + ``` + +
+ + To resolve this issue, there are alternative options available in the new version of the dependency that can replace the incompatible method currently used in the client. You can consider substituting the existing method with one of the following options provided by the new version of the dependency + ``` java + Event valueOf(String); + ``` +
+ *
+ Method setLocations(java.lang.String) which has been removed in the new version of the dependency + + *
+ The failure is identified from the logs generated in the build process. + + * >[[ERROR] /nem/nis/src/main/java/org/nem/specific/deploy/appconfig/NisAppConfig.java:[111,23] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:2014) + * An error was detected in line 111 which is making use of an outdated API. + ``` java + 111 flyway.setLocations(prop.getProperty("flyway.locations")); + ``` + +
+ + To resolve this issue, there are alternative options available in the new version of the dependency that can replace the incompatible method currently used in the client. You can consider substituting the existing method with one of the following options provided by the new version of the dependency + ``` java + void setLocations(Location[]); + ``` +
+ *
+ Method setDataSource(javax.sql.DataSource) which has been removed in the new version of the dependency + + *
+ The failure is identified from the logs generated in the build process. + + * >[[ERROR] /nem/nis/src/main/java/org/nem/specific/deploy/appconfig/NisAppConfig.java:[109,23] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:2008) + * An error was detected in line 109 which is making use of an outdated API. + ``` java + 109 flyway.setDataSource(this.dataSource()); + ``` + +
+ + To resolve this issue, there are alternative options available in the new version of the dependency that can replace the incompatible method currently used in the client. You can consider substituting the existing method with one of the following options provided by the new version of the dependency + ``` java + void setDataSource(String,String,String); + ``` +
+ *
+ Method getClassLoader() which has been removed in the new version of the dependency + + *
+ The failure is identified from the logs generated in the build process. + + * >[[ERROR] /nem/nis/src/main/java/org/nem/specific/deploy/appconfig/NisAppConfig.java:[110,23] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:2011) + * An error was detected in line 110 which is making use of an outdated API. + ``` java + 110 org.nem.specific.deploy.appconfig.NisAppConfig.class.getClassLoader(); + ``` + +
+ + To address this incompatibility, there are 2 alternative options available in the new version of the dependency that can replace the incompatible method currently used in the client. You can consider substituting the existing method with one of the following options provided by the new version of the dependency: + ``` java + ClassLoader getClassLoader(); + ``` + ``` java + ClassLoader getClassLoader(); + ``` +
+ *
+ Method setClassLoader(java.lang.ClassLoader) which has been removed in the new version of the dependency + + *
+ The failure is identified from the logs generated in the build process. + + * >[[ERROR] /nem/nis/src/main/java/org/nem/specific/deploy/appconfig/NisAppConfig.java:[110,23] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:2011) + * An error was detected in line 110 which is making use of an outdated API. + ``` java + 110 flyway.setClassLoader(org.nem.specific.deploy.appconfig.NisAppConfig.class.getClassLoader()); + ``` + +
+ + To resolve this issue, there are alternative options available in the new version of the dependency that can replace the incompatible method currently used in the client. You can consider substituting the existing method with one of the following options provided by the new version of the dependency + ``` java + void setClassLoader(ClassLoader); + ``` +
+ *
+ Method setValidateOnMigrate(java.lang.Boolean) which has been removed in the new version of the dependency + + *
+ The failure is identified from the logs generated in the build process. + + * >[[ERROR] /nem/nis/src/main/java/org/nem/specific/deploy/appconfig/NisAppConfig.java:[112,23] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:2017) + * An error was detected in line 112 which is making use of an outdated API. + ``` java + 112 flyway.setValidateOnMigrate(java.lang.Boolean.valueOf(prop.getProperty("flyway.validate"))); + ``` + +
+ + To resolve this issue, there are alternative options available in the new version of the dependency that can replace the incompatible method currently used in the client. You can consider substituting the existing method with one of the following options provided by the new version of the dependency + ``` java + void setValidateOnMigrate(Boolean); + ``` +
+ + diff --git a/Explanations/28be199c825d419957bc753a9519e8e9ecc6a08e.md b/Explanations/28be199c825d419957bc753a9519e8e9ecc6a08e.md new file mode 100644 index 0000000..f66258e --- /dev/null +++ b/Explanations/28be199c825d419957bc753a9519e8e9ecc6a08e.md @@ -0,0 +1,49 @@ +CI detected that the dependency upgrade from version **maven-dependency-tree-2.2** to **maven-dependency-tree-3.1.0** has failed. Here are details to help you understand and fix the problem: +1. Your client utilizes **2** instructions which has been modified in the new version of the dependency. + *
+ Method buildDependencyGraph() which has been removed in the new version of the dependency + + *
+ The failure is identified from the logs generated in the build process. + + * >[[ERROR] /license-maven-plugin/license-maven-plugin/src/main/java/com/mycila/maven/plugin/license/dependencies/MavenProjectLicenses.java:[160,61] incompatible types: org.apache.maven.project.MavenProject cannot be converted to org.apache.maven.project.ProjectBuildingRequest](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1323) + * An error was detected in line 160 which is making use of an outdated API. + ``` java + 160 getGraph().buildDependencyGraph(project, getFilter()); + ``` + * >[[ERROR] /license-maven-plugin/license-maven-plugin/src/main/java/com/mycila/maven/plugin/license/dependencies/MavenProjectLicenses.java:[160,61] incompatible types: org.apache.maven.project.MavenProject cannot be converted to org.apache.maven.project.ProjectBuildingRequest](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1323) + * An error was detected in line 160 which is making use of an outdated API. + ``` java + 160 getGraph().buildDependencyGraph(project, getFilter()); + ``` + +
+ + To address this incompatibility, there are 3 alternative options available in the new version of the dependency that can replace the incompatible method currently used in the client. You can consider substituting the existing method with one of the following options provided by the new version of the dependency: + ``` java + DependencyNode buildDependencyGraph(ProjectBuildingRequest,ArtifactFilter); + ``` + ``` java + DependencyNode buildDependencyGraph(ProjectBuildingRequest,ArtifactFilter); + ``` + ``` java + DependencyNode buildDependencyGraph(ProjectBuildingRequest,ArtifactFilter,Collection); + ``` +
+ *
+ Method getChildren() which has been removed in the new version of the dependency + + *
+ The failure is identified from the logs generated in the build process. + + * >[[ERROR] /license-maven-plugin/license-maven-plugin/src/main/java/com/mycila/maven/plugin/license/dependencies/MavenProjectLicenses.java:[160,61] incompatible types: org.apache.maven.project.MavenProject cannot be converted to org.apache.maven.project.ProjectBuildingRequest](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1323) + * An error was detected in line 160 which is making use of an outdated API. + ``` java + 160 getGraph().buildDependencyGraph(project, getFilter()).getChildren(); + ``` + +
+ +
+ + diff --git a/Explanations/2d733a58045b4bf3669aa00d875e77f9db48c29b.md b/Explanations/2d733a58045b4bf3669aa00d875e77f9db48c29b.md new file mode 100644 index 0000000..6c23e82 --- /dev/null +++ b/Explanations/2d733a58045b4bf3669aa00d875e77f9db48c29b.md @@ -0,0 +1,121 @@ +CI detected that the dependency upgrade from version **flyway-core-3.2.1** to **flyway-core-9.11.0** has failed. Here are details to help you understand and fix the problem: +1. Your client utilizes **6** instructions which has been modified in the new version of the dependency. + *
+ Method valueOf(java.lang.String) which has been removed in the new version of the dependency + + *
+ The failure is identified from the logs generated in the build process. + + * >[[ERROR] /nem/nis/src/main/java/org/nem/specific/deploy/appconfig/NisAppConfig.java:[112,23] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:2080) + * An error was detected in line 112 which is making use of an outdated API. + ``` java + 112 java.lang.Boolean.valueOf(prop.getProperty("flyway.validate")); + ``` + +
+ + To resolve this issue, there are alternative options available in the new version of the dependency that can replace the incompatible method currently used in the client. You can consider substituting the existing method with one of the following options provided by the new version of the dependency + ``` java + Event valueOf(String); + ``` +
+ *
+ Method setLocations(java.lang.String) which has been removed in the new version of the dependency + + *
+ The failure is identified from the logs generated in the build process. + + * >[[ERROR] /nem/nis/src/main/java/org/nem/specific/deploy/appconfig/NisAppConfig.java:[111,23] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:2077) + * An error was detected in line 111 which is making use of an outdated API. + ``` java + 111 flyway.setLocations(prop.getProperty("flyway.locations")); + ``` + +
+ + To resolve this issue, there are alternative options available in the new version of the dependency that can replace the incompatible method currently used in the client. You can consider substituting the existing method with one of the following options provided by the new version of the dependency + ``` java + void setLocations(Location[]); + ``` +
+ *
+ Method setDataSource(javax.sql.DataSource) which has been removed in the new version of the dependency + + *
+ The failure is identified from the logs generated in the build process. + + * >[[ERROR] /nem/nis/src/main/java/org/nem/specific/deploy/appconfig/NisAppConfig.java:[109,23] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:2071) + * An error was detected in line 109 which is making use of an outdated API. + ``` java + 109 flyway.setDataSource(this.dataSource()); + ``` + +
+ + To resolve this issue, there are alternative options available in the new version of the dependency that can replace the incompatible method currently used in the client. You can consider substituting the existing method with one of the following options provided by the new version of the dependency + ``` java + void setDataSource(String,String,String); + ``` +
+ *
+ Method getClassLoader() which has been removed in the new version of the dependency + + *
+ The failure is identified from the logs generated in the build process. + + * >[[ERROR] /nem/nis/src/main/java/org/nem/specific/deploy/appconfig/NisAppConfig.java:[110,23] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:2074) + * An error was detected in line 110 which is making use of an outdated API. + ``` java + 110 org.nem.specific.deploy.appconfig.NisAppConfig.class.getClassLoader(); + ``` + +
+ + To address this incompatibility, there are 2 alternative options available in the new version of the dependency that can replace the incompatible method currently used in the client. You can consider substituting the existing method with one of the following options provided by the new version of the dependency: + ``` java + ClassLoader getClassLoader(); + ``` + ``` java + ClassLoader getClassLoader(); + ``` +
+ *
+ Method setClassLoader(java.lang.ClassLoader) which has been removed in the new version of the dependency + + *
+ The failure is identified from the logs generated in the build process. + + * >[[ERROR] /nem/nis/src/main/java/org/nem/specific/deploy/appconfig/NisAppConfig.java:[110,23] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:2074) + * An error was detected in line 110 which is making use of an outdated API. + ``` java + 110 flyway.setClassLoader(org.nem.specific.deploy.appconfig.NisAppConfig.class.getClassLoader()); + ``` + +
+ + To resolve this issue, there are alternative options available in the new version of the dependency that can replace the incompatible method currently used in the client. You can consider substituting the existing method with one of the following options provided by the new version of the dependency + ``` java + void setClassLoader(ClassLoader); + ``` +
+ *
+ Method setValidateOnMigrate(java.lang.Boolean) which has been removed in the new version of the dependency + + *
+ The failure is identified from the logs generated in the build process. + + * >[[ERROR] /nem/nis/src/main/java/org/nem/specific/deploy/appconfig/NisAppConfig.java:[112,23] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:2080) + * An error was detected in line 112 which is making use of an outdated API. + ``` java + 112 flyway.setValidateOnMigrate(java.lang.Boolean.valueOf(prop.getProperty("flyway.validate"))); + ``` + +
+ + To resolve this issue, there are alternative options available in the new version of the dependency that can replace the incompatible method currently used in the client. You can consider substituting the existing method with one of the following options provided by the new version of the dependency + ``` java + void setValidateOnMigrate(Boolean); + ``` +
+ + diff --git a/Explanations/2dfaa41bfb97674d11f09a5885011f19808548a3.md b/Explanations/2dfaa41bfb97674d11f09a5885011f19808548a3.md new file mode 100644 index 0000000..6dfda8e --- /dev/null +++ b/Explanations/2dfaa41bfb97674d11f09a5885011f19808548a3.md @@ -0,0 +1,19 @@ +CI detected that the dependency upgrade from version **mockito-core-1.10.19** to **mockito-core-5.1.1** has failed. Here are details to help you understand and fix the problem: +1. Your client utilizes **1** instruction which has been modified in the new version of the dependency. + * Method getArgumentAt() which has been removed in the new version of the dependency + + * The failure is identified from the logs generated in the build process. + + * >[[ERROR] /bval/bval-jsr/src/test/java/org/apache/bval/jsr/DefaultMessageInterpolatorTest.java:[318,49] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1667) + * An error was detected in line 318 which is making use of an outdated API. + ``` java + 318 invocation.getArgumentAt(0, java.lang.Class.class); + ``` + * >[[ERROR] /bval/bval-jsr/src/test/java/org/apache/bval/jsr/DefaultMessageInterpolatorTest.java:[318,49] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1667) + * An error was detected in line 318 which is making use of an outdated API. + ``` java + 318 invocation.getArgumentAt(0, java.lang.Class.class); + ``` + + + diff --git a/Explanations/36859167815292f279e570d39dd2ddbcf1622dc6.md b/Explanations/36859167815292f279e570d39dd2ddbcf1622dc6.md new file mode 100644 index 0000000..88e3eef --- /dev/null +++ b/Explanations/36859167815292f279e570d39dd2ddbcf1622dc6.md @@ -0,0 +1,18 @@ +CI detected that the dependency upgrade from version **fop-1.0** to **fop-2.2** has failed. Here are details to help you understand and fix the problem: +1. Your client utilizes **1** instruction which has been modified in the new version of the dependency. + * Method newInstance() which has been removed in the new version of the dependency + + * The failure is identified from the logs generated in the build process. + + * >[[ERROR] /billy/billy-gin/src/main/java/com/premiumminds/billy/gin/services/impl/pdf/FOPPDFTransformer.java:[115,43] no suitable method found for newInstance(no arguments)](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1233) + * An error was detected in line 115 which is making use of an outdated API. + ``` java + 115 org.apache.fop.apps.FopFactory.newInstance(); + ``` + + To resolve this issue, there are alternative options available in the new version of the dependency that can replace the incompatible method currently used in the client. You can consider substituting the existing method with one of the following options provided by the new version of the dependency + ``` java + StructureTreeEventHandler newInstance(ContentHandler); + ``` + + diff --git a/Explanations/3d29f9a6823fa68763d3148bc0353ac557f2a815.md b/Explanations/3d29f9a6823fa68763d3148bc0353ac557f2a815.md new file mode 100644 index 0000000..77eca7e --- /dev/null +++ b/Explanations/3d29f9a6823fa68763d3148bc0353ac557f2a815.md @@ -0,0 +1,18 @@ +CI detected that the dependency upgrade from version **sonarlint-core-8.15.0.65216** to **sonarlint-core-9.1.1.74346** has failed. Here are details to help you understand and fix the problem: +1. Your client utilizes **1** instruction which has been modified in the new version of the dependency. + * Method getEnabledLanguages() which has been removed in the new version of the dependency + + * The failure is identified from the logs generated in the build process. + + * >[[ERROR] /sorald/sorald/src/main/java/sorald/sonar/SonarLintEngine.java:[163,17] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1267) + * An error was detected in line 163 which is making use of an outdated API. + ``` java + 163 sorald.sonar.SonarLintEngine.globalConfig.getEnabledLanguages(); + ``` + + To resolve this issue, there are alternative options available in the new version of the dependency that can replace the incompatible method currently used in the client. You can consider substituting the existing method with one of the following options provided by the new version of the dependency + ``` java + Set getEnabledLanguages(); + ``` + + diff --git a/Explanations/3ff575ae202cdf76ddfa8a4228a1711a6fa1e921.md b/Explanations/3ff575ae202cdf76ddfa8a4228a1711a6fa1e921.md new file mode 100644 index 0000000..dcdbad9 --- /dev/null +++ b/Explanations/3ff575ae202cdf76ddfa8a4228a1711a6fa1e921.md @@ -0,0 +1,14 @@ +CI detected that the dependency upgrade from version **plexus-container-default-1.0-alpha-30** to **plexus-container-default-2.1.1** has failed. Here are details to help you understand and fix the problem: +1. Your client utilizes **1** instruction which has been modified in the new version of the dependency. + * Method getLoggerManager() which has been removed in the new version of the dependency + + * The failure is identified from the logs generated in the build process. + + * >[[ERROR] /plexus-archiver/src/test/java/org/codehaus/plexus/archiver/DuplicateFilesTest.java:[37,23] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:710) + * An error was detected in line 37 which is making use of an outdated API. + ``` java + 37 getContainer().getLoggerManager(); + ``` + + + diff --git a/Explanations/46979207151a43361447d64afd2658df40033419.md b/Explanations/46979207151a43361447d64afd2658df40033419.md new file mode 100644 index 0000000..3a40543 --- /dev/null +++ b/Explanations/46979207151a43361447d64afd2658df40033419.md @@ -0,0 +1,509 @@ +CI detected that the dependency upgrade from version **jaxb2-basics-runtime-0.13.1** to **jaxb2-basics-runtime-1.11.1-PUBLISHED-BY-MISTAKE** has failed. Here are details to help you understand and fix the problem: +1. Your client utilizes **1** instruction which has been modified in the new version of the dependency. + * Method getInstance() which has been removed in the new version of the dependency + + * The failure is identified from the logs generated in the build process. + + * >[[ERROR] /billy/billy-portugal/src-generated/main/java/com/premiumminds/billy/portugal/services/export/saftpt/v1_04_01/schema/SupplierAddressStructure.java:[244,64] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1762) + * An error was detected in line 244 which is making use of an outdated API. + ``` java + 244 org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy.getInstance(); + ``` + * >[[ERROR] /billy/billy-portugal/src-generated/main/java/com/premiumminds/billy/portugal/services/export/saftpt/v1_02_01/schema/SourceDocuments.java:[418,64] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1930) + * An error was detected in line 418 which is making use of an outdated API. + ``` java + 418 org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy.getInstance(); + ``` + * >[[ERROR] /billy/billy-portugal/src-generated/main/java/com/premiumminds/billy/portugal/services/export/saftpt/v1_02_01/schema/SourceDocuments.java:[653,68] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1933) + * An error was detected in line 653 which is making use of an outdated API. + ``` java + 653 org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy.getInstance(); + ``` + * >[[ERROR] /billy/billy-portugal/src-generated/main/java/com/premiumminds/billy/portugal/services/export/saftpt/v1_02_01/schema/SourceDocuments.java:[1365,72] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1936) + * An error was detected in line 1365 which is making use of an outdated API. + ``` java + 1365 org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy.getInstance(); + ``` + * >[[ERROR] /billy/billy-portugal/src-generated/main/java/com/premiumminds/billy/portugal/services/export/saftpt/v1_02_01/schema/SourceDocuments.java:[1658,76] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1939) + * An error was detected in line 1658 which is making use of an outdated API. + ``` java + 1658 org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy.getInstance(); + ``` + * >[[ERROR] /billy/billy-portugal/src-generated/main/java/com/premiumminds/billy/portugal/services/export/saftpt/v1_02_01/schema/SourceDocuments.java:[1844,76] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1942) + * An error was detected in line 1844 which is making use of an outdated API. + ``` java + 1844 org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy.getInstance(); + ``` + * >[[ERROR] /billy/billy-portugal/src-generated/main/java/com/premiumminds/billy/portugal/services/export/saftpt/v1_02_01/schema/SourceDocuments.java:[2285,76] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1945) + * An error was detected in line 2285 which is making use of an outdated API. + ``` java + 2285 org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy.getInstance(); + ``` + * >[[ERROR] /billy/billy-portugal/src-generated/main/java/com/premiumminds/billy/portugal/services/export/saftpt/v1_02_01/schema/SourceDocuments.java:[2605,68] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1948) + * An error was detected in line 2605 which is making use of an outdated API. + ``` java + 2605 org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy.getInstance(); + ``` + * >[[ERROR] /billy/billy-portugal/src-generated/main/java/com/premiumminds/billy/portugal/services/export/saftpt/v1_02_01/schema/SourceDocuments.java:[3293,72] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1951) + * An error was detected in line 3293 which is making use of an outdated API. + ``` java + 3293 org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy.getInstance(); + ``` + * >[[ERROR] /billy/billy-portugal/src-generated/main/java/com/premiumminds/billy/portugal/services/export/saftpt/v1_02_01/schema/SourceDocuments.java:[3581,76] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1954) + * An error was detected in line 3581 which is making use of an outdated API. + ``` java + 3581 org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy.getInstance(); + ``` + * >[[ERROR] /billy/billy-portugal/src-generated/main/java/com/premiumminds/billy/portugal/services/export/saftpt/v1_02_01/schema/SourceDocuments.java:[3833,76] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1957) + * An error was detected in line 3833 which is making use of an outdated API. + ``` java + 3833 org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy.getInstance(); + ``` + * >[[ERROR] /billy/billy-portugal/src-generated/main/java/com/premiumminds/billy/portugal/services/export/saftpt/v1_02_01/schema/SourceDocuments.java:[4346,76] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1960) + * An error was detected in line 4346 which is making use of an outdated API. + ``` java + 4346 org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy.getInstance(); + ``` + * >[[ERROR] /billy/billy-portugal/src-generated/main/java/com/premiumminds/billy/portugal/services/export/saftpt/v1_02_01/schema/SourceDocuments.java:[4665,68] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1963) + * An error was detected in line 4665 which is making use of an outdated API. + ``` java + 4665 org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy.getInstance(); + ``` + * >[[ERROR] /billy/billy-portugal/src-generated/main/java/com/premiumminds/billy/portugal/services/export/saftpt/v1_02_01/schema/SourceDocuments.java:[5154,72] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1966) + * An error was detected in line 5154 which is making use of an outdated API. + ``` java + 5154 org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy.getInstance(); + ``` + * >[[ERROR] /billy/billy-portugal/src-generated/main/java/com/premiumminds/billy/portugal/services/export/saftpt/v1_02_01/schema/SourceDocuments.java:[5379,76] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1969) + * An error was detected in line 5379 which is making use of an outdated API. + ``` java + 5379 org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy.getInstance(); + ``` + * >[[ERROR] /billy/billy-portugal/src-generated/main/java/com/premiumminds/billy/portugal/services/export/saftpt/v1_02_01/schema/SourceDocuments.java:[5560,76] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1972) + * An error was detected in line 5560 which is making use of an outdated API. + ``` java + 5560 org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy.getInstance(); + ``` + * >[[ERROR] /billy/billy-portugal/src-generated/main/java/com/premiumminds/billy/portugal/services/export/saftpt/v1_02_01/schema/SourceDocuments.java:[6030,76] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1975) + * An error was detected in line 6030 which is making use of an outdated API. + ``` java + 6030 org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy.getInstance(); + ``` + * >[[ERROR] /billy/billy-portugal/src-generated/main/java/com/premiumminds/billy/portugal/services/export/saftpt/v1_03_01/schema/SpecialRegimes.java:[108,64] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1888) + * An error was detected in line 108 which is making use of an outdated API. + ``` java + 108 org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy.getInstance(); + ``` + * >[[ERROR] /billy/billy-portugal/src-generated/main/java/com/premiumminds/billy/portugal/services/export/saftpt/v1_04_01/schema/Supplier.java:[385,64] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1759) + * An error was detected in line 385 which is making use of an outdated API. + ``` java + 385 org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy.getInstance(); + ``` + * >[[ERROR] /billy/billy-portugal/src-generated/main/java/com/premiumminds/billy/portugal/services/export/saftpt/v1_02_01/schema/OrderReferences.java:[107,64] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1981) + * An error was detected in line 107 which is making use of an outdated API. + ``` java + 107 org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy.getInstance(); + ``` + * >[[ERROR] /billy/billy-portugal/src-generated/main/java/com/premiumminds/billy/portugal/services/export/saftpt/v1_02_01/schema/References.java:[104,64] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:2005) + * An error was detected in line 104 which is making use of an outdated API. + ``` java + 104 org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy.getInstance(); + ``` + * >[[ERROR] /billy/billy-portugal/src-generated/main/java/com/premiumminds/billy/portugal/services/export/saftpt/v1_02_01/schema/Payment.java:[136,64] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:2002) + * An error was detected in line 136 which is making use of an outdated API. + ``` java + 136 org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy.getInstance(); + ``` + * >[[ERROR] /billy/billy-portugal/src-generated/main/java/com/premiumminds/billy/portugal/services/export/saftpt/v1_02_01/schema/Header.java:[658,64] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1765) + * An error was detected in line 658 which is making use of an outdated API. + ``` java + 658 org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy.getInstance(); + ``` + * >[[ERROR] /billy/billy-portugal/src-generated/main/java/com/premiumminds/billy/portugal/services/export/saftpt/v1_02_01/schema/ShippingPointStructure.java:[185,64] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1987) + * An error was detected in line 185 which is making use of an outdated API. + ``` java + 185 org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy.getInstance(); + ``` + * >[[ERROR] /billy/billy-portugal/src-generated/main/java/com/premiumminds/billy/portugal/services/export/saftpt/v1_03_01/schema/ShippingPointStructure.java:[185,64] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1879) + * An error was detected in line 185 which is making use of an outdated API. + ``` java + 185 org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy.getInstance(); + ``` + * >[[ERROR] /billy/billy-portugal/src-generated/main/java/com/premiumminds/billy/portugal/services/export/saftpt/v1_03_01/schema/TaxTable.java:[85,64] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1909) + * An error was detected in line 85 which is making use of an outdated API. + ``` java + 85 org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy.getInstance(); + ``` + * >[[ERROR] /billy/billy-portugal/src-generated/main/java/com/premiumminds/billy/portugal/services/export/saftpt/v1_03_01/schema/MovementTax.java:[163,64] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1882) + * An error was detected in line 163 which is making use of an outdated API. + ``` java + 163 org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy.getInstance(); + ``` + * >[[ERROR] /billy/billy-portugal/src-generated/main/java/com/premiumminds/billy/portugal/services/export/saftpt/v1_03_01/schema/PaymentMethod.java:[136,64] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1861) + * An error was detected in line 136 which is making use of an outdated API. + ``` java + 136 org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy.getInstance(); + ``` + * >[[ERROR] /billy/billy-portugal/src-generated/main/java/com/premiumminds/billy/portugal/services/export/saftpt/v1_03_01/schema/AuditFile.java:[178,64] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1771) + * An error was detected in line 178 which is making use of an outdated API. + ``` java + 178 org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy.getInstance(); + ``` + * >[[ERROR] /billy/billy-portugal/src-generated/main/java/com/premiumminds/billy/portugal/services/export/saftpt/v1_03_01/schema/AuditFile.java:[405,68] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1774) + * An error was detected in line 405 which is making use of an outdated API. + ``` java + 405 org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy.getInstance(); + ``` + * >[[ERROR] /billy/billy-portugal/src-generated/main/java/com/premiumminds/billy/portugal/services/export/saftpt/v1_03_01/schema/SourceDocuments.java:[552,64] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1792) + * An error was detected in line 552 which is making use of an outdated API. + ``` java + 552 org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy.getInstance(); + ``` + * >[[ERROR] /billy/billy-portugal/src-generated/main/java/com/premiumminds/billy/portugal/services/export/saftpt/v1_03_01/schema/SourceDocuments.java:[792,68] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1795) + * An error was detected in line 792 which is making use of an outdated API. + ``` java + 792 org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy.getInstance(); + ``` + * >[[ERROR] /billy/billy-portugal/src-generated/main/java/com/premiumminds/billy/portugal/services/export/saftpt/v1_03_01/schema/SourceDocuments.java:[1504,72] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1798) + * An error was detected in line 1504 which is making use of an outdated API. + ``` java + 1504 org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy.getInstance(); + ``` + * >[[ERROR] /billy/billy-portugal/src-generated/main/java/com/premiumminds/billy/portugal/services/export/saftpt/v1_03_01/schema/SourceDocuments.java:[1798,76] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1801) + * An error was detected in line 1798 which is making use of an outdated API. + ``` java + 1798 org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy.getInstance(); + ``` + * >[[ERROR] /billy/billy-portugal/src-generated/main/java/com/premiumminds/billy/portugal/services/export/saftpt/v1_03_01/schema/SourceDocuments.java:[1984,76] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1804) + * An error was detected in line 1984 which is making use of an outdated API. + ``` java + 1984 org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy.getInstance(); + ``` + * >[[ERROR] /billy/billy-portugal/src-generated/main/java/com/premiumminds/billy/portugal/services/export/saftpt/v1_03_01/schema/SourceDocuments.java:[2425,76] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1807) + * An error was detected in line 2425 which is making use of an outdated API. + ``` java + 2425 org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy.getInstance(); + ``` + * >[[ERROR] /billy/billy-portugal/src-generated/main/java/com/premiumminds/billy/portugal/services/export/saftpt/v1_03_01/schema/SourceDocuments.java:[2753,68] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1810) + * An error was detected in line 2753 which is making use of an outdated API. + ``` java + 2753 org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy.getInstance(); + ``` + * >[[ERROR] /billy/billy-portugal/src-generated/main/java/com/premiumminds/billy/portugal/services/export/saftpt/v1_03_01/schema/SourceDocuments.java:[3326,72] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1813) + * An error was detected in line 3326 which is making use of an outdated API. + ``` java + 3326 org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy.getInstance(); + ``` + * >[[ERROR] /billy/billy-portugal/src-generated/main/java/com/premiumminds/billy/portugal/services/export/saftpt/v1_03_01/schema/SourceDocuments.java:[3590,76] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1816) + * An error was detected in line 3590 which is making use of an outdated API. + ``` java + 3590 org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy.getInstance(); + ``` + * >[[ERROR] /billy/billy-portugal/src-generated/main/java/com/premiumminds/billy/portugal/services/export/saftpt/v1_03_01/schema/SourceDocuments.java:[3814,76] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1819) + * An error was detected in line 3814 which is making use of an outdated API. + ``` java + 3814 org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy.getInstance(); + ``` + * >[[ERROR] /billy/billy-portugal/src-generated/main/java/com/premiumminds/billy/portugal/services/export/saftpt/v1_03_01/schema/SourceDocuments.java:[3914,80] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1822) + * An error was detected in line 3914 which is making use of an outdated API. + ``` java + 3914 org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy.getInstance(); + ``` + * >[[ERROR] /billy/billy-portugal/src-generated/main/java/com/premiumminds/billy/portugal/services/export/saftpt/v1_03_01/schema/SourceDocuments.java:[4186,76] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1825) + * An error was detected in line 4186 which is making use of an outdated API. + ``` java + 4186 org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy.getInstance(); + ``` + * >[[ERROR] /billy/billy-portugal/src-generated/main/java/com/premiumminds/billy/portugal/services/export/saftpt/v1_03_01/schema/SourceDocuments.java:[4353,80] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1828) + * An error was detected in line 4353 which is making use of an outdated API. + ``` java + 4353 org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy.getInstance(); + ``` + * >[[ERROR] /billy/billy-portugal/src-generated/main/java/com/premiumminds/billy/portugal/services/export/saftpt/v1_03_01/schema/SourceDocuments.java:[4625,68] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1831) + * An error was detected in line 4625 which is making use of an outdated API. + ``` java + 4625 org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy.getInstance(); + ``` + * >[[ERROR] /billy/billy-portugal/src-generated/main/java/com/premiumminds/billy/portugal/services/export/saftpt/v1_03_01/schema/SourceDocuments.java:[5321,72] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1834) + * An error was detected in line 5321 which is making use of an outdated API. + ``` java + 5321 org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy.getInstance(); + ``` + * >[[ERROR] /billy/billy-portugal/src-generated/main/java/com/premiumminds/billy/portugal/services/export/saftpt/v1_03_01/schema/SourceDocuments.java:[5610,76] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1837) + * An error was detected in line 5610 which is making use of an outdated API. + ``` java + 5610 org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy.getInstance(); + ``` + * >[[ERROR] /billy/billy-portugal/src-generated/main/java/com/premiumminds/billy/portugal/services/export/saftpt/v1_03_01/schema/SourceDocuments.java:[5862,76] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1840) + * An error was detected in line 5862 which is making use of an outdated API. + ``` java + 5862 org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy.getInstance(); + ``` + * >[[ERROR] /billy/billy-portugal/src-generated/main/java/com/premiumminds/billy/portugal/services/export/saftpt/v1_03_01/schema/SourceDocuments.java:[6375,76] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1843) + * An error was detected in line 6375 which is making use of an outdated API. + ``` java + 6375 org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy.getInstance(); + ``` + * >[[ERROR] /billy/billy-portugal/src-generated/main/java/com/premiumminds/billy/portugal/services/export/saftpt/v1_03_01/schema/SourceDocuments.java:[6695,68] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1846) + * An error was detected in line 6695 which is making use of an outdated API. + ``` java + 6695 org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy.getInstance(); + ``` + * >[[ERROR] /billy/billy-portugal/src-generated/main/java/com/premiumminds/billy/portugal/services/export/saftpt/v1_03_01/schema/SourceDocuments.java:[7185,72] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1849) + * An error was detected in line 7185 which is making use of an outdated API. + ``` java + 7185 org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy.getInstance(); + ``` + * >[[ERROR] /billy/billy-portugal/src-generated/main/java/com/premiumminds/billy/portugal/services/export/saftpt/v1_03_01/schema/SourceDocuments.java:[7439,76] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1852) + * An error was detected in line 7439 which is making use of an outdated API. + ``` java + 7439 org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy.getInstance(); + ``` + * >[[ERROR] /billy/billy-portugal/src-generated/main/java/com/premiumminds/billy/portugal/services/export/saftpt/v1_03_01/schema/SourceDocuments.java:[7625,76] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1855) + * An error was detected in line 7625 which is making use of an outdated API. + ``` java + 7625 org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy.getInstance(); + ``` + * >[[ERROR] /billy/billy-portugal/src-generated/main/java/com/premiumminds/billy/portugal/services/export/saftpt/v1_03_01/schema/SourceDocuments.java:[8095,76] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1858) + * An error was detected in line 8095 which is making use of an outdated API. + ``` java + 8095 org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy.getInstance(); + ``` + * >[[ERROR] /billy/billy-portugal/src-generated/main/java/com/premiumminds/billy/portugal/services/export/saftpt/v1_03_01/schema/Supplier.java:[385,64] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1903) + * An error was detected in line 385 which is making use of an outdated API. + ``` java + 385 org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy.getInstance(); + ``` + * >[[ERROR] /billy/billy-portugal/src-generated/main/java/com/premiumminds/billy/portugal/services/export/saftpt/v1_03_01/schema/Settlement.java:[164,64] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1891) + * An error was detected in line 164 which is making use of an outdated API. + ``` java + 164 org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy.getInstance(); + ``` + * >[[ERROR] /billy/billy-portugal/src-generated/main/java/com/premiumminds/billy/portugal/services/export/saftpt/v1_03_01/schema/AddressStructure.java:[244,64] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1885) + * An error was detected in line 244 which is making use of an outdated API. + ``` java + 244 org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy.getInstance(); + ``` + * >[[ERROR] /billy/billy-portugal/src-generated/main/java/com/premiumminds/billy/portugal/services/export/saftpt/v1_03_01/schema/GeneralLedger.java:[275,64] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1897) + * An error was detected in line 275 which is making use of an outdated API. + ``` java + 275 org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy.getInstance(); + ``` + * >[[ERROR] /billy/billy-portugal/src-generated/main/java/com/premiumminds/billy/portugal/services/export/saftpt/v1_04_01/schema/Product.java:[218,64] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1921) + * An error was detected in line 218 which is making use of an outdated API. + ``` java + 218 org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy.getInstance(); + ``` + * >[[ERROR] /billy/billy-portugal/src-generated/main/java/com/premiumminds/billy/portugal/services/export/saftpt/v1_04_01/schema/AuditFile.java:[178,64] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:2014) + * An error was detected in line 178 which is making use of an outdated API. + ``` java + 178 org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy.getInstance(); + ``` + * >[[ERROR] /billy/billy-portugal/src-generated/main/java/com/premiumminds/billy/portugal/services/export/saftpt/v1_04_01/schema/AuditFile.java:[400,68] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:2017) + * An error was detected in line 400 which is making use of an outdated API. + ``` java + 400 org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy.getInstance(); + ``` + * >[[ERROR] /billy/billy-portugal/src-generated/main/java/com/premiumminds/billy/portugal/services/export/saftpt/v1_03_01/schema/Currency.java:[133,64] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1867) + * An error was detected in line 133 which is making use of an outdated API. + ``` java + 133 org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy.getInstance(); + ``` + * >[[ERROR] /billy/billy-portugal/src-generated/main/java/com/premiumminds/billy/portugal/services/export/saftpt/v1_02_01/schema/MovementTax.java:[163,64] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1990) + * An error was detected in line 163 which is making use of an outdated API. + ``` java + 163 org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy.getInstance(); + ``` + * >[[ERROR] /billy/billy-portugal/src-generated/main/java/com/premiumminds/billy/portugal/services/export/saftpt/v1_02_01/schema/AddressStructurePT.java:[244,64] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1768) + * An error was detected in line 244 which is making use of an outdated API. + ``` java + 244 org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy.getInstance(); + ``` + * >[[ERROR] /billy/billy-portugal/src-generated/main/java/com/premiumminds/billy/portugal/services/export/saftpt/v1_04_01/schema/SourceDocuments.java:[570,64] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:2020) + * An error was detected in line 570 which is making use of an outdated API. + ``` java + 570 org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy.getInstance(); + ``` + * >[[ERROR] /billy/billy-portugal/src-generated/main/java/com/premiumminds/billy/portugal/services/export/saftpt/v1_04_01/schema/SourceDocuments.java:[814,68] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:2023) + * An error was detected in line 814 which is making use of an outdated API. + ``` java + 814 org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy.getInstance(); + ``` + * >[[ERROR] /billy/billy-portugal/src-generated/main/java/com/premiumminds/billy/portugal/services/export/saftpt/v1_04_01/schema/SourceDocuments.java:[1557,72] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:2026) + * An error was detected in line 1557 which is making use of an outdated API. + ``` java + 1557 org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy.getInstance(); + ``` + * >[[ERROR] /billy/billy-portugal/src-generated/main/java/com/premiumminds/billy/portugal/services/export/saftpt/v1_04_01/schema/SourceDocuments.java:[1856,76] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:2029) + * An error was detected in line 1856 which is making use of an outdated API. + ``` java + 1856 org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy.getInstance(); + ``` + * >[[ERROR] /billy/billy-portugal/src-generated/main/java/com/premiumminds/billy/portugal/services/export/saftpt/v1_04_01/schema/SourceDocuments.java:[2042,76] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:2032) + * An error was detected in line 2042 which is making use of an outdated API. + ``` java + 2042 org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy.getInstance(); + ``` + * >[[ERROR] /billy/billy-portugal/src-generated/main/java/com/premiumminds/billy/portugal/services/export/saftpt/v1_04_01/schema/SourceDocuments.java:[2567,76] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:2035) + * An error was detected in line 2567 which is making use of an outdated API. + ``` java + 2567 org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy.getInstance(); + ``` + * >[[ERROR] /billy/billy-portugal/src-generated/main/java/com/premiumminds/billy/portugal/services/export/saftpt/v1_04_01/schema/SourceDocuments.java:[2912,68] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:2038) + * An error was detected in line 2912 which is making use of an outdated API. + ``` java + 2912 org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy.getInstance(); + ``` + * >[[ERROR] /billy/billy-portugal/src-generated/main/java/com/premiumminds/billy/portugal/services/export/saftpt/v1_04_01/schema/SourceDocuments.java:[3514,72] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:2041) + * An error was detected in line 3514 which is making use of an outdated API. + ``` java + 3514 org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy.getInstance(); + ``` + * >[[ERROR] /billy/billy-portugal/src-generated/main/java/com/premiumminds/billy/portugal/services/export/saftpt/v1_04_01/schema/SourceDocuments.java:[3783,76] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:2044) + * An error was detected in line 3783 which is making use of an outdated API. + ``` java + 3783 org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy.getInstance(); + ``` + * >[[ERROR] /billy/billy-portugal/src-generated/main/java/com/premiumminds/billy/portugal/services/export/saftpt/v1_04_01/schema/SourceDocuments.java:[4007,76] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:2047) + * An error was detected in line 4007 which is making use of an outdated API. + ``` java + 4007 org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy.getInstance(); + ``` + * >[[ERROR] /billy/billy-portugal/src-generated/main/java/com/premiumminds/billy/portugal/services/export/saftpt/v1_04_01/schema/SourceDocuments.java:[4107,80] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:2050) + * An error was detected in line 4107 which is making use of an outdated API. + ``` java + 4107 org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy.getInstance(); + ``` + * >[[ERROR] /billy/billy-portugal/src-generated/main/java/com/premiumminds/billy/portugal/services/export/saftpt/v1_04_01/schema/SourceDocuments.java:[4407,76] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:2053) + * An error was detected in line 4407 which is making use of an outdated API. + ``` java + 4407 org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy.getInstance(); + ``` + * >[[ERROR] /billy/billy-portugal/src-generated/main/java/com/premiumminds/billy/portugal/services/export/saftpt/v1_04_01/schema/SourceDocuments.java:[4579,80] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:2056) + * An error was detected in line 4579 which is making use of an outdated API. + ``` java + 4579 org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy.getInstance(); + ``` + * >[[ERROR] /billy/billy-portugal/src-generated/main/java/com/premiumminds/billy/portugal/services/export/saftpt/v1_02_01/schema/Settlement.java:[164,64] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1999) + * An error was detected in line 164 which is making use of an outdated API. + ``` java + 164 org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy.getInstance(); + ``` + * >[[ERROR] /billy/billy-portugal/src-generated/main/java/com/premiumminds/billy/portugal/services/export/saftpt/v1_03_01/schema/GeneralLedgerEntries.java:[226,64] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1780) + * An error was detected in line 226 which is making use of an outdated API. + ``` java + 226 org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy.getInstance(); + ``` + * >[[ERROR] /billy/billy-portugal/src-generated/main/java/com/premiumminds/billy/portugal/services/export/saftpt/v1_03_01/schema/GeneralLedgerEntries.java:[422,68] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1783) + * An error was detected in line 422 which is making use of an outdated API. + ``` java + 422 org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy.getInstance(); + ``` + * >[[ERROR] /billy/billy-portugal/src-generated/main/java/com/premiumminds/billy/portugal/services/export/saftpt/v1_03_01/schema/GeneralLedgerEntries.java:[812,72] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1786) + * An error was detected in line 812 which is making use of an outdated API. + ``` java + 812 org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy.getInstance(); + ``` + * >[[ERROR] /billy/billy-portugal/src-generated/main/java/com/premiumminds/billy/portugal/services/export/saftpt/v1_03_01/schema/GeneralLedgerEntries.java:[1113,76] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1789) + * An error was detected in line 1113 which is making use of an outdated API. + ``` java + 1113 org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy.getInstance(); + ``` + * >[[ERROR] /billy/billy-portugal/src-generated/main/java/com/premiumminds/billy/portugal/services/export/saftpt/v1_03_01/schema/TaxTableEntry.java:[252,64] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1912) + * An error was detected in line 252 which is making use of an outdated API. + ``` java + 252 org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy.getInstance(); + ``` + * >[[ERROR] /billy/billy-portugal/src-generated/main/java/com/premiumminds/billy/portugal/services/export/saftpt/v1_03_01/schema/PaymentTax.java:[191,64] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1870) + * An error was detected in line 191 which is making use of an outdated API. + ``` java + 191 org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy.getInstance(); + ``` + * >[[ERROR] /billy/billy-portugal/src-generated/main/java/com/premiumminds/billy/portugal/services/export/saftpt/v1_03_01/schema/Tax.java:[191,64] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1876) + * An error was detected in line 191 which is making use of an outdated API. + ``` java + 191 org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy.getInstance(); + ``` + * >[[ERROR] /billy/billy-portugal/src-generated/main/java/com/premiumminds/billy/portugal/services/export/saftpt/v1_02_01/schema/Tax.java:[191,64] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1984) + * An error was detected in line 191 which is making use of an outdated API. + ``` java + 191 org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy.getInstance(); + ``` + * >[[ERROR] /billy/billy-portugal/src-generated/main/java/com/premiumminds/billy/portugal/services/export/saftpt/v1_02_01/schema/Currency.java:[133,64] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1978) + * An error was detected in line 133 which is making use of an outdated API. + ``` java + 133 org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy.getInstance(); + ``` + * >[[ERROR] /billy/billy-portugal/src-generated/main/java/com/premiumminds/billy/portugal/services/export/saftpt/v1_04_01/schema/References.java:[104,64] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1927) + * An error was detected in line 104 which is making use of an outdated API. + ``` java + 104 org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy.getInstance(); + ``` + * >[[ERROR] /billy/billy-portugal/src-generated/main/java/com/premiumminds/billy/portugal/services/export/saftpt/v1_02_01/schema/AddressStructure.java:[244,64] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1993) + * An error was detected in line 244 which is making use of an outdated API. + ``` java + 244 org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy.getInstance(); + ``` + * >[[ERROR] /billy/billy-portugal/src-generated/main/java/com/premiumminds/billy/portugal/services/export/saftpt/v1_03_01/schema/Customer.java:[385,64] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1900) + * An error was detected in line 385 which is making use of an outdated API. + ``` java + 385 org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy.getInstance(); + ``` + * >[[ERROR] /billy/billy-portugal/src-generated/main/java/com/premiumminds/billy/portugal/services/export/saftpt/v1_03_01/schema/WithholdingTax.java:[133,64] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1864) + * An error was detected in line 133 which is making use of an outdated API. + ``` java + 133 org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy.getInstance(); + ``` + * >[[ERROR] /billy/billy-portugal/src-generated/main/java/com/premiumminds/billy/portugal/services/export/saftpt/v1_02_01/schema/WithholdingTax.java:[133,64] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1996) + * An error was detected in line 133 which is making use of an outdated API. + ``` java + 133 org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy.getInstance(); + ``` + * >[[ERROR] /billy/billy-portugal/src-generated/main/java/com/premiumminds/billy/portugal/services/export/saftpt/v1_03_01/schema/Header.java:[658,64] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1777) + * An error was detected in line 658 which is making use of an outdated API. + ``` java + 658 org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy.getInstance(); + ``` + * >[[ERROR] /billy/billy-portugal/src-generated/main/java/com/premiumminds/billy/portugal/services/export/saftpt/v1_02_01/schema/AuditFile.java:[178,64] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:2008) + * An error was detected in line 178 which is making use of an outdated API. + ``` java + 178 org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy.getInstance(); + ``` + * >[[ERROR] /billy/billy-portugal/src-generated/main/java/com/premiumminds/billy/portugal/services/export/saftpt/v1_02_01/schema/AuditFile.java:[405,68] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:2011) + * An error was detected in line 405 which is making use of an outdated API. + ``` java + 405 org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy.getInstance(); + ``` + * >[[ERROR] /billy/billy-portugal/src-generated/main/java/com/premiumminds/billy/portugal/services/export/saftpt/v1_03_01/schema/AddressStructurePT.java:[244,64] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1918) + * An error was detected in line 244 which is making use of an outdated API. + ``` java + 244 org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy.getInstance(); + ``` + * >[[ERROR] /billy/billy-portugal/src-generated/main/java/com/premiumminds/billy/portugal/services/export/saftpt/v1_03_01/schema/References.java:[104,64] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1894) + * An error was detected in line 104 which is making use of an outdated API. + ``` java + 104 org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy.getInstance(); + ``` + * >[[ERROR] /billy/billy-portugal/src-generated/main/java/com/premiumminds/billy/portugal/services/export/saftpt/v1_03_01/schema/Product.java:[190,64] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1906) + * An error was detected in line 190 which is making use of an outdated API. + ``` java + 190 org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy.getInstance(); + ``` + * >[[ERROR] /billy/billy-portugal/src-generated/main/java/com/premiumminds/billy/portugal/services/export/saftpt/v1_03_01/schema/OrderReferences.java:[107,64] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1873) + * An error was detected in line 107 which is making use of an outdated API. + ``` java + 107 org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy.getInstance(); + ``` + * >[[ERROR] /billy/billy-portugal/src-generated/main/java/com/premiumminds/billy/portugal/services/export/saftpt/v1_03_01/schema/SupplierAddressStructure.java:[244,64] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1915) + * An error was detected in line 244 which is making use of an outdated API. + ``` java + 244 org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy.getInstance(); + ``` + * >[[ERROR] /billy/billy-portugal/src-generated/main/java/com/premiumminds/billy/portugal/services/export/saftpt/v1_04_01/schema/CustomsDetails.java:[116,64] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1924) + * An error was detected in line 116 which is making use of an outdated API. + ``` java + 116 org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy.getInstance(); + ``` + + + diff --git a/Explanations/489aad6060454d0b7b34a144e0b345c5a3a199f5.md b/Explanations/489aad6060454d0b7b34a144e0b345c5a3a199f5.md new file mode 100644 index 0000000..8b52459 --- /dev/null +++ b/Explanations/489aad6060454d0b7b34a144e0b345c5a3a199f5.md @@ -0,0 +1,121 @@ +CI detected that the dependency upgrade from version **flyway-core-3.2.1** to **flyway-core-9.19.1** has failed. Here are details to help you understand and fix the problem: +1. Your client utilizes **6** instructions which has been modified in the new version of the dependency. + *
+ Method valueOf(java.lang.String) which has been removed in the new version of the dependency + + *
+ The failure is identified from the logs generated in the build process. + + * >[[ERROR] /nem/nis/src/main/java/org/nem/specific/deploy/appconfig/NisAppConfig.java:[112,23] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1979) + * An error was detected in line 112 which is making use of an outdated API. + ``` java + 112 java.lang.Boolean.valueOf(prop.getProperty("flyway.validate")); + ``` + +
+ + To resolve this issue, there are alternative options available in the new version of the dependency that can replace the incompatible method currently used in the client. You can consider substituting the existing method with one of the following options provided by the new version of the dependency + ``` java + Event valueOf(String); + ``` +
+ *
+ Method setLocations(java.lang.String) which has been removed in the new version of the dependency + + *
+ The failure is identified from the logs generated in the build process. + + * >[[ERROR] /nem/nis/src/main/java/org/nem/specific/deploy/appconfig/NisAppConfig.java:[111,23] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1976) + * An error was detected in line 111 which is making use of an outdated API. + ``` java + 111 flyway.setLocations(prop.getProperty("flyway.locations")); + ``` + +
+ + To resolve this issue, there are alternative options available in the new version of the dependency that can replace the incompatible method currently used in the client. You can consider substituting the existing method with one of the following options provided by the new version of the dependency + ``` java + void setLocations(Location[]); + ``` +
+ *
+ Method setDataSource(javax.sql.DataSource) which has been removed in the new version of the dependency + + *
+ The failure is identified from the logs generated in the build process. + + * >[[ERROR] /nem/nis/src/main/java/org/nem/specific/deploy/appconfig/NisAppConfig.java:[109,23] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1970) + * An error was detected in line 109 which is making use of an outdated API. + ``` java + 109 flyway.setDataSource(this.dataSource()); + ``` + +
+ + To resolve this issue, there are alternative options available in the new version of the dependency that can replace the incompatible method currently used in the client. You can consider substituting the existing method with one of the following options provided by the new version of the dependency + ``` java + void setDataSource(String,String,String); + ``` +
+ *
+ Method getClassLoader() which has been removed in the new version of the dependency + + *
+ The failure is identified from the logs generated in the build process. + + * >[[ERROR] /nem/nis/src/main/java/org/nem/specific/deploy/appconfig/NisAppConfig.java:[110,23] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1973) + * An error was detected in line 110 which is making use of an outdated API. + ``` java + 110 org.nem.specific.deploy.appconfig.NisAppConfig.class.getClassLoader(); + ``` + +
+ + To address this incompatibility, there are 2 alternative options available in the new version of the dependency that can replace the incompatible method currently used in the client. You can consider substituting the existing method with one of the following options provided by the new version of the dependency: + ``` java + ClassLoader getClassLoader(); + ``` + ``` java + ClassLoader getClassLoader(); + ``` +
+ *
+ Method setClassLoader(java.lang.ClassLoader) which has been removed in the new version of the dependency + + *
+ The failure is identified from the logs generated in the build process. + + * >[[ERROR] /nem/nis/src/main/java/org/nem/specific/deploy/appconfig/NisAppConfig.java:[110,23] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1973) + * An error was detected in line 110 which is making use of an outdated API. + ``` java + 110 flyway.setClassLoader(org.nem.specific.deploy.appconfig.NisAppConfig.class.getClassLoader()); + ``` + +
+ + To resolve this issue, there are alternative options available in the new version of the dependency that can replace the incompatible method currently used in the client. You can consider substituting the existing method with one of the following options provided by the new version of the dependency + ``` java + void setClassLoader(ClassLoader); + ``` +
+ *
+ Method setValidateOnMigrate(java.lang.Boolean) which has been removed in the new version of the dependency + + *
+ The failure is identified from the logs generated in the build process. + + * >[[ERROR] /nem/nis/src/main/java/org/nem/specific/deploy/appconfig/NisAppConfig.java:[112,23] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1979) + * An error was detected in line 112 which is making use of an outdated API. + ``` java + 112 flyway.setValidateOnMigrate(java.lang.Boolean.valueOf(prop.getProperty("flyway.validate"))); + ``` + +
+ + To resolve this issue, there are alternative options available in the new version of the dependency that can replace the incompatible method currently used in the client. You can consider substituting the existing method with one of the following options provided by the new version of the dependency + ``` java + void setValidateOnMigrate(Boolean); + ``` +
+ + diff --git a/Explanations/4aab2869639226035c999c282f31efba15648ea3.md b/Explanations/4aab2869639226035c999c282f31efba15648ea3.md new file mode 100644 index 0000000..ad8f86f --- /dev/null +++ b/Explanations/4aab2869639226035c999c282f31efba15648ea3.md @@ -0,0 +1,26 @@ +CI detected that the dependency upgrade from version **asto-core-v1.13.0** to **asto-core-v1.15.3** has failed. Here are details to help you understand and fix the problem: +1. Your client utilizes **1** instruction which has been modified in the new version of the dependency. + * Method newStorage() which has been removed in the new version of the dependency + + * The failure is identified from the logs generated in the build process. + + * >[[ERROR] /http/src/main/java/com/artipie/security/policy/YamlPolicyFactory.java:[43,25] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1292) + * An error was detected in line 43 which is making use of an outdated API. + ``` java + 43 new com.artipie.asto.factory.Storages().newStorage(sub.string("type"), com.amihaiemil.eoyaml.Yaml.createYamlInput(sub.toString()).readYamlMapping()); + ``` + * >[[ERROR] /http/src/main/java/com/artipie/security/policy/YamlPolicyFactory.java:[43,25] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1292) + * An error was detected in line 43 which is making use of an outdated API. + ``` java + 43 new com.artipie.asto.factory.Storages().newStorage(sub.string("type"), com.amihaiemil.eoyaml.Yaml.createYamlInput(sub.toString()).readYamlMapping()); + ``` + + To address this incompatibility, there are 2 alternative options available in the new version of the dependency that can replace the incompatible method currently used in the client. You can consider substituting the existing method with one of the following options provided by the new version of the dependency: + ``` java + Storage newStorage(Config); + ``` + ``` java + Storage newStorage(Config); + ``` + + diff --git a/Explanations/4b4c08d502d98d240855013ab76008f5e0243435.md b/Explanations/4b4c08d502d98d240855013ab76008f5e0243435.md new file mode 100644 index 0000000..da5475c --- /dev/null +++ b/Explanations/4b4c08d502d98d240855013ab76008f5e0243435.md @@ -0,0 +1,121 @@ +CI detected that the dependency upgrade from version **flyway-core-3.2.1** to **flyway-core-9.15.1** has failed. Here are details to help you understand and fix the problem: +1. Your client utilizes **6** instructions which has been modified in the new version of the dependency. + *
+ Method valueOf(java.lang.String) which has been removed in the new version of the dependency + + *
+ The failure is identified from the logs generated in the build process. + + * >[[ERROR] /nem/nis/src/main/java/org/nem/specific/deploy/appconfig/NisAppConfig.java:[112,23] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:2134) + * An error was detected in line 112 which is making use of an outdated API. + ``` java + 112 java.lang.Boolean.valueOf(prop.getProperty("flyway.validate")); + ``` + +
+ + To resolve this issue, there are alternative options available in the new version of the dependency that can replace the incompatible method currently used in the client. You can consider substituting the existing method with one of the following options provided by the new version of the dependency + ``` java + Event valueOf(String); + ``` +
+ *
+ Method setLocations(java.lang.String) which has been removed in the new version of the dependency + + *
+ The failure is identified from the logs generated in the build process. + + * >[[ERROR] /nem/nis/src/main/java/org/nem/specific/deploy/appconfig/NisAppConfig.java:[111,23] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:2131) + * An error was detected in line 111 which is making use of an outdated API. + ``` java + 111 flyway.setLocations(prop.getProperty("flyway.locations")); + ``` + +
+ + To resolve this issue, there are alternative options available in the new version of the dependency that can replace the incompatible method currently used in the client. You can consider substituting the existing method with one of the following options provided by the new version of the dependency + ``` java + void setLocations(Location[]); + ``` +
+ *
+ Method setDataSource(javax.sql.DataSource) which has been removed in the new version of the dependency + + *
+ The failure is identified from the logs generated in the build process. + + * >[[ERROR] /nem/nis/src/main/java/org/nem/specific/deploy/appconfig/NisAppConfig.java:[109,23] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:2125) + * An error was detected in line 109 which is making use of an outdated API. + ``` java + 109 flyway.setDataSource(this.dataSource()); + ``` + +
+ + To resolve this issue, there are alternative options available in the new version of the dependency that can replace the incompatible method currently used in the client. You can consider substituting the existing method with one of the following options provided by the new version of the dependency + ``` java + void setDataSource(String,String,String); + ``` +
+ *
+ Method getClassLoader() which has been removed in the new version of the dependency + + *
+ The failure is identified from the logs generated in the build process. + + * >[[ERROR] /nem/nis/src/main/java/org/nem/specific/deploy/appconfig/NisAppConfig.java:[110,23] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:2128) + * An error was detected in line 110 which is making use of an outdated API. + ``` java + 110 org.nem.specific.deploy.appconfig.NisAppConfig.class.getClassLoader(); + ``` + +
+ + To address this incompatibility, there are 2 alternative options available in the new version of the dependency that can replace the incompatible method currently used in the client. You can consider substituting the existing method with one of the following options provided by the new version of the dependency: + ``` java + ClassLoader getClassLoader(); + ``` + ``` java + ClassLoader getClassLoader(); + ``` +
+ *
+ Method setClassLoader(java.lang.ClassLoader) which has been removed in the new version of the dependency + + *
+ The failure is identified from the logs generated in the build process. + + * >[[ERROR] /nem/nis/src/main/java/org/nem/specific/deploy/appconfig/NisAppConfig.java:[110,23] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:2128) + * An error was detected in line 110 which is making use of an outdated API. + ``` java + 110 flyway.setClassLoader(org.nem.specific.deploy.appconfig.NisAppConfig.class.getClassLoader()); + ``` + +
+ + To resolve this issue, there are alternative options available in the new version of the dependency that can replace the incompatible method currently used in the client. You can consider substituting the existing method with one of the following options provided by the new version of the dependency + ``` java + void setClassLoader(ClassLoader); + ``` +
+ *
+ Method setValidateOnMigrate(java.lang.Boolean) which has been removed in the new version of the dependency + + *
+ The failure is identified from the logs generated in the build process. + + * >[[ERROR] /nem/nis/src/main/java/org/nem/specific/deploy/appconfig/NisAppConfig.java:[112,23] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:2134) + * An error was detected in line 112 which is making use of an outdated API. + ``` java + 112 flyway.setValidateOnMigrate(java.lang.Boolean.valueOf(prop.getProperty("flyway.validate"))); + ``` + +
+ + To resolve this issue, there are alternative options available in the new version of the dependency that can replace the incompatible method currently used in the client. You can consider substituting the existing method with one of the following options provided by the new version of the dependency + ``` java + void setValidateOnMigrate(Boolean); + ``` +
+ + diff --git a/Explanations/5287fc631fa78e7f11d39983824cdd4215b9a03b.md b/Explanations/5287fc631fa78e7f11d39983824cdd4215b9a03b.md new file mode 100644 index 0000000..d50dc58 --- /dev/null +++ b/Explanations/5287fc631fa78e7f11d39983824cdd4215b9a03b.md @@ -0,0 +1,83 @@ +CI detected that the dependency upgrade from version **jetty-server-8.1.11.v20130520** to **jetty-server-11.0.14** has failed. Here are details to help you understand and fix the problem: +1. Your client utilizes **4** instructions which has been modified in the new version of the dependency. + *
+ Method getLocalPort() which has been removed in the new version of the dependency + + *
+ The failure is identified from the logs generated in the build process. + + * >[[ERROR] /jadler/jadler-jetty/src/main/java/net/jadler/stubbing/server/jetty/JettyStubHttpServer.java:[80,28] error: cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1278) + * An error was detected in line 80 which is making use of an outdated API. + ``` java + 80 httpConnector.getLocalPort(); + ``` + +
+ + To address this incompatibility, there are 2 alternative options available in the new version of the dependency that can replace the incompatible method currently used in the client. You can consider substituting the existing method with one of the following options provided by the new version of the dependency: + ``` java + int getLocalPort(); + ``` + ``` java + int getLocalPort(); + ``` +
+ *
+ Method setSendDateHeader(boolean) which has been removed in the new version of the dependency + + *
+ The failure is identified from the logs generated in the build process. + + * >[[ERROR] /jadler/jadler-jetty/src/main/java/net/jadler/stubbing/server/jetty/JettyStubHttpServer.java:[34,19] error: cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1269) + * An error was detected in line 34 which is making use of an outdated API. + ``` java + 34 this.server.setSendDateHeader(true); + ``` + +
+ + To resolve this issue, there are alternative options available in the new version of the dependency that can replace the incompatible method currently used in the client. You can consider substituting the existing method with one of the following options provided by the new version of the dependency + ``` java + void setSendDateHeader(boolean); + ``` +
+ *
+ Method setSendServerVersion(boolean) which has been removed in the new version of the dependency + + *
+ The failure is identified from the logs generated in the build process. + + * >[[ERROR] /jadler/jadler-jetty/src/main/java/net/jadler/stubbing/server/jetty/JettyStubHttpServer.java:[33,19] error: cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1266) + * An error was detected in line 33 which is making use of an outdated API. + ``` java + 33 this.server.setSendServerVersion(false); + ``` + +
+ + To resolve this issue, there are alternative options available in the new version of the dependency that can replace the incompatible method currently used in the client. You can consider substituting the existing method with one of the following options provided by the new version of the dependency + ``` java + void setSendServerVersion(boolean); + ``` +
+ *
+ Method setPort(int) which has been removed in the new version of the dependency + + *
+ The failure is identified from the logs generated in the build process. + + * >[[ERROR] /jadler/jadler-jetty/src/main/java/net/jadler/stubbing/server/jetty/JettyStubHttpServer.java:[37,26] error: cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1275) + * An error was detected in line 37 which is making use of an outdated API. + ``` java + 37 this.httpConnector.setPort(port); + ``` + +
+ + To resolve this issue, there are alternative options available in the new version of the dependency that can replace the incompatible method currently used in the client. You can consider substituting the existing method with one of the following options provided by the new version of the dependency + ``` java + void setPort(int); + ``` +
+ + diff --git a/Explanations/5769bdad76925da568294cb8a40e7d4469699ac3.md b/Explanations/5769bdad76925da568294cb8a40e7d4469699ac3.md new file mode 100644 index 0000000..17f7cb6 --- /dev/null +++ b/Explanations/5769bdad76925da568294cb8a40e7d4469699ac3.md @@ -0,0 +1,18 @@ +CI detected that the dependency upgrade from version **github-api-1.93** to **github-api-1.313** has failed. Here are details to help you understand and fix the problem: +1. Your client utilizes **1** instruction which has been modified in the new version of the dependency. + * Method getRepository(java.lang.String) which has been removed in the new version of the dependency + + * The failure is identified from the logs generated in the build process. + + * >[[ERROR] /incrementals-tools/lib/src/main/java/io/jenkins/tools/incrementals/lib/UpdateChecker.java:[239,126] status has private access in org.kohsuke.github.GHCompare](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1130) + * An error was detected in line 239 which is making use of an outdated API. + ``` java + 239 org.kohsuke.github.GitHub.connect().getRepository((ghc.owner + '/') + ghc.repo); + ``` + + To resolve this issue, there are alternative options available in the new version of the dependency that can replace the incompatible method currently used in the client. You can consider substituting the existing method with one of the following options provided by the new version of the dependency + ``` java + GHRepository getRepository(); + ``` + + diff --git a/Explanations/5adde4f1309a1078b39d013a30dc392c97ca7543.md b/Explanations/5adde4f1309a1078b39d013a30dc392c97ca7543.md new file mode 100644 index 0000000..041f7fe --- /dev/null +++ b/Explanations/5adde4f1309a1078b39d013a30dc392c97ca7543.md @@ -0,0 +1,18 @@ +CI detected that the dependency upgrade from version **sonarlint-core-8.15.0.65216** to **sonarlint-core-9.1.0.74321** has failed. Here are details to help you understand and fix the problem: +1. Your client utilizes **1** instruction which has been modified in the new version of the dependency. + * Method getEnabledLanguages() which has been removed in the new version of the dependency + + * The failure is identified from the logs generated in the build process. + + * >[[ERROR] /sorald/sorald/src/main/java/sorald/sonar/SonarLintEngine.java:[163,17] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1267) + * An error was detected in line 163 which is making use of an outdated API. + ``` java + 163 sorald.sonar.SonarLintEngine.globalConfig.getEnabledLanguages(); + ``` + + To resolve this issue, there are alternative options available in the new version of the dependency that can replace the incompatible method currently used in the client. You can consider substituting the existing method with one of the following options provided by the new version of the dependency + ``` java + Set getEnabledLanguages(); + ``` + + diff --git a/Explanations/5fcd0c3ad7727850c47602b17530dc355e5bd097.md b/Explanations/5fcd0c3ad7727850c47602b17530dc355e5bd097.md new file mode 100644 index 0000000..6573559 --- /dev/null +++ b/Explanations/5fcd0c3ad7727850c47602b17530dc355e5bd097.md @@ -0,0 +1,23 @@ +CI detected that the dependency upgrade from version **pitest-entry-1.9.11** to **pitest-entry-1.10.0** has failed. Here are details to help you understand and fix the problem: +1. Your client utilizes **1** instruction which has been modified in the new version of the dependency. + * Method getClassInfo() which has been removed in the new version of the dependency + + * The failure is identified from the logs generated in the build process. + + * >[[ERROR] /pitest-mutation-testing-elements-plugin/src/main/java/org/pitest/elements/MutationReportListener.java:[105,38] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:276) + * An error was detected in line 105 which is making use of an outdated API. + ``` java + 105 coverage.getClassInfo(java.util.Collections.singleton(data.getMutatedClass())); + ``` + * >[[ERROR] /pitest-mutation-testing-elements-plugin/src/main/java/org/pitest/elements/MutationReportListener.java:[105,38] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:276) + * An error was detected in line 105 which is making use of an outdated API. + ``` java + 105 coverage.getClassInfo(java.util.Collections.singleton(data.getMutatedClass())); + ``` + + To resolve this issue, there are alternative options available in the new version of the dependency that can replace the incompatible method currently used in the client. You can consider substituting the existing method with one of the following options provided by the new version of the dependency + ``` java + ClassInfoBuilder getClassInfo(ClassName,byte[],long); + ``` + + diff --git a/Explanations/65200df71d5f6ab1c5502f74a5dc7bcbda459563.md b/Explanations/65200df71d5f6ab1c5502f74a5dc7bcbda459563.md new file mode 100644 index 0000000..5ea5d73 --- /dev/null +++ b/Explanations/65200df71d5f6ab1c5502f74a5dc7bcbda459563.md @@ -0,0 +1,14 @@ +CI detected that the dependency upgrade from version **sonarlint-core-8.15.0.65216** to **sonarlint-core-8.19.0.72745** has failed. Here are details to help you understand and fix the problem: +1. Your client utilizes **1** instruction which has been modified in the new version of the dependency. + * Method getEnabledLanguages() which has been removed in the new version of the dependency + + * The failure is identified from the logs generated in the build process. + + * >[[ERROR] /sorald/sorald/src/main/java/sorald/sonar/SonarLintEngine.java:[163,17] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1267) + * An error was detected in line 163 which is making use of an outdated API. + ``` java + 163 sorald.sonar.SonarLintEngine.globalConfig.getEnabledLanguages(); + ``` + + + diff --git a/Explanations/7fb959ccb8c9b32bd6cbc9fc95ed70c4d9c85575.md b/Explanations/7fb959ccb8c9b32bd6cbc9fc95ed70c4d9c85575.md new file mode 100644 index 0000000..da0a69e --- /dev/null +++ b/Explanations/7fb959ccb8c9b32bd6cbc9fc95ed70c4d9c85575.md @@ -0,0 +1,83 @@ +CI detected that the dependency upgrade from version **jetty-server-8.1.11.v20130520** to **jetty-server-11.0.12** has failed. Here are details to help you understand and fix the problem: +1. Your client utilizes **4** instructions which has been modified in the new version of the dependency. + *
+ Method getLocalPort() which has been removed in the new version of the dependency + + *
+ The failure is identified from the logs generated in the build process. + + * >[[ERROR] /jadler/jadler-jetty/src/main/java/net/jadler/stubbing/server/jetty/JettyStubHttpServer.java:[80,28] error: cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1254) + * An error was detected in line 80 which is making use of an outdated API. + ``` java + 80 httpConnector.getLocalPort(); + ``` + +
+ + To address this incompatibility, there are 2 alternative options available in the new version of the dependency that can replace the incompatible method currently used in the client. You can consider substituting the existing method with one of the following options provided by the new version of the dependency: + ``` java + int getLocalPort(); + ``` + ``` java + int getLocalPort(); + ``` +
+ *
+ Method setSendDateHeader(boolean) which has been removed in the new version of the dependency + + *
+ The failure is identified from the logs generated in the build process. + + * >[[ERROR] /jadler/jadler-jetty/src/main/java/net/jadler/stubbing/server/jetty/JettyStubHttpServer.java:[34,19] error: cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1245) + * An error was detected in line 34 which is making use of an outdated API. + ``` java + 34 this.server.setSendDateHeader(true); + ``` + +
+ + To resolve this issue, there are alternative options available in the new version of the dependency that can replace the incompatible method currently used in the client. You can consider substituting the existing method with one of the following options provided by the new version of the dependency + ``` java + void setSendDateHeader(boolean); + ``` +
+ *
+ Method setSendServerVersion(boolean) which has been removed in the new version of the dependency + + *
+ The failure is identified from the logs generated in the build process. + + * >[[ERROR] /jadler/jadler-jetty/src/main/java/net/jadler/stubbing/server/jetty/JettyStubHttpServer.java:[33,19] error: cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1242) + * An error was detected in line 33 which is making use of an outdated API. + ``` java + 33 this.server.setSendServerVersion(false); + ``` + +
+ + To resolve this issue, there are alternative options available in the new version of the dependency that can replace the incompatible method currently used in the client. You can consider substituting the existing method with one of the following options provided by the new version of the dependency + ``` java + void setSendServerVersion(boolean); + ``` +
+ *
+ Method setPort(int) which has been removed in the new version of the dependency + + *
+ The failure is identified from the logs generated in the build process. + + * >[[ERROR] /jadler/jadler-jetty/src/main/java/net/jadler/stubbing/server/jetty/JettyStubHttpServer.java:[37,26] error: cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1251) + * An error was detected in line 37 which is making use of an outdated API. + ``` java + 37 this.httpConnector.setPort(port); + ``` + +
+ + To resolve this issue, there are alternative options available in the new version of the dependency that can replace the incompatible method currently used in the client. You can consider substituting the existing method with one of the following options provided by the new version of the dependency + ``` java + void setPort(int); + ``` +
+ + diff --git a/Explanations/8502e85f9ee2ff90ce96b47b5904f011e81e8bb8.md b/Explanations/8502e85f9ee2ff90ce96b47b5904f011e81e8bb8.md new file mode 100644 index 0000000..febbfb9 --- /dev/null +++ b/Explanations/8502e85f9ee2ff90ce96b47b5904f011e81e8bb8.md @@ -0,0 +1,121 @@ +CI detected that the dependency upgrade from version **flyway-core-3.2.1** to **flyway-core-9.20.1** has failed. Here are details to help you understand and fix the problem: +1. Your client utilizes **6** instructions which has been modified in the new version of the dependency. + *
+ Method valueOf(java.lang.String) which has been removed in the new version of the dependency + + *
+ The failure is identified from the logs generated in the build process. + + * >[[ERROR] /nem/nis/src/main/java/org/nem/specific/deploy/appconfig/NisAppConfig.java:[112,23] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:2013) + * An error was detected in line 112 which is making use of an outdated API. + ``` java + 112 java.lang.Boolean.valueOf(prop.getProperty("flyway.validate")); + ``` + +
+ + To resolve this issue, there are alternative options available in the new version of the dependency that can replace the incompatible method currently used in the client. You can consider substituting the existing method with one of the following options provided by the new version of the dependency + ``` java + Event valueOf(String); + ``` +
+ *
+ Method setLocations(java.lang.String) which has been removed in the new version of the dependency + + *
+ The failure is identified from the logs generated in the build process. + + * >[[ERROR] /nem/nis/src/main/java/org/nem/specific/deploy/appconfig/NisAppConfig.java:[111,23] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:2010) + * An error was detected in line 111 which is making use of an outdated API. + ``` java + 111 flyway.setLocations(prop.getProperty("flyway.locations")); + ``` + +
+ + To resolve this issue, there are alternative options available in the new version of the dependency that can replace the incompatible method currently used in the client. You can consider substituting the existing method with one of the following options provided by the new version of the dependency + ``` java + void setLocations(Location[]); + ``` +
+ *
+ Method setDataSource(javax.sql.DataSource) which has been removed in the new version of the dependency + + *
+ The failure is identified from the logs generated in the build process. + + * >[[ERROR] /nem/nis/src/main/java/org/nem/specific/deploy/appconfig/NisAppConfig.java:[109,23] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:2004) + * An error was detected in line 109 which is making use of an outdated API. + ``` java + 109 flyway.setDataSource(this.dataSource()); + ``` + +
+ + To resolve this issue, there are alternative options available in the new version of the dependency that can replace the incompatible method currently used in the client. You can consider substituting the existing method with one of the following options provided by the new version of the dependency + ``` java + void setDataSource(String,String,String); + ``` +
+ *
+ Method getClassLoader() which has been removed in the new version of the dependency + + *
+ The failure is identified from the logs generated in the build process. + + * >[[ERROR] /nem/nis/src/main/java/org/nem/specific/deploy/appconfig/NisAppConfig.java:[110,23] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:2007) + * An error was detected in line 110 which is making use of an outdated API. + ``` java + 110 org.nem.specific.deploy.appconfig.NisAppConfig.class.getClassLoader(); + ``` + +
+ + To address this incompatibility, there are 2 alternative options available in the new version of the dependency that can replace the incompatible method currently used in the client. You can consider substituting the existing method with one of the following options provided by the new version of the dependency: + ``` java + ClassLoader getClassLoader(); + ``` + ``` java + ClassLoader getClassLoader(); + ``` +
+ *
+ Method setClassLoader(java.lang.ClassLoader) which has been removed in the new version of the dependency + + *
+ The failure is identified from the logs generated in the build process. + + * >[[ERROR] /nem/nis/src/main/java/org/nem/specific/deploy/appconfig/NisAppConfig.java:[110,23] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:2007) + * An error was detected in line 110 which is making use of an outdated API. + ``` java + 110 flyway.setClassLoader(org.nem.specific.deploy.appconfig.NisAppConfig.class.getClassLoader()); + ``` + +
+ + To resolve this issue, there are alternative options available in the new version of the dependency that can replace the incompatible method currently used in the client. You can consider substituting the existing method with one of the following options provided by the new version of the dependency + ``` java + void setClassLoader(ClassLoader); + ``` +
+ *
+ Method setValidateOnMigrate(java.lang.Boolean) which has been removed in the new version of the dependency + + *
+ The failure is identified from the logs generated in the build process. + + * >[[ERROR] /nem/nis/src/main/java/org/nem/specific/deploy/appconfig/NisAppConfig.java:[112,23] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:2013) + * An error was detected in line 112 which is making use of an outdated API. + ``` java + 112 flyway.setValidateOnMigrate(java.lang.Boolean.valueOf(prop.getProperty("flyway.validate"))); + ``` + +
+ + To resolve this issue, there are alternative options available in the new version of the dependency that can replace the incompatible method currently used in the client. You can consider substituting the existing method with one of the following options provided by the new version of the dependency + ``` java + void setValidateOnMigrate(Boolean); + ``` +
+ + diff --git a/Explanations/8fbb6deb112102ef7507a8e68c5215e5f481d03b.md b/Explanations/8fbb6deb112102ef7507a8e68c5215e5f481d03b.md new file mode 100644 index 0000000..23e31c0 --- /dev/null +++ b/Explanations/8fbb6deb112102ef7507a8e68c5215e5f481d03b.md @@ -0,0 +1,83 @@ +CI detected that the dependency upgrade from version **jetty-server-8.1.11.v20130520** to **jetty-server-11.0.7** has failed. Here are details to help you understand and fix the problem: +1. Your client utilizes **4** instructions which has been modified in the new version of the dependency. + *
+ Method getLocalPort() which has been removed in the new version of the dependency + + *
+ The failure is identified from the logs generated in the build process. + + * >[[ERROR] /jadler/jadler-jetty/src/main/java/net/jadler/stubbing/server/jetty/JettyStubHttpServer.java:[80,28] error: cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1302) + * An error was detected in line 80 which is making use of an outdated API. + ``` java + 80 httpConnector.getLocalPort(); + ``` + +
+ + To address this incompatibility, there are 2 alternative options available in the new version of the dependency that can replace the incompatible method currently used in the client. You can consider substituting the existing method with one of the following options provided by the new version of the dependency: + ``` java + int getLocalPort(); + ``` + ``` java + int getLocalPort(); + ``` +
+ *
+ Method setSendDateHeader(boolean) which has been removed in the new version of the dependency + + *
+ The failure is identified from the logs generated in the build process. + + * >[[ERROR] /jadler/jadler-jetty/src/main/java/net/jadler/stubbing/server/jetty/JettyStubHttpServer.java:[34,19] error: cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1293) + * An error was detected in line 34 which is making use of an outdated API. + ``` java + 34 this.server.setSendDateHeader(true); + ``` + +
+ + To resolve this issue, there are alternative options available in the new version of the dependency that can replace the incompatible method currently used in the client. You can consider substituting the existing method with one of the following options provided by the new version of the dependency + ``` java + void setSendDateHeader(boolean); + ``` +
+ *
+ Method setSendServerVersion(boolean) which has been removed in the new version of the dependency + + *
+ The failure is identified from the logs generated in the build process. + + * >[[ERROR] /jadler/jadler-jetty/src/main/java/net/jadler/stubbing/server/jetty/JettyStubHttpServer.java:[33,19] error: cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1290) + * An error was detected in line 33 which is making use of an outdated API. + ``` java + 33 this.server.setSendServerVersion(false); + ``` + +
+ + To resolve this issue, there are alternative options available in the new version of the dependency that can replace the incompatible method currently used in the client. You can consider substituting the existing method with one of the following options provided by the new version of the dependency + ``` java + void setSendServerVersion(boolean); + ``` +
+ *
+ Method setPort(int) which has been removed in the new version of the dependency + + *
+ The failure is identified from the logs generated in the build process. + + * >[[ERROR] /jadler/jadler-jetty/src/main/java/net/jadler/stubbing/server/jetty/JettyStubHttpServer.java:[37,26] error: cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1299) + * An error was detected in line 37 which is making use of an outdated API. + ``` java + 37 this.httpConnector.setPort(port); + ``` + +
+ + To resolve this issue, there are alternative options available in the new version of the dependency that can replace the incompatible method currently used in the client. You can consider substituting the existing method with one of the following options provided by the new version of the dependency + ``` java + void setPort(int); + ``` +
+ + diff --git a/Explanations/95b2c15de16fd9fd612ce73672e29b613ce7a909.md b/Explanations/95b2c15de16fd9fd612ce73672e29b613ce7a909.md new file mode 100644 index 0000000..4a1ac80 --- /dev/null +++ b/Explanations/95b2c15de16fd9fd612ce73672e29b613ce7a909.md @@ -0,0 +1,83 @@ +CI detected that the dependency upgrade from version **jetty-server-8.1.11.v20130520** to **jetty-server-11.0.13** has failed. Here are details to help you understand and fix the problem: +1. Your client utilizes **4** instructions which has been modified in the new version of the dependency. + *
+ Method getLocalPort() which has been removed in the new version of the dependency + + *
+ The failure is identified from the logs generated in the build process. + + * >[[ERROR] /jadler/jadler-jetty/src/main/java/net/jadler/stubbing/server/jetty/JettyStubHttpServer.java:[80,28] error: cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1282) + * An error was detected in line 80 which is making use of an outdated API. + ``` java + 80 httpConnector.getLocalPort(); + ``` + +
+ + To address this incompatibility, there are 2 alternative options available in the new version of the dependency that can replace the incompatible method currently used in the client. You can consider substituting the existing method with one of the following options provided by the new version of the dependency: + ``` java + int getLocalPort(); + ``` + ``` java + int getLocalPort(); + ``` +
+ *
+ Method setSendDateHeader(boolean) which has been removed in the new version of the dependency + + *
+ The failure is identified from the logs generated in the build process. + + * >[[ERROR] /jadler/jadler-jetty/src/main/java/net/jadler/stubbing/server/jetty/JettyStubHttpServer.java:[34,19] error: cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1273) + * An error was detected in line 34 which is making use of an outdated API. + ``` java + 34 this.server.setSendDateHeader(true); + ``` + +
+ + To resolve this issue, there are alternative options available in the new version of the dependency that can replace the incompatible method currently used in the client. You can consider substituting the existing method with one of the following options provided by the new version of the dependency + ``` java + void setSendDateHeader(boolean); + ``` +
+ *
+ Method setSendServerVersion(boolean) which has been removed in the new version of the dependency + + *
+ The failure is identified from the logs generated in the build process. + + * >[[ERROR] /jadler/jadler-jetty/src/main/java/net/jadler/stubbing/server/jetty/JettyStubHttpServer.java:[33,19] error: cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1270) + * An error was detected in line 33 which is making use of an outdated API. + ``` java + 33 this.server.setSendServerVersion(false); + ``` + +
+ + To resolve this issue, there are alternative options available in the new version of the dependency that can replace the incompatible method currently used in the client. You can consider substituting the existing method with one of the following options provided by the new version of the dependency + ``` java + void setSendServerVersion(boolean); + ``` +
+ *
+ Method setPort(int) which has been removed in the new version of the dependency + + *
+ The failure is identified from the logs generated in the build process. + + * >[[ERROR] /jadler/jadler-jetty/src/main/java/net/jadler/stubbing/server/jetty/JettyStubHttpServer.java:[37,26] error: cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1279) + * An error was detected in line 37 which is making use of an outdated API. + ``` java + 37 this.httpConnector.setPort(port); + ``` + +
+ + To resolve this issue, there are alternative options available in the new version of the dependency that can replace the incompatible method currently used in the client. You can consider substituting the existing method with one of the following options provided by the new version of the dependency + ``` java + void setPort(int); + ``` +
+ + diff --git a/Explanations/a2b0fc53611f8705640773f18c8dd6a47eed3b7f.md b/Explanations/a2b0fc53611f8705640773f18c8dd6a47eed3b7f.md new file mode 100644 index 0000000..a820fa7 --- /dev/null +++ b/Explanations/a2b0fc53611f8705640773f18c8dd6a47eed3b7f.md @@ -0,0 +1,121 @@ +CI detected that the dependency upgrade from version **flyway-core-3.2.1** to **flyway-core-9.19.4** has failed. Here are details to help you understand and fix the problem: +1. Your client utilizes **6** instructions which has been modified in the new version of the dependency. + *
+ Method valueOf(java.lang.String) which has been removed in the new version of the dependency + + *
+ The failure is identified from the logs generated in the build process. + + * >[[ERROR] /nem/nis/src/main/java/org/nem/specific/deploy/appconfig/NisAppConfig.java:[112,23] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:2065) + * An error was detected in line 112 which is making use of an outdated API. + ``` java + 112 java.lang.Boolean.valueOf(prop.getProperty("flyway.validate")); + ``` + +
+ + To resolve this issue, there are alternative options available in the new version of the dependency that can replace the incompatible method currently used in the client. You can consider substituting the existing method with one of the following options provided by the new version of the dependency + ``` java + Event valueOf(String); + ``` +
+ *
+ Method setLocations(java.lang.String) which has been removed in the new version of the dependency + + *
+ The failure is identified from the logs generated in the build process. + + * >[[ERROR] /nem/nis/src/main/java/org/nem/specific/deploy/appconfig/NisAppConfig.java:[111,23] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:2062) + * An error was detected in line 111 which is making use of an outdated API. + ``` java + 111 flyway.setLocations(prop.getProperty("flyway.locations")); + ``` + +
+ + To resolve this issue, there are alternative options available in the new version of the dependency that can replace the incompatible method currently used in the client. You can consider substituting the existing method with one of the following options provided by the new version of the dependency + ``` java + void setLocations(Location[]); + ``` +
+ *
+ Method setDataSource(javax.sql.DataSource) which has been removed in the new version of the dependency + + *
+ The failure is identified from the logs generated in the build process. + + * >[[ERROR] /nem/nis/src/main/java/org/nem/specific/deploy/appconfig/NisAppConfig.java:[109,23] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:2056) + * An error was detected in line 109 which is making use of an outdated API. + ``` java + 109 flyway.setDataSource(this.dataSource()); + ``` + +
+ + To resolve this issue, there are alternative options available in the new version of the dependency that can replace the incompatible method currently used in the client. You can consider substituting the existing method with one of the following options provided by the new version of the dependency + ``` java + void setDataSource(String,String,String); + ``` +
+ *
+ Method getClassLoader() which has been removed in the new version of the dependency + + *
+ The failure is identified from the logs generated in the build process. + + * >[[ERROR] /nem/nis/src/main/java/org/nem/specific/deploy/appconfig/NisAppConfig.java:[110,23] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:2059) + * An error was detected in line 110 which is making use of an outdated API. + ``` java + 110 org.nem.specific.deploy.appconfig.NisAppConfig.class.getClassLoader(); + ``` + +
+ + To address this incompatibility, there are 2 alternative options available in the new version of the dependency that can replace the incompatible method currently used in the client. You can consider substituting the existing method with one of the following options provided by the new version of the dependency: + ``` java + ClassLoader getClassLoader(); + ``` + ``` java + ClassLoader getClassLoader(); + ``` +
+ *
+ Method setClassLoader(java.lang.ClassLoader) which has been removed in the new version of the dependency + + *
+ The failure is identified from the logs generated in the build process. + + * >[[ERROR] /nem/nis/src/main/java/org/nem/specific/deploy/appconfig/NisAppConfig.java:[110,23] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:2059) + * An error was detected in line 110 which is making use of an outdated API. + ``` java + 110 flyway.setClassLoader(org.nem.specific.deploy.appconfig.NisAppConfig.class.getClassLoader()); + ``` + +
+ + To resolve this issue, there are alternative options available in the new version of the dependency that can replace the incompatible method currently used in the client. You can consider substituting the existing method with one of the following options provided by the new version of the dependency + ``` java + void setClassLoader(ClassLoader); + ``` +
+ *
+ Method setValidateOnMigrate(java.lang.Boolean) which has been removed in the new version of the dependency + + *
+ The failure is identified from the logs generated in the build process. + + * >[[ERROR] /nem/nis/src/main/java/org/nem/specific/deploy/appconfig/NisAppConfig.java:[112,23] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:2065) + * An error was detected in line 112 which is making use of an outdated API. + ``` java + 112 flyway.setValidateOnMigrate(java.lang.Boolean.valueOf(prop.getProperty("flyway.validate"))); + ``` + +
+ + To resolve this issue, there are alternative options available in the new version of the dependency that can replace the incompatible method currently used in the client. You can consider substituting the existing method with one of the following options provided by the new version of the dependency + ``` java + void setValidateOnMigrate(Boolean); + ``` +
+ + diff --git a/Explanations/a4c360001134c2e3a9f7fbde88a07a9fd767e78e.md b/Explanations/a4c360001134c2e3a9f7fbde88a07a9fd767e78e.md new file mode 100644 index 0000000..656f815 --- /dev/null +++ b/Explanations/a4c360001134c2e3a9f7fbde88a07a9fd767e78e.md @@ -0,0 +1,33 @@ +CI detected that the dependency upgrade from version **reflections-0.9.9** to **reflections-0.10.2** has failed. Here are details to help you understand and fix the problem: +1. Your client utilizes **1** instruction which has been modified in the new version of the dependency. + * Method apply(java.lang.String) which has been removed in the new version of the dependency + + * The failure is identified from the logs generated in the build process. + + * >[[ERROR] /gauge-java/src/main/java/com/thoughtworks/gauge/scan/ClasspathScanner.java:[64,61] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1420) + * An error was detected in line 64 which is making use of an outdated API. + ``` java + 64 new org.reflections.util.FilterBuilder().include(".+\\.class").apply(s); + ``` + * >[[ERROR] /gauge-java/src/main/java/com/thoughtworks/gauge/scan/ClasspathScanner.java:[64,61] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1420) + * An error was detected in line 64 which is making use of an outdated API. + ``` java + 64 new org.reflections.util.FilterBuilder().include(".+\\.class").apply(s); + ``` + * >[[ERROR] /gauge-java/src/main/java/com/thoughtworks/gauge/scan/ClasspathScanner.java:[69,51] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1423) + * An error was detected in line 69 which is making use of an outdated API. + ``` java + 69 new org.reflections.util.FilterBuilder().include(regex).apply(s); + ``` + * >[[ERROR] /gauge-java/src/main/java/com/thoughtworks/gauge/scan/ClasspathScanner.java:[69,51] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1423) + * An error was detected in line 69 which is making use of an outdated API. + ``` java + 69 new org.reflections.util.FilterBuilder().include(regex).apply(s); + ``` + + To resolve this issue, there are alternative options available in the new version of the dependency that can replace the incompatible method currently used in the client. You can consider substituting the existing method with one of the following options provided by the new version of the dependency + ``` java + Set apply(Object); + ``` + + diff --git a/Explanations/ad80bdff62b1b0520d3fb9e8d627532a38a7c60c.md b/Explanations/ad80bdff62b1b0520d3fb9e8d627532a38a7c60c.md new file mode 100644 index 0000000..515362d --- /dev/null +++ b/Explanations/ad80bdff62b1b0520d3fb9e8d627532a38a7c60c.md @@ -0,0 +1,121 @@ +CI detected that the dependency upgrade from version **flyway-core-3.2.1** to **flyway-core-9.16.3** has failed. Here are details to help you understand and fix the problem: +1. Your client utilizes **6** instructions which has been modified in the new version of the dependency. + *
+ Method valueOf(java.lang.String) which has been removed in the new version of the dependency + + *
+ The failure is identified from the logs generated in the build process. + + * >[[ERROR] /nem/nis/src/main/java/org/nem/specific/deploy/appconfig/NisAppConfig.java:[112,23] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:2147) + * An error was detected in line 112 which is making use of an outdated API. + ``` java + 112 java.lang.Boolean.valueOf(prop.getProperty("flyway.validate")); + ``` + +
+ + To resolve this issue, there are alternative options available in the new version of the dependency that can replace the incompatible method currently used in the client. You can consider substituting the existing method with one of the following options provided by the new version of the dependency + ``` java + Event valueOf(String); + ``` +
+ *
+ Method setLocations(java.lang.String) which has been removed in the new version of the dependency + + *
+ The failure is identified from the logs generated in the build process. + + * >[[ERROR] /nem/nis/src/main/java/org/nem/specific/deploy/appconfig/NisAppConfig.java:[111,23] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:2144) + * An error was detected in line 111 which is making use of an outdated API. + ``` java + 111 flyway.setLocations(prop.getProperty("flyway.locations")); + ``` + +
+ + To resolve this issue, there are alternative options available in the new version of the dependency that can replace the incompatible method currently used in the client. You can consider substituting the existing method with one of the following options provided by the new version of the dependency + ``` java + void setLocations(Location[]); + ``` +
+ *
+ Method setDataSource(javax.sql.DataSource) which has been removed in the new version of the dependency + + *
+ The failure is identified from the logs generated in the build process. + + * >[[ERROR] /nem/nis/src/main/java/org/nem/specific/deploy/appconfig/NisAppConfig.java:[109,23] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:2138) + * An error was detected in line 109 which is making use of an outdated API. + ``` java + 109 flyway.setDataSource(this.dataSource()); + ``` + +
+ + To resolve this issue, there are alternative options available in the new version of the dependency that can replace the incompatible method currently used in the client. You can consider substituting the existing method with one of the following options provided by the new version of the dependency + ``` java + void setDataSource(String,String,String); + ``` +
+ *
+ Method getClassLoader() which has been removed in the new version of the dependency + + *
+ The failure is identified from the logs generated in the build process. + + * >[[ERROR] /nem/nis/src/main/java/org/nem/specific/deploy/appconfig/NisAppConfig.java:[110,23] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:2141) + * An error was detected in line 110 which is making use of an outdated API. + ``` java + 110 org.nem.specific.deploy.appconfig.NisAppConfig.class.getClassLoader(); + ``` + +
+ + To address this incompatibility, there are 2 alternative options available in the new version of the dependency that can replace the incompatible method currently used in the client. You can consider substituting the existing method with one of the following options provided by the new version of the dependency: + ``` java + ClassLoader getClassLoader(); + ``` + ``` java + ClassLoader getClassLoader(); + ``` +
+ *
+ Method setClassLoader(java.lang.ClassLoader) which has been removed in the new version of the dependency + + *
+ The failure is identified from the logs generated in the build process. + + * >[[ERROR] /nem/nis/src/main/java/org/nem/specific/deploy/appconfig/NisAppConfig.java:[110,23] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:2141) + * An error was detected in line 110 which is making use of an outdated API. + ``` java + 110 flyway.setClassLoader(org.nem.specific.deploy.appconfig.NisAppConfig.class.getClassLoader()); + ``` + +
+ + To resolve this issue, there are alternative options available in the new version of the dependency that can replace the incompatible method currently used in the client. You can consider substituting the existing method with one of the following options provided by the new version of the dependency + ``` java + void setClassLoader(ClassLoader); + ``` +
+ *
+ Method setValidateOnMigrate(java.lang.Boolean) which has been removed in the new version of the dependency + + *
+ The failure is identified from the logs generated in the build process. + + * >[[ERROR] /nem/nis/src/main/java/org/nem/specific/deploy/appconfig/NisAppConfig.java:[112,23] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:2147) + * An error was detected in line 112 which is making use of an outdated API. + ``` java + 112 flyway.setValidateOnMigrate(java.lang.Boolean.valueOf(prop.getProperty("flyway.validate"))); + ``` + +
+ + To resolve this issue, there are alternative options available in the new version of the dependency that can replace the incompatible method currently used in the client. You can consider substituting the existing method with one of the following options provided by the new version of the dependency + ``` java + void setValidateOnMigrate(Boolean); + ``` +
+ + diff --git a/Explanations/ae16b526695fe275ab5e6a1992916875d26da860.md b/Explanations/ae16b526695fe275ab5e6a1992916875d26da860.md new file mode 100644 index 0000000..c39e814 --- /dev/null +++ b/Explanations/ae16b526695fe275ab5e6a1992916875d26da860.md @@ -0,0 +1,83 @@ +CI detected that the dependency upgrade from version **jetty-server-8.1.11.v20130520** to **jetty-server-9.4.41.v20210516** has failed. Here are details to help you understand and fix the problem: +1. Your client utilizes **4** instructions which has been modified in the new version of the dependency. + *
+ Method getLocalPort() which has been removed in the new version of the dependency + + *
+ The failure is identified from the logs generated in the build process. + + * >[[ERROR] /jadler/jadler-jetty/src/main/java/net/jadler/stubbing/server/jetty/JettyStubHttpServer.java:[80,28] error: cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1177) + * An error was detected in line 80 which is making use of an outdated API. + ``` java + 80 httpConnector.getLocalPort(); + ``` + +
+ + To address this incompatibility, there are 2 alternative options available in the new version of the dependency that can replace the incompatible method currently used in the client. You can consider substituting the existing method with one of the following options provided by the new version of the dependency: + ``` java + int getLocalPort(); + ``` + ``` java + int getLocalPort(); + ``` +
+ *
+ Method setSendDateHeader(boolean) which has been removed in the new version of the dependency + + *
+ The failure is identified from the logs generated in the build process. + + * >[[ERROR] /jadler/jadler-jetty/src/main/java/net/jadler/stubbing/server/jetty/JettyStubHttpServer.java:[34,19] error: cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1168) + * An error was detected in line 34 which is making use of an outdated API. + ``` java + 34 this.server.setSendDateHeader(true); + ``` + +
+ + To resolve this issue, there are alternative options available in the new version of the dependency that can replace the incompatible method currently used in the client. You can consider substituting the existing method with one of the following options provided by the new version of the dependency + ``` java + void setSendDateHeader(boolean); + ``` +
+ *
+ Method setSendServerVersion(boolean) which has been removed in the new version of the dependency + + *
+ The failure is identified from the logs generated in the build process. + + * >[[ERROR] /jadler/jadler-jetty/src/main/java/net/jadler/stubbing/server/jetty/JettyStubHttpServer.java:[33,19] error: cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1165) + * An error was detected in line 33 which is making use of an outdated API. + ``` java + 33 this.server.setSendServerVersion(false); + ``` + +
+ + To resolve this issue, there are alternative options available in the new version of the dependency that can replace the incompatible method currently used in the client. You can consider substituting the existing method with one of the following options provided by the new version of the dependency + ``` java + void setSendServerVersion(boolean); + ``` +
+ *
+ Method setPort(int) which has been removed in the new version of the dependency + + *
+ The failure is identified from the logs generated in the build process. + + * >[[ERROR] /jadler/jadler-jetty/src/main/java/net/jadler/stubbing/server/jetty/JettyStubHttpServer.java:[37,26] error: cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1174) + * An error was detected in line 37 which is making use of an outdated API. + ``` java + 37 this.httpConnector.setPort(port); + ``` + +
+ + To resolve this issue, there are alternative options available in the new version of the dependency that can replace the incompatible method currently used in the client. You can consider substituting the existing method with one of the following options provided by the new version of the dependency + ``` java + void setPort(int); + ``` +
+ + diff --git a/Explanations/af6e5d1cc94f031f29b4838e7a8b56704c8c5de4.md b/Explanations/af6e5d1cc94f031f29b4838e7a8b56704c8c5de4.md new file mode 100644 index 0000000..24363c1 --- /dev/null +++ b/Explanations/af6e5d1cc94f031f29b4838e7a8b56704c8c5de4.md @@ -0,0 +1,121 @@ +CI detected that the dependency upgrade from version **flyway-core-3.2.1** to **flyway-core-9.17.0** has failed. Here are details to help you understand and fix the problem: +1. Your client utilizes **6** instructions which has been modified in the new version of the dependency. + *
+ Method valueOf(java.lang.String) which has been removed in the new version of the dependency + + *
+ The failure is identified from the logs generated in the build process. + + * >[[ERROR] /nem/nis/src/main/java/org/nem/specific/deploy/appconfig/NisAppConfig.java:[112,23] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:2001) + * An error was detected in line 112 which is making use of an outdated API. + ``` java + 112 java.lang.Boolean.valueOf(prop.getProperty("flyway.validate")); + ``` + +
+ + To resolve this issue, there are alternative options available in the new version of the dependency that can replace the incompatible method currently used in the client. You can consider substituting the existing method with one of the following options provided by the new version of the dependency + ``` java + Event valueOf(String); + ``` +
+ *
+ Method setLocations(java.lang.String) which has been removed in the new version of the dependency + + *
+ The failure is identified from the logs generated in the build process. + + * >[[ERROR] /nem/nis/src/main/java/org/nem/specific/deploy/appconfig/NisAppConfig.java:[111,23] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1998) + * An error was detected in line 111 which is making use of an outdated API. + ``` java + 111 flyway.setLocations(prop.getProperty("flyway.locations")); + ``` + +
+ + To resolve this issue, there are alternative options available in the new version of the dependency that can replace the incompatible method currently used in the client. You can consider substituting the existing method with one of the following options provided by the new version of the dependency + ``` java + void setLocations(Location[]); + ``` +
+ *
+ Method setDataSource(javax.sql.DataSource) which has been removed in the new version of the dependency + + *
+ The failure is identified from the logs generated in the build process. + + * >[[ERROR] /nem/nis/src/main/java/org/nem/specific/deploy/appconfig/NisAppConfig.java:[109,23] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1992) + * An error was detected in line 109 which is making use of an outdated API. + ``` java + 109 flyway.setDataSource(this.dataSource()); + ``` + +
+ + To resolve this issue, there are alternative options available in the new version of the dependency that can replace the incompatible method currently used in the client. You can consider substituting the existing method with one of the following options provided by the new version of the dependency + ``` java + void setDataSource(String,String,String); + ``` +
+ *
+ Method getClassLoader() which has been removed in the new version of the dependency + + *
+ The failure is identified from the logs generated in the build process. + + * >[[ERROR] /nem/nis/src/main/java/org/nem/specific/deploy/appconfig/NisAppConfig.java:[110,23] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1995) + * An error was detected in line 110 which is making use of an outdated API. + ``` java + 110 org.nem.specific.deploy.appconfig.NisAppConfig.class.getClassLoader(); + ``` + +
+ + To address this incompatibility, there are 2 alternative options available in the new version of the dependency that can replace the incompatible method currently used in the client. You can consider substituting the existing method with one of the following options provided by the new version of the dependency: + ``` java + ClassLoader getClassLoader(); + ``` + ``` java + ClassLoader getClassLoader(); + ``` +
+ *
+ Method setClassLoader(java.lang.ClassLoader) which has been removed in the new version of the dependency + + *
+ The failure is identified from the logs generated in the build process. + + * >[[ERROR] /nem/nis/src/main/java/org/nem/specific/deploy/appconfig/NisAppConfig.java:[110,23] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1995) + * An error was detected in line 110 which is making use of an outdated API. + ``` java + 110 flyway.setClassLoader(org.nem.specific.deploy.appconfig.NisAppConfig.class.getClassLoader()); + ``` + +
+ + To resolve this issue, there are alternative options available in the new version of the dependency that can replace the incompatible method currently used in the client. You can consider substituting the existing method with one of the following options provided by the new version of the dependency + ``` java + void setClassLoader(ClassLoader); + ``` +
+ *
+ Method setValidateOnMigrate(java.lang.Boolean) which has been removed in the new version of the dependency + + *
+ The failure is identified from the logs generated in the build process. + + * >[[ERROR] /nem/nis/src/main/java/org/nem/specific/deploy/appconfig/NisAppConfig.java:[112,23] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:2001) + * An error was detected in line 112 which is making use of an outdated API. + ``` java + 112 flyway.setValidateOnMigrate(java.lang.Boolean.valueOf(prop.getProperty("flyway.validate"))); + ``` + +
+ + To resolve this issue, there are alternative options available in the new version of the dependency that can replace the incompatible method currently used in the client. You can consider substituting the existing method with one of the following options provided by the new version of the dependency + ``` java + void setValidateOnMigrate(Boolean); + ``` +
+ + diff --git a/Explanations/b6a48a6e557fad1ceda680618e0a34c7b8c5c087.md b/Explanations/b6a48a6e557fad1ceda680618e0a34c7b8c5c087.md new file mode 100644 index 0000000..69a502e --- /dev/null +++ b/Explanations/b6a48a6e557fad1ceda680618e0a34c7b8c5c087.md @@ -0,0 +1,121 @@ +CI detected that the dependency upgrade from version **flyway-core-3.2.1** to **flyway-core-9.18.0** has failed. Here are details to help you understand and fix the problem: +1. Your client utilizes **6** instructions which has been modified in the new version of the dependency. + *
+ Method valueOf(java.lang.String) which has been removed in the new version of the dependency + + *
+ The failure is identified from the logs generated in the build process. + + * >[[ERROR] /nem/nis/src/main/java/org/nem/specific/deploy/appconfig/NisAppConfig.java:[112,23] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:2011) + * An error was detected in line 112 which is making use of an outdated API. + ``` java + 112 java.lang.Boolean.valueOf(prop.getProperty("flyway.validate")); + ``` + +
+ + To resolve this issue, there are alternative options available in the new version of the dependency that can replace the incompatible method currently used in the client. You can consider substituting the existing method with one of the following options provided by the new version of the dependency + ``` java + Event valueOf(String); + ``` +
+ *
+ Method setLocations(java.lang.String) which has been removed in the new version of the dependency + + *
+ The failure is identified from the logs generated in the build process. + + * >[[ERROR] /nem/nis/src/main/java/org/nem/specific/deploy/appconfig/NisAppConfig.java:[111,23] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:2008) + * An error was detected in line 111 which is making use of an outdated API. + ``` java + 111 flyway.setLocations(prop.getProperty("flyway.locations")); + ``` + +
+ + To resolve this issue, there are alternative options available in the new version of the dependency that can replace the incompatible method currently used in the client. You can consider substituting the existing method with one of the following options provided by the new version of the dependency + ``` java + void setLocations(Location[]); + ``` +
+ *
+ Method setDataSource(javax.sql.DataSource) which has been removed in the new version of the dependency + + *
+ The failure is identified from the logs generated in the build process. + + * >[[ERROR] /nem/nis/src/main/java/org/nem/specific/deploy/appconfig/NisAppConfig.java:[109,23] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:2002) + * An error was detected in line 109 which is making use of an outdated API. + ``` java + 109 flyway.setDataSource(this.dataSource()); + ``` + +
+ + To resolve this issue, there are alternative options available in the new version of the dependency that can replace the incompatible method currently used in the client. You can consider substituting the existing method with one of the following options provided by the new version of the dependency + ``` java + void setDataSource(String,String,String); + ``` +
+ *
+ Method getClassLoader() which has been removed in the new version of the dependency + + *
+ The failure is identified from the logs generated in the build process. + + * >[[ERROR] /nem/nis/src/main/java/org/nem/specific/deploy/appconfig/NisAppConfig.java:[110,23] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:2005) + * An error was detected in line 110 which is making use of an outdated API. + ``` java + 110 org.nem.specific.deploy.appconfig.NisAppConfig.class.getClassLoader(); + ``` + +
+ + To address this incompatibility, there are 2 alternative options available in the new version of the dependency that can replace the incompatible method currently used in the client. You can consider substituting the existing method with one of the following options provided by the new version of the dependency: + ``` java + ClassLoader getClassLoader(); + ``` + ``` java + ClassLoader getClassLoader(); + ``` +
+ *
+ Method setClassLoader(java.lang.ClassLoader) which has been removed in the new version of the dependency + + *
+ The failure is identified from the logs generated in the build process. + + * >[[ERROR] /nem/nis/src/main/java/org/nem/specific/deploy/appconfig/NisAppConfig.java:[110,23] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:2005) + * An error was detected in line 110 which is making use of an outdated API. + ``` java + 110 flyway.setClassLoader(org.nem.specific.deploy.appconfig.NisAppConfig.class.getClassLoader()); + ``` + +
+ + To resolve this issue, there are alternative options available in the new version of the dependency that can replace the incompatible method currently used in the client. You can consider substituting the existing method with one of the following options provided by the new version of the dependency + ``` java + void setClassLoader(ClassLoader); + ``` +
+ *
+ Method setValidateOnMigrate(java.lang.Boolean) which has been removed in the new version of the dependency + + *
+ The failure is identified from the logs generated in the build process. + + * >[[ERROR] /nem/nis/src/main/java/org/nem/specific/deploy/appconfig/NisAppConfig.java:[112,23] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:2011) + * An error was detected in line 112 which is making use of an outdated API. + ``` java + 112 flyway.setValidateOnMigrate(java.lang.Boolean.valueOf(prop.getProperty("flyway.validate"))); + ``` + +
+ + To resolve this issue, there are alternative options available in the new version of the dependency that can replace the incompatible method currently used in the client. You can consider substituting the existing method with one of the following options provided by the new version of the dependency + ``` java + void setValidateOnMigrate(Boolean); + ``` +
+ + diff --git a/Explanations/c09896887acf0fe59320e01145a7034cd8d4e326.md b/Explanations/c09896887acf0fe59320e01145a7034cd8d4e326.md new file mode 100644 index 0000000..6bf1e4d --- /dev/null +++ b/Explanations/c09896887acf0fe59320e01145a7034cd8d4e326.md @@ -0,0 +1,18 @@ +CI detected that the dependency upgrade from version **github-api-1.93** to **github-api-1.314** has failed. Here are details to help you understand and fix the problem: +1. Your client utilizes **1** instruction which has been modified in the new version of the dependency. + * Method getRepository(java.lang.String) which has been removed in the new version of the dependency + + * The failure is identified from the logs generated in the build process. + + * >[[ERROR] /incrementals-tools/lib/src/main/java/io/jenkins/tools/incrementals/lib/UpdateChecker.java:[239,126] status has private access in org.kohsuke.github.GHCompare](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1140) + * An error was detected in line 239 which is making use of an outdated API. + ``` java + 239 org.kohsuke.github.GitHub.connect().getRepository((ghc.owner + '/') + ghc.repo); + ``` + + To resolve this issue, there are alternative options available in the new version of the dependency that can replace the incompatible method currently used in the client. You can consider substituting the existing method with one of the following options provided by the new version of the dependency + ``` java + GHRepository getRepository(); + ``` + + diff --git a/Explanations/c0f6ab75784dbc13ae8ff47298704c0756cf3a2c.md b/Explanations/c0f6ab75784dbc13ae8ff47298704c0756cf3a2c.md new file mode 100644 index 0000000..5ea5d73 --- /dev/null +++ b/Explanations/c0f6ab75784dbc13ae8ff47298704c0756cf3a2c.md @@ -0,0 +1,14 @@ +CI detected that the dependency upgrade from version **sonarlint-core-8.15.0.65216** to **sonarlint-core-8.19.0.72745** has failed. Here are details to help you understand and fix the problem: +1. Your client utilizes **1** instruction which has been modified in the new version of the dependency. + * Method getEnabledLanguages() which has been removed in the new version of the dependency + + * The failure is identified from the logs generated in the build process. + + * >[[ERROR] /sorald/sorald/src/main/java/sorald/sonar/SonarLintEngine.java:[163,17] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1267) + * An error was detected in line 163 which is making use of an outdated API. + ``` java + 163 sorald.sonar.SonarLintEngine.globalConfig.getEnabledLanguages(); + ``` + + + diff --git a/Explanations/c32185c43be158d32c7d13c5b816991954eb45fa.md b/Explanations/c32185c43be158d32c7d13c5b816991954eb45fa.md new file mode 100644 index 0000000..97fef1a --- /dev/null +++ b/Explanations/c32185c43be158d32c7d13c5b816991954eb45fa.md @@ -0,0 +1,121 @@ +CI detected that the dependency upgrade from version **flyway-core-3.2.1** to **flyway-core-9.10.2** has failed. Here are details to help you understand and fix the problem: +1. Your client utilizes **6** instructions which has been modified in the new version of the dependency. + *
+ Method valueOf(java.lang.String) which has been removed in the new version of the dependency + + *
+ The failure is identified from the logs generated in the build process. + + * >[[ERROR] /nem/nis/src/main/java/org/nem/specific/deploy/appconfig/NisAppConfig.java:[112,23] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:2076) + * An error was detected in line 112 which is making use of an outdated API. + ``` java + 112 java.lang.Boolean.valueOf(prop.getProperty("flyway.validate")); + ``` + +
+ + To resolve this issue, there are alternative options available in the new version of the dependency that can replace the incompatible method currently used in the client. You can consider substituting the existing method with one of the following options provided by the new version of the dependency + ``` java + Event valueOf(String); + ``` +
+ *
+ Method setLocations(java.lang.String) which has been removed in the new version of the dependency + + *
+ The failure is identified from the logs generated in the build process. + + * >[[ERROR] /nem/nis/src/main/java/org/nem/specific/deploy/appconfig/NisAppConfig.java:[111,23] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:2073) + * An error was detected in line 111 which is making use of an outdated API. + ``` java + 111 flyway.setLocations(prop.getProperty("flyway.locations")); + ``` + +
+ + To resolve this issue, there are alternative options available in the new version of the dependency that can replace the incompatible method currently used in the client. You can consider substituting the existing method with one of the following options provided by the new version of the dependency + ``` java + void setLocations(Location[]); + ``` +
+ *
+ Method setDataSource(javax.sql.DataSource) which has been removed in the new version of the dependency + + *
+ The failure is identified from the logs generated in the build process. + + * >[[ERROR] /nem/nis/src/main/java/org/nem/specific/deploy/appconfig/NisAppConfig.java:[109,23] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:2067) + * An error was detected in line 109 which is making use of an outdated API. + ``` java + 109 flyway.setDataSource(this.dataSource()); + ``` + +
+ + To resolve this issue, there are alternative options available in the new version of the dependency that can replace the incompatible method currently used in the client. You can consider substituting the existing method with one of the following options provided by the new version of the dependency + ``` java + void setDataSource(String,String,String); + ``` +
+ *
+ Method getClassLoader() which has been removed in the new version of the dependency + + *
+ The failure is identified from the logs generated in the build process. + + * >[[ERROR] /nem/nis/src/main/java/org/nem/specific/deploy/appconfig/NisAppConfig.java:[110,23] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:2070) + * An error was detected in line 110 which is making use of an outdated API. + ``` java + 110 org.nem.specific.deploy.appconfig.NisAppConfig.class.getClassLoader(); + ``` + +
+ + To address this incompatibility, there are 2 alternative options available in the new version of the dependency that can replace the incompatible method currently used in the client. You can consider substituting the existing method with one of the following options provided by the new version of the dependency: + ``` java + ClassLoader getClassLoader(); + ``` + ``` java + ClassLoader getClassLoader(); + ``` +
+ *
+ Method setClassLoader(java.lang.ClassLoader) which has been removed in the new version of the dependency + + *
+ The failure is identified from the logs generated in the build process. + + * >[[ERROR] /nem/nis/src/main/java/org/nem/specific/deploy/appconfig/NisAppConfig.java:[110,23] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:2070) + * An error was detected in line 110 which is making use of an outdated API. + ``` java + 110 flyway.setClassLoader(org.nem.specific.deploy.appconfig.NisAppConfig.class.getClassLoader()); + ``` + +
+ + To resolve this issue, there are alternative options available in the new version of the dependency that can replace the incompatible method currently used in the client. You can consider substituting the existing method with one of the following options provided by the new version of the dependency + ``` java + void setClassLoader(ClassLoader); + ``` +
+ *
+ Method setValidateOnMigrate(java.lang.Boolean) which has been removed in the new version of the dependency + + *
+ The failure is identified from the logs generated in the build process. + + * >[[ERROR] /nem/nis/src/main/java/org/nem/specific/deploy/appconfig/NisAppConfig.java:[112,23] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:2076) + * An error was detected in line 112 which is making use of an outdated API. + ``` java + 112 flyway.setValidateOnMigrate(java.lang.Boolean.valueOf(prop.getProperty("flyway.validate"))); + ``` + +
+ + To resolve this issue, there are alternative options available in the new version of the dependency that can replace the incompatible method currently used in the client. You can consider substituting the existing method with one of the following options provided by the new version of the dependency + ``` java + void setValidateOnMigrate(Boolean); + ``` +
+ + diff --git a/Explanations/d38182a8a0fe1ec039aed97e103864fce717a0be.md b/Explanations/d38182a8a0fe1ec039aed97e103864fce717a0be.md new file mode 100644 index 0000000..96e99bf --- /dev/null +++ b/Explanations/d38182a8a0fe1ec039aed97e103864fce717a0be.md @@ -0,0 +1,21 @@ +CI detected that the dependency upgrade from version **http-v1.1.4** to **http-v1.2.1** has failed. Here are details to help you understand and fix the problem: +1. Your client utilizes **1** instruction which has been modified in the new version of the dependency. + * Method name() which has been removed in the new version of the dependency + + * The failure is identified from the logs generated in the build process. + + * >[[ERROR] /docker-adapter/src/test/java/com/artipie/docker/http/AuthTest.java:[353,60] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1209) + * An error was detected in line 353 which is making use of an outdated API. + ``` java + 353 user.name(); + ``` + + To address this incompatibility, there are 2 alternative options available in the new version of the dependency that can replace the incompatible method currently used in the client. You can consider substituting the existing method with one of the following options provided by the new version of the dependency: + ``` java + String name(); + ``` + ``` java + String name(); + ``` + + diff --git a/Explanations/d3af06df4613be146bb9f8034e1a8a3098050c82.md b/Explanations/d3af06df4613be146bb9f8034e1a8a3098050c82.md new file mode 100644 index 0000000..ed8993c --- /dev/null +++ b/Explanations/d3af06df4613be146bb9f8034e1a8a3098050c82.md @@ -0,0 +1,83 @@ +CI detected that the dependency upgrade from version **jetty-server-8.1.11.v20130520** to **jetty-server-11.0.8** has failed. Here are details to help you understand and fix the problem: +1. Your client utilizes **4** instructions which has been modified in the new version of the dependency. + *
+ Method getLocalPort() which has been removed in the new version of the dependency + + *
+ The failure is identified from the logs generated in the build process. + + * >[[ERROR] /jadler/jadler-jetty/src/main/java/net/jadler/stubbing/server/jetty/JettyStubHttpServer.java:[80,28] error: cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:848) + * An error was detected in line 80 which is making use of an outdated API. + ``` java + 80 httpConnector.getLocalPort(); + ``` + +
+ + To address this incompatibility, there are 2 alternative options available in the new version of the dependency that can replace the incompatible method currently used in the client. You can consider substituting the existing method with one of the following options provided by the new version of the dependency: + ``` java + int getLocalPort(); + ``` + ``` java + int getLocalPort(); + ``` +
+ *
+ Method setSendDateHeader(boolean) which has been removed in the new version of the dependency + + *
+ The failure is identified from the logs generated in the build process. + + * >[[ERROR] /jadler/jadler-jetty/src/main/java/net/jadler/stubbing/server/jetty/JettyStubHttpServer.java:[34,19] error: cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:839) + * An error was detected in line 34 which is making use of an outdated API. + ``` java + 34 this.server.setSendDateHeader(true); + ``` + +
+ + To resolve this issue, there are alternative options available in the new version of the dependency that can replace the incompatible method currently used in the client. You can consider substituting the existing method with one of the following options provided by the new version of the dependency + ``` java + void setSendDateHeader(boolean); + ``` +
+ *
+ Method setSendServerVersion(boolean) which has been removed in the new version of the dependency + + *
+ The failure is identified from the logs generated in the build process. + + * >[[ERROR] /jadler/jadler-jetty/src/main/java/net/jadler/stubbing/server/jetty/JettyStubHttpServer.java:[33,19] error: cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:836) + * An error was detected in line 33 which is making use of an outdated API. + ``` java + 33 this.server.setSendServerVersion(false); + ``` + +
+ + To resolve this issue, there are alternative options available in the new version of the dependency that can replace the incompatible method currently used in the client. You can consider substituting the existing method with one of the following options provided by the new version of the dependency + ``` java + void setSendServerVersion(boolean); + ``` +
+ *
+ Method setPort(int) which has been removed in the new version of the dependency + + *
+ The failure is identified from the logs generated in the build process. + + * >[[ERROR] /jadler/jadler-jetty/src/main/java/net/jadler/stubbing/server/jetty/JettyStubHttpServer.java:[37,26] error: cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:845) + * An error was detected in line 37 which is making use of an outdated API. + ``` java + 37 this.httpConnector.setPort(port); + ``` + +
+ + To resolve this issue, there are alternative options available in the new version of the dependency that can replace the incompatible method currently used in the client. You can consider substituting the existing method with one of the following options provided by the new version of the dependency + ``` java + void setPort(int); + ``` +
+ + diff --git a/Explanations/d54b56b91c11f21b97d4903143b04b7c1f10c255.md b/Explanations/d54b56b91c11f21b97d4903143b04b7c1f10c255.md new file mode 100644 index 0000000..c21789c --- /dev/null +++ b/Explanations/d54b56b91c11f21b97d4903143b04b7c1f10c255.md @@ -0,0 +1,21 @@ +CI detected that the dependency upgrade from version **google-cloud-pubsublite-0.6.0** to **google-cloud-pubsublite-0.18.0** has failed. Here are details to help you understand and fix the problem: +1. Your client utilizes **1** instruction which has been modified in the new version of the dependency. + * Method of() which has been removed in the new version of the dependency + + * The failure is identified from the logs generated in the build process. + + * >[[ERROR] /java-pubsub-group-kafka-connector/src/main/java/com/google/pubsublite/kafka/sink/PublisherFactoryImpl.java:[53,17] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1114) + * An error was detected in line 53 which is making use of an outdated API. + ``` java + 53 com.google.cloud.pubsublite.internal.wire.PubsubContext.of(com.google.pubsublite.kafka.sink.PublisherFactoryImpl.FRAMEWORK); + ``` + + To address this incompatibility, there are 2 alternative options available in the new version of the dependency that can replace the incompatible method currently used in the client. You can consider substituting the existing method with one of the following options provided by the new version of the dependency: + ``` java + CloudRegion of(String); + ``` + ``` java + CloudRegionOrZone of(CloudRegion); + ``` + + diff --git a/Explanations/dc9f7910968cd0aa2090e390045ae053693e839a.md b/Explanations/dc9f7910968cd0aa2090e390045ae053693e839a.md new file mode 100644 index 0000000..aa4e363 --- /dev/null +++ b/Explanations/dc9f7910968cd0aa2090e390045ae053693e839a.md @@ -0,0 +1,121 @@ +CI detected that the dependency upgrade from version **flyway-core-3.2.1** to **flyway-core-9.8.3** has failed. Here are details to help you understand and fix the problem: +1. Your client utilizes **6** instructions which has been modified in the new version of the dependency. + *
+ Method valueOf(java.lang.String) which has been removed in the new version of the dependency + + *
+ The failure is identified from the logs generated in the build process. + + * >[[ERROR] /nem/nis/src/main/java/org/nem/specific/deploy/appconfig/NisAppConfig.java:[112,23] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:2076) + * An error was detected in line 112 which is making use of an outdated API. + ``` java + 112 java.lang.Boolean.valueOf(prop.getProperty("flyway.validate")); + ``` + +
+ + To resolve this issue, there are alternative options available in the new version of the dependency that can replace the incompatible method currently used in the client. You can consider substituting the existing method with one of the following options provided by the new version of the dependency + ``` java + Event valueOf(String); + ``` +
+ *
+ Method setLocations(java.lang.String) which has been removed in the new version of the dependency + + *
+ The failure is identified from the logs generated in the build process. + + * >[[ERROR] /nem/nis/src/main/java/org/nem/specific/deploy/appconfig/NisAppConfig.java:[111,23] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:2073) + * An error was detected in line 111 which is making use of an outdated API. + ``` java + 111 flyway.setLocations(prop.getProperty("flyway.locations")); + ``` + +
+ + To resolve this issue, there are alternative options available in the new version of the dependency that can replace the incompatible method currently used in the client. You can consider substituting the existing method with one of the following options provided by the new version of the dependency + ``` java + void setLocations(Location[]); + ``` +
+ *
+ Method setDataSource(javax.sql.DataSource) which has been removed in the new version of the dependency + + *
+ The failure is identified from the logs generated in the build process. + + * >[[ERROR] /nem/nis/src/main/java/org/nem/specific/deploy/appconfig/NisAppConfig.java:[109,23] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:2067) + * An error was detected in line 109 which is making use of an outdated API. + ``` java + 109 flyway.setDataSource(this.dataSource()); + ``` + +
+ + To resolve this issue, there are alternative options available in the new version of the dependency that can replace the incompatible method currently used in the client. You can consider substituting the existing method with one of the following options provided by the new version of the dependency + ``` java + void setDataSource(DataSource); + ``` +
+ *
+ Method getClassLoader() which has been removed in the new version of the dependency + + *
+ The failure is identified from the logs generated in the build process. + + * >[[ERROR] /nem/nis/src/main/java/org/nem/specific/deploy/appconfig/NisAppConfig.java:[110,23] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:2070) + * An error was detected in line 110 which is making use of an outdated API. + ``` java + 110 org.nem.specific.deploy.appconfig.NisAppConfig.class.getClassLoader(); + ``` + +
+ + To address this incompatibility, there are 2 alternative options available in the new version of the dependency that can replace the incompatible method currently used in the client. You can consider substituting the existing method with one of the following options provided by the new version of the dependency: + ``` java + ClassLoader getClassLoader(); + ``` + ``` java + ClassLoader getClassLoader(); + ``` +
+ *
+ Method setClassLoader(java.lang.ClassLoader) which has been removed in the new version of the dependency + + *
+ The failure is identified from the logs generated in the build process. + + * >[[ERROR] /nem/nis/src/main/java/org/nem/specific/deploy/appconfig/NisAppConfig.java:[110,23] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:2070) + * An error was detected in line 110 which is making use of an outdated API. + ``` java + 110 flyway.setClassLoader(org.nem.specific.deploy.appconfig.NisAppConfig.class.getClassLoader()); + ``` + +
+ + To resolve this issue, there are alternative options available in the new version of the dependency that can replace the incompatible method currently used in the client. You can consider substituting the existing method with one of the following options provided by the new version of the dependency + ``` java + void setClassLoader(ClassLoader); + ``` +
+ *
+ Method setValidateOnMigrate(java.lang.Boolean) which has been removed in the new version of the dependency + + *
+ The failure is identified from the logs generated in the build process. + + * >[[ERROR] /nem/nis/src/main/java/org/nem/specific/deploy/appconfig/NisAppConfig.java:[112,23] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:2076) + * An error was detected in line 112 which is making use of an outdated API. + ``` java + 112 flyway.setValidateOnMigrate(java.lang.Boolean.valueOf(prop.getProperty("flyway.validate"))); + ``` + +
+ + To resolve this issue, there are alternative options available in the new version of the dependency that can replace the incompatible method currently used in the client. You can consider substituting the existing method with one of the following options provided by the new version of the dependency + ``` java + void setValidateOnMigrate(boolean); + ``` +
+ + diff --git a/Explanations/e70bd198fa1e1d65f86e071b8ebdd021141cfa95.md b/Explanations/e70bd198fa1e1d65f86e071b8ebdd021141cfa95.md new file mode 100644 index 0000000..a7964ef --- /dev/null +++ b/Explanations/e70bd198fa1e1d65f86e071b8ebdd021141cfa95.md @@ -0,0 +1,109 @@ +CI detected that the dependency upgrade from version **tinspin-indexes-1.7.1** to **tinspin-indexes-2.0.1** has failed. Here are details to help you understand and fix the problem: +1. Your client utilizes **4** instructions which has been modified in the new version of the dependency. + *
+ Method size() which has been removed in the new version of the dependency + + *
+ The failure is identified from the logs generated in the build process. + + * >[[ERROR] /PGS/src/main/java/micycle/pgs/PGS_PointSet.java:[70,53] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:2133) + * An error was detected in line 70 which is making use of an outdated API. + ``` java + 70 tree.size(); + ``` + +
+ + To address this incompatibility, there are 2 alternative options available in the new version of the dependency that can replace the incompatible method currently used in the client. You can consider substituting the existing method with one of the following options provided by the new version of the dependency: + ``` java + int size(); + ``` + ``` java + int size(); + ``` +
+ *
+ Method dist() which has been removed in the new version of the dependency + + *
+ The failure is identified from the logs generated in the build process. + + * >[[ERROR] /PGS/src/main/java/micycle/pgs/PGS_PointSet.java:[70,53] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:2133) + * An error was detected in line 70 which is making use of an outdated API. + ``` java + 70 tree.query1NN(coords).dist(); + ``` + * >[[ERROR] /PGS/src/main/java/micycle/pgs/PGS_PointSet.java:[70,53] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:2133) + * An error was detected in line 70 which is making use of an outdated API. + ``` java + 70 tree.query1NN(coords).dist(); + ``` + +
+ + To address this incompatibility, there are 2 alternative options available in the new version of the dependency that can replace the incompatible method currently used in the client. You can consider substituting the existing method with one of the following options provided by the new version of the dependency: + ``` java + double dist(double[],double[],double[]); + ``` + ``` java + double dist(double[],double[],double[]); + ``` +
+ *
+ Method create(int) which has been removed in the new version of the dependency + + *
+ The failure is identified from the logs generated in the build process. + + * >[[ERROR] /PGS/src/main/java/micycle/pgs/PGS_Meshing.java:[164,23] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:2142) + * An error was detected in line 164 which is making use of an outdated API. + ``` java + 164 org.tinspin.index.kdtree.KDTree.create(2, (p1, p2) -> { + final double deltaX = p1[0] - p2[0]; + final double deltaY = p1[1] - p2[1]; + return java.lang.Math.sqrt((deltaX * deltaX) + (deltaY * deltaY)); +}); + ``` + +
+ + To address this incompatibility, there are 2 alternative options available in the new version of the dependency that can replace the incompatible method currently used in the client. You can consider substituting the existing method with one of the following options provided by the new version of the dependency: + ``` java + Index$PointEntry create(double[],Object); + ``` + ``` java + CoverTree create(int,double,PointDistance); + ``` +
+ *
+ Method query1NN(double[]) which has been removed in the new version of the dependency + + *
+ The failure is identified from the logs generated in the build process. + + * >[[ERROR] /PGS/src/main/java/micycle/pgs/PGS_CirclePacking.java:[226,31] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:2136) + * An error was detected in line 226 which is making use of an outdated API. + ``` java + 226 tree.query1NN(new double[]{ p.x, p.y, largestR }); + ``` + * >[[ERROR] /PGS/src/main/java/micycle/pgs/PGS_CirclePacking.java:[226,31] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:2136) + * An error was detected in line 226 which is making use of an outdated API. + ``` java + 226 tree.query1NN(new double[]{ p.x, p.y, largestR }); + ``` + * >[[ERROR] /PGS/src/main/java/micycle/pgs/PGS_PointSet.java:[70,53] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:2133) + * An error was detected in line 70 which is making use of an outdated API. + ``` java + 70 tree.query1NN(coords); + ``` + * >[[ERROR] /PGS/src/main/java/micycle/pgs/PGS_PointSet.java:[70,53] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:2133) + * An error was detected in line 70 which is making use of an outdated API. + ``` java + 70 tree.query1NN(coords); + ``` + +
+ +
+ + diff --git a/Explanations/ea03f6488449fcfe8cd0a678b4c64891e1427a32.md b/Explanations/ea03f6488449fcfe8cd0a678b4c64891e1427a32.md new file mode 100644 index 0000000..fdce77a --- /dev/null +++ b/Explanations/ea03f6488449fcfe8cd0a678b4c64891e1427a32.md @@ -0,0 +1,636 @@ +CI detected that the dependency upgrade from version **jedis-3.9.0** to **jedis-4.3.2** has failed. Here are details to help you understand and fix the problem: +1. Your client utilizes **3** instructions which has been modified in the new version of the dependency. + *
+ Method sendCommand(java.lang.String,java.lang.String) which has been removed in the new version of the dependency + + *
+ The failure is identified from the logs generated in the build process. + + * >[[ERROR] /JRedisGraph/src/main/java/com/redislabs/redisgraph/impl/api/RedisGraphPipeline.java:[39,9] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1166) + * An error was detected in line 39 which is making use of an outdated API. + ``` java + 39 client.sendCommand(RedisGraphCommand.QUERY, graphId, query, com.redislabs.redisgraph.impl.Utils.COMPACT_STRING); + ``` + * >[[ERROR] /JRedisGraph/src/main/java/com/redislabs/redisgraph/impl/api/RedisGraphPipeline.java:[39,9] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1166) + * An error was detected in line 39 which is making use of an outdated API. + ``` java + 39 client.sendCommand(RedisGraphCommand.QUERY, graphId, query, com.redislabs.redisgraph.impl.Utils.COMPACT_STRING); + ``` + * >[[ERROR] /JRedisGraph/src/main/java/com/redislabs/redisgraph/impl/api/RedisGraphPipeline.java:[57,9] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1172) + * An error was detected in line 57 which is making use of an outdated API. + ``` java + 57 client.sendCommand(RedisGraphCommand.RO_QUERY, graphId, query, com.redislabs.redisgraph.impl.Utils.COMPACT_STRING); + ``` + * >[[ERROR] /JRedisGraph/src/main/java/com/redislabs/redisgraph/impl/api/RedisGraphPipeline.java:[57,9] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1172) + * An error was detected in line 57 which is making use of an outdated API. + ``` java + 57 client.sendCommand(RedisGraphCommand.RO_QUERY, graphId, query, com.redislabs.redisgraph.impl.Utils.COMPACT_STRING); + ``` + * >[[ERROR] /JRedisGraph/src/main/java/com/redislabs/redisgraph/impl/api/RedisGraphPipeline.java:[78,9] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1178) + * An error was detected in line 78 which is making use of an outdated API. + ``` java + 78 client.sendCommand(RedisGraphCommand.QUERY, graphId, query, com.redislabs.redisgraph.impl.Utils.COMPACT_STRING, com.redislabs.redisgraph.impl.Utils.TIMEOUT_STRING, java.lang.Long.toString(timeout)); + ``` + * >[[ERROR] /JRedisGraph/src/main/java/com/redislabs/redisgraph/impl/api/RedisGraphPipeline.java:[78,9] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1178) + * An error was detected in line 78 which is making use of an outdated API. + ``` java + 78 client.sendCommand(RedisGraphCommand.QUERY, graphId, query, com.redislabs.redisgraph.impl.Utils.COMPACT_STRING, com.redislabs.redisgraph.impl.Utils.TIMEOUT_STRING, java.lang.Long.toString(timeout)); + ``` + * >[[ERROR] /JRedisGraph/src/main/java/com/redislabs/redisgraph/impl/api/RedisGraphPipeline.java:[100,9] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1184) + * An error was detected in line 100 which is making use of an outdated API. + ``` java + 100 client.sendCommand(RedisGraphCommand.RO_QUERY, graphId, query, com.redislabs.redisgraph.impl.Utils.COMPACT_STRING, com.redislabs.redisgraph.impl.Utils.TIMEOUT_STRING, java.lang.Long.toString(timeout)); + ``` + * >[[ERROR] /JRedisGraph/src/main/java/com/redislabs/redisgraph/impl/api/RedisGraphPipeline.java:[100,9] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1184) + * An error was detected in line 100 which is making use of an outdated API. + ``` java + 100 client.sendCommand(RedisGraphCommand.RO_QUERY, graphId, query, com.redislabs.redisgraph.impl.Utils.COMPACT_STRING, com.redislabs.redisgraph.impl.Utils.TIMEOUT_STRING, java.lang.Long.toString(timeout)); + ``` + * >[[ERROR] /JRedisGraph/src/main/java/com/redislabs/redisgraph/impl/api/RedisGraphPipeline.java:[121,9] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1190) + * An error was detected in line 121 which is making use of an outdated API. + ``` java + 121 client.sendCommand(RedisGraphCommand.QUERY, graphId, preparedQuery, com.redislabs.redisgraph.impl.Utils.COMPACT_STRING); + ``` + * >[[ERROR] /JRedisGraph/src/main/java/com/redislabs/redisgraph/impl/api/RedisGraphPipeline.java:[121,9] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1190) + * An error was detected in line 121 which is making use of an outdated API. + ``` java + 121 client.sendCommand(RedisGraphCommand.QUERY, graphId, preparedQuery, com.redislabs.redisgraph.impl.Utils.COMPACT_STRING); + ``` + * >[[ERROR] /JRedisGraph/src/main/java/com/redislabs/redisgraph/impl/api/RedisGraphPipeline.java:[141,9] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1196) + * An error was detected in line 141 which is making use of an outdated API. + ``` java + 141 client.sendCommand(RedisGraphCommand.RO_QUERY, graphId, preparedQuery, com.redislabs.redisgraph.impl.Utils.COMPACT_STRING); + ``` + * >[[ERROR] /JRedisGraph/src/main/java/com/redislabs/redisgraph/impl/api/RedisGraphPipeline.java:[141,9] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1196) + * An error was detected in line 141 which is making use of an outdated API. + ``` java + 141 client.sendCommand(RedisGraphCommand.RO_QUERY, graphId, preparedQuery, com.redislabs.redisgraph.impl.Utils.COMPACT_STRING); + ``` + * >[[ERROR] /JRedisGraph/src/main/java/com/redislabs/redisgraph/impl/api/RedisGraphPipeline.java:[165,9] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1202) + * An error was detected in line 165 which is making use of an outdated API. + ``` java + 165 client.sendCommand(RedisGraphCommand.QUERY, graphId, preparedQuery, com.redislabs.redisgraph.impl.Utils.COMPACT_STRING, com.redislabs.redisgraph.impl.Utils.TIMEOUT_STRING, java.lang.Long.toString(timeout)); + ``` + * >[[ERROR] /JRedisGraph/src/main/java/com/redislabs/redisgraph/impl/api/RedisGraphPipeline.java:[165,9] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1202) + * An error was detected in line 165 which is making use of an outdated API. + ``` java + 165 client.sendCommand(RedisGraphCommand.QUERY, graphId, preparedQuery, com.redislabs.redisgraph.impl.Utils.COMPACT_STRING, com.redislabs.redisgraph.impl.Utils.TIMEOUT_STRING, java.lang.Long.toString(timeout)); + ``` + * >[[ERROR] /JRedisGraph/src/main/java/com/redislabs/redisgraph/impl/api/RedisGraphPipeline.java:[190,9] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1208) + * An error was detected in line 190 which is making use of an outdated API. + ``` java + 190 client.sendCommand(RedisGraphCommand.RO_QUERY, graphId, preparedQuery, com.redislabs.redisgraph.impl.Utils.COMPACT_STRING, com.redislabs.redisgraph.impl.Utils.TIMEOUT_STRING, java.lang.Long.toString(timeout)); + ``` + * >[[ERROR] /JRedisGraph/src/main/java/com/redislabs/redisgraph/impl/api/RedisGraphPipeline.java:[190,9] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1208) + * An error was detected in line 190 which is making use of an outdated API. + ``` java + 190 client.sendCommand(RedisGraphCommand.RO_QUERY, graphId, preparedQuery, com.redislabs.redisgraph.impl.Utils.COMPACT_STRING, com.redislabs.redisgraph.impl.Utils.TIMEOUT_STRING, java.lang.Long.toString(timeout)); + ``` + * >[[ERROR] /JRedisGraph/src/main/java/com/redislabs/redisgraph/impl/api/RedisGraphPipeline.java:[246,9] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1214) + * An error was detected in line 246 which is making use of an outdated API. + ``` java + 246 client.sendCommand(RedisGraphCommand.DELETE, graphId); + ``` + * >[[ERROR] /JRedisGraph/src/main/java/com/redislabs/redisgraph/impl/api/RedisGraphPipeline.java:[246,9] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1214) + * An error was detected in line 246 which is making use of an outdated API. + ``` java + 246 client.sendCommand(RedisGraphCommand.DELETE, graphId); + ``` + * >[[ERROR] /JRedisGraph/src/main/java/com/redislabs/redisgraph/impl/api/RedisGraphTransaction.java:[41,9] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1095) + * An error was detected in line 41 which is making use of an outdated API. + ``` java + 41 client.sendCommand(RedisGraphCommand.QUERY, graphId, query, com.redislabs.redisgraph.impl.Utils.COMPACT_STRING); + ``` + * >[[ERROR] /JRedisGraph/src/main/java/com/redislabs/redisgraph/impl/api/RedisGraphTransaction.java:[41,9] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1095) + * An error was detected in line 41 which is making use of an outdated API. + ``` java + 41 client.sendCommand(RedisGraphCommand.QUERY, graphId, query, com.redislabs.redisgraph.impl.Utils.COMPACT_STRING); + ``` + * >[[ERROR] /JRedisGraph/src/main/java/com/redislabs/redisgraph/impl/api/RedisGraphTransaction.java:[59,9] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1101) + * An error was detected in line 59 which is making use of an outdated API. + ``` java + 59 client.sendCommand(RedisGraphCommand.RO_QUERY, graphId, query, com.redislabs.redisgraph.impl.Utils.COMPACT_STRING); + ``` + * >[[ERROR] /JRedisGraph/src/main/java/com/redislabs/redisgraph/impl/api/RedisGraphTransaction.java:[59,9] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1101) + * An error was detected in line 59 which is making use of an outdated API. + ``` java + 59 client.sendCommand(RedisGraphCommand.RO_QUERY, graphId, query, com.redislabs.redisgraph.impl.Utils.COMPACT_STRING); + ``` + * >[[ERROR] /JRedisGraph/src/main/java/com/redislabs/redisgraph/impl/api/RedisGraphTransaction.java:[80,9] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1107) + * An error was detected in line 80 which is making use of an outdated API. + ``` java + 80 client.sendCommand(RedisGraphCommand.QUERY, graphId, query, com.redislabs.redisgraph.impl.Utils.COMPACT_STRING, com.redislabs.redisgraph.impl.Utils.TIMEOUT_STRING, java.lang.Long.toString(timeout)); + ``` + * >[[ERROR] /JRedisGraph/src/main/java/com/redislabs/redisgraph/impl/api/RedisGraphTransaction.java:[80,9] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1107) + * An error was detected in line 80 which is making use of an outdated API. + ``` java + 80 client.sendCommand(RedisGraphCommand.QUERY, graphId, query, com.redislabs.redisgraph.impl.Utils.COMPACT_STRING, com.redislabs.redisgraph.impl.Utils.TIMEOUT_STRING, java.lang.Long.toString(timeout)); + ``` + * >[[ERROR] /JRedisGraph/src/main/java/com/redislabs/redisgraph/impl/api/RedisGraphTransaction.java:[102,9] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1113) + * An error was detected in line 102 which is making use of an outdated API. + ``` java + 102 client.sendCommand(RedisGraphCommand.RO_QUERY, graphId, query, com.redislabs.redisgraph.impl.Utils.COMPACT_STRING, com.redislabs.redisgraph.impl.Utils.TIMEOUT_STRING, java.lang.Long.toString(timeout)); + ``` + * >[[ERROR] /JRedisGraph/src/main/java/com/redislabs/redisgraph/impl/api/RedisGraphTransaction.java:[102,9] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1113) + * An error was detected in line 102 which is making use of an outdated API. + ``` java + 102 client.sendCommand(RedisGraphCommand.RO_QUERY, graphId, query, com.redislabs.redisgraph.impl.Utils.COMPACT_STRING, com.redislabs.redisgraph.impl.Utils.TIMEOUT_STRING, java.lang.Long.toString(timeout)); + ``` + * >[[ERROR] /JRedisGraph/src/main/java/com/redislabs/redisgraph/impl/api/RedisGraphTransaction.java:[126,9] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1119) + * An error was detected in line 126 which is making use of an outdated API. + ``` java + 126 client.sendCommand(RedisGraphCommand.QUERY, graphId, preparedQuery, com.redislabs.redisgraph.impl.Utils.COMPACT_STRING); + ``` + * >[[ERROR] /JRedisGraph/src/main/java/com/redislabs/redisgraph/impl/api/RedisGraphTransaction.java:[126,9] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1119) + * An error was detected in line 126 which is making use of an outdated API. + ``` java + 126 client.sendCommand(RedisGraphCommand.QUERY, graphId, preparedQuery, com.redislabs.redisgraph.impl.Utils.COMPACT_STRING); + ``` + * >[[ERROR] /JRedisGraph/src/main/java/com/redislabs/redisgraph/impl/api/RedisGraphTransaction.java:[146,9] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1125) + * An error was detected in line 146 which is making use of an outdated API. + ``` java + 146 client.sendCommand(RedisGraphCommand.QUERY, graphId, preparedQuery, com.redislabs.redisgraph.impl.Utils.COMPACT_STRING); + ``` + * >[[ERROR] /JRedisGraph/src/main/java/com/redislabs/redisgraph/impl/api/RedisGraphTransaction.java:[146,9] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1125) + * An error was detected in line 146 which is making use of an outdated API. + ``` java + 146 client.sendCommand(RedisGraphCommand.QUERY, graphId, preparedQuery, com.redislabs.redisgraph.impl.Utils.COMPACT_STRING); + ``` + * >[[ERROR] /JRedisGraph/src/main/java/com/redislabs/redisgraph/impl/api/RedisGraphTransaction.java:[166,9] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1131) + * An error was detected in line 166 which is making use of an outdated API. + ``` java + 166 client.sendCommand(RedisGraphCommand.RO_QUERY, graphId, preparedQuery, com.redislabs.redisgraph.impl.Utils.COMPACT_STRING); + ``` + * >[[ERROR] /JRedisGraph/src/main/java/com/redislabs/redisgraph/impl/api/RedisGraphTransaction.java:[166,9] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1131) + * An error was detected in line 166 which is making use of an outdated API. + ``` java + 166 client.sendCommand(RedisGraphCommand.RO_QUERY, graphId, preparedQuery, com.redislabs.redisgraph.impl.Utils.COMPACT_STRING); + ``` + * >[[ERROR] /JRedisGraph/src/main/java/com/redislabs/redisgraph/impl/api/RedisGraphTransaction.java:[189,9] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1137) + * An error was detected in line 189 which is making use of an outdated API. + ``` java + 189 client.sendCommand(RedisGraphCommand.QUERY, graphId, preparedQuery, com.redislabs.redisgraph.impl.Utils.COMPACT_STRING, com.redislabs.redisgraph.impl.Utils.TIMEOUT_STRING, java.lang.Long.toString(timeout)); + ``` + * >[[ERROR] /JRedisGraph/src/main/java/com/redislabs/redisgraph/impl/api/RedisGraphTransaction.java:[189,9] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1137) + * An error was detected in line 189 which is making use of an outdated API. + ``` java + 189 client.sendCommand(RedisGraphCommand.QUERY, graphId, preparedQuery, com.redislabs.redisgraph.impl.Utils.COMPACT_STRING, com.redislabs.redisgraph.impl.Utils.TIMEOUT_STRING, java.lang.Long.toString(timeout)); + ``` + * >[[ERROR] /JRedisGraph/src/main/java/com/redislabs/redisgraph/impl/api/RedisGraphTransaction.java:[213,9] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1143) + * An error was detected in line 213 which is making use of an outdated API. + ``` java + 213 client.sendCommand(RedisGraphCommand.RO_QUERY, graphId, preparedQuery, com.redislabs.redisgraph.impl.Utils.COMPACT_STRING, com.redislabs.redisgraph.impl.Utils.TIMEOUT_STRING, java.lang.Long.toString(timeout)); + ``` + * >[[ERROR] /JRedisGraph/src/main/java/com/redislabs/redisgraph/impl/api/RedisGraphTransaction.java:[213,9] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1143) + * An error was detected in line 213 which is making use of an outdated API. + ``` java + 213 client.sendCommand(RedisGraphCommand.RO_QUERY, graphId, preparedQuery, com.redislabs.redisgraph.impl.Utils.COMPACT_STRING, com.redislabs.redisgraph.impl.Utils.TIMEOUT_STRING, java.lang.Long.toString(timeout)); + ``` + * >[[ERROR] /JRedisGraph/src/main/java/com/redislabs/redisgraph/impl/api/RedisGraphTransaction.java:[265,9] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1149) + * An error was detected in line 265 which is making use of an outdated API. + ``` java + 265 client.sendCommand(RedisGraphCommand.DELETE, graphId); + ``` + * >[[ERROR] /JRedisGraph/src/main/java/com/redislabs/redisgraph/impl/api/RedisGraphTransaction.java:[265,9] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1149) + * An error was detected in line 265 which is making use of an outdated API. + ``` java + 265 client.sendCommand(RedisGraphCommand.DELETE, graphId); + ``` + +
+ + To resolve this issue, there are alternative options available in the new version of the dependency that can replace the incompatible method currently used in the client. You can consider substituting the existing method with one of the following options provided by the new version of the dependency + ``` java + void sendCommand(ProtocolCommand,Rawable); + ``` +
+ *
+ Method getResponse(com.redislabs.redisgraph.impl.api.RedisGraphPipeline$1) which has been removed in the new version of the dependency + + *
+ The failure is identified from the logs generated in the build process. + + * >[[ERROR] /JRedisGraph/src/main/java/com/redislabs/redisgraph/impl/api/RedisGraphPipeline.java:[40,16] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1169) + * An error was detected in line 40 which is making use of an outdated API. + ``` java + 40 getResponse(new redis.clients.jedis.Builder() { + @java.lang.SuppressWarnings("unchecked") + @java.lang.Override + public com.redislabs.redisgraph.ResultSet build(java.lang.Object o) { + return new com.redislabs.redisgraph.impl.resultset.ResultSetImpl(((java.util.List) (o)), redisGraph, caches.getGraphCache(graphId)); + } +}); + ``` + * >[[ERROR] /JRedisGraph/src/main/java/com/redislabs/redisgraph/impl/api/RedisGraphPipeline.java:[40,16] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1169) + * An error was detected in line 40 which is making use of an outdated API. + ``` java + 40 getResponse(new redis.clients.jedis.Builder() { + @java.lang.SuppressWarnings("unchecked") + @java.lang.Override + public com.redislabs.redisgraph.ResultSet build(java.lang.Object o) { + return new com.redislabs.redisgraph.impl.resultset.ResultSetImpl(((java.util.List) (o)), redisGraph, caches.getGraphCache(graphId)); + } +}); + ``` + * >[[ERROR] /JRedisGraph/src/main/java/com/redislabs/redisgraph/impl/api/RedisGraphPipeline.java:[58,16] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1175) + * An error was detected in line 58 which is making use of an outdated API. + ``` java + 58 getResponse(new redis.clients.jedis.Builder() { + @java.lang.SuppressWarnings("unchecked") + @java.lang.Override + public com.redislabs.redisgraph.ResultSet build(java.lang.Object o) { + return new com.redislabs.redisgraph.impl.resultset.ResultSetImpl(((java.util.List) (o)), redisGraph, caches.getGraphCache(graphId)); + } +}); + ``` + * >[[ERROR] /JRedisGraph/src/main/java/com/redislabs/redisgraph/impl/api/RedisGraphPipeline.java:[58,16] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1175) + * An error was detected in line 58 which is making use of an outdated API. + ``` java + 58 getResponse(new redis.clients.jedis.Builder() { + @java.lang.SuppressWarnings("unchecked") + @java.lang.Override + public com.redislabs.redisgraph.ResultSet build(java.lang.Object o) { + return new com.redislabs.redisgraph.impl.resultset.ResultSetImpl(((java.util.List) (o)), redisGraph, caches.getGraphCache(graphId)); + } +}); + ``` + * >[[ERROR] /JRedisGraph/src/main/java/com/redislabs/redisgraph/impl/api/RedisGraphPipeline.java:[80,16] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1181) + * An error was detected in line 80 which is making use of an outdated API. + ``` java + 80 getResponse(new redis.clients.jedis.Builder() { + @java.lang.SuppressWarnings("unchecked") + @java.lang.Override + public com.redislabs.redisgraph.ResultSet build(java.lang.Object o) { + return new com.redislabs.redisgraph.impl.resultset.ResultSetImpl(((java.util.List) (o)), redisGraph, caches.getGraphCache(graphId)); + } +}); + ``` + * >[[ERROR] /JRedisGraph/src/main/java/com/redislabs/redisgraph/impl/api/RedisGraphPipeline.java:[80,16] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1181) + * An error was detected in line 80 which is making use of an outdated API. + ``` java + 80 getResponse(new redis.clients.jedis.Builder() { + @java.lang.SuppressWarnings("unchecked") + @java.lang.Override + public com.redislabs.redisgraph.ResultSet build(java.lang.Object o) { + return new com.redislabs.redisgraph.impl.resultset.ResultSetImpl(((java.util.List) (o)), redisGraph, caches.getGraphCache(graphId)); + } +}); + ``` + * >[[ERROR] /JRedisGraph/src/main/java/com/redislabs/redisgraph/impl/api/RedisGraphPipeline.java:[102,16] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1187) + * An error was detected in line 102 which is making use of an outdated API. + ``` java + 102 getResponse(new redis.clients.jedis.Builder() { + @java.lang.SuppressWarnings("unchecked") + @java.lang.Override + public com.redislabs.redisgraph.ResultSet build(java.lang.Object o) { + return new com.redislabs.redisgraph.impl.resultset.ResultSetImpl(((java.util.List) (o)), redisGraph, caches.getGraphCache(graphId)); + } +}); + ``` + * >[[ERROR] /JRedisGraph/src/main/java/com/redislabs/redisgraph/impl/api/RedisGraphPipeline.java:[102,16] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1187) + * An error was detected in line 102 which is making use of an outdated API. + ``` java + 102 getResponse(new redis.clients.jedis.Builder() { + @java.lang.SuppressWarnings("unchecked") + @java.lang.Override + public com.redislabs.redisgraph.ResultSet build(java.lang.Object o) { + return new com.redislabs.redisgraph.impl.resultset.ResultSetImpl(((java.util.List) (o)), redisGraph, caches.getGraphCache(graphId)); + } +}); + ``` + * >[[ERROR] /JRedisGraph/src/main/java/com/redislabs/redisgraph/impl/api/RedisGraphPipeline.java:[122,16] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1193) + * An error was detected in line 122 which is making use of an outdated API. + ``` java + 122 getResponse(new redis.clients.jedis.Builder() { + @java.lang.SuppressWarnings("unchecked") + @java.lang.Override + public com.redislabs.redisgraph.ResultSet build(java.lang.Object o) { + return new com.redislabs.redisgraph.impl.resultset.ResultSetImpl(((java.util.List) (o)), redisGraph, caches.getGraphCache(graphId)); + } +}); + ``` + * >[[ERROR] /JRedisGraph/src/main/java/com/redislabs/redisgraph/impl/api/RedisGraphPipeline.java:[122,16] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1193) + * An error was detected in line 122 which is making use of an outdated API. + ``` java + 122 getResponse(new redis.clients.jedis.Builder() { + @java.lang.SuppressWarnings("unchecked") + @java.lang.Override + public com.redislabs.redisgraph.ResultSet build(java.lang.Object o) { + return new com.redislabs.redisgraph.impl.resultset.ResultSetImpl(((java.util.List) (o)), redisGraph, caches.getGraphCache(graphId)); + } +}); + ``` + * >[[ERROR] /JRedisGraph/src/main/java/com/redislabs/redisgraph/impl/api/RedisGraphPipeline.java:[142,16] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1199) + * An error was detected in line 142 which is making use of an outdated API. + ``` java + 142 getResponse(new redis.clients.jedis.Builder() { + @java.lang.SuppressWarnings("unchecked") + @java.lang.Override + public com.redislabs.redisgraph.ResultSet build(java.lang.Object o) { + return new com.redislabs.redisgraph.impl.resultset.ResultSetImpl(((java.util.List) (o)), redisGraph, caches.getGraphCache(graphId)); + } +}); + ``` + * >[[ERROR] /JRedisGraph/src/main/java/com/redislabs/redisgraph/impl/api/RedisGraphPipeline.java:[142,16] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1199) + * An error was detected in line 142 which is making use of an outdated API. + ``` java + 142 getResponse(new redis.clients.jedis.Builder() { + @java.lang.SuppressWarnings("unchecked") + @java.lang.Override + public com.redislabs.redisgraph.ResultSet build(java.lang.Object o) { + return new com.redislabs.redisgraph.impl.resultset.ResultSetImpl(((java.util.List) (o)), redisGraph, caches.getGraphCache(graphId)); + } +}); + ``` + * >[[ERROR] /JRedisGraph/src/main/java/com/redislabs/redisgraph/impl/api/RedisGraphPipeline.java:[167,16] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1205) + * An error was detected in line 167 which is making use of an outdated API. + ``` java + 167 getResponse(new redis.clients.jedis.Builder() { + @java.lang.SuppressWarnings("unchecked") + @java.lang.Override + public com.redislabs.redisgraph.ResultSet build(java.lang.Object o) { + return new com.redislabs.redisgraph.impl.resultset.ResultSetImpl(((java.util.List) (o)), redisGraph, caches.getGraphCache(graphId)); + } +}); + ``` + * >[[ERROR] /JRedisGraph/src/main/java/com/redislabs/redisgraph/impl/api/RedisGraphPipeline.java:[167,16] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1205) + * An error was detected in line 167 which is making use of an outdated API. + ``` java + 167 getResponse(new redis.clients.jedis.Builder() { + @java.lang.SuppressWarnings("unchecked") + @java.lang.Override + public com.redislabs.redisgraph.ResultSet build(java.lang.Object o) { + return new com.redislabs.redisgraph.impl.resultset.ResultSetImpl(((java.util.List) (o)), redisGraph, caches.getGraphCache(graphId)); + } +}); + ``` + * >[[ERROR] /JRedisGraph/src/main/java/com/redislabs/redisgraph/impl/api/RedisGraphPipeline.java:[193,16] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1211) + * An error was detected in line 193 which is making use of an outdated API. + ``` java + 193 getResponse(new redis.clients.jedis.Builder() { + @java.lang.SuppressWarnings("unchecked") + @java.lang.Override + public com.redislabs.redisgraph.ResultSet build(java.lang.Object o) { + return new com.redislabs.redisgraph.impl.resultset.ResultSetImpl(((java.util.List) (o)), redisGraph, caches.getGraphCache(graphId)); + } +}); + ``` + * >[[ERROR] /JRedisGraph/src/main/java/com/redislabs/redisgraph/impl/api/RedisGraphPipeline.java:[193,16] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1211) + * An error was detected in line 193 which is making use of an outdated API. + ``` java + 193 getResponse(new redis.clients.jedis.Builder() { + @java.lang.SuppressWarnings("unchecked") + @java.lang.Override + public com.redislabs.redisgraph.ResultSet build(java.lang.Object o) { + return new com.redislabs.redisgraph.impl.resultset.ResultSetImpl(((java.util.List) (o)), redisGraph, caches.getGraphCache(graphId)); + } +}); + ``` + * >[[ERROR] /JRedisGraph/src/main/java/com/redislabs/redisgraph/impl/api/RedisGraphPipeline.java:[247,38] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1217) + * An error was detected in line 247 which is making use of an outdated API. + ``` java + 247 getResponse(redis.clients.jedis.BuilderFactory.STRING); + ``` + * >[[ERROR] /JRedisGraph/src/main/java/com/redislabs/redisgraph/impl/api/RedisGraphPipeline.java:[247,38] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1217) + * An error was detected in line 247 which is making use of an outdated API. + ``` java + 247 getResponse(redis.clients.jedis.BuilderFactory.STRING); + ``` + * >[[ERROR] /JRedisGraph/src/main/java/com/redislabs/redisgraph/impl/api/RedisGraphTransaction.java:[42,16] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1098) + * An error was detected in line 42 which is making use of an outdated API. + ``` java + 42 getResponse(new redis.clients.jedis.Builder() { + @java.lang.SuppressWarnings("unchecked") + @java.lang.Override + public com.redislabs.redisgraph.ResultSet build(java.lang.Object o) { + return new com.redislabs.redisgraph.impl.resultset.ResultSetImpl(((java.util.List) (o)), redisGraph, caches.getGraphCache(graphId)); + } +}); + ``` + * >[[ERROR] /JRedisGraph/src/main/java/com/redislabs/redisgraph/impl/api/RedisGraphTransaction.java:[42,16] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1098) + * An error was detected in line 42 which is making use of an outdated API. + ``` java + 42 getResponse(new redis.clients.jedis.Builder() { + @java.lang.SuppressWarnings("unchecked") + @java.lang.Override + public com.redislabs.redisgraph.ResultSet build(java.lang.Object o) { + return new com.redislabs.redisgraph.impl.resultset.ResultSetImpl(((java.util.List) (o)), redisGraph, caches.getGraphCache(graphId)); + } +}); + ``` + * >[[ERROR] /JRedisGraph/src/main/java/com/redislabs/redisgraph/impl/api/RedisGraphTransaction.java:[60,16] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1104) + * An error was detected in line 60 which is making use of an outdated API. + ``` java + 60 getResponse(new redis.clients.jedis.Builder() { + @java.lang.SuppressWarnings("unchecked") + @java.lang.Override + public com.redislabs.redisgraph.ResultSet build(java.lang.Object o) { + return new com.redislabs.redisgraph.impl.resultset.ResultSetImpl(((java.util.List) (o)), redisGraph, caches.getGraphCache(graphId)); + } +}); + ``` + * >[[ERROR] /JRedisGraph/src/main/java/com/redislabs/redisgraph/impl/api/RedisGraphTransaction.java:[60,16] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1104) + * An error was detected in line 60 which is making use of an outdated API. + ``` java + 60 getResponse(new redis.clients.jedis.Builder() { + @java.lang.SuppressWarnings("unchecked") + @java.lang.Override + public com.redislabs.redisgraph.ResultSet build(java.lang.Object o) { + return new com.redislabs.redisgraph.impl.resultset.ResultSetImpl(((java.util.List) (o)), redisGraph, caches.getGraphCache(graphId)); + } +}); + ``` + * >[[ERROR] /JRedisGraph/src/main/java/com/redislabs/redisgraph/impl/api/RedisGraphTransaction.java:[82,16] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1110) + * An error was detected in line 82 which is making use of an outdated API. + ``` java + 82 getResponse(new redis.clients.jedis.Builder() { + @java.lang.SuppressWarnings("unchecked") + @java.lang.Override + public com.redislabs.redisgraph.ResultSet build(java.lang.Object o) { + return new com.redislabs.redisgraph.impl.resultset.ResultSetImpl(((java.util.List) (o)), redisGraph, caches.getGraphCache(graphId)); + } +}); + ``` + * >[[ERROR] /JRedisGraph/src/main/java/com/redislabs/redisgraph/impl/api/RedisGraphTransaction.java:[82,16] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1110) + * An error was detected in line 82 which is making use of an outdated API. + ``` java + 82 getResponse(new redis.clients.jedis.Builder() { + @java.lang.SuppressWarnings("unchecked") + @java.lang.Override + public com.redislabs.redisgraph.ResultSet build(java.lang.Object o) { + return new com.redislabs.redisgraph.impl.resultset.ResultSetImpl(((java.util.List) (o)), redisGraph, caches.getGraphCache(graphId)); + } +}); + ``` + * >[[ERROR] /JRedisGraph/src/main/java/com/redislabs/redisgraph/impl/api/RedisGraphTransaction.java:[104,16] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1116) + * An error was detected in line 104 which is making use of an outdated API. + ``` java + 104 getResponse(new redis.clients.jedis.Builder() { + @java.lang.SuppressWarnings("unchecked") + @java.lang.Override + public com.redislabs.redisgraph.ResultSet build(java.lang.Object o) { + return new com.redislabs.redisgraph.impl.resultset.ResultSetImpl(((java.util.List) (o)), redisGraph, caches.getGraphCache(graphId)); + } +}); + ``` + * >[[ERROR] /JRedisGraph/src/main/java/com/redislabs/redisgraph/impl/api/RedisGraphTransaction.java:[104,16] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1116) + * An error was detected in line 104 which is making use of an outdated API. + ``` java + 104 getResponse(new redis.clients.jedis.Builder() { + @java.lang.SuppressWarnings("unchecked") + @java.lang.Override + public com.redislabs.redisgraph.ResultSet build(java.lang.Object o) { + return new com.redislabs.redisgraph.impl.resultset.ResultSetImpl(((java.util.List) (o)), redisGraph, caches.getGraphCache(graphId)); + } +}); + ``` + * >[[ERROR] /JRedisGraph/src/main/java/com/redislabs/redisgraph/impl/api/RedisGraphTransaction.java:[127,16] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1122) + * An error was detected in line 127 which is making use of an outdated API. + ``` java + 127 getResponse(new redis.clients.jedis.Builder() { + @java.lang.SuppressWarnings("unchecked") + @java.lang.Override + public com.redislabs.redisgraph.ResultSet build(java.lang.Object o) { + return new com.redislabs.redisgraph.impl.resultset.ResultSetImpl(((java.util.List) (o)), redisGraph, caches.getGraphCache(graphId)); + } +}); + ``` + * >[[ERROR] /JRedisGraph/src/main/java/com/redislabs/redisgraph/impl/api/RedisGraphTransaction.java:[127,16] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1122) + * An error was detected in line 127 which is making use of an outdated API. + ``` java + 127 getResponse(new redis.clients.jedis.Builder() { + @java.lang.SuppressWarnings("unchecked") + @java.lang.Override + public com.redislabs.redisgraph.ResultSet build(java.lang.Object o) { + return new com.redislabs.redisgraph.impl.resultset.ResultSetImpl(((java.util.List) (o)), redisGraph, caches.getGraphCache(graphId)); + } +}); + ``` + * >[[ERROR] /JRedisGraph/src/main/java/com/redislabs/redisgraph/impl/api/RedisGraphTransaction.java:[147,16] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1128) + * An error was detected in line 147 which is making use of an outdated API. + ``` java + 147 getResponse(new redis.clients.jedis.Builder() { + @java.lang.SuppressWarnings("unchecked") + @java.lang.Override + public com.redislabs.redisgraph.ResultSet build(java.lang.Object o) { + return new com.redislabs.redisgraph.impl.resultset.ResultSetImpl(((java.util.List) (o)), redisGraph, caches.getGraphCache(graphId)); + } +}); + ``` + * >[[ERROR] /JRedisGraph/src/main/java/com/redislabs/redisgraph/impl/api/RedisGraphTransaction.java:[147,16] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1128) + * An error was detected in line 147 which is making use of an outdated API. + ``` java + 147 getResponse(new redis.clients.jedis.Builder() { + @java.lang.SuppressWarnings("unchecked") + @java.lang.Override + public com.redislabs.redisgraph.ResultSet build(java.lang.Object o) { + return new com.redislabs.redisgraph.impl.resultset.ResultSetImpl(((java.util.List) (o)), redisGraph, caches.getGraphCache(graphId)); + } +}); + ``` + * >[[ERROR] /JRedisGraph/src/main/java/com/redislabs/redisgraph/impl/api/RedisGraphTransaction.java:[167,16] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1134) + * An error was detected in line 167 which is making use of an outdated API. + ``` java + 167 getResponse(new redis.clients.jedis.Builder() { + @java.lang.SuppressWarnings("unchecked") + @java.lang.Override + public com.redislabs.redisgraph.ResultSet build(java.lang.Object o) { + return new com.redislabs.redisgraph.impl.resultset.ResultSetImpl(((java.util.List) (o)), redisGraph, caches.getGraphCache(graphId)); + } +}); + ``` + * >[[ERROR] /JRedisGraph/src/main/java/com/redislabs/redisgraph/impl/api/RedisGraphTransaction.java:[167,16] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1134) + * An error was detected in line 167 which is making use of an outdated API. + ``` java + 167 getResponse(new redis.clients.jedis.Builder() { + @java.lang.SuppressWarnings("unchecked") + @java.lang.Override + public com.redislabs.redisgraph.ResultSet build(java.lang.Object o) { + return new com.redislabs.redisgraph.impl.resultset.ResultSetImpl(((java.util.List) (o)), redisGraph, caches.getGraphCache(graphId)); + } +}); + ``` + * >[[ERROR] /JRedisGraph/src/main/java/com/redislabs/redisgraph/impl/api/RedisGraphTransaction.java:[191,16] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1140) + * An error was detected in line 191 which is making use of an outdated API. + ``` java + 191 getResponse(new redis.clients.jedis.Builder() { + @java.lang.SuppressWarnings("unchecked") + @java.lang.Override + public com.redislabs.redisgraph.ResultSet build(java.lang.Object o) { + return new com.redislabs.redisgraph.impl.resultset.ResultSetImpl(((java.util.List) (o)), redisGraph, caches.getGraphCache(graphId)); + } +}); + ``` + * >[[ERROR] /JRedisGraph/src/main/java/com/redislabs/redisgraph/impl/api/RedisGraphTransaction.java:[191,16] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1140) + * An error was detected in line 191 which is making use of an outdated API. + ``` java + 191 getResponse(new redis.clients.jedis.Builder() { + @java.lang.SuppressWarnings("unchecked") + @java.lang.Override + public com.redislabs.redisgraph.ResultSet build(java.lang.Object o) { + return new com.redislabs.redisgraph.impl.resultset.ResultSetImpl(((java.util.List) (o)), redisGraph, caches.getGraphCache(graphId)); + } +}); + ``` + * >[[ERROR] /JRedisGraph/src/main/java/com/redislabs/redisgraph/impl/api/RedisGraphTransaction.java:[215,16] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1146) + * An error was detected in line 215 which is making use of an outdated API. + ``` java + 215 getResponse(new redis.clients.jedis.Builder() { + @java.lang.SuppressWarnings("unchecked") + @java.lang.Override + public com.redislabs.redisgraph.ResultSet build(java.lang.Object o) { + return new com.redislabs.redisgraph.impl.resultset.ResultSetImpl(((java.util.List) (o)), redisGraph, caches.getGraphCache(graphId)); + } +}); + ``` + * >[[ERROR] /JRedisGraph/src/main/java/com/redislabs/redisgraph/impl/api/RedisGraphTransaction.java:[215,16] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1146) + * An error was detected in line 215 which is making use of an outdated API. + ``` java + 215 getResponse(new redis.clients.jedis.Builder() { + @java.lang.SuppressWarnings("unchecked") + @java.lang.Override + public com.redislabs.redisgraph.ResultSet build(java.lang.Object o) { + return new com.redislabs.redisgraph.impl.resultset.ResultSetImpl(((java.util.List) (o)), redisGraph, caches.getGraphCache(graphId)); + } +}); + ``` + * >[[ERROR] /JRedisGraph/src/main/java/com/redislabs/redisgraph/impl/api/RedisGraphTransaction.java:[266,37] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1152) + * An error was detected in line 266 which is making use of an outdated API. + ``` java + 266 getResponse(redis.clients.jedis.BuilderFactory.STRING); + ``` + * >[[ERROR] /JRedisGraph/src/main/java/com/redislabs/redisgraph/impl/api/RedisGraphTransaction.java:[266,37] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1152) + * An error was detected in line 266 which is making use of an outdated API. + ``` java + 266 getResponse(redis.clients.jedis.BuilderFactory.STRING); + ``` + +
+ +
+ *
+ Method getClient() which has been removed in the new version of the dependency + + *
+ The failure is identified from the logs generated in the build process. + + * >[[ERROR] /JRedisGraph/src/main/java/com/redislabs/redisgraph/impl/api/ContextedRedisGraph.java:[142,9] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1155) + * An error was detected in line 142 which is making use of an outdated API. + ``` java + 142 jedis.getClient(); + ``` + * >[[ERROR] /JRedisGraph/src/main/java/com/redislabs/redisgraph/impl/api/ContextedRedisGraph.java:[157,9] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1158) + * An error was detected in line 157 which is making use of an outdated API. + ``` java + 157 jedis.getClient(); + ``` + +
+ + To resolve this issue, there are alternative options available in the new version of the dependency that can replace the incompatible method currently used in the client. You can consider substituting the existing method with one of the following options provided by the new version of the dependency + ``` java + Connection getClient(); + ``` +
+ + diff --git a/Explanations/ea33b5101edffc0242967cbf21c1016378b18483.md b/Explanations/ea33b5101edffc0242967cbf21c1016378b18483.md new file mode 100644 index 0000000..6f54af4 --- /dev/null +++ b/Explanations/ea33b5101edffc0242967cbf21c1016378b18483.md @@ -0,0 +1,121 @@ +CI detected that the dependency upgrade from version **flyway-core-3.2.1** to **flyway-core-9.15.2** has failed. Here are details to help you understand and fix the problem: +1. Your client utilizes **6** instructions which has been modified in the new version of the dependency. + *
+ Method valueOf(java.lang.String) which has been removed in the new version of the dependency + + *
+ The failure is identified from the logs generated in the build process. + + * >[[ERROR] /nem/nis/src/main/java/org/nem/specific/deploy/appconfig/NisAppConfig.java:[112,23] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:2146) + * An error was detected in line 112 which is making use of an outdated API. + ``` java + 112 java.lang.Boolean.valueOf(prop.getProperty("flyway.validate")); + ``` + +
+ + To resolve this issue, there are alternative options available in the new version of the dependency that can replace the incompatible method currently used in the client. You can consider substituting the existing method with one of the following options provided by the new version of the dependency + ``` java + Event valueOf(String); + ``` +
+ *
+ Method setLocations(java.lang.String) which has been removed in the new version of the dependency + + *
+ The failure is identified from the logs generated in the build process. + + * >[[ERROR] /nem/nis/src/main/java/org/nem/specific/deploy/appconfig/NisAppConfig.java:[111,23] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:2143) + * An error was detected in line 111 which is making use of an outdated API. + ``` java + 111 flyway.setLocations(prop.getProperty("flyway.locations")); + ``` + +
+ + To resolve this issue, there are alternative options available in the new version of the dependency that can replace the incompatible method currently used in the client. You can consider substituting the existing method with one of the following options provided by the new version of the dependency + ``` java + void setLocations(Location[]); + ``` +
+ *
+ Method setDataSource(javax.sql.DataSource) which has been removed in the new version of the dependency + + *
+ The failure is identified from the logs generated in the build process. + + * >[[ERROR] /nem/nis/src/main/java/org/nem/specific/deploy/appconfig/NisAppConfig.java:[109,23] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:2137) + * An error was detected in line 109 which is making use of an outdated API. + ``` java + 109 flyway.setDataSource(this.dataSource()); + ``` + +
+ + To resolve this issue, there are alternative options available in the new version of the dependency that can replace the incompatible method currently used in the client. You can consider substituting the existing method with one of the following options provided by the new version of the dependency + ``` java + void setDataSource(String,String,String); + ``` +
+ *
+ Method getClassLoader() which has been removed in the new version of the dependency + + *
+ The failure is identified from the logs generated in the build process. + + * >[[ERROR] /nem/nis/src/main/java/org/nem/specific/deploy/appconfig/NisAppConfig.java:[110,23] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:2140) + * An error was detected in line 110 which is making use of an outdated API. + ``` java + 110 org.nem.specific.deploy.appconfig.NisAppConfig.class.getClassLoader(); + ``` + +
+ + To address this incompatibility, there are 2 alternative options available in the new version of the dependency that can replace the incompatible method currently used in the client. You can consider substituting the existing method with one of the following options provided by the new version of the dependency: + ``` java + ClassLoader getClassLoader(); + ``` + ``` java + ClassLoader getClassLoader(); + ``` +
+ *
+ Method setClassLoader(java.lang.ClassLoader) which has been removed in the new version of the dependency + + *
+ The failure is identified from the logs generated in the build process. + + * >[[ERROR] /nem/nis/src/main/java/org/nem/specific/deploy/appconfig/NisAppConfig.java:[110,23] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:2140) + * An error was detected in line 110 which is making use of an outdated API. + ``` java + 110 flyway.setClassLoader(org.nem.specific.deploy.appconfig.NisAppConfig.class.getClassLoader()); + ``` + +
+ + To resolve this issue, there are alternative options available in the new version of the dependency that can replace the incompatible method currently used in the client. You can consider substituting the existing method with one of the following options provided by the new version of the dependency + ``` java + void setClassLoader(ClassLoader); + ``` +
+ *
+ Method setValidateOnMigrate(java.lang.Boolean) which has been removed in the new version of the dependency + + *
+ The failure is identified from the logs generated in the build process. + + * >[[ERROR] /nem/nis/src/main/java/org/nem/specific/deploy/appconfig/NisAppConfig.java:[112,23] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:2146) + * An error was detected in line 112 which is making use of an outdated API. + ``` java + 112 flyway.setValidateOnMigrate(java.lang.Boolean.valueOf(prop.getProperty("flyway.validate"))); + ``` + +
+ + To resolve this issue, there are alternative options available in the new version of the dependency that can replace the incompatible method currently used in the client. You can consider substituting the existing method with one of the following options provided by the new version of the dependency + ``` java + void setValidateOnMigrate(Boolean); + ``` +
+ + diff --git a/Explanations/ef3f7be3e2755d4a0f9c23bdcbfe3b97198fb31b.md b/Explanations/ef3f7be3e2755d4a0f9c23bdcbfe3b97198fb31b.md new file mode 100644 index 0000000..cd93d90 --- /dev/null +++ b/Explanations/ef3f7be3e2755d4a0f9c23bdcbfe3b97198fb31b.md @@ -0,0 +1,109 @@ +CI detected that the dependency upgrade from version **tinspin-indexes-1.7.1** to **tinspin-indexes-2.0.0** has failed. Here are details to help you understand and fix the problem: +1. Your client utilizes **4** instructions which has been modified in the new version of the dependency. + *
+ Method size() which has been removed in the new version of the dependency + + *
+ The failure is identified from the logs generated in the build process. + + * >[[ERROR] /PGS/src/main/java/micycle/pgs/PGS_PointSet.java:[70,53] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:2131) + * An error was detected in line 70 which is making use of an outdated API. + ``` java + 70 tree.size(); + ``` + +
+ + To address this incompatibility, there are 2 alternative options available in the new version of the dependency that can replace the incompatible method currently used in the client. You can consider substituting the existing method with one of the following options provided by the new version of the dependency: + ``` java + int size(); + ``` + ``` java + int size(); + ``` +
+ *
+ Method dist() which has been removed in the new version of the dependency + + *
+ The failure is identified from the logs generated in the build process. + + * >[[ERROR] /PGS/src/main/java/micycle/pgs/PGS_PointSet.java:[70,53] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:2131) + * An error was detected in line 70 which is making use of an outdated API. + ``` java + 70 tree.query1NN(coords).dist(); + ``` + * >[[ERROR] /PGS/src/main/java/micycle/pgs/PGS_PointSet.java:[70,53] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:2131) + * An error was detected in line 70 which is making use of an outdated API. + ``` java + 70 tree.query1NN(coords).dist(); + ``` + +
+ + To address this incompatibility, there are 2 alternative options available in the new version of the dependency that can replace the incompatible method currently used in the client. You can consider substituting the existing method with one of the following options provided by the new version of the dependency: + ``` java + double dist(double[],double[],double[]); + ``` + ``` java + double dist(double[],double[],double[]); + ``` +
+ *
+ Method create(int) which has been removed in the new version of the dependency + + *
+ The failure is identified from the logs generated in the build process. + + * >[[ERROR] /PGS/src/main/java/micycle/pgs/PGS_Meshing.java:[161,23] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:2140) + * An error was detected in line 161 which is making use of an outdated API. + ``` java + 161 org.tinspin.index.kdtree.KDTree.create(2, (p1, p2) -> { + final double deltaX = p1[0] - p2[0]; + final double deltaY = p1[1] - p2[1]; + return java.lang.Math.sqrt((deltaX * deltaX) + (deltaY * deltaY)); +}); + ``` + +
+ + To address this incompatibility, there are 2 alternative options available in the new version of the dependency that can replace the incompatible method currently used in the client. You can consider substituting the existing method with one of the following options provided by the new version of the dependency: + ``` java + Index$PointEntry create(double[],Object); + ``` + ``` java + CoverTree create(int,double,PointDistance); + ``` +
+ *
+ Method query1NN(double[]) which has been removed in the new version of the dependency + + *
+ The failure is identified from the logs generated in the build process. + + * >[[ERROR] /PGS/src/main/java/micycle/pgs/PGS_CirclePacking.java:[226,31] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:2134) + * An error was detected in line 226 which is making use of an outdated API. + ``` java + 226 tree.query1NN(new double[]{ p.x, p.y, largestR }); + ``` + * >[[ERROR] /PGS/src/main/java/micycle/pgs/PGS_CirclePacking.java:[226,31] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:2134) + * An error was detected in line 226 which is making use of an outdated API. + ``` java + 226 tree.query1NN(new double[]{ p.x, p.y, largestR }); + ``` + * >[[ERROR] /PGS/src/main/java/micycle/pgs/PGS_PointSet.java:[70,53] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:2131) + * An error was detected in line 70 which is making use of an outdated API. + ``` java + 70 tree.query1NN(coords); + ``` + * >[[ERROR] /PGS/src/main/java/micycle/pgs/PGS_PointSet.java:[70,53] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:2131) + * An error was detected in line 70 which is making use of an outdated API. + ``` java + 70 tree.query1NN(coords); + ``` + +
+ +
+ + diff --git a/Explanations/f26cd85b97b24c07a2e446f43ac8793619fa0724.md b/Explanations/f26cd85b97b24c07a2e446f43ac8793619fa0724.md new file mode 100644 index 0000000..ec5cfee --- /dev/null +++ b/Explanations/f26cd85b97b24c07a2e446f43ac8793619fa0724.md @@ -0,0 +1,83 @@ +CI detected that the dependency upgrade from version **jetty-server-8.1.11.v20130520** to **jetty-server-11.0.9** has failed. Here are details to help you understand and fix the problem: +1. Your client utilizes **4** instructions which has been modified in the new version of the dependency. + *
+ Method getLocalPort() which has been removed in the new version of the dependency + + *
+ The failure is identified from the logs generated in the build process. + + * >[[ERROR] /jadler/jadler-jetty/src/main/java/net/jadler/stubbing/server/jetty/JettyStubHttpServer.java:[80,28] error: cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:845) + * An error was detected in line 80 which is making use of an outdated API. + ``` java + 80 httpConnector.getLocalPort(); + ``` + +
+ + To address this incompatibility, there are 2 alternative options available in the new version of the dependency that can replace the incompatible method currently used in the client. You can consider substituting the existing method with one of the following options provided by the new version of the dependency: + ``` java + int getLocalPort(); + ``` + ``` java + int getLocalPort(); + ``` +
+ *
+ Method setSendDateHeader(boolean) which has been removed in the new version of the dependency + + *
+ The failure is identified from the logs generated in the build process. + + * >[[ERROR] /jadler/jadler-jetty/src/main/java/net/jadler/stubbing/server/jetty/JettyStubHttpServer.java:[34,19] error: cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:836) + * An error was detected in line 34 which is making use of an outdated API. + ``` java + 34 this.server.setSendDateHeader(true); + ``` + +
+ + To resolve this issue, there are alternative options available in the new version of the dependency that can replace the incompatible method currently used in the client. You can consider substituting the existing method with one of the following options provided by the new version of the dependency + ``` java + void setSendDateHeader(boolean); + ``` +
+ *
+ Method setSendServerVersion(boolean) which has been removed in the new version of the dependency + + *
+ The failure is identified from the logs generated in the build process. + + * >[[ERROR] /jadler/jadler-jetty/src/main/java/net/jadler/stubbing/server/jetty/JettyStubHttpServer.java:[33,19] error: cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:833) + * An error was detected in line 33 which is making use of an outdated API. + ``` java + 33 this.server.setSendServerVersion(false); + ``` + +
+ + To resolve this issue, there are alternative options available in the new version of the dependency that can replace the incompatible method currently used in the client. You can consider substituting the existing method with one of the following options provided by the new version of the dependency + ``` java + void setSendServerVersion(boolean); + ``` +
+ *
+ Method setPort(int) which has been removed in the new version of the dependency + + *
+ The failure is identified from the logs generated in the build process. + + * >[[ERROR] /jadler/jadler-jetty/src/main/java/net/jadler/stubbing/server/jetty/JettyStubHttpServer.java:[37,26] error: cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:842) + * An error was detected in line 37 which is making use of an outdated API. + ``` java + 37 this.httpConnector.setPort(port); + ``` + +
+ + To resolve this issue, there are alternative options available in the new version of the dependency that can replace the incompatible method currently used in the client. You can consider substituting the existing method with one of the following options provided by the new version of the dependency + ``` java + void setPort(int); + ``` +
+ + diff --git a/Explanations/fe15d2a6e52b049f6c9e7cc123a5402047a1f01a.md b/Explanations/fe15d2a6e52b049f6c9e7cc123a5402047a1f01a.md new file mode 100644 index 0000000..1d91d9c --- /dev/null +++ b/Explanations/fe15d2a6e52b049f6c9e7cc123a5402047a1f01a.md @@ -0,0 +1,509 @@ +CI detected that the dependency upgrade from version **jaxb2-basics-runtime-0.13.1** to **jaxb2-basics-runtime-1.11.1** has failed. Here are details to help you understand and fix the problem: +1. Your client utilizes **1** instruction which has been modified in the new version of the dependency. + * Method getInstance() which has been removed in the new version of the dependency + + * The failure is identified from the logs generated in the build process. + + * >[[ERROR] /billy/billy-portugal/src-generated/main/java/com/premiumminds/billy/portugal/services/export/saftpt/v1_04_01/schema/SupplierAddressStructure.java:[244,64] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1810) + * An error was detected in line 244 which is making use of an outdated API. + ``` java + 244 org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy.getInstance(); + ``` + * >[[ERROR] /billy/billy-portugal/src-generated/main/java/com/premiumminds/billy/portugal/services/export/saftpt/v1_02_01/schema/SourceDocuments.java:[418,64] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1975) + * An error was detected in line 418 which is making use of an outdated API. + ``` java + 418 org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy.getInstance(); + ``` + * >[[ERROR] /billy/billy-portugal/src-generated/main/java/com/premiumminds/billy/portugal/services/export/saftpt/v1_02_01/schema/SourceDocuments.java:[653,68] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1978) + * An error was detected in line 653 which is making use of an outdated API. + ``` java + 653 org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy.getInstance(); + ``` + * >[[ERROR] /billy/billy-portugal/src-generated/main/java/com/premiumminds/billy/portugal/services/export/saftpt/v1_02_01/schema/SourceDocuments.java:[1365,72] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1981) + * An error was detected in line 1365 which is making use of an outdated API. + ``` java + 1365 org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy.getInstance(); + ``` + * >[[ERROR] /billy/billy-portugal/src-generated/main/java/com/premiumminds/billy/portugal/services/export/saftpt/v1_02_01/schema/SourceDocuments.java:[1658,76] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1984) + * An error was detected in line 1658 which is making use of an outdated API. + ``` java + 1658 org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy.getInstance(); + ``` + * >[[ERROR] /billy/billy-portugal/src-generated/main/java/com/premiumminds/billy/portugal/services/export/saftpt/v1_02_01/schema/SourceDocuments.java:[1844,76] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1987) + * An error was detected in line 1844 which is making use of an outdated API. + ``` java + 1844 org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy.getInstance(); + ``` + * >[[ERROR] /billy/billy-portugal/src-generated/main/java/com/premiumminds/billy/portugal/services/export/saftpt/v1_02_01/schema/SourceDocuments.java:[2285,76] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1990) + * An error was detected in line 2285 which is making use of an outdated API. + ``` java + 2285 org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy.getInstance(); + ``` + * >[[ERROR] /billy/billy-portugal/src-generated/main/java/com/premiumminds/billy/portugal/services/export/saftpt/v1_02_01/schema/SourceDocuments.java:[2605,68] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1993) + * An error was detected in line 2605 which is making use of an outdated API. + ``` java + 2605 org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy.getInstance(); + ``` + * >[[ERROR] /billy/billy-portugal/src-generated/main/java/com/premiumminds/billy/portugal/services/export/saftpt/v1_02_01/schema/SourceDocuments.java:[3293,72] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1996) + * An error was detected in line 3293 which is making use of an outdated API. + ``` java + 3293 org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy.getInstance(); + ``` + * >[[ERROR] /billy/billy-portugal/src-generated/main/java/com/premiumminds/billy/portugal/services/export/saftpt/v1_02_01/schema/SourceDocuments.java:[3581,76] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1999) + * An error was detected in line 3581 which is making use of an outdated API. + ``` java + 3581 org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy.getInstance(); + ``` + * >[[ERROR] /billy/billy-portugal/src-generated/main/java/com/premiumminds/billy/portugal/services/export/saftpt/v1_02_01/schema/SourceDocuments.java:[3833,76] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:2002) + * An error was detected in line 3833 which is making use of an outdated API. + ``` java + 3833 org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy.getInstance(); + ``` + * >[[ERROR] /billy/billy-portugal/src-generated/main/java/com/premiumminds/billy/portugal/services/export/saftpt/v1_02_01/schema/SourceDocuments.java:[4346,76] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:2005) + * An error was detected in line 4346 which is making use of an outdated API. + ``` java + 4346 org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy.getInstance(); + ``` + * >[[ERROR] /billy/billy-portugal/src-generated/main/java/com/premiumminds/billy/portugal/services/export/saftpt/v1_02_01/schema/SourceDocuments.java:[4665,68] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:2008) + * An error was detected in line 4665 which is making use of an outdated API. + ``` java + 4665 org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy.getInstance(); + ``` + * >[[ERROR] /billy/billy-portugal/src-generated/main/java/com/premiumminds/billy/portugal/services/export/saftpt/v1_02_01/schema/SourceDocuments.java:[5154,72] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:2011) + * An error was detected in line 5154 which is making use of an outdated API. + ``` java + 5154 org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy.getInstance(); + ``` + * >[[ERROR] /billy/billy-portugal/src-generated/main/java/com/premiumminds/billy/portugal/services/export/saftpt/v1_02_01/schema/SourceDocuments.java:[5379,76] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:2014) + * An error was detected in line 5379 which is making use of an outdated API. + ``` java + 5379 org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy.getInstance(); + ``` + * >[[ERROR] /billy/billy-portugal/src-generated/main/java/com/premiumminds/billy/portugal/services/export/saftpt/v1_02_01/schema/SourceDocuments.java:[5560,76] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:2017) + * An error was detected in line 5560 which is making use of an outdated API. + ``` java + 5560 org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy.getInstance(); + ``` + * >[[ERROR] /billy/billy-portugal/src-generated/main/java/com/premiumminds/billy/portugal/services/export/saftpt/v1_02_01/schema/SourceDocuments.java:[6030,76] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:2020) + * An error was detected in line 6030 which is making use of an outdated API. + ``` java + 6030 org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy.getInstance(); + ``` + * >[[ERROR] /billy/billy-portugal/src-generated/main/java/com/premiumminds/billy/portugal/services/export/saftpt/v1_03_01/schema/SpecialRegimes.java:[108,64] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1936) + * An error was detected in line 108 which is making use of an outdated API. + ``` java + 108 org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy.getInstance(); + ``` + * >[[ERROR] /billy/billy-portugal/src-generated/main/java/com/premiumminds/billy/portugal/services/export/saftpt/v1_04_01/schema/Supplier.java:[385,64] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1807) + * An error was detected in line 385 which is making use of an outdated API. + ``` java + 385 org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy.getInstance(); + ``` + * >[[ERROR] /billy/billy-portugal/src-generated/main/java/com/premiumminds/billy/portugal/services/export/saftpt/v1_02_01/schema/OrderReferences.java:[107,64] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:2026) + * An error was detected in line 107 which is making use of an outdated API. + ``` java + 107 org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy.getInstance(); + ``` + * >[[ERROR] /billy/billy-portugal/src-generated/main/java/com/premiumminds/billy/portugal/services/export/saftpt/v1_02_01/schema/References.java:[104,64] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:2050) + * An error was detected in line 104 which is making use of an outdated API. + ``` java + 104 org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy.getInstance(); + ``` + * >[[ERROR] /billy/billy-portugal/src-generated/main/java/com/premiumminds/billy/portugal/services/export/saftpt/v1_02_01/schema/Payment.java:[136,64] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:2047) + * An error was detected in line 136 which is making use of an outdated API. + ``` java + 136 org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy.getInstance(); + ``` + * >[[ERROR] /billy/billy-portugal/src-generated/main/java/com/premiumminds/billy/portugal/services/export/saftpt/v1_02_01/schema/Header.java:[658,64] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1813) + * An error was detected in line 658 which is making use of an outdated API. + ``` java + 658 org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy.getInstance(); + ``` + * >[[ERROR] /billy/billy-portugal/src-generated/main/java/com/premiumminds/billy/portugal/services/export/saftpt/v1_02_01/schema/ShippingPointStructure.java:[185,64] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:2032) + * An error was detected in line 185 which is making use of an outdated API. + ``` java + 185 org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy.getInstance(); + ``` + * >[[ERROR] /billy/billy-portugal/src-generated/main/java/com/premiumminds/billy/portugal/services/export/saftpt/v1_03_01/schema/ShippingPointStructure.java:[185,64] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1927) + * An error was detected in line 185 which is making use of an outdated API. + ``` java + 185 org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy.getInstance(); + ``` + * >[[ERROR] /billy/billy-portugal/src-generated/main/java/com/premiumminds/billy/portugal/services/export/saftpt/v1_03_01/schema/TaxTable.java:[85,64] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1957) + * An error was detected in line 85 which is making use of an outdated API. + ``` java + 85 org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy.getInstance(); + ``` + * >[[ERROR] /billy/billy-portugal/src-generated/main/java/com/premiumminds/billy/portugal/services/export/saftpt/v1_03_01/schema/MovementTax.java:[163,64] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1930) + * An error was detected in line 163 which is making use of an outdated API. + ``` java + 163 org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy.getInstance(); + ``` + * >[[ERROR] /billy/billy-portugal/src-generated/main/java/com/premiumminds/billy/portugal/services/export/saftpt/v1_03_01/schema/PaymentMethod.java:[136,64] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1909) + * An error was detected in line 136 which is making use of an outdated API. + ``` java + 136 org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy.getInstance(); + ``` + * >[[ERROR] /billy/billy-portugal/src-generated/main/java/com/premiumminds/billy/portugal/services/export/saftpt/v1_03_01/schema/AuditFile.java:[178,64] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1819) + * An error was detected in line 178 which is making use of an outdated API. + ``` java + 178 org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy.getInstance(); + ``` + * >[[ERROR] /billy/billy-portugal/src-generated/main/java/com/premiumminds/billy/portugal/services/export/saftpt/v1_03_01/schema/AuditFile.java:[405,68] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1822) + * An error was detected in line 405 which is making use of an outdated API. + ``` java + 405 org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy.getInstance(); + ``` + * >[[ERROR] /billy/billy-portugal/src-generated/main/java/com/premiumminds/billy/portugal/services/export/saftpt/v1_03_01/schema/SourceDocuments.java:[552,64] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1840) + * An error was detected in line 552 which is making use of an outdated API. + ``` java + 552 org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy.getInstance(); + ``` + * >[[ERROR] /billy/billy-portugal/src-generated/main/java/com/premiumminds/billy/portugal/services/export/saftpt/v1_03_01/schema/SourceDocuments.java:[792,68] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1843) + * An error was detected in line 792 which is making use of an outdated API. + ``` java + 792 org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy.getInstance(); + ``` + * >[[ERROR] /billy/billy-portugal/src-generated/main/java/com/premiumminds/billy/portugal/services/export/saftpt/v1_03_01/schema/SourceDocuments.java:[1504,72] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1846) + * An error was detected in line 1504 which is making use of an outdated API. + ``` java + 1504 org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy.getInstance(); + ``` + * >[[ERROR] /billy/billy-portugal/src-generated/main/java/com/premiumminds/billy/portugal/services/export/saftpt/v1_03_01/schema/SourceDocuments.java:[1798,76] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1849) + * An error was detected in line 1798 which is making use of an outdated API. + ``` java + 1798 org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy.getInstance(); + ``` + * >[[ERROR] /billy/billy-portugal/src-generated/main/java/com/premiumminds/billy/portugal/services/export/saftpt/v1_03_01/schema/SourceDocuments.java:[1984,76] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1852) + * An error was detected in line 1984 which is making use of an outdated API. + ``` java + 1984 org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy.getInstance(); + ``` + * >[[ERROR] /billy/billy-portugal/src-generated/main/java/com/premiumminds/billy/portugal/services/export/saftpt/v1_03_01/schema/SourceDocuments.java:[2425,76] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1855) + * An error was detected in line 2425 which is making use of an outdated API. + ``` java + 2425 org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy.getInstance(); + ``` + * >[[ERROR] /billy/billy-portugal/src-generated/main/java/com/premiumminds/billy/portugal/services/export/saftpt/v1_03_01/schema/SourceDocuments.java:[2753,68] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1858) + * An error was detected in line 2753 which is making use of an outdated API. + ``` java + 2753 org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy.getInstance(); + ``` + * >[[ERROR] /billy/billy-portugal/src-generated/main/java/com/premiumminds/billy/portugal/services/export/saftpt/v1_03_01/schema/SourceDocuments.java:[3326,72] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1861) + * An error was detected in line 3326 which is making use of an outdated API. + ``` java + 3326 org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy.getInstance(); + ``` + * >[[ERROR] /billy/billy-portugal/src-generated/main/java/com/premiumminds/billy/portugal/services/export/saftpt/v1_03_01/schema/SourceDocuments.java:[3590,76] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1864) + * An error was detected in line 3590 which is making use of an outdated API. + ``` java + 3590 org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy.getInstance(); + ``` + * >[[ERROR] /billy/billy-portugal/src-generated/main/java/com/premiumminds/billy/portugal/services/export/saftpt/v1_03_01/schema/SourceDocuments.java:[3814,76] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1867) + * An error was detected in line 3814 which is making use of an outdated API. + ``` java + 3814 org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy.getInstance(); + ``` + * >[[ERROR] /billy/billy-portugal/src-generated/main/java/com/premiumminds/billy/portugal/services/export/saftpt/v1_03_01/schema/SourceDocuments.java:[3914,80] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1870) + * An error was detected in line 3914 which is making use of an outdated API. + ``` java + 3914 org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy.getInstance(); + ``` + * >[[ERROR] /billy/billy-portugal/src-generated/main/java/com/premiumminds/billy/portugal/services/export/saftpt/v1_03_01/schema/SourceDocuments.java:[4186,76] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1873) + * An error was detected in line 4186 which is making use of an outdated API. + ``` java + 4186 org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy.getInstance(); + ``` + * >[[ERROR] /billy/billy-portugal/src-generated/main/java/com/premiumminds/billy/portugal/services/export/saftpt/v1_03_01/schema/SourceDocuments.java:[4353,80] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1876) + * An error was detected in line 4353 which is making use of an outdated API. + ``` java + 4353 org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy.getInstance(); + ``` + * >[[ERROR] /billy/billy-portugal/src-generated/main/java/com/premiumminds/billy/portugal/services/export/saftpt/v1_03_01/schema/SourceDocuments.java:[4625,68] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1879) + * An error was detected in line 4625 which is making use of an outdated API. + ``` java + 4625 org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy.getInstance(); + ``` + * >[[ERROR] /billy/billy-portugal/src-generated/main/java/com/premiumminds/billy/portugal/services/export/saftpt/v1_03_01/schema/SourceDocuments.java:[5321,72] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1882) + * An error was detected in line 5321 which is making use of an outdated API. + ``` java + 5321 org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy.getInstance(); + ``` + * >[[ERROR] /billy/billy-portugal/src-generated/main/java/com/premiumminds/billy/portugal/services/export/saftpt/v1_03_01/schema/SourceDocuments.java:[5610,76] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1885) + * An error was detected in line 5610 which is making use of an outdated API. + ``` java + 5610 org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy.getInstance(); + ``` + * >[[ERROR] /billy/billy-portugal/src-generated/main/java/com/premiumminds/billy/portugal/services/export/saftpt/v1_03_01/schema/SourceDocuments.java:[5862,76] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1888) + * An error was detected in line 5862 which is making use of an outdated API. + ``` java + 5862 org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy.getInstance(); + ``` + * >[[ERROR] /billy/billy-portugal/src-generated/main/java/com/premiumminds/billy/portugal/services/export/saftpt/v1_03_01/schema/SourceDocuments.java:[6375,76] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1891) + * An error was detected in line 6375 which is making use of an outdated API. + ``` java + 6375 org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy.getInstance(); + ``` + * >[[ERROR] /billy/billy-portugal/src-generated/main/java/com/premiumminds/billy/portugal/services/export/saftpt/v1_03_01/schema/SourceDocuments.java:[6695,68] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1894) + * An error was detected in line 6695 which is making use of an outdated API. + ``` java + 6695 org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy.getInstance(); + ``` + * >[[ERROR] /billy/billy-portugal/src-generated/main/java/com/premiumminds/billy/portugal/services/export/saftpt/v1_03_01/schema/SourceDocuments.java:[7185,72] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1897) + * An error was detected in line 7185 which is making use of an outdated API. + ``` java + 7185 org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy.getInstance(); + ``` + * >[[ERROR] /billy/billy-portugal/src-generated/main/java/com/premiumminds/billy/portugal/services/export/saftpt/v1_03_01/schema/SourceDocuments.java:[7439,76] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1900) + * An error was detected in line 7439 which is making use of an outdated API. + ``` java + 7439 org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy.getInstance(); + ``` + * >[[ERROR] /billy/billy-portugal/src-generated/main/java/com/premiumminds/billy/portugal/services/export/saftpt/v1_03_01/schema/SourceDocuments.java:[7625,76] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1903) + * An error was detected in line 7625 which is making use of an outdated API. + ``` java + 7625 org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy.getInstance(); + ``` + * >[[ERROR] /billy/billy-portugal/src-generated/main/java/com/premiumminds/billy/portugal/services/export/saftpt/v1_03_01/schema/SourceDocuments.java:[8095,76] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1906) + * An error was detected in line 8095 which is making use of an outdated API. + ``` java + 8095 org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy.getInstance(); + ``` + * >[[ERROR] /billy/billy-portugal/src-generated/main/java/com/premiumminds/billy/portugal/services/export/saftpt/v1_03_01/schema/Supplier.java:[385,64] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1951) + * An error was detected in line 385 which is making use of an outdated API. + ``` java + 385 org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy.getInstance(); + ``` + * >[[ERROR] /billy/billy-portugal/src-generated/main/java/com/premiumminds/billy/portugal/services/export/saftpt/v1_03_01/schema/Settlement.java:[164,64] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1939) + * An error was detected in line 164 which is making use of an outdated API. + ``` java + 164 org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy.getInstance(); + ``` + * >[[ERROR] /billy/billy-portugal/src-generated/main/java/com/premiumminds/billy/portugal/services/export/saftpt/v1_03_01/schema/AddressStructure.java:[244,64] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1933) + * An error was detected in line 244 which is making use of an outdated API. + ``` java + 244 org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy.getInstance(); + ``` + * >[[ERROR] /billy/billy-portugal/src-generated/main/java/com/premiumminds/billy/portugal/services/export/saftpt/v1_03_01/schema/GeneralLedger.java:[275,64] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1945) + * An error was detected in line 275 which is making use of an outdated API. + ``` java + 275 org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy.getInstance(); + ``` + * >[[ERROR] /billy/billy-portugal/src-generated/main/java/com/premiumminds/billy/portugal/services/export/saftpt/v1_04_01/schema/Product.java:[218,64] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1969) + * An error was detected in line 218 which is making use of an outdated API. + ``` java + 218 org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy.getInstance(); + ``` + * >[[ERROR] /billy/billy-portugal/src-generated/main/java/com/premiumminds/billy/portugal/services/export/saftpt/v1_04_01/schema/AuditFile.java:[178,64] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:2059) + * An error was detected in line 178 which is making use of an outdated API. + ``` java + 178 org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy.getInstance(); + ``` + * >[[ERROR] /billy/billy-portugal/src-generated/main/java/com/premiumminds/billy/portugal/services/export/saftpt/v1_04_01/schema/AuditFile.java:[400,68] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:2062) + * An error was detected in line 400 which is making use of an outdated API. + ``` java + 400 org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy.getInstance(); + ``` + * >[[ERROR] /billy/billy-portugal/src-generated/main/java/com/premiumminds/billy/portugal/services/export/saftpt/v1_03_01/schema/Currency.java:[133,64] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1915) + * An error was detected in line 133 which is making use of an outdated API. + ``` java + 133 org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy.getInstance(); + ``` + * >[[ERROR] /billy/billy-portugal/src-generated/main/java/com/premiumminds/billy/portugal/services/export/saftpt/v1_02_01/schema/MovementTax.java:[163,64] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:2035) + * An error was detected in line 163 which is making use of an outdated API. + ``` java + 163 org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy.getInstance(); + ``` + * >[[ERROR] /billy/billy-portugal/src-generated/main/java/com/premiumminds/billy/portugal/services/export/saftpt/v1_02_01/schema/AddressStructurePT.java:[244,64] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1816) + * An error was detected in line 244 which is making use of an outdated API. + ``` java + 244 org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy.getInstance(); + ``` + * >[[ERROR] /billy/billy-portugal/src-generated/main/java/com/premiumminds/billy/portugal/services/export/saftpt/v1_04_01/schema/SourceDocuments.java:[570,64] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:2065) + * An error was detected in line 570 which is making use of an outdated API. + ``` java + 570 org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy.getInstance(); + ``` + * >[[ERROR] /billy/billy-portugal/src-generated/main/java/com/premiumminds/billy/portugal/services/export/saftpt/v1_04_01/schema/SourceDocuments.java:[814,68] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:2068) + * An error was detected in line 814 which is making use of an outdated API. + ``` java + 814 org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy.getInstance(); + ``` + * >[[ERROR] /billy/billy-portugal/src-generated/main/java/com/premiumminds/billy/portugal/services/export/saftpt/v1_04_01/schema/SourceDocuments.java:[1557,72] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:2071) + * An error was detected in line 1557 which is making use of an outdated API. + ``` java + 1557 org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy.getInstance(); + ``` + * >[[ERROR] /billy/billy-portugal/src-generated/main/java/com/premiumminds/billy/portugal/services/export/saftpt/v1_04_01/schema/SourceDocuments.java:[1856,76] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:2074) + * An error was detected in line 1856 which is making use of an outdated API. + ``` java + 1856 org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy.getInstance(); + ``` + * >[[ERROR] /billy/billy-portugal/src-generated/main/java/com/premiumminds/billy/portugal/services/export/saftpt/v1_04_01/schema/SourceDocuments.java:[2042,76] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:2077) + * An error was detected in line 2042 which is making use of an outdated API. + ``` java + 2042 org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy.getInstance(); + ``` + * >[[ERROR] /billy/billy-portugal/src-generated/main/java/com/premiumminds/billy/portugal/services/export/saftpt/v1_04_01/schema/SourceDocuments.java:[2567,76] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:2080) + * An error was detected in line 2567 which is making use of an outdated API. + ``` java + 2567 org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy.getInstance(); + ``` + * >[[ERROR] /billy/billy-portugal/src-generated/main/java/com/premiumminds/billy/portugal/services/export/saftpt/v1_04_01/schema/SourceDocuments.java:[2912,68] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:2083) + * An error was detected in line 2912 which is making use of an outdated API. + ``` java + 2912 org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy.getInstance(); + ``` + * >[[ERROR] /billy/billy-portugal/src-generated/main/java/com/premiumminds/billy/portugal/services/export/saftpt/v1_04_01/schema/SourceDocuments.java:[3514,72] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:2086) + * An error was detected in line 3514 which is making use of an outdated API. + ``` java + 3514 org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy.getInstance(); + ``` + * >[[ERROR] /billy/billy-portugal/src-generated/main/java/com/premiumminds/billy/portugal/services/export/saftpt/v1_04_01/schema/SourceDocuments.java:[3783,76] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:2089) + * An error was detected in line 3783 which is making use of an outdated API. + ``` java + 3783 org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy.getInstance(); + ``` + * >[[ERROR] /billy/billy-portugal/src-generated/main/java/com/premiumminds/billy/portugal/services/export/saftpt/v1_04_01/schema/SourceDocuments.java:[4007,76] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:2092) + * An error was detected in line 4007 which is making use of an outdated API. + ``` java + 4007 org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy.getInstance(); + ``` + * >[[ERROR] /billy/billy-portugal/src-generated/main/java/com/premiumminds/billy/portugal/services/export/saftpt/v1_04_01/schema/SourceDocuments.java:[4107,80] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:2095) + * An error was detected in line 4107 which is making use of an outdated API. + ``` java + 4107 org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy.getInstance(); + ``` + * >[[ERROR] /billy/billy-portugal/src-generated/main/java/com/premiumminds/billy/portugal/services/export/saftpt/v1_04_01/schema/SourceDocuments.java:[4407,76] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:2098) + * An error was detected in line 4407 which is making use of an outdated API. + ``` java + 4407 org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy.getInstance(); + ``` + * >[[ERROR] /billy/billy-portugal/src-generated/main/java/com/premiumminds/billy/portugal/services/export/saftpt/v1_04_01/schema/SourceDocuments.java:[4579,80] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:2101) + * An error was detected in line 4579 which is making use of an outdated API. + ``` java + 4579 org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy.getInstance(); + ``` + * >[[ERROR] /billy/billy-portugal/src-generated/main/java/com/premiumminds/billy/portugal/services/export/saftpt/v1_04_01/schema/SourceDocuments.java:[4856,68] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:2104) + * An error was detected in line 4856 which is making use of an outdated API. + ``` java + 4856 org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy.getInstance(); + ``` + * >[[ERROR] /billy/billy-portugal/src-generated/main/java/com/premiumminds/billy/portugal/services/export/saftpt/v1_02_01/schema/Settlement.java:[164,64] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:2044) + * An error was detected in line 164 which is making use of an outdated API. + ``` java + 164 org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy.getInstance(); + ``` + * >[[ERROR] /billy/billy-portugal/src-generated/main/java/com/premiumminds/billy/portugal/services/export/saftpt/v1_03_01/schema/GeneralLedgerEntries.java:[226,64] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1828) + * An error was detected in line 226 which is making use of an outdated API. + ``` java + 226 org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy.getInstance(); + ``` + * >[[ERROR] /billy/billy-portugal/src-generated/main/java/com/premiumminds/billy/portugal/services/export/saftpt/v1_03_01/schema/GeneralLedgerEntries.java:[422,68] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1831) + * An error was detected in line 422 which is making use of an outdated API. + ``` java + 422 org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy.getInstance(); + ``` + * >[[ERROR] /billy/billy-portugal/src-generated/main/java/com/premiumminds/billy/portugal/services/export/saftpt/v1_03_01/schema/GeneralLedgerEntries.java:[812,72] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1834) + * An error was detected in line 812 which is making use of an outdated API. + ``` java + 812 org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy.getInstance(); + ``` + * >[[ERROR] /billy/billy-portugal/src-generated/main/java/com/premiumminds/billy/portugal/services/export/saftpt/v1_03_01/schema/GeneralLedgerEntries.java:[1113,76] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1837) + * An error was detected in line 1113 which is making use of an outdated API. + ``` java + 1113 org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy.getInstance(); + ``` + * >[[ERROR] /billy/billy-portugal/src-generated/main/java/com/premiumminds/billy/portugal/services/export/saftpt/v1_03_01/schema/TaxTableEntry.java:[252,64] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1960) + * An error was detected in line 252 which is making use of an outdated API. + ``` java + 252 org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy.getInstance(); + ``` + * >[[ERROR] /billy/billy-portugal/src-generated/main/java/com/premiumminds/billy/portugal/services/export/saftpt/v1_03_01/schema/PaymentTax.java:[191,64] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1918) + * An error was detected in line 191 which is making use of an outdated API. + ``` java + 191 org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy.getInstance(); + ``` + * >[[ERROR] /billy/billy-portugal/src-generated/main/java/com/premiumminds/billy/portugal/services/export/saftpt/v1_03_01/schema/Tax.java:[191,64] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1924) + * An error was detected in line 191 which is making use of an outdated API. + ``` java + 191 org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy.getInstance(); + ``` + * >[[ERROR] /billy/billy-portugal/src-generated/main/java/com/premiumminds/billy/portugal/services/export/saftpt/v1_02_01/schema/Tax.java:[191,64] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:2029) + * An error was detected in line 191 which is making use of an outdated API. + ``` java + 191 org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy.getInstance(); + ``` + * >[[ERROR] /billy/billy-portugal/src-generated/main/java/com/premiumminds/billy/portugal/services/export/saftpt/v1_02_01/schema/Currency.java:[133,64] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:2023) + * An error was detected in line 133 which is making use of an outdated API. + ``` java + 133 org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy.getInstance(); + ``` + * >[[ERROR] /billy/billy-portugal/src-generated/main/java/com/premiumminds/billy/portugal/services/export/saftpt/v1_02_01/schema/AddressStructure.java:[244,64] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:2038) + * An error was detected in line 244 which is making use of an outdated API. + ``` java + 244 org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy.getInstance(); + ``` + * >[[ERROR] /billy/billy-portugal/src-generated/main/java/com/premiumminds/billy/portugal/services/export/saftpt/v1_03_01/schema/Customer.java:[385,64] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1948) + * An error was detected in line 385 which is making use of an outdated API. + ``` java + 385 org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy.getInstance(); + ``` + * >[[ERROR] /billy/billy-portugal/src-generated/main/java/com/premiumminds/billy/portugal/services/export/saftpt/v1_03_01/schema/WithholdingTax.java:[133,64] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1912) + * An error was detected in line 133 which is making use of an outdated API. + ``` java + 133 org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy.getInstance(); + ``` + * >[[ERROR] /billy/billy-portugal/src-generated/main/java/com/premiumminds/billy/portugal/services/export/saftpt/v1_02_01/schema/WithholdingTax.java:[133,64] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:2041) + * An error was detected in line 133 which is making use of an outdated API. + ``` java + 133 org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy.getInstance(); + ``` + * >[[ERROR] /billy/billy-portugal/src-generated/main/java/com/premiumminds/billy/portugal/services/export/saftpt/v1_03_01/schema/Header.java:[658,64] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1825) + * An error was detected in line 658 which is making use of an outdated API. + ``` java + 658 org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy.getInstance(); + ``` + * >[[ERROR] /billy/billy-portugal/src-generated/main/java/com/premiumminds/billy/portugal/services/export/saftpt/v1_02_01/schema/AuditFile.java:[178,64] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:2053) + * An error was detected in line 178 which is making use of an outdated API. + ``` java + 178 org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy.getInstance(); + ``` + * >[[ERROR] /billy/billy-portugal/src-generated/main/java/com/premiumminds/billy/portugal/services/export/saftpt/v1_02_01/schema/AuditFile.java:[405,68] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:2056) + * An error was detected in line 405 which is making use of an outdated API. + ``` java + 405 org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy.getInstance(); + ``` + * >[[ERROR] /billy/billy-portugal/src-generated/main/java/com/premiumminds/billy/portugal/services/export/saftpt/v1_03_01/schema/AddressStructurePT.java:[244,64] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1966) + * An error was detected in line 244 which is making use of an outdated API. + ``` java + 244 org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy.getInstance(); + ``` + * >[[ERROR] /billy/billy-portugal/src-generated/main/java/com/premiumminds/billy/portugal/services/export/saftpt/v1_03_01/schema/References.java:[104,64] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1942) + * An error was detected in line 104 which is making use of an outdated API. + ``` java + 104 org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy.getInstance(); + ``` + * >[[ERROR] /billy/billy-portugal/src-generated/main/java/com/premiumminds/billy/portugal/services/export/saftpt/v1_03_01/schema/Product.java:[190,64] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1954) + * An error was detected in line 190 which is making use of an outdated API. + ``` java + 190 org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy.getInstance(); + ``` + * >[[ERROR] /billy/billy-portugal/src-generated/main/java/com/premiumminds/billy/portugal/services/export/saftpt/v1_03_01/schema/OrderReferences.java:[107,64] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1921) + * An error was detected in line 107 which is making use of an outdated API. + ``` java + 107 org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy.getInstance(); + ``` + * >[[ERROR] /billy/billy-portugal/src-generated/main/java/com/premiumminds/billy/portugal/services/export/saftpt/v1_03_01/schema/SupplierAddressStructure.java:[244,64] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1963) + * An error was detected in line 244 which is making use of an outdated API. + ``` java + 244 org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy.getInstance(); + ``` + * >[[ERROR] /billy/billy-portugal/src-generated/main/java/com/premiumminds/billy/portugal/services/export/saftpt/v1_04_01/schema/CustomsDetails.java:[116,64] cannot find symbol](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1972) + * An error was detected in line 116 which is making use of an outdated API. + ``` java + 116 org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy.getInstance(); + ``` + + + diff --git a/Resources/template.md b/Resources/template.md index 5a2cba1..5a9c6a2 100644 --- a/Resources/template.md +++ b/Resources/template.md @@ -1,6 +1,6 @@ CI detected that the dependency upgrade from version <**label indicating the previous version of the dependency**> to <**label indicating the new version of the dependency**> has failed. Here are details to help you understand and fix the problem: 1. Your client utilizes <**label indicate amount of instructions**> instructions which has been modified in the new version of the dependency. - * < Method | Class | Field | Import | Constructor> which has been < Removed | Modified > in the new version of the dependency + * < Method | Class | Field | Import | Constructor> < instruction name > which has been < Removed | Modified > in the new version of the dependency * The failure is identified from the logs generated in the build process.