From 62390794575183ea927c86371b52e74ee66d89e7 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 29 Dec 2023 09:34:46 +0000 Subject: [PATCH 1/2] Bump org.openpnp:opencv from 4.8.1-0 to 4.9.0-0 Bumps [org.openpnp:opencv](https://github.com/openpnp/opencv) from 4.8.1-0 to 4.9.0-0. - [Release notes](https://github.com/openpnp/opencv/releases) - [Commits](https://github.com/openpnp/opencv/compare/v4.8.1-0...v4.9.0-0) --- updated-dependencies: - dependency-name: org.openpnp:opencv dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 023b2e9..ec168b3 100644 --- a/pom.xml +++ b/pom.xml @@ -161,7 +161,7 @@ org.openpnp opencv - 4.8.1-0 + 4.9.0-0 org.pf4j From ddaee8161a2ff7343d03b781ef91f22950513b3e Mon Sep 17 00:00:00 2001 From: Ziedelth Date: Thu, 4 Jan 2024 19:11:57 +0100 Subject: [PATCH 2/2] Allow credentials --- src/main/kotlin/fr/ziedelth/plugins/HTTP.kt | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main/kotlin/fr/ziedelth/plugins/HTTP.kt b/src/main/kotlin/fr/ziedelth/plugins/HTTP.kt index f21576e..c1ef982 100644 --- a/src/main/kotlin/fr/ziedelth/plugins/HTTP.kt +++ b/src/main/kotlin/fr/ziedelth/plugins/HTTP.kt @@ -27,6 +27,7 @@ fun Application.configureHTTP(isDebug: Boolean = false) { install(CORS) { HttpMethod.DefaultMethods.forEach { allowMethod(it) } + allowCredentials = true allowHeader(HttpHeaders.Authorization) anyHost() }