Skip to content

Commit

Permalink
Updating explanations
Browse files Browse the repository at this point in the history
  • Loading branch information
frankreyesgarcia committed Jun 23, 2024
1 parent cf7ded1 commit 5349274
Show file tree
Hide file tree
Showing 96 changed files with 20,985 additions and 2,668 deletions.
Original file line number Diff line number Diff line change
@@ -1,20 +1,35 @@
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.
1. Your client utilizes **5** constructs which has been modified in the new version of the dependency.
* <details>
<summary>Method <b>setUseClientMode(boolean)</b> which has been <b>removed</b> in the new version of the dependency</summary>
* <details>
<summary>The failure is identified from the logs generated in the build process. </summary>
* >[[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)
* >[[ERROR] /quickfixj/quickfixj-core/src/main/java/quickfix/mina/acceptor/AbstractSocketAcceptor.java:[136,18] cannot find symbol<br>&nbsp;&nbsp;&nbsp;&nbsp; symbol: method setUseClientMode(boolean)
location: variable sslFilter of type quickfix.mina.ssl.SSLFilter
](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.

</details>
</details>
* <details>
<summary>Constructor <b>org.apache.mina.filter.ssl.SslFilter(javax.net.ssl.SSLContext,boolean)</b> which has been <b></b> in the new version of the dependency</summary>
* <details>
<summary>The failure is identified from the logs generated in the build process. </summary>
* >[[ERROR] /quickfixj/quickfixj-core/src/main/java/quickfix/mina/ssl/SSLFilter.java:[43,9] constructor SslFilter in class org.apache.mina.filter.ssl.SslFilter cannot be applied to given types;<br>&nbsp;&nbsp;&nbsp;&nbsp; required: javax.net.ssl.SSLContext
found: javax.net.ssl.SSLContext,boolean
reason: actual and formal argument lists differ in length
](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1554)
* An error was detected in line 43 which is making use of an outdated API.
``` java
195 sslFilter.setUseClientMode(true);
43 super(sslContext, autoStart);
```

</details>
Expand All @@ -26,7 +41,9 @@ CI detected that the dependency upgrade from version **mina-core-2.1.5** to **mi
* <details>
<summary>The failure is identified from the logs generated in the build process. </summary>
* >[[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)
* >[[ERROR] /quickfixj/quickfixj-core/src/main/java/quickfix/mina/initiator/InitiatorProxyIoHandler.java:[65,27] cannot find symbol<br>&nbsp;&nbsp;&nbsp;&nbsp; symbol: method initiateHandshake(org.apache.mina.core.session.IoSession)
location: variable sslFilter of type quickfix.mina.ssl.SSLFilter
](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1556)
* An error was detected in line 65 which is making use of an outdated API.
``` java
65 this.sslFilter.initiateHandshake(ioSession);
Expand All @@ -35,5 +52,39 @@ CI detected that the dependency upgrade from version **mina-core-2.1.5** to **mi
</details>
</details>
* <details>
<summary>Field <b>org.apache.mina.filter.ssl.SslFilter.PEER_ADDRESS</b> which has been <b></b> in the new version of the dependency</summary>
* <details>
<summary>The failure is identified from the logs generated in the build process. </summary>
* >[[ERROR] /quickfixj/quickfixj-core/src/main/java/quickfix/mina/ssl/SSLFilter.java:[78,38] cannot find symbol<br>&nbsp;&nbsp;&nbsp;&nbsp; symbol: variable PEER_ADDRESS
location: class quickfix.mina.ssl.SSLFilter
](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1555)
* An error was detected in line 78 which is making use of an outdated API.
``` java
78 org.apache.mina.filter.ssl.SslFilter.PEER_ADDRESS;
```

</details>
</details>
* <details>
<summary>Method <b>setUseClientMode(boolean)</b> which has been <b>removed</b> in the new version of the dependency</summary>
* <details>
<summary>The failure is identified from the logs generated in the build process. </summary>
* >[[ERROR] /quickfixj/quickfixj-core/src/main/java/quickfix/mina/initiator/IoSessionInitiator.java:[195,22] cannot find symbol<br>&nbsp;&nbsp;&nbsp;&nbsp; symbol: method setUseClientMode(boolean)
location: variable sslFilter of type quickfix.mina.ssl.SSLFilter
](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1553)
* An error was detected in line 195 which is making use of an outdated API.
``` java
195 sslFilter.setUseClientMode(true);
```

</details>
</details>


Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
CI detected that the dependency upgrade from version **mysql-connector-java-5.1.49** to **mysql-connector-java-8.0.28** has failed. Here are details to help you understand and fix the problem:
1. Your client utilizes **2** constructs which has been modified in the new version of the dependency.
* <details>
<summary>Class <b>com.mysql.jdbc.exceptions.MySQLTimeoutException</b> which has been <b>removed</b> in the new version of the dependency</summary>
* <details>
<summary>The failure is identified from the logs generated in the build process. </summary>
* >[[ERROR] /pdb/src/main/java/com/feedzai/commons/sql/abstraction/engine/impl/mysql/MySqlQueryExceptionHandler.java:[21,33] package com.mysql.jdbc.exceptions does not exist<br>&nbsp;&nbsp;&nbsp;&nbsp;](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:611)
* An error was detected in line 21 which is making use of an outdated API.
``` java
21 import com.mysql.jdbc.exceptions.MySQLTimeoutException;;
```

</details>
</details>
* <details>
<summary>Class <b>com.mysql.jdbc.exceptions.MySQLTimeoutException</b> which has been <b>removed</b> in the new version of the dependency</summary>
* <details>
<summary>The failure is identified from the logs generated in the build process. </summary>
* >[[ERROR] /pdb/src/main/java/com/feedzai/commons/sql/abstraction/engine/impl/mysql/MySqlQueryExceptionHandler.java:[40,37] cannot find symbol<br>&nbsp;&nbsp;&nbsp;&nbsp; symbol: class MySQLTimeoutException
location: class com.feedzai.commons.sql.abstraction.engine.impl.mysql.MySqlQueryExceptionHandler
](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:612)
* An error was detected in line 40 which is making use of an outdated API.
``` java
40 com.mysql.jdbc.exceptions.MySQLTimeoutException;
```

</details>
</details>


Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
CI detected that the dependency upgrade from version **snakeyaml-1.24** to **snakeyaml-2.0** has failed. Here are details to help you understand and fix the problem:
1. Your client utilizes **1** construct which has been modified in the new version of the dependency.
* <summary>Constructor <b>org.yaml.snakeyaml.constructor.Constructor(java.lang.Class)</b> which has been <b></b> in the new version of the dependency</summary>
* <summary>The failure is identified from the logs generated in the build process. </summary>
* >[[ERROR] /simplelocalize-cli/src/main/java/io/simplelocalize/cli/configuration/ConfigurationLoader.java:[39,64] incompatible types: java.lang.Class<io.simplelocalize.cli.configuration.Configuration> cannot be converted to org.yaml.snakeyaml.LoaderOptions<br>&nbsp;&nbsp;&nbsp;&nbsp;](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1482)
* An error was detected in line 39 which is making use of an outdated API.
``` java
39 new org.yaml.snakeyaml.constructor.Constructor(io.simplelocalize.cli.configuration.Configuration.class);
```


Original file line number Diff line number Diff line change
@@ -1,21 +1,14 @@
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.
* <summary>Method <b>setLineWidth()</b> which has been <b>removed</b> in the new version of the dependency</summary>
1. Your client utilizes **1** construct which has been modified in the new version of the dependency.
* <summary>Method <b>setLineWidth(float)</b> which has been <b>removed</b> in the new version of the dependency</summary>
* <summary>The failure is identified from the logs generated in the build process. </summary>
* >[[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)
* >[[ERROR] /biapi/src/main/java/xdev/tableexport/export/ReportBuilder.java:[369,81] incompatible types: int cannot be converted to java.lang.Float<br>&nbsp;&nbsp;&nbsp;&nbsp;](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());
```
</details>


Loading

0 comments on commit 5349274

Please sign in to comment.