From 30b59fb26e38bc6e752731c9eb6b877abc4f62ca Mon Sep 17 00:00:00 2001 From: openhands Date: Tue, 9 Sep 2025 01:06:15 +0000 Subject: [PATCH 1/2] =?UTF-8?q?docs:=20validar=20creaci=C3=B3n=20de=20pull?= =?UTF-8?q?=20request?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index b6fbaab..c383c48 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,5 @@ # workshop-reactividad Este repositorio contiene los recursos de ejemplo para demostrar como funciona la programacion reactiva en microservicios implementando el framework spring webflux, el mismo contiene un microservicios que consume una base de datos mongodb y otro que sirve de cliente para esta ultima + +## Validación de Creación de Pull Request +Este cambio se realizó para validar que puedo crear pull requests en este repositorio. From 5790ea323c9e91f352369e6a21bd186896e5bfed Mon Sep 17 00:00:00 2001 From: openhands Date: Tue, 9 Sep 2025 01:16:09 +0000 Subject: [PATCH 2/2] chore: upgrade dependencies to latest versions including Java 17 --- cliente-normal/pom.xml | 4 ++-- cliente-webflux/pom.xml | 4 ++-- servidor-normal/pom.xml | 4 ++-- servidor-webflux/pom.xml | 4 ++-- spring-websocket/build.gradle | 6 +++--- 5 files changed, 11 insertions(+), 11 deletions(-) diff --git a/cliente-normal/pom.xml b/cliente-normal/pom.xml index 437f588..9233868 100644 --- a/cliente-normal/pom.xml +++ b/cliente-normal/pom.xml @@ -5,7 +5,7 @@ org.springframework.boot spring-boot-starter-parent - 2.6.4 + 3.2.0 com.workshopreactividad @@ -15,7 +15,7 @@ Cliente de ejemplo para implementar webflux conectando a mongodb UTF-8 - 11 + 17 diff --git a/cliente-webflux/pom.xml b/cliente-webflux/pom.xml index d53d2c6..7de7b5d 100644 --- a/cliente-webflux/pom.xml +++ b/cliente-webflux/pom.xml @@ -5,7 +5,7 @@ org.springframework.boot spring-boot-starter-parent - 2.6.4 + 3.2.0 com.workshopreactividad @@ -15,7 +15,7 @@ Cliente de ejemplo para implementar webflux conectando a mongodb UTF-8 - 11 + 17 diff --git a/servidor-normal/pom.xml b/servidor-normal/pom.xml index 9e0f991..7a961be 100644 --- a/servidor-normal/pom.xml +++ b/servidor-normal/pom.xml @@ -5,7 +5,7 @@ org.springframework.boot spring-boot-starter-parent - 2.6.4 + 3.2.0 com.workshopreactividad @@ -16,7 +16,7 @@ UTF-8 - 11 + 17 diff --git a/servidor-webflux/pom.xml b/servidor-webflux/pom.xml index 7aef610..40da9f2 100644 --- a/servidor-webflux/pom.xml +++ b/servidor-webflux/pom.xml @@ -5,7 +5,7 @@ org.springframework.boot spring-boot-starter-parent - 2.6.4 + 3.2.0 com.workshopreactividad @@ -16,7 +16,7 @@ UTF-8 - 11 + 17 diff --git a/spring-websocket/build.gradle b/spring-websocket/build.gradle index 44b7358..ebe4687 100644 --- a/spring-websocket/build.gradle +++ b/spring-websocket/build.gradle @@ -1,12 +1,12 @@ plugins { - id 'org.springframework.boot' version '2.6.4' - id 'io.spring.dependency-management' version '1.0.11.RELEASE' + id 'org.springframework.boot' version '3.2.0' + id 'io.spring.dependency-management' version '1.1.4' id 'java' } group = 'com.websocket' version = '0.0.1-SNAPSHOT' -sourceCompatibility = '11' +sourceCompatibility = '17' configurations { compileOnly {