-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update Keycloak #32
Update Keycloak #32
Conversation
…1909 feat(NUM-1909): Extends email domain validation at register - As a super admin I want to allow all wildcards in domains for an organization, so that I don't need to enter all subdomains
…2131-upgrade-plugin-to-keycloack-21.0.1 use keycloack 21.0.1
…182-limit-registration-input NUM-2182 custom validator for registration page field length
…191-keycloak-version-update NUM-2191-update keycloak version for custom plugin to 21.1.1
Bumps [org.apache.maven.plugins:maven-assembly-plugin](https://github.com/apache/maven-assembly-plugin) from 3.3.0 to 3.7.1. - [Release notes](https://github.com/apache/maven-assembly-plugin/releases) - [Commits](apache/maven-assembly-plugin@maven-assembly-plugin-3.3.0...maven-assembly-plugin-3.7.1) --- updated-dependencies: - dependency-name: org.apache.maven.plugins:maven-assembly-plugin dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
…release-pipeline add release pipeline
* changed package structure and groupid in pom.xml
…out-docker remove docker from CI
fix mailwhitelisting in package structure and change license to HiGHmed
`RegistrationProfile` was removed in Keycloak 23
Update for Keycloak 24
Bumps `keycloak.version` from 24.0.4 to 25.0.5. Updates `org.keycloak:keycloak-core` from 24.0.4 to 25.0.5 - [Release notes](https://github.com/keycloak/keycloak/releases) - [Commits](keycloak/keycloak@24.0.4...25.0.5) Updates `org.keycloak:keycloak-services` from 24.0.4 to 25.0.5 - [Release notes](https://github.com/keycloak/keycloak/releases) - [Commits](keycloak/keycloak@24.0.4...25.0.5) Updates `org.keycloak:keycloak-server-spi` from 24.0.4 to 25.0.5 - [Release notes](https://github.com/keycloak/keycloak/releases) - [Commits](keycloak/keycloak@24.0.4...25.0.5) Updates `org.keycloak:keycloak-server-spi-private` from 24.0.4 to 25.0.5 - [Release notes](https://github.com/keycloak/keycloak/releases) - [Commits](keycloak/keycloak@24.0.4...25.0.5) --- updated-dependencies: - dependency-name: org.keycloak:keycloak-core dependency-type: direct:production update-type: version-update:semver-major - dependency-name: org.keycloak:keycloak-services dependency-type: direct:production update-type: version-update:semver-major - dependency-name: org.keycloak:keycloak-server-spi dependency-type: direct:production update-type: version-update:semver-major - dependency-name: org.keycloak:keycloak-server-spi-private dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
…aven/org.apache.maven.plugins-maven-assembly-plugin-3.7.1 build(deps): Bump org.apache.maven.plugins:maven-assembly-plugin from 3.3.0 to 3.7.1
…aven/keycloak.version-25.0.5 Bump keycloak.version from 24.0.4 to 25.0.5
This pull request sets up GitHub code scanning for this repository. Once the scans have completed and the checks have passed, the analysis results for this pull request branch will appear on this overview. Once you merge this pull request, the 'Security' tab will show more code scanning analysis results (for example, for the default branch). Depending on your configuration and choice of analysis tool, future pull requests will be annotated with code scanning analysis results. For more information about GitHub code scanning, check out the documentation. |
for (String domain : domains) { | ||
if (email.endsWith(String.format("@%s", domain))) { | ||
if (Pattern.matches(domainToRegex(domain), emailDomain)) { |
Check failure
Code scanning / CodeQL
Regular expression injection High
No description provided.