Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update all non-major dependencies #137

Merged
merged 1 commit into from
Mar 25, 2024
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
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# syntax=docker/dockerfile:1.6@sha256:ac85f380a63b13dfcefa89046420e1781752bab202122f8f50032edf31be0021
# syntax=docker/dockerfile:1.7@sha256:dbbd5e059e8a07ff7ea6233b213b36aa516b4c53c645f1817a4dd18b83cbea56
FROM docker.io/library/gradle:8.6.0-jdk21@sha256:a337805a93ad42a5c7df5d81b8b3d44d8e1c8088f48ff11cc9e80eef15459ca6 AS build
WORKDIR /home/gradle/src
ENV GRADLE_USER_HOME /gradle
Expand Down
10 changes: 5 additions & 5 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
plugins {
id "org.springframework.boot" version "3.2.3"
id "org.springframework.boot" version "3.2.4"
id "io.spring.dependency-management" version "1.1.4"
id "java"
id "jacoco"
Expand All @@ -19,7 +19,7 @@ configurations {

ext {
set("springCloudVersion", "2023.0.0")
set("hapiVersion", "7.0.0")
set("hapiVersion", "7.0.2")
}

repositories {
Expand All @@ -39,8 +39,8 @@ dependencies {

implementation "org.miracum:kafka-fhir-serializer:1.0.5"

implementation "io.micrometer:micrometer-registry-prometheus:1.12.3"
implementation "io.micrometer:micrometer-core:1.12.3"
implementation "io.micrometer:micrometer-registry-prometheus:1.12.4"
implementation "io.micrometer:micrometer-core:1.12.4"

implementation "net.logstash.logback:logstash-logback-encoder:7.4"

Expand All @@ -50,7 +50,7 @@ dependencies {
implementation "ca.uhn.hapi.fhir:hapi-fhir-client-okhttp:${hapiVersion}"

developmentOnly "org.springframework.boot:spring-boot-devtools"
runtimeOnly "org.postgresql:postgresql:42.7.2"
runtimeOnly "org.postgresql:postgresql:42.7.3"
runtimeOnly 'com.h2database:h2:2.2.224'
annotationProcessor "org.springframework.boot:spring-boot-configuration-processor"
testImplementation "org.springframework.boot:spring-boot-starter-test"
Expand Down
2 changes: 1 addition & 1 deletion deploy/docker-compose.dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ services:
- kafka

kafka:
image: docker.io/bitnami/kafka:3.6.1@sha256:5f0ed16902daa9797f5cc22d872e6e40aac729df031ee1db32ddbb74133faa4c
image: docker.io/bitnami/kafka:3.7.0@sha256:bb43dbbbe3e4c0e39e5ab41f349114073248dab391668c42ba7e9a6116db881d
restart: unless-stopped
cap_drop:
- ALL
Expand Down
6 changes: 3 additions & 3 deletions deploy/docker-compose.gw-deps.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ services:
- vfps

loinc-converter:
image: ghcr.io/miracum/loinc-conversion:v1.14.7@sha256:976a38044f131d773b547c7cbf07f977f9319ba43a661c628720b3d39c11dca6
image: ghcr.io/miracum/loinc-conversion:v1.14.8@sha256:25cde0ca5293fc9314831787a76105b213a6b4ca49bcf1ba48ac62b765e224e7
ipc: none
cap_drop:
- ALL
Expand All @@ -41,7 +41,7 @@ services:
POSTGRES_DB: vfps

vfps:
image: ghcr.io/miracum/vfps:v1.3.3@sha256:63f37d0541dc9742538cd65292abe314f668ff71308c3a68c8cc15f1281cc903
image: ghcr.io/miracum/vfps:v1.3.4@sha256:b37c6341053e0e59d2e8eb56a7423562c47d5669a4a552a99d1169a7865ac191
restart: unless-stopped
ipc: none
cap_drop:
Expand All @@ -62,7 +62,7 @@ services:
- vfps-db

fhir-server:
image: docker.io/hapiproject/hapi:v7.0.0@sha256:fa294b05509bd3044387140b7fb4d1d3ac43713274fec912446f24a01bca654f
image: docker.io/hapiproject/hapi:v7.0.3@sha256:73ff82fec42e5cbb7e66338d47af09ba91c140e98beeaee41a5459572d5ae1ce
restart: unless-stopped
cap_drop:
- ALL
Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.6-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.7-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
Expand Down