You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@fineract.apache.org by GitBox <gi...@apache.org> on 2022/03/05 12:14:01 UTC

[GitHub] [fineract] dependabot[bot] opened a new pull request #2064: Bump io.rest-assured dependency set from 4.3.0 to 4.5.1

dependabot[bot] opened a new pull request #2064:
URL: https://github.com/apache/fineract/pull/2064


   Bumps `io.rest-assured` dependency set from 4.3.0 to 4.5.1.
   Updates `rest-assured` from 4.3.0 to 4.5.1
   <details>
   <summary>Changelog</summary>
   <p><em>Sourced from <a href="https://github.com/rest-assured/rest-assured/blob/master/changelog.txt">rest-assured's changelog</a>.</em></p>
   <blockquote>
   <h2>Changelog 4.5.1 (2022-02-11)</h2>
   <ul>
   <li>Fixed a bug in ObjectMapper that required JAXB/JakartaEE when this was not intended (issue 1542)</li>
   </ul>
   <h2>Changelog 4.5.0 (2022-01-21)</h2>
   <ul>
   <li>
   <p>JAXB is now an optional dependency for XmlPath and is now longer required. Depend on 'jakarta.xml.bind:jakarta.xml.bind-api:2.3.3' and 'com.sun.xml.bind:jaxb-impl:2.3.3'</p>
   </li>
   <li>
   <p>Implemented support for serializing and deserializing with Jakarta EE 8 and 9. To use it you need to have Jakarta EE on the classpath, for example by depending on 'jakarta.xml.bind:jakarta.xml.bind-api:3.0.1' and 'org.glassfish.jaxb:jaxb-runtime:3.0.2'.</p>
   </li>
   <li>
   <p>Upgraded groovy from 3.0.8 to 3.0.9 (thanks to sullis for pull request)</p>
   </li>
   <li>
   <p>Added support for adding multiple LogDetails to the RequestLoggingFilter. You can now do e.g.:</p>
   <p>given().filter(RequestLoggingFilter.with(LogDetail.METHOD, LogDetail.HEADERS, LogDetail.BODY)).when(). ..</p>
   <p>Thanks to lucasnguyen17 for pull request.</p>
   </li>
   <li>
   <p>Fix default implementation of deprecated method detachRoot (<a href="https://github-redirect.dependabot.com/rest-assured/rest-assured/issues/1503">#1503</a>) (thanks to Guillaume Boucherie for pull request)</p>
   </li>
   <li>
   <p>Add on fail message builder for response specification (<a href="https://github-redirect.dependabot.com/rest-assured/rest-assured/issues/1502">#1502</a>). This means that you can no do:
   when().
   get().
   then().
   onFailMessage(&quot;Some specific message&quot;).
   statusCode(200);
   The &quot;onFailMessage&quot; will be shown in the error. This is good if you want to e.g. distinguish more easily between tests if they fail. (thanks to Victor Borovlev for pull request)</p>
   </li>
   <li>
   <p>Allow parsing responses with cookies that has numbers out of signed decimal range (<a href="https://github-redirect.dependabot.com/rest-assured/rest-assured/issues/1069">#1069</a>). This is a backward incompatible change if you're using the maxAge on &quot;DetailedCookie&quot; which now takes a long instead of an int. (thanks to Michał Radomyski for pull request)</p>
   </li>
   <li>
   <p>Upgraded the kotlin extension module to use Kotlin 1.6.10 instead of 1.5.0</p>
   </li>
   <li>
   <p>Introduced a rest-assured bom project for maven. Depend on 'io.rest-assured:rest-assured-bom:4.5.0' to use it. The bom contains configuration details for the rest-assured project that imports the correct dependencies (and versions) and to build your project. (thanks to George Gastaldi for pull request)</p>
   </li>
   <li>
   <p>Added &quot;noContentType()&quot; method to RequestSpecification which allows you to remove the content-type from the request if needed. For example:
   given().
   noContentType().
   when().
   post(&quot;/somewhere&quot;).
   then().
   statusCode(200);
   (issue 1516)</p>
   </li>
   <li>
   <p>Removed accidental import of jdk.nashorn.internal.runtime.JSType.UNDEFINED_LONG from the Cookie class</p>
   </li>
   </ul>
   <h2>Changelog 4.4.0 (2021-05-21)</h2>
   <ul>
   <li>
   <p>Upgrading kotlin extension module to use Kotlin 1.5.0 (previously 1.4.21 was used)</p>
   </li>
   <li>
   <p>Upgrading commons-io from 2.4.0 to 2.8.0</p>
   </li>
   <li>
   <p>Apache http client is upgraded from 4.5.3 to 4.5.13 (thanks to Daniel Reissenberger for pull request)</p>
   </li>
   <li>
   <p>Improved oauth compatibility with new http client</p>
   </li>
   <li>
   <p>Fixed a bug in EncoderConfig where user configured was accidentally set to true in default constructor</p>
   </li>
   <li>
   <p>Non-backward compatible change: REST Assured will no longer add &quot;charset=utf-8&quot; by default to application/json content-type's since this is not recommended by RFC 7159.
   REST Assured will still automatically encode content as UTF-8, it's just that the charset is not added. To revert to the old behavior do:</p>
   <p>RestAssured.config(RestAssured.config().encoderConfig(EncoderConfig.encoderConfig().defaultCharsetForContentType(&quot;UTF-8&quot;, &quot;application/json&quot;)))</p>
   <p>or specify the charset explicitly in the request:</p>
   </li>
   </ul>
   <!-- raw HTML omitted -->
   </blockquote>
   <p>... (truncated)</p>
   </details>
   <details>
   <summary>Commits</summary>
   <ul>
   <li><a href="https://github.com/rest-assured/rest-assured/commit/3b8505bda73feda620159e3d2bb0cbc3c8d50460"><code>3b8505b</code></a> [maven-release-plugin] prepare release rest-assured-4.5.1</li>
   <li><a href="https://github.com/rest-assured/rest-assured/commit/04e1f6fb5cd3f558e093741f88c5de0f017b4666"><code>04e1f6f</code></a> Preparing changelog for release</li>
   <li><a href="https://github.com/rest-assured/rest-assured/commit/43171040bd7ea148bb9d6e611deca396030f3e18"><code>4317104</code></a> Added comment</li>
   <li><a href="https://github.com/rest-assured/rest-assured/commit/30803728d083bdd29aaab5cde1d02647f6fae1c4"><code>3080372</code></a> Fixing a bug in ObjectMapper that required JAXB/JakartaEE when this was not i...</li>
   <li><a href="https://github.com/rest-assured/rest-assured/commit/a28a1ac7071d97a2ac75bc1e3bd83ec73c0c0ce3"><code>a28a1ac</code></a> Update README.md</li>
   <li><a href="https://github.com/rest-assured/rest-assured/commit/191438d4c6c6136cd6aa79248c43a7a8efc18b47"><code>191438d</code></a> Update README.md</li>
   <li><a href="https://github.com/rest-assured/rest-assured/commit/eec93b11f505ebd3593140fc86eb314958fa8cdf"><code>eec93b1</code></a> [maven-release-plugin] prepare for next development iteration</li>
   <li><a href="https://github.com/rest-assured/rest-assured/commit/58d5f1497624b5ead0763b5e118b74c94572d584"><code>58d5f14</code></a> [maven-release-plugin] prepare release rest-assured-4.5.0</li>
   <li><a href="https://github.com/rest-assured/rest-assured/commit/d191be2f0d4d06e2a3cbbab1c888bbc7a0769c54"><code>d191be2</code></a> Preparing changelog for release</li>
   <li><a href="https://github.com/rest-assured/rest-assured/commit/467eb8829fe802caa298d849f41c467ba65b2b32"><code>467eb88</code></a> Trying to fix regression issues after implementing noContentType</li>
   <li>Additional commits viewable in <a href="https://github.com/rest-assured/rest-assured/compare/rest-assured-4.3.0...rest-assured-4.5.1">compare view</a></li>
   </ul>
   </details>
   <br />
   
   Updates `json-path` from 4.3.0 to 4.5.1
   <details>
   <summary>Changelog</summary>
   <p><em>Sourced from <a href="https://github.com/rest-assured/rest-assured/blob/master/changelog.txt">json-path's changelog</a>.</em></p>
   <blockquote>
   <h2>Changelog 4.5.1 (2022-02-11)</h2>
   <ul>
   <li>Fixed a bug in ObjectMapper that required JAXB/JakartaEE when this was not intended (issue 1542)</li>
   </ul>
   <h2>Changelog 4.5.0 (2022-01-21)</h2>
   <ul>
   <li>
   <p>JAXB is now an optional dependency for XmlPath and is now longer required. Depend on 'jakarta.xml.bind:jakarta.xml.bind-api:2.3.3' and 'com.sun.xml.bind:jaxb-impl:2.3.3'</p>
   </li>
   <li>
   <p>Implemented support for serializing and deserializing with Jakarta EE 8 and 9. To use it you need to have Jakarta EE on the classpath, for example by depending on 'jakarta.xml.bind:jakarta.xml.bind-api:3.0.1' and 'org.glassfish.jaxb:jaxb-runtime:3.0.2'.</p>
   </li>
   <li>
   <p>Upgraded groovy from 3.0.8 to 3.0.9 (thanks to sullis for pull request)</p>
   </li>
   <li>
   <p>Added support for adding multiple LogDetails to the RequestLoggingFilter. You can now do e.g.:</p>
   <p>given().filter(RequestLoggingFilter.with(LogDetail.METHOD, LogDetail.HEADERS, LogDetail.BODY)).when(). ..</p>
   <p>Thanks to lucasnguyen17 for pull request.</p>
   </li>
   <li>
   <p>Fix default implementation of deprecated method detachRoot (<a href="https://github-redirect.dependabot.com/rest-assured/rest-assured/issues/1503">#1503</a>) (thanks to Guillaume Boucherie for pull request)</p>
   </li>
   <li>
   <p>Add on fail message builder for response specification (<a href="https://github-redirect.dependabot.com/rest-assured/rest-assured/issues/1502">#1502</a>). This means that you can no do:
   when().
   get().
   then().
   onFailMessage(&quot;Some specific message&quot;).
   statusCode(200);
   The &quot;onFailMessage&quot; will be shown in the error. This is good if you want to e.g. distinguish more easily between tests if they fail. (thanks to Victor Borovlev for pull request)</p>
   </li>
   <li>
   <p>Allow parsing responses with cookies that has numbers out of signed decimal range (<a href="https://github-redirect.dependabot.com/rest-assured/rest-assured/issues/1069">#1069</a>). This is a backward incompatible change if you're using the maxAge on &quot;DetailedCookie&quot; which now takes a long instead of an int. (thanks to Michał Radomyski for pull request)</p>
   </li>
   <li>
   <p>Upgraded the kotlin extension module to use Kotlin 1.6.10 instead of 1.5.0</p>
   </li>
   <li>
   <p>Introduced a rest-assured bom project for maven. Depend on 'io.rest-assured:rest-assured-bom:4.5.0' to use it. The bom contains configuration details for the rest-assured project that imports the correct dependencies (and versions) and to build your project. (thanks to George Gastaldi for pull request)</p>
   </li>
   <li>
   <p>Added &quot;noContentType()&quot; method to RequestSpecification which allows you to remove the content-type from the request if needed. For example:
   given().
   noContentType().
   when().
   post(&quot;/somewhere&quot;).
   then().
   statusCode(200);
   (issue 1516)</p>
   </li>
   <li>
   <p>Removed accidental import of jdk.nashorn.internal.runtime.JSType.UNDEFINED_LONG from the Cookie class</p>
   </li>
   </ul>
   <h2>Changelog 4.4.0 (2021-05-21)</h2>
   <ul>
   <li>
   <p>Upgrading kotlin extension module to use Kotlin 1.5.0 (previously 1.4.21 was used)</p>
   </li>
   <li>
   <p>Upgrading commons-io from 2.4.0 to 2.8.0</p>
   </li>
   <li>
   <p>Apache http client is upgraded from 4.5.3 to 4.5.13 (thanks to Daniel Reissenberger for pull request)</p>
   </li>
   <li>
   <p>Improved oauth compatibility with new http client</p>
   </li>
   <li>
   <p>Fixed a bug in EncoderConfig where user configured was accidentally set to true in default constructor</p>
   </li>
   <li>
   <p>Non-backward compatible change: REST Assured will no longer add &quot;charset=utf-8&quot; by default to application/json content-type's since this is not recommended by RFC 7159.
   REST Assured will still automatically encode content as UTF-8, it's just that the charset is not added. To revert to the old behavior do:</p>
   <p>RestAssured.config(RestAssured.config().encoderConfig(EncoderConfig.encoderConfig().defaultCharsetForContentType(&quot;UTF-8&quot;, &quot;application/json&quot;)))</p>
   <p>or specify the charset explicitly in the request:</p>
   </li>
   </ul>
   <!-- raw HTML omitted -->
   </blockquote>
   <p>... (truncated)</p>
   </details>
   <details>
   <summary>Commits</summary>
   <ul>
   <li><a href="https://github.com/rest-assured/rest-assured/commit/3b8505bda73feda620159e3d2bb0cbc3c8d50460"><code>3b8505b</code></a> [maven-release-plugin] prepare release rest-assured-4.5.1</li>
   <li><a href="https://github.com/rest-assured/rest-assured/commit/04e1f6fb5cd3f558e093741f88c5de0f017b4666"><code>04e1f6f</code></a> Preparing changelog for release</li>
   <li><a href="https://github.com/rest-assured/rest-assured/commit/43171040bd7ea148bb9d6e611deca396030f3e18"><code>4317104</code></a> Added comment</li>
   <li><a href="https://github.com/rest-assured/rest-assured/commit/30803728d083bdd29aaab5cde1d02647f6fae1c4"><code>3080372</code></a> Fixing a bug in ObjectMapper that required JAXB/JakartaEE when this was not i...</li>
   <li><a href="https://github.com/rest-assured/rest-assured/commit/a28a1ac7071d97a2ac75bc1e3bd83ec73c0c0ce3"><code>a28a1ac</code></a> Update README.md</li>
   <li><a href="https://github.com/rest-assured/rest-assured/commit/191438d4c6c6136cd6aa79248c43a7a8efc18b47"><code>191438d</code></a> Update README.md</li>
   <li><a href="https://github.com/rest-assured/rest-assured/commit/eec93b11f505ebd3593140fc86eb314958fa8cdf"><code>eec93b1</code></a> [maven-release-plugin] prepare for next development iteration</li>
   <li><a href="https://github.com/rest-assured/rest-assured/commit/58d5f1497624b5ead0763b5e118b74c94572d584"><code>58d5f14</code></a> [maven-release-plugin] prepare release rest-assured-4.5.0</li>
   <li><a href="https://github.com/rest-assured/rest-assured/commit/d191be2f0d4d06e2a3cbbab1c888bbc7a0769c54"><code>d191be2</code></a> Preparing changelog for release</li>
   <li><a href="https://github.com/rest-assured/rest-assured/commit/467eb8829fe802caa298d849f41c467ba65b2b32"><code>467eb88</code></a> Trying to fix regression issues after implementing noContentType</li>
   <li>Additional commits viewable in <a href="https://github.com/rest-assured/rest-assured/compare/rest-assured-4.3.0...rest-assured-4.5.1">compare view</a></li>
   </ul>
   </details>
   <br />
   
   Updates `xml-path` from 4.3.0 to 4.5.1
   <details>
   <summary>Changelog</summary>
   <p><em>Sourced from <a href="https://github.com/rest-assured/rest-assured/blob/master/changelog.txt">xml-path's changelog</a>.</em></p>
   <blockquote>
   <h2>Changelog 4.5.1 (2022-02-11)</h2>
   <ul>
   <li>Fixed a bug in ObjectMapper that required JAXB/JakartaEE when this was not intended (issue 1542)</li>
   </ul>
   <h2>Changelog 4.5.0 (2022-01-21)</h2>
   <ul>
   <li>
   <p>JAXB is now an optional dependency for XmlPath and is now longer required. Depend on 'jakarta.xml.bind:jakarta.xml.bind-api:2.3.3' and 'com.sun.xml.bind:jaxb-impl:2.3.3'</p>
   </li>
   <li>
   <p>Implemented support for serializing and deserializing with Jakarta EE 8 and 9. To use it you need to have Jakarta EE on the classpath, for example by depending on 'jakarta.xml.bind:jakarta.xml.bind-api:3.0.1' and 'org.glassfish.jaxb:jaxb-runtime:3.0.2'.</p>
   </li>
   <li>
   <p>Upgraded groovy from 3.0.8 to 3.0.9 (thanks to sullis for pull request)</p>
   </li>
   <li>
   <p>Added support for adding multiple LogDetails to the RequestLoggingFilter. You can now do e.g.:</p>
   <p>given().filter(RequestLoggingFilter.with(LogDetail.METHOD, LogDetail.HEADERS, LogDetail.BODY)).when(). ..</p>
   <p>Thanks to lucasnguyen17 for pull request.</p>
   </li>
   <li>
   <p>Fix default implementation of deprecated method detachRoot (<a href="https://github-redirect.dependabot.com/rest-assured/rest-assured/issues/1503">#1503</a>) (thanks to Guillaume Boucherie for pull request)</p>
   </li>
   <li>
   <p>Add on fail message builder for response specification (<a href="https://github-redirect.dependabot.com/rest-assured/rest-assured/issues/1502">#1502</a>). This means that you can no do:
   when().
   get().
   then().
   onFailMessage(&quot;Some specific message&quot;).
   statusCode(200);
   The &quot;onFailMessage&quot; will be shown in the error. This is good if you want to e.g. distinguish more easily between tests if they fail. (thanks to Victor Borovlev for pull request)</p>
   </li>
   <li>
   <p>Allow parsing responses with cookies that has numbers out of signed decimal range (<a href="https://github-redirect.dependabot.com/rest-assured/rest-assured/issues/1069">#1069</a>). This is a backward incompatible change if you're using the maxAge on &quot;DetailedCookie&quot; which now takes a long instead of an int. (thanks to Michał Radomyski for pull request)</p>
   </li>
   <li>
   <p>Upgraded the kotlin extension module to use Kotlin 1.6.10 instead of 1.5.0</p>
   </li>
   <li>
   <p>Introduced a rest-assured bom project for maven. Depend on 'io.rest-assured:rest-assured-bom:4.5.0' to use it. The bom contains configuration details for the rest-assured project that imports the correct dependencies (and versions) and to build your project. (thanks to George Gastaldi for pull request)</p>
   </li>
   <li>
   <p>Added &quot;noContentType()&quot; method to RequestSpecification which allows you to remove the content-type from the request if needed. For example:
   given().
   noContentType().
   when().
   post(&quot;/somewhere&quot;).
   then().
   statusCode(200);
   (issue 1516)</p>
   </li>
   <li>
   <p>Removed accidental import of jdk.nashorn.internal.runtime.JSType.UNDEFINED_LONG from the Cookie class</p>
   </li>
   </ul>
   <h2>Changelog 4.4.0 (2021-05-21)</h2>
   <ul>
   <li>
   <p>Upgrading kotlin extension module to use Kotlin 1.5.0 (previously 1.4.21 was used)</p>
   </li>
   <li>
   <p>Upgrading commons-io from 2.4.0 to 2.8.0</p>
   </li>
   <li>
   <p>Apache http client is upgraded from 4.5.3 to 4.5.13 (thanks to Daniel Reissenberger for pull request)</p>
   </li>
   <li>
   <p>Improved oauth compatibility with new http client</p>
   </li>
   <li>
   <p>Fixed a bug in EncoderConfig where user configured was accidentally set to true in default constructor</p>
   </li>
   <li>
   <p>Non-backward compatible change: REST Assured will no longer add &quot;charset=utf-8&quot; by default to application/json content-type's since this is not recommended by RFC 7159.
   REST Assured will still automatically encode content as UTF-8, it's just that the charset is not added. To revert to the old behavior do:</p>
   <p>RestAssured.config(RestAssured.config().encoderConfig(EncoderConfig.encoderConfig().defaultCharsetForContentType(&quot;UTF-8&quot;, &quot;application/json&quot;)))</p>
   <p>or specify the charset explicitly in the request:</p>
   </li>
   </ul>
   <!-- raw HTML omitted -->
   </blockquote>
   <p>... (truncated)</p>
   </details>
   <details>
   <summary>Commits</summary>
   <ul>
   <li><a href="https://github.com/rest-assured/rest-assured/commit/3b8505bda73feda620159e3d2bb0cbc3c8d50460"><code>3b8505b</code></a> [maven-release-plugin] prepare release rest-assured-4.5.1</li>
   <li><a href="https://github.com/rest-assured/rest-assured/commit/04e1f6fb5cd3f558e093741f88c5de0f017b4666"><code>04e1f6f</code></a> Preparing changelog for release</li>
   <li><a href="https://github.com/rest-assured/rest-assured/commit/43171040bd7ea148bb9d6e611deca396030f3e18"><code>4317104</code></a> Added comment</li>
   <li><a href="https://github.com/rest-assured/rest-assured/commit/30803728d083bdd29aaab5cde1d02647f6fae1c4"><code>3080372</code></a> Fixing a bug in ObjectMapper that required JAXB/JakartaEE when this was not i...</li>
   <li><a href="https://github.com/rest-assured/rest-assured/commit/a28a1ac7071d97a2ac75bc1e3bd83ec73c0c0ce3"><code>a28a1ac</code></a> Update README.md</li>
   <li><a href="https://github.com/rest-assured/rest-assured/commit/191438d4c6c6136cd6aa79248c43a7a8efc18b47"><code>191438d</code></a> Update README.md</li>
   <li><a href="https://github.com/rest-assured/rest-assured/commit/eec93b11f505ebd3593140fc86eb314958fa8cdf"><code>eec93b1</code></a> [maven-release-plugin] prepare for next development iteration</li>
   <li><a href="https://github.com/rest-assured/rest-assured/commit/58d5f1497624b5ead0763b5e118b74c94572d584"><code>58d5f14</code></a> [maven-release-plugin] prepare release rest-assured-4.5.0</li>
   <li><a href="https://github.com/rest-assured/rest-assured/commit/d191be2f0d4d06e2a3cbbab1c888bbc7a0769c54"><code>d191be2</code></a> Preparing changelog for release</li>
   <li><a href="https://github.com/rest-assured/rest-assured/commit/467eb8829fe802caa298d849f41c467ba65b2b32"><code>467eb88</code></a> Trying to fix regression issues after implementing noContentType</li>
   <li>Additional commits viewable in <a href="https://github.com/rest-assured/rest-assured/compare/rest-assured-4.3.0...rest-assured-4.5.1">compare view</a></li>
   </ul>
   </details>
   <br />
   
   
   Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.
   
   [//]: # (dependabot-automerge-start)
   [//]: # (dependabot-automerge-end)
   
   ---
   
   <details>
   <summary>Dependabot commands and options</summary>
   <br />
   
   You can trigger Dependabot actions by commenting on this PR:
   - `@dependabot rebase` will rebase this PR
   - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it
   - `@dependabot merge` will merge this PR after your CI passes on it
   - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it
   - `@dependabot cancel merge` will cancel a previously requested merge and block automerging
   - `@dependabot reopen` will reopen this PR if it is closed
   - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
   - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
   - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
   - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
   
   
   </details>


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@fineract.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [fineract] sonarcloud[bot] commented on pull request #2064: Bump io.rest-assured dependency set from 4.3.0 to 4.5.1

Posted by GitBox <gi...@apache.org>.
sonarcloud[bot] commented on pull request #2064:
URL: https://github.com/apache/fineract/pull/2064#issuecomment-1059756445


   Kudos, SonarCloud Quality Gate passed!&nbsp; &nbsp; ![Quality Gate passed](https://sonarsource.github.io/sonarcloud-github-static-resources/v2/checks/QualityGateBadge/passed-16px.png 'Quality Gate passed')
   
   [![Bug](https://sonarsource.github.io/sonarcloud-github-static-resources/v2/common/bug-16px.png 'Bug')](https://sonarcloud.io/project/issues?id=apache_fineract&pullRequest=2064&resolved=false&types=BUG) [![A](https://sonarsource.github.io/sonarcloud-github-static-resources/v2/checks/RatingBadge/A-16px.png 'A')](https://sonarcloud.io/project/issues?id=apache_fineract&pullRequest=2064&resolved=false&types=BUG) [0 Bugs](https://sonarcloud.io/project/issues?id=apache_fineract&pullRequest=2064&resolved=false&types=BUG)  
   [![Vulnerability](https://sonarsource.github.io/sonarcloud-github-static-resources/v2/common/vulnerability-16px.png 'Vulnerability')](https://sonarcloud.io/project/issues?id=apache_fineract&pullRequest=2064&resolved=false&types=VULNERABILITY) [![A](https://sonarsource.github.io/sonarcloud-github-static-resources/v2/checks/RatingBadge/A-16px.png 'A')](https://sonarcloud.io/project/issues?id=apache_fineract&pullRequest=2064&resolved=false&types=VULNERABILITY) [0 Vulnerabilities](https://sonarcloud.io/project/issues?id=apache_fineract&pullRequest=2064&resolved=false&types=VULNERABILITY)  
   [![Security Hotspot](https://sonarsource.github.io/sonarcloud-github-static-resources/v2/common/security_hotspot-16px.png 'Security Hotspot')](https://sonarcloud.io/project/security_hotspots?id=apache_fineract&pullRequest=2064&resolved=false&types=SECURITY_HOTSPOT) [![A](https://sonarsource.github.io/sonarcloud-github-static-resources/v2/checks/RatingBadge/A-16px.png 'A')](https://sonarcloud.io/project/security_hotspots?id=apache_fineract&pullRequest=2064&resolved=false&types=SECURITY_HOTSPOT) [0 Security Hotspots](https://sonarcloud.io/project/security_hotspots?id=apache_fineract&pullRequest=2064&resolved=false&types=SECURITY_HOTSPOT)  
   [![Code Smell](https://sonarsource.github.io/sonarcloud-github-static-resources/v2/common/code_smell-16px.png 'Code Smell')](https://sonarcloud.io/project/issues?id=apache_fineract&pullRequest=2064&resolved=false&types=CODE_SMELL) [![A](https://sonarsource.github.io/sonarcloud-github-static-resources/v2/checks/RatingBadge/A-16px.png 'A')](https://sonarcloud.io/project/issues?id=apache_fineract&pullRequest=2064&resolved=false&types=CODE_SMELL) [0 Code Smells](https://sonarcloud.io/project/issues?id=apache_fineract&pullRequest=2064&resolved=false&types=CODE_SMELL)
   
   [![No Coverage information](https://sonarsource.github.io/sonarcloud-github-static-resources/v2/checks/CoverageChart/NoCoverageInfo-16px.png 'No Coverage information')](https://sonarcloud.io/component_measures?id=apache_fineract&pullRequest=2064&metric=coverage&view=list) No Coverage information  
   [![No Duplication information](https://sonarsource.github.io/sonarcloud-github-static-resources/v2/checks/Duplications/NoDuplicationInfo-16px.png 'No Duplication information')](https://sonarcloud.io/component_measures?id=apache_fineract&pullRequest=2064&metric=duplicated_lines_density&view=list) No Duplication information
   
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@fineract.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [fineract] vidakovic merged pull request #2064: Bump io.rest-assured dependency set from 4.3.0 to 4.5.1

Posted by GitBox <gi...@apache.org>.
vidakovic merged pull request #2064:
URL: https://github.com/apache/fineract/pull/2064


   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@fineract.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org