Skip to content

Commit

Permalink
Release 2.0.0 (#103)
Browse files Browse the repository at this point in the history
  • Loading branch information
dmtkachenko authored Nov 1, 2024
1 parent 456e10f commit 8ff402f
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 2 deletions.
5 changes: 5 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## Version `v2.0.0` (01.11.2024)
* Increase keycloak-admin-client to v25.0.6 (KEYCLOAK-24)
* JIT AuthUser creation in POST /authn/update (MODLOGINKC-34)
* Post request to /authn/login-with-expirity return 400 when keycloak return 401 (MODLOGINKC-35)

## Version `v1.5.0` (24.09.2024)
* JIT AuthUser creation in POST /authn/credentials (MODLOGINKC-17)

Expand Down
21 changes: 19 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<name>mod-login-keycloak</name>
<groupId>org.folio</groupId>
<artifactId>mod-login-keycloak</artifactId>
<version>1.5.1-SNAPSHOT</version>
<version>2.1.0-SNAPSHOT</version>
<description>A login module which implements the 'login' interface, using keycloak for authentication and token
generation
</description>
Expand All @@ -24,7 +24,7 @@
<openapi-tools.jackson-databind-nullable.version>0.2.6</openapi-tools.jackson-databind-nullable.version>
<folio-spring-support.version>8.2.0</folio-spring-support.version>
<folio-java-checkstyle.version>1.0.1</folio-java-checkstyle.version>
<applications-poc-tools.version>1.5.8-SNAPSHOT</applications-poc-tools.version>
<applications-poc-tools.version>2.1.0-SNAPSHOT</applications-poc-tools.version>
<commons-lang3.version>3.17.0</commons-lang3.version>
<coffee-boots.version>4.0.0</coffee-boots.version>

Expand All @@ -41,6 +41,7 @@
<maven-release-plugin.version>3.1.1</maven-release-plugin.version>
<openapi-generator.version>7.9.0</openapi-generator.version>
<mapstruct-plugin.version>1.6.2</mapstruct-plugin.version>
<folio-module-descriptor-validator.version>1.0.0</folio-module-descriptor-validator.version>

<sonar.exclusions>
<!--
Expand Down Expand Up @@ -472,6 +473,22 @@
</execution>
</executions>
</plugin>

<plugin>
<groupId>org.folio</groupId>
<artifactId>folio-module-descriptor-validator</artifactId>
<version>${folio-module-descriptor-validator.version}</version>
<executions>
<execution>
<goals>
<goal>validate</goal>
</goals>
</execution>
</executions>
<configuration>
<failOnInvalidDescriptor>false</failOnInvalidDescriptor>
</configuration>
</plugin>
</plugins>
</build>

Expand Down

0 comments on commit 8ff402f

Please sign in to comment.