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
3 changes: 1 addition & 2 deletions .github/workflows/updater.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,5 +37,4 @@ jobs:
body: 'This PR updates dependencies to latest versions'
branch: 'feature/autoupdate-deps'
base: 'master'
labels: 'dependencies'
reviewers: 'juancgalvis'
labels: 'dependencies'
2 changes: 1 addition & 1 deletion async/async-commons/async-commons.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ dependencies {
compileOnly 'io.projectreactor:reactor-core'
api 'tools.jackson.core:jackson-databind'
implementation 'commons-io:commons-io:2.22.0'
implementation 'io.cloudevents:cloudevents-core:4.0.2'
implementation 'io.cloudevents:cloudevents-core:4.1.1'

testImplementation 'io.projectreactor:reactor-test'
}
2 changes: 1 addition & 1 deletion async/async-kafka/async-kafka.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@ dependencies {
api project(':async-commons')
api project(':cloudevents-json-jackson')
api 'io.projectreactor.kafka:reactor-kafka:1.3.25'
implementation 'io.cloudevents:cloudevents-core:4.0.2'
implementation 'io.cloudevents:cloudevents-core:4.1.1'
}
2 changes: 1 addition & 1 deletion async/async-rabbit/async-rabbit.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@ dependencies {
api 'com.rabbitmq:amqp-client'
api 'tools.jackson.core:jackson-databind'

implementation 'io.cloudevents:cloudevents-core:4.0.2'
implementation 'io.cloudevents:cloudevents-core:4.1.1'
testImplementation 'io.projectreactor:reactor-test'
}
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@ ext {

dependencies {
api 'tools.jackson.core:jackson-databind'
implementation 'io.cloudevents:cloudevents-api:4.0.2'
implementation 'io.cloudevents:cloudevents-core:4.0.2'
implementation 'io.cloudevents:cloudevents-api:4.1.1'
implementation 'io.cloudevents:cloudevents-core:4.1.1'
}
2 changes: 1 addition & 1 deletion async/reactor-rabbitmq/reactor-rabbitmq.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ ext {
dependencies {
api 'io.projectreactor:reactor-core'
api 'com.rabbitmq:amqp-client'
}
}
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ buildscript {

plugins {
id 'jacoco'
id 'org.sonarqube' version '7.3.0.8198'
id 'org.springframework.boot' version '4.0.6' apply false
id 'org.sonarqube' version '7.3.1.8318'
id 'org.springframework.boot' version '4.1.0' apply false
id 'io.github.gradle-nexus.publish-plugin' version '2.0.0'
id 'co.com.bancolombia.cleanArchitecture' version '4.4.1'
}
Expand Down
2 changes: 1 addition & 1 deletion domain/domain-events/domain-events-api.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@ ext {

dependencies {
api 'org.reactivestreams:reactive-streams:1.0.4'
api 'io.cloudevents:cloudevents-api:4.0.2'
api 'io.cloudevents:cloudevents-api:4.1.1'
}
2 changes: 1 addition & 1 deletion main.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ subprojects {

dependencyManagement {
imports {
mavenBom 'org.springframework.boot:spring-boot-dependencies:4.0.6'
mavenBom 'org.springframework.boot:spring-boot-dependencies:4.1.0'
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ dependencies {
implementation project(':shared')
implementation project(':async-kafka-starter')
implementation project(':cloudevents-json-jackson')
implementation 'io.cloudevents:cloudevents-core:4.0.2'
implementation 'io.cloudevents:cloudevents-core:4.1.1'
implementation 'org.springframework.boot:spring-boot-starter-webflux'
implementation 'org.springframework.boot:spring-boot-starter-actuator'
implementation 'io.micrometer:micrometer-registry-prometheus'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@ dependencies {
implementation project(":shared")
implementation project(":async-commons-rabbit-starter")
implementation 'org.springframework.boot:spring-boot-starter'
implementation 'io.cloudevents:cloudevents-core:4.0.2'
implementation 'io.cloudevents:cloudevents-core:4.1.1'
}
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ dependencies {
implementation 'org.springframework.boot:spring-boot-starter-webflux'
implementation 'org.springframework.boot:spring-boot-starter-actuator'
implementation 'io.micrometer:micrometer-registry-prometheus'
implementation 'io.cloudevents:cloudevents-core:4.0.2'
implementation 'io.cloudevents:cloudevents-core:4.1.1'

}
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ dependencies {
implementation 'org.springframework.boot:spring-boot-starter-webflux'
implementation 'org.springframework.boot:spring-boot-starter-actuator'
implementation 'io.micrometer:micrometer-registry-prometheus'
implementation 'io.cloudevents:cloudevents-core:4.0.2'
implementation 'io.cloudevents:cloudevents-core:4.1.1'

}
Loading