Skip to content
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

Merge develop to master #309

Merged
merged 29 commits into from
Apr 10, 2024
Merged
Show file tree
Hide file tree
Changes from 13 commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
9fb1449
Fix #298: Add TraceID/SpanID to Monitoring for Enhanced Observability…
jandusil Feb 6, 2024
b2c15fe
Fix #300: Remove spring.datasource.driverClassName from app props (#301)
jandusil Feb 6, 2024
3c89804
Fix #302: Warning: Using generated security password
banterCZ Feb 13, 2024
c275567
Fix #304: Set develop version to 1.7.0-SNAPSHOT
banterCZ Feb 13, 2024
060a58b
Bump org.springframework.boot:spring-boot-starter-parent
dependabot[bot] Feb 13, 2024
c262ee3
Revert "Fix #288: Update logback"
banterCZ Feb 13, 2024
2985099
Merge pull request #305 from wultra/issues/304-version-1.7.0-SNAPSHOT
banterCZ Feb 14, 2024
e0ab526
Merge pull request #306 from wultra/dependabot/maven/powerauth-data-a…
dependabot[bot] Feb 14, 2024
2541223
Merge pull request #303 from wultra/issues/302-warning-generated-pass…
banterCZ Feb 15, 2024
901724a
Bump org.springframework.boot:spring-boot-starter-parent
dependabot[bot] Feb 23, 2024
88a216a
Merge pull request #307 from wultra/dependabot/maven/powerauth-data-a…
dependabot[bot] Feb 23, 2024
1223dbb
Bump io.getlime.security:powerauth-java-crypto
dependabot[bot] Mar 4, 2024
fc09af6
Merge pull request #308 from wultra/dependabot/maven/powerauth-data-a…
dependabot[bot] Mar 4, 2024
7c6f2f3
Fix #310: Set release version to 1.7.0
banterCZ Mar 5, 2024
30c0cd9
Update GitHub Actions to JDK 21
banterCZ Mar 7, 2024
45f9698
Update GitHub Actions to checkout@v4, and setup-java@v4
banterCZ Mar 7, 2024
108f946
Merge pull request #315 from wultra/issues/gha-jdk-21
banterCZ Mar 7, 2024
910c358
Merge pull request #316 from wultra/issues/update-gha
banterCZ Mar 7, 2024
477ad84
Bump org.springdoc:springdoc-openapi-starter-webmvc-ui
dependabot[bot] Mar 18, 2024
0622c86
Merge pull request #317 from wultra/dependabot/maven/powerauth-data-a…
dependabot[bot] Mar 18, 2024
bad3430
Bump org.springframework.boot:spring-boot-starter-parent
dependabot[bot] Mar 25, 2024
01c3075
Merge pull request #318 from wultra/dependabot/maven/powerauth-data-a…
dependabot[bot] Mar 25, 2024
c2d839d
Downgrade JDK for Coverity GHA to 17
banterCZ Mar 28, 2024
d0b5bbe
Merge pull request #319 from wultra/issues/gha-coverity-jdk-17
banterCZ Mar 28, 2024
b820637
Bump org.springdoc:springdoc-openapi-starter-webmvc-ui
dependabot[bot] Apr 8, 2024
a9f077c
Merge pull request #321 from wultra/dependabot/maven/powerauth-data-a…
dependabot[bot] Apr 8, 2024
9c49610
Fix #313: Update Wultra dependencies
banterCZ Mar 5, 2024
b8dfd8d
Merge pull request #314 from wultra/issues/313-wultra-dependencies
banterCZ Apr 10, 2024
37b92f9
Merge pull request #312 from wultra/issues/310-version-1.7.0
banterCZ Apr 10, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 23 additions & 6 deletions powerauth-data-adapter/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

<artifactId>powerauth-data-adapter</artifactId>
<groupId>io.getlime.security</groupId>
<version>1.6.0</version>
<version>1.7.0-SNAPSHOT</version>
<packaging>war</packaging>

<name>powerauth-data-adapter</name>
Expand All @@ -14,7 +14,7 @@
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>3.1.6</version>
<version>3.2.3</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>

Expand Down Expand Up @@ -65,11 +65,9 @@
<springdoc-openapi-starter-webmvc-ui.version>2.3.0</springdoc-openapi-starter-webmvc-ui.version>
<logstash.version>7.4</logstash.version>
<bcprov-jdk18on.version>1.77</bcprov-jdk18on.version>
<!-- TODO (racansky, 2023-12-08) temporarily override the version 1.4.11 from spring boot version because of CVE -->
<logback.version>1.4.14</logback.version>

<powerauth-crypto.version>1.6.0</powerauth-crypto.version>
<powerauth-webflow.version>1.6.0</powerauth-webflow.version>
<powerauth-crypto.version>1.7.0</powerauth-crypto.version>
<powerauth-webflow.version>1.7.0-SNAPSHOT</powerauth-webflow.version>
</properties>

<dependencyManagement>
Expand Down Expand Up @@ -161,6 +159,25 @@
<artifactId>springdoc-openapi-starter-webmvc-ui</artifactId>
<version>${springdoc-openapi-starter-webmvc-ui.version}</version>
</dependency>

<!-- Monitoring -->
<dependency>
<groupId>io.projectreactor</groupId>
<artifactId>reactor-core-micrometer</artifactId>
</dependency>

<dependency>
<groupId>io.micrometer</groupId>
<artifactId>micrometer-tracing-bridge-otel</artifactId>
</dependency>

<!-- For run at Apple M1 architecture -->
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-resolver-dns-native-macos</artifactId>
<scope>runtime</scope>
<classifier>osx-aarch_64</classifier>
</dependency>
</dependencies>

<build>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,13 @@ spring.datasource.url=jdbc:postgresql://localhost:5432/powerauth
spring.datasource.username=powerauth
spring.datasource.password=
spring.datasource.hikari.auto-commit=false
spring.datasource.driver-class-name=org.postgresql.Driver
spring.jpa.properties.hibernate.connection.characterEncoding=utf8
spring.jpa.properties.hibernate.connection.useUnicode=true

# Database Configuration - Oracle
#spring.datasource.url=jdbc:oracle:thin:@//localhost:1521/powerauth
#spring.datasource.username=powerauth
#spring.datasource.password=
#spring.datasource.driver-class-name=oracle.jdbc.OracleDriver
# The following property speeds up Spring Boot startup

# SMS OTP expiration time in seconds
Expand Down Expand Up @@ -42,3 +40,8 @@ [email protected]@
springdoc.swagger-ui.disable-swagger-default-url=true

logging.config=${POWERAUTH_DATA_ADAPTER_LOGGING:}

# Monitoring
management.tracing.sampling.probability=1.0

spring.autoconfigure.exclude=org.springframework.boot.autoconfigure.security.servlet.UserDetailsServiceAutoConfiguration
Loading