Skip to content

Commit

Permalink
Bump bouncycastle.version from 1.76 to 1.77 (#551)
Browse files Browse the repository at this point in the history
* Bump bouncycastle.version from 1.76 to 1.77

Bumps `bouncycastle.version` from 1.76 to 1.77.

Updates `org.bouncycastle:bcpkix-jdk18on` from 1.76 to 1.77
- [Changelog](https://github.com/bcgit/bc-java/blob/main/docs/releasenotes.html)
- [Commits](https://github.com/bcgit/bc-java/commits)

Updates `org.bouncycastle:bcprov-jdk18on` from 1.76 to 1.77
- [Changelog](https://github.com/bcgit/bc-java/blob/main/docs/releasenotes.html)
- [Commits](https://github.com/bcgit/bc-java/commits)

---
updated-dependencies:
- dependency-name: org.bouncycastle:bcpkix-jdk18on
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: org.bouncycastle:bcprov-jdk18on
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>
  • Loading branch information
dependabot[bot] authored Nov 16, 2023
1 parent 38dac05 commit f7b7aab
Show file tree
Hide file tree
Showing 7 changed files with 1 addition and 143 deletions.

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,6 @@ public OidcClient add(final OIDCC4UIProvider op, final String callbackUrl) {
client.setName(op.getName());
client.setCallbackUrlResolver(new NoParameterCallbackUrlResolver());
client.setCallbackUrl(callbackUrl);
client.getConfig().setSessionLogoutHandler(new NoOpSessionLogoutHandler());
client.init();

cache.add(client);
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,6 @@ public SAML2Client add(
SAML2Client saml2Client = new SAML2Client(cfg);
saml2Client.setCallbackUrlResolver(new NoParameterCallbackUrlResolver());
saml2Client.setCallbackUrl(callbackUrl);
saml2Client.getConfig().setSessionLogoutHandler(new NoOpSessionLogoutHandler());
saml2Client.init();

cache.add(saml2Client);
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -410,7 +410,7 @@ under the License.
<connid.cmd.version>0.5</connid.cmd.version>

<cxf.version>4.0.3</cxf.version>
<bouncycastle.version>1.76</bouncycastle.version>
<bouncycastle.version>1.77</bouncycastle.version>
<nimbus-jose-jwt.version>9.37.1</nimbus-jose-jwt.version>

<spring-boot.version>3.2.0-RC2</spring-boot.version>
Expand Down
2 changes: 0 additions & 2 deletions sra/src/main/java/org/apache/syncope/sra/SecurityConfig.java
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@
import org.apache.syncope.sra.security.PublicRouteMatcher;
import org.apache.syncope.sra.security.cas.CASSecurityConfigUtils;
import org.apache.syncope.sra.security.oauth2.OAuth2SecurityConfigUtils;
import org.apache.syncope.sra.security.pac4j.NoOpSessionLogoutHandler;
import org.apache.syncope.sra.security.saml2.SAML2MetadataEndpoint;
import org.apache.syncope.sra.security.saml2.SAML2SecurityConfigUtils;
import org.apache.syncope.sra.security.saml2.SAML2WebSsoAuthenticationWebFilter;
Expand Down Expand Up @@ -295,7 +294,6 @@ public InputStream retrieve() throws Exception {
saml2Client.setCallbackUrl(props.getSaml2().getEntityId()
+ SAML2WebSsoAuthenticationWebFilter.FILTER_PROCESSES_URI);
saml2Client.setCallbackUrlResolver(new NoParameterCallbackUrlResolver());
saml2Client.getConfig().setSessionLogoutHandler(new NoOpSessionLogoutHandler());
saml2Client.init();

return saml2Client;
Expand Down

This file was deleted.

0 comments on commit f7b7aab

Please sign in to comment.