diff --git a/CHANGELOG.md b/CHANGELOG.md index 72d64c5..32cf47d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,14 +9,15 @@ ## [Unreleased] +## [1.4.0] - 2025-05-13 + ### Added ✔️ -- The `TemporalFileManager` has been created to manage temporary files per request. +* The `TemporalFileManager` has been created to manage temporary files per request. * **OSdmsService:** Added `getTemporalFiles` method has been added to `OSdmsService`. - ### Fixed 🐛 -- Closed `S3ObjectInputStream` instances properly to avoid `CLOSE_WAIT` socket issues and potential memory/resource leaks during file download operations. +* Closed `S3ObjectInputStream` instances properly to avoid `CLOSE_WAIT` socket issues and potential memory/resource leaks during file download operations. ### Changed 🛠️ * **S3 Connection:** The connection to S3 has been optimized. @@ -77,9 +78,10 @@ * **OSdmsWorkspace Annotation:** Added an annotation to establish multiple query workspaces on the DMS system for an entity. -[unreleased]: https://github.com/ontimize/ontimize-jee-sdms/compare/1.3.1...HEAD +[unreleased]: https://github.com/ontimize/ontimize-jee-sdms/compare/1.4.0...HEAD +[1.4.0]: https://github.com/ontimize/ontimize-jee-sdms/compare/1.3.1...1.4.0 [1.3.1]: https://github.com/ontimize/ontimize-jee-sdms/compare/1.3.0...1.3.1 [1.3.0]: https://github.com/ontimize/ontimize-jee-sdms/compare/1.2.0...1.3.0 [1.2.0]: https://github.com/ontimize/ontimize-jee-sdms/compare/1.1.0...1.2.0 [1.1.0]: https://github.com/ontimize/ontimize-jee-sdms/compare/1.0.0...1.1.0 -[1.0.0]: https://github.com/ontimize/ontimize-jee-sdms/releases/tag/1.0.0 \ No newline at end of file +[1.0.0]: https://github.com/ontimize/ontimize-jee-sdms/releases/tag/1.0.0 diff --git a/README.md b/README.md index 45a4cfc..6d57b36 100644 --- a/README.md +++ b/README.md @@ -1,16 +1,16 @@ # Ontimize JEE Storage SDMS ## 📜 Introduction -Ontimize JEE Storage SDMS es un módulo del framework Ontimize que proporciona una solución de gestión documental para aplicaciones empresariales basadas en Java Enterprise Edition (JEE). Este módulo permite a las organizaciones almacenar y gestionar documentos dentro de sus aplicaciones empresariales. +Ontimize JEE Storage SDMS is a module of the Ontimize framework that provides a document management solution for Java Enterprise Edition (JEE) based enterprise applications. This module enables organizations to store and manage documents within their enterprise applications. -## ✍ Uso -Para utilizar este módulo, solo necesitas importarlo en tu proyecto. En la entidad que requiera disponer de los endpoints SDMS, tendrás que extender los drivers y añadir los métodos SDMS correspondientes en los servicios de dicha entidad. Para más información, consulta la [documentación](https://ontimize.github.io/docs/v3/systems/sdms/). +## ✍ Usage +To use this module, you only need to import it into your project. For entities requiring SDMS endpoints, you must extend the drivers and add the corresponding SDMS methods to the entity's services. For more information, please refer to the [documentation](https://ontimize.github.io/docs/v3/systems/sdms/). -## 💼 Documentación -Toda la documentación relacionada con su uso en proyectos, tutoriales y detalles de sus sistemas y modos de uso puede encontrarse en línea, accediendo al siguiente enlace de la [documentación de Ontimize Boot](https://ontimize.github.io/docs/). +## 💼 Documentation +All documentation related to project integration, tutorials, and details about its systems and usage can be found online via the following link to the [Ontimize Boot documentation](https://ontimize.github.io/docs/). -## 👁️‍🗨️ Versiones y dependencias -Todas las versiones y dependencias de los artefactos contenidos en este proyecto pueden descargarse desde [Maven Central](https://central.sonatype.dev/namespace/com.ontimize.boot), así como conocer cada una de sus dependencias. +## 👁️‍🗨️ Versions and Dependencies +All versions and dependencies of the artifacts included in this project can be downloaded from [Maven Central](https://central.sonatype.com/namespace/com.ontimize.jee.sdms), as well as viewing each of their dependencies. -## 📣 Registro de cambios -Puedes consultar nuestro registro de cambios en el siguiente [enlace](CHANGELOG.md) +## :gear: Changelog +You can consult our changelog at the following [link](CHANGELOG.md) diff --git a/ontimize-jee-sdms-common/pom.xml b/ontimize-jee-sdms-common/pom.xml index f768e48..3bc2fa7 100644 --- a/ontimize-jee-sdms-common/pom.xml +++ b/ontimize-jee-sdms-common/pom.xml @@ -5,7 +5,7 @@ 4.0.0 com.ontimize.jee.sdms ontimize-jee-sdms-common - 1.4.0-SNAPSHOT + 1.4.0 jar Ontimize EE SDMS (Common module) Ontimize EE Storage DMS (SDMS) - Common module @@ -14,7 +14,7 @@ com.ontimize.jee.sdms ontimize-jee-sdms - 1.4.0-SNAPSHOT + 1.4.0 diff --git a/ontimize-jee-sdms-engine/ontimize-jee-sdms-engine-s3/pom.xml b/ontimize-jee-sdms-engine/ontimize-jee-sdms-engine-s3/pom.xml index 19d3c39..c094050 100644 --- a/ontimize-jee-sdms-engine/ontimize-jee-sdms-engine-s3/pom.xml +++ b/ontimize-jee-sdms-engine/ontimize-jee-sdms-engine-s3/pom.xml @@ -5,7 +5,7 @@ 4.0.0 com.ontimize.jee.sdms ontimize-jee-sdms-engine-s3 - 1.4.0-SNAPSHOT + 1.4.0 jar Ontimize EE SDMS (Engine S3 module) Ontimize EE Storage DMS (SDMS) - Engine S3 module @@ -14,7 +14,7 @@ com.ontimize.jee.sdms ontimize-jee-sdms-engine - 1.4.0-SNAPSHOT + 1.4.0 diff --git a/ontimize-jee-sdms-engine/pom.xml b/ontimize-jee-sdms-engine/pom.xml index aba6f9f..60a162b 100644 --- a/ontimize-jee-sdms-engine/pom.xml +++ b/ontimize-jee-sdms-engine/pom.xml @@ -5,7 +5,7 @@ 4.0.0 com.ontimize.jee.sdms ontimize-jee-sdms-engine - 1.4.0-SNAPSHOT + 1.4.0 pom Ontimize EE SDMS (Engine module) Ontimize EE Storage DMS (SDMS) - Engine module @@ -17,7 +17,7 @@ com.ontimize.jee.sdms ontimize-jee-sdms - 1.4.0-SNAPSHOT + 1.4.0 diff --git a/ontimize-jee-sdms-event/pom.xml b/ontimize-jee-sdms-event/pom.xml index 346c7a3..8e6d2e7 100644 --- a/ontimize-jee-sdms-event/pom.xml +++ b/ontimize-jee-sdms-event/pom.xml @@ -5,7 +5,7 @@ 4.0.0 com.ontimize.jee.sdms ontimize-jee-sdms-event - 1.4.0-SNAPSHOT + 1.4.0 jar Ontimize EE SDMS (Event module) Ontimize EE Storage DMS (SDMS) - Event module @@ -14,7 +14,7 @@ com.ontimize.jee.sdms ontimize-jee-sdms - 1.4.0-SNAPSHOT + 1.4.0 diff --git a/ontimize-jee-sdms-rest/pom.xml b/ontimize-jee-sdms-rest/pom.xml index 7e27a5b..39b963d 100644 --- a/ontimize-jee-sdms-rest/pom.xml +++ b/ontimize-jee-sdms-rest/pom.xml @@ -5,7 +5,7 @@ 4.0.0 com.ontimize.jee.sdms ontimize-jee-sdms-rest - 1.4.0-SNAPSHOT + 1.4.0 jar Ontimize EE SDMS (Rest module) Ontimize EE Storage DMS (SDMS) - Rest module @@ -14,7 +14,7 @@ com.ontimize.jee.sdms ontimize-jee-sdms - 1.4.0-SNAPSHOT + 1.4.0 diff --git a/ontimize-jee-sdms-server/pom.xml b/ontimize-jee-sdms-server/pom.xml index 9322091..f105792 100644 --- a/ontimize-jee-sdms-server/pom.xml +++ b/ontimize-jee-sdms-server/pom.xml @@ -5,7 +5,7 @@ 4.0.0 com.ontimize.jee.sdms ontimize-jee-sdms-server - 1.4.0-SNAPSHOT + 1.4.0 jar Ontimize EE SDMS (Server module) Ontimize EE Storage DMS (SDMS) - Server module @@ -14,7 +14,7 @@ com.ontimize.jee.sdms ontimize-jee-sdms - 1.4.0-SNAPSHOT + 1.4.0 diff --git a/pom.xml b/pom.xml index a83bacd..5387214 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ 4.0.0 com.ontimize.jee.sdms ontimize-jee-sdms - 1.4.0-SNAPSHOT + 1.4.0 pom Ontimize EE SDMS Ontimize EE Storage DMS (SDMS) is a system for storing and managing files by entity. @@ -13,7 +13,7 @@ com.ontimize.jee ontimize-jee - 5.13.0-SNAPSHOT + 5.13.0 @@ -319,4 +319,4 @@ - \ No newline at end of file +