Skip to content

Commit 7298066

Browse files
committed
Oppdatert avhengigheter, lagt til database i deployment i min-side-varsler
1 parent 7d592e6 commit 7298066

File tree

3 files changed

+12
-4
lines changed

3 files changed

+12
-4
lines changed

apps/bekreftelse-min-side-oppgaver/nais/nais-dev.yaml

+6
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,12 @@ spec:
4141
requests:
4242
memory: 256Mi
4343
cpu: 25m
44+
gcp:
45+
sqlInstances:
46+
- type: POSTGRES_17
47+
tier: db-f1-micro
48+
databases:
49+
- name: pawbekreftelseminsideoppgaver
4450
accessPolicy:
4551
outbound:
4652
rules:

gradle/libs.versions.toml

+5-3
Original file line numberDiff line numberDiff line change
@@ -12,19 +12,20 @@ graphqlClientVersion = "8.3.0"
1212
orgApacheKafkaVersion = "3.8.1"
1313
ioConfluentKafkaVersion = "7.8.1"
1414
orgApacheAvroVersion = "1.12.0"
15-
comFasterxmlJacksonVersion = "2.18.2"
15+
comFasterxmlJacksonVersion = "2.18.3"
1616
kotlinExposedVersion = "0.59.0"
1717
logstashVersion = "8.0"
1818
logbackVersion = "1.5.17"
1919
kotestVersion = "5.9.1"
20-
mockkVersion = "1.13.16"
20+
mockkVersion = "1.13.17"
2121
testContainersVersion = "1.20.5"
2222
micrometerVersion = "1.14.4"
2323
otelTargetSdkVersion = "1.47.0"
2424
otelInstrumentationVersion = "2.13.2"
2525
coroutinesVersion = "1.10.1"
2626
postgresDriverVersion = "42.7.5"
27-
flywayVersion = "11.3.3"
27+
h2DatabaseVersion = "2.3.232"
28+
flywayVersion = "11.3.4"
2829
hikariVersion = "6.2.1"
2930
kotlinxCoroutinesVersion = "1.10.1"
3031
kotlinxSerializationJsonVersion = "1.8.0"
@@ -98,6 +99,7 @@ database-postgres-driver = { group = "org.postgresql", name = "postgresql", vers
9899
database-flyway-core = { group = "org.flywaydb", name = "flyway-core", version.ref = "flywayVersion" }
99100
database-flyway-postgres = { group = "org.flywaydb", name = "flyway-database-postgresql", version.ref = "flywayVersion" }
100101
database-hikari-connectionPool = { group = "com.zaxxer", name = "HikariCP", version.ref = "hikariVersion" }
102+
database-h2 = { group = "com.h2database", name = "h2", version.ref = "h2DatabaseVersion" }
101103
nav-common-tokenClient = { group = "no.nav.common", name = "token-client", version.ref = "noNavCommonVersion" }
102104
nav-common-log = { group = "no.nav.common", name = "log", version.ref = "noNavCommonVersion" }
103105
nav-common-auditLog = { group = "no.nav.common", name = "audit-log", version.ref = "noNavCommonVersion" }

settings.gradle.kts

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ plugins {
33
kotlin("jvm") version "2.1.10" apply false
44
kotlin("plugin.serialization") version "2.1.10" apply false
55
id("com.google.cloud.tools.jib") version "3.4.4" apply false
6-
id("org.openapi.generator") version "7.11.0" apply false
6+
id("org.openapi.generator") version "7.12.0" apply false
77
id("com.github.davidmc24.gradle.plugin.avro") version "1.9.1" apply false
88
id("com.expediagroup.graphql") version "8.3.0" apply false
99
}

0 commit comments

Comments
 (0)