Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
4 changes: 2 additions & 2 deletions backend/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ dependencies {
implementation("com.newrelic.telemetry:micrometer-registry-new-relic:0.10.0")

// Reverse DNS lookups with dnsjava
implementation("dnsjava:dnsjava:3.6.4")
implementation("dnsjava:dnsjava:3.6.5")

// Packages required by metrics-lib (org.torproject.descriptor in java module) (JavaDoc: https://metrics.torproject.org/metrics-lib/index.html)
implementation("commons-codec:commons-codec:1.10")
Expand All @@ -85,7 +85,7 @@ dependencies {
testImplementation("org.testcontainers:postgresql:1.21.4")

// Mocking with Mockk (https://mockk.io/)
testImplementation("io.mockk:mockk:1.14.9")
testImplementation("io.mockk:mockk:1.14.11")
}

// Fix version requirement from Kotest
Expand Down
2 changes: 1 addition & 1 deletion backend/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ services:
- "8080:8080"

database:
image: postgres:14-alpine@sha256:d9eb2493ac345dc97c593c960453bcb131db4bc7d6160c5b2e699ef5692ec402
image: postgres:14-alpine@sha256:6765739f422606933bc2aece3a2288e40e491488fd7e7c14e3323dfeefb10e38
environment:
- POSTGRES_USER=postgres
- POSTGRES_PASSWORD=${TORMAP_DATABASE_PASSWORD:?Set TORMAP_DATABASE_PASSWORD to a strong generated password}
Expand Down
Loading