diff --git a/CHANGELOG.md b/CHANGELOG.md deleted file mode 100644 index a203356..0000000 --- a/CHANGELOG.md +++ /dev/null @@ -1,83 +0,0 @@ -## [v1.0.0](https://github.com/juandiii/ark/releases/tag/v1.0.0) — 2026-04-01 - -### ✨ Features - -- feat: support auto-configuration spring-boot-webflux (#40) @juandiii -- add support multipart (#42) @juandiii - -### 📦 Other Changes - -- docs: update docs (#41) @juandiii -- Release to 1.0.0 (#44) @juandiii -- Develop (#45) @juandiii - ---- - -## [v1.0.10](https://github.com/juandiii/ark/releases/tag/v1.0.10) — 2026-03-29 - -### ✨ Features - -- Add trust-all for SSL and type-safe config and fix YAML logging. (#33) @juandiii -- feat: add per-client interceptors and config headers support (#34) @juandiii -- feature: Add Retry Policy and Retry transport wrap (#37) @juandiii - -### 📦 Other Changes - -- refactor: move base package to xyz.juandiii.ark.core (#35) @juandiii -- docs: update docs (#36) @juandiii -- docs: add retry.md (#38) @juandiii - ---- - -## [v1.0.9](https://github.com/juandiii/ark/releases/tag/v1.0.9) — 2026-03-28 - -### 🐛 Bug Fixes - -- Add new extension for quarkus (#24) @juandiii -- Fix ark-quarkus-jackson and improve docs (#25) @juandiii -- fix: add exceptions and add more code coverage and fix path uri with … (#27) @juandiii - -### 📦 Other Changes - -- Add Docs (#31) @juandiii - ---- - -## [v1.0.8](https://github.com/juandiii/ark/releases/tag/v1.0.8) — 2026-03-25 - -### 🐛 Bug Fixes - -- fix: pipeline (#22) @juandiii - ---- - -## [v1.0.7](https://github.com/juandiii/ark/releases/tag/v1.0.7) — 2026-03-25 - -### 🐛 Bug Fixes - -- fix: adjust workflow github (#20) @juandiii - ---- - -## [v1.0.6](https://github.com/juandiii/ark/releases/tag/v1.0.6) — 2026-03-25 - -### 🐛 Bug Fixes - -- fix: adjust docs (#18) @juandiii - ---- - -# Changelog - -## [v1.0.5](https://github.com/juandiii/ark/releases/tag/v1.0.5) — 2026-03-25 - -### 🐛 Bug Fixes - -- fix: normalize double slashes in URI building (#12) @juandiii - -### 📦 Other Changes - -- docs: improve README.MD (#11) @juandiii -- Fixes `prepare-release` (#15) @juandiii - ---- diff --git a/ark-async/pom.xml b/ark-async/pom.xml index 0071b6c..c4b88c8 100644 --- a/ark-async/pom.xml +++ b/ark-async/pom.xml @@ -9,6 +9,7 @@ ark-async ark-async + CompletableFuture execution model for async HTTP clients diff --git a/ark-bom/pom.xml b/ark-bom/pom.xml index aea14bf..d49f75c 100644 --- a/ark-bom/pom.xml +++ b/ark-bom/pom.xml @@ -9,6 +9,8 @@ 1.0.0 ark-bom + ark-bom + Bill of Materials for Ark dependency management pom diff --git a/ark-core/pom.xml b/ark-core/pom.xml index 421b876..9a3bb0d 100644 --- a/ark-core/pom.xml +++ b/ark-core/pom.xml @@ -9,7 +9,7 @@ ark-core ark-core - http://maven.apache.org + Core module with fluent API, abstractions, and zero external dependencies diff --git a/ark-jackson-classic/pom.xml b/ark-jackson-classic/pom.xml index a988dd6..bab480e 100644 --- a/ark-jackson-classic/pom.xml +++ b/ark-jackson-classic/pom.xml @@ -9,6 +9,7 @@ ark-jackson-classic ark-jackson-classic + Jackson 2.x JSON serializer diff --git a/ark-jackson/pom.xml b/ark-jackson/pom.xml index 52518d7..1df9ccb 100644 --- a/ark-jackson/pom.xml +++ b/ark-jackson/pom.xml @@ -9,6 +9,7 @@ ark-jackson ark-jackson + Jackson 3.x JSON serializer diff --git a/ark-jsonb/pom.xml b/ark-jsonb/pom.xml index 7501fb7..2ad803f 100644 --- a/ark-jsonb/pom.xml +++ b/ark-jsonb/pom.xml @@ -9,6 +9,7 @@ ark-jsonb ark-jsonb + Jakarta JSON-B serializer diff --git a/ark-mutiny/pom.xml b/ark-mutiny/pom.xml index aec51a4..9e68999 100644 --- a/ark-mutiny/pom.xml +++ b/ark-mutiny/pom.xml @@ -9,6 +9,7 @@ ark-mutiny ark-mutiny + SmallRye Mutiny Uni/Multi execution model for Quarkus diff --git a/ark-proxy-jaxrs/pom.xml b/ark-proxy-jaxrs/pom.xml index ee8d014..e822ce6 100644 --- a/ark-proxy-jaxrs/pom.xml +++ b/ark-proxy-jaxrs/pom.xml @@ -9,6 +9,7 @@ ark-proxy-jaxrs ark-proxy-jaxrs + Declarative proxy for JAX-RS annotations diff --git a/ark-proxy-spring/pom.xml b/ark-proxy-spring/pom.xml index 70bfc43..1540f48 100644 --- a/ark-proxy-spring/pom.xml +++ b/ark-proxy-spring/pom.xml @@ -9,6 +9,7 @@ ark-proxy-spring ark-proxy-spring + Declarative proxy for Spring HttpExchange annotations diff --git a/ark-quarkus-jackson/deployment/pom.xml b/ark-quarkus-jackson/deployment/pom.xml index 8ec676d..6692c61 100644 --- a/ark-quarkus-jackson/deployment/pom.xml +++ b/ark-quarkus-jackson/deployment/pom.xml @@ -9,6 +9,7 @@ ark-quarkus-jackson-deployment ark-quarkus-jackson - Deployment + Quarkus extension deployment for Ark HTTP client with Jackson diff --git a/ark-quarkus-jackson/pom.xml b/ark-quarkus-jackson/pom.xml index c28b3a3..d7a56a7 100644 --- a/ark-quarkus-jackson/pom.xml +++ b/ark-quarkus-jackson/pom.xml @@ -9,6 +9,7 @@ ark-quarkus-jackson-parent ark-quarkus-jackson + Quarkus extension parent for Ark HTTP client with Jackson pom diff --git a/ark-quarkus-jackson/runtime/pom.xml b/ark-quarkus-jackson/runtime/pom.xml index 64eac10..881ac16 100644 --- a/ark-quarkus-jackson/runtime/pom.xml +++ b/ark-quarkus-jackson/runtime/pom.xml @@ -9,6 +9,7 @@ ark-quarkus-jackson ark-quarkus-jackson - Runtime + Quarkus extension runtime for Ark HTTP client with Jackson diff --git a/ark-reactor/pom.xml b/ark-reactor/pom.xml index f0b3ba2..f3c0d02 100644 --- a/ark-reactor/pom.xml +++ b/ark-reactor/pom.xml @@ -9,6 +9,7 @@ ark-reactor ark-reactor + Reactor Mono/Flux execution model for reactive HTTP clients diff --git a/ark-spring-boot-starter-webflux/pom.xml b/ark-spring-boot-starter-webflux/pom.xml index 17e28d4..1370ffc 100644 --- a/ark-spring-boot-starter-webflux/pom.xml +++ b/ark-spring-boot-starter-webflux/pom.xml @@ -9,6 +9,7 @@ ark-spring-boot-starter-webflux ark-spring-boot-starter-webflux + Spring Boot auto-configuration for reactive Ark HTTP client diff --git a/ark-spring-boot-starter/pom.xml b/ark-spring-boot-starter/pom.xml index 5008fce..4928575 100644 --- a/ark-spring-boot-starter/pom.xml +++ b/ark-spring-boot-starter/pom.xml @@ -9,6 +9,7 @@ ark-spring-boot-starter ark-spring-boot-starter + Spring Boot auto-configuration for sync Ark HTTP client diff --git a/ark-transport-apache/pom.xml b/ark-transport-apache/pom.xml index 00cfa8c..b50e757 100644 --- a/ark-transport-apache/pom.xml +++ b/ark-transport-apache/pom.xml @@ -9,6 +9,7 @@ ark-transport-apache ark-transport-apache + HTTP transport using Apache HttpClient 5 diff --git a/ark-transport-jdk/pom.xml b/ark-transport-jdk/pom.xml index 0efb72a..04f00f2 100644 --- a/ark-transport-jdk/pom.xml +++ b/ark-transport-jdk/pom.xml @@ -9,6 +9,7 @@ ark-transport-jdk ark-transport-jdk + HTTP transport using Java native HttpClient diff --git a/ark-transport-reactor/pom.xml b/ark-transport-reactor/pom.xml index 2a41b2b..f8ce3af 100644 --- a/ark-transport-reactor/pom.xml +++ b/ark-transport-reactor/pom.xml @@ -9,6 +9,7 @@ ark-transport-reactor ark-transport-reactor + HTTP transport using Reactor Netty diff --git a/ark-transport-vertx-mutiny/pom.xml b/ark-transport-vertx-mutiny/pom.xml index ce43a1e..79efbbf 100644 --- a/ark-transport-vertx-mutiny/pom.xml +++ b/ark-transport-vertx-mutiny/pom.xml @@ -9,6 +9,7 @@ ark-transport-vertx-mutiny ark-transport-vertx-mutiny + HTTP transport using Vert.x Mutiny WebClient diff --git a/ark-transport-vertx/pom.xml b/ark-transport-vertx/pom.xml index 0d6741c..c5c91f2 100644 --- a/ark-transport-vertx/pom.xml +++ b/ark-transport-vertx/pom.xml @@ -9,6 +9,7 @@ ark-transport-vertx ark-transport-vertx + HTTP transport using Vert.x WebClient with Future diff --git a/ark-vertx/pom.xml b/ark-vertx/pom.xml index a350bab..166210c 100644 --- a/ark-vertx/pom.xml +++ b/ark-vertx/pom.xml @@ -9,6 +9,7 @@ ark-vertx ark-vertx + Vert.x Future execution model for Vert.x-native async