Compare commits

..

4 Commits

Author SHA1 Message Date
TeamCity
ab29008a06 ci: bump version to v4.34.0 2026-01-20 13:37:33 +00:00
71a549b7f0 feat: Update Hibernate connection provider and database configuration 2026-01-20 14:34:34 +01:00
TeamCity
3ef79e5838 ci: bump version to v4.33.0 2026-01-20 13:19:08 +00:00
f4290b4497 feat: Update connection provider in persistence.xml for HikariCP 2026-01-20 14:16:18 +01:00
4 changed files with 13 additions and 3 deletions

View File

@@ -353,3 +353,13 @@
### Features ### Features
* Update persistence.xml and build.sbt for resource management ([a7292e3](https://git.janis-eccarius.de/KnockOutWhist/KnockOutWhist-Web/commit/a7292e3b5df4788f2f8bea5a2ec7b209b7357608)) * Update persistence.xml and build.sbt for resource management ([a7292e3](https://git.janis-eccarius.de/KnockOutWhist/KnockOutWhist-Web/commit/a7292e3b5df4788f2f8bea5a2ec7b209b7357608))
## (2026-01-20)
### Features
* Update connection provider in persistence.xml for HikariCP ([f4290b4](https://git.janis-eccarius.de/KnockOutWhist/KnockOutWhist-Web/commit/f4290b44976fb6dcd4fc4b896614ba6062da73b1))
## (2026-01-20)
### Features
* Update Hibernate connection provider and database configuration ([71a549b](https://git.janis-eccarius.de/KnockOutWhist/KnockOutWhist-Web/commit/71a549b7f059e748f7691bb9a27e2861b61c6f6f))

View File

@@ -59,6 +59,7 @@ lazy val knockoutwhistweb = project.in(file("knockoutwhistweb"))
libraryDependencies += "org.playframework" %% "play-java-jpa" % "3.0.6", libraryDependencies += "org.playframework" %% "play-java-jpa" % "3.0.6",
libraryDependencies += "com.nimbusds" % "oauth2-oidc-sdk" % "11.31.1", libraryDependencies += "com.nimbusds" % "oauth2-oidc-sdk" % "11.31.1",
libraryDependencies += "org.playframework" %% "play-ws" % "3.0.6", libraryDependencies += "org.playframework" %% "play-ws" % "3.0.6",
libraryDependencies += "org.hibernate.orm" % "hibernate-hikaricp" % "7.2.1.Final",
libraryDependencies += ws, libraryDependencies += ws,
JsEngineKeys.engineType := JsEngineKeys.EngineType.Node, JsEngineKeys.engineType := JsEngineKeys.EngineType.Node,

View File

@@ -1,10 +1,9 @@
# Database configuration - PostgreSQL with environment variables # Database configuration - PostgreSQL with environment variables
db.default.driver=org.postgresql.Driver db.default.driver=org.postgresql.Driver
db.default.url=${?DATABASE_URL} db.default.jdbcUrl=${?DATABASE_URL}
db.default.username=${?DB_USER} db.default.username=${?DB_USER}
db.default.password=${?DB_PASSWORD} db.default.password=${?DB_PASSWORD}
db.default.password=""
# JPA/Hibernate configuration # JPA/Hibernate configuration
jpa.default=defaultPersistenceUnit jpa.default=defaultPersistenceUnit

View File

@@ -1,3 +1,3 @@
MAJOR=4 MAJOR=4
MINOR=32 MINOR=34
PATCH=0 PATCH=0