refactor(build, dependencies): introduce SQLDelight WebWorker setup, update Spring Boot dependencies, and align versions
Configured `sqlite.worker.js` for OPFS-backed SQLite WASM operations in the frontend build pipeline. Added new Spring Boot dependency bundles including secure service configurations. Integrated updated database utilities with enhanced error handling. Removed outdated circuit breaker tests and replaced them with modern unit and integration test setups.
This commit is contained in:
+2
-1
@@ -17,7 +17,8 @@ import kotlin.random.Random
|
||||
* Nutzt den Application Port (PingUseCase).
|
||||
*/
|
||||
@RestController
|
||||
@CrossOrigin(allowedHeaders = ["*"], allowCredentials = "true")
|
||||
// Spring requires using `originPatterns` (not wildcard `origins`) when credentials are enabled.
|
||||
@CrossOrigin(allowedHeaders = ["*"], allowCredentials = "true", originPatterns = ["*"])
|
||||
class PingController(
|
||||
private val pingUseCase: PingUseCase
|
||||
) : PingApi {
|
||||
|
||||
Reference in New Issue
Block a user