dependabot[bot] opened a new pull request, #141:
URL: https://github.com/apache/directory-scimple/pull/141

   Bumps [rest-assured-bom](https://github.com/rest-assured/rest-assured) from 
5.1.1 to 5.2.0.
   <details>
   <summary>Changelog</summary>
   <p><em>Sourced from <a 
href="https://github.com/rest-assured/rest-assured/blob/master/changelog.txt";>rest-assured-bom's
 changelog</a>.</em></p>
   <blockquote>
   <h2>Changelog 5.2.0 (2022-09-09)</h2>
   <ul>
   <li>
   <p>Improved FilterContext used in Filters by adding the method 
FilterContext#hasValue(name, object). This makes it easier to check if a value 
exists <em>and</em> is equal to the expect object.</p>
   </li>
   <li>
   <p>Introducing a much improved CSRF (cross-site request forgery) support. 
For example:
   given().
   csrf(&quot;/users&quot;).
   formParm(&quot;firstName&quot;, &quot;John&quot;).
   formParm(&quot;lastName&quot;, &quot;Doe&quot;).
   when().
   post(&quot;/users&quot;).
   then().
   statusCode(200);</p>
   <p>This will first make a GET request to /users (due to 
csrf(&quot;/users&quot;)) to get an HTML page that contains the CSRF token.
   Rest Assured will then automatically try to find the input field that 
contains the CSRF token and include in the POST to /users.</p>
   <p>Here's an example of what Rest Assured expects as a response for the GET 
request to /users:</p>
   <!-- raw HTML omitted -->
   </li>
   <li>
   <p>Fixed so that form authentication takes CSRF into account. The previous 
form authentication CSRF implementation didn't really work (sorry!).
   Now you can combine csrf with form authentication and it actually works as 
expected! Note that for requests other than GET or HEAD,
   you need to specify <em>both</em> form authentication <em>and</em> csrf, 
e.g.</p>
   <p>given().
   csrf(&quot;/users&quot;).
   formParm(&quot;firstName&quot;, &quot;John&quot;).
   formParm(&quot;lastName&quot;, &quot;Doe&quot;).</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/c8e4ca53e4e0bc3ee761b5dbb07100b5c9fd74ae";><code>c8e4ca5</code></a>
 [maven-release-plugin] prepare release rest-assured-5.2.0</li>
   <li><a 
href="https://github.com/rest-assured/rest-assured/commit/d72c03e0478d9b5de64aedba8ca87a5ad08c1e35";><code>d72c03e</code></a>
 [ci skip] Updated changelog with release date</li>
   <li><a 
href="https://github.com/rest-assured/rest-assured/commit/0db04cb508568cede7914cb88e09cf8d25f6bddb";><code>0db04cb</code></a>
 Fixed imports</li>
   <li><a 
href="https://github.com/rest-assured/rest-assured/commit/0cda32928e18acc88aceeac902227048f3378881";><code>0cda329</code></a>
 Fixed failing test</li>
   <li><a 
href="https://github.com/rest-assured/rest-assured/commit/34c857a22276b823bb2805a1f04aad38d638c6cc";><code>34c857a</code></a>
 Moving sundr-maven-plugin to release profile since it doesn't seem to work 
on...</li>
   <li><a 
href="https://github.com/rest-assured/rest-assured/commit/42d45528ddfad4e77a7aec4028fc6ce9ccdf388b";><code>42d4552</code></a>
 Cleanup</li>
   <li><a 
href="https://github.com/rest-assured/rest-assured/commit/4c207e887971cbd894884374aca3c361bc43edb7";><code>4c207e8</code></a>
 Upgrading sundr-maven-plugin to 0.93.0</li>
   <li><a 
href="https://github.com/rest-assured/rest-assured/commit/246ba8740607e23f00097e04526a019685f22627";><code>246ba87</code></a>
 Added csrf to RequestSpecBuilder.java</li>
   <li><a 
href="https://github.com/rest-assured/rest-assured/commit/a6216b75f9f05e1cb2e5d4b747999af3bb663ac8";><code>a6216b7</code></a>
 Fixed some bugs and made some improvements to CSRF</li>
   <li><a 
href="https://github.com/rest-assured/rest-assured/commit/50ad97a8f415c02f1f818521d243c0097a5075a2";><code>50ad97a</code></a>
 Upgraded kotlin module to using Kotlin 1.7.10 (previously 1.6.21 was used)</li>
   <li>Additional commits viewable in <a 
href="https://github.com/rest-assured/rest-assured/compare/rest-assured-5.1.1...rest-assured-5.2.0";>compare
 view</a></li>
   </ul>
   </details>
   <br />
   
   
   [![Dependabot compatibility 
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=io.rest-assured:rest-assured-bom&package-manager=maven&previous-version=5.1.1&new-version=5.2.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
   
   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: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to