From 101d2d40ccba92e89abf7831db89e14785fc3cb2 Mon Sep 17 00:00:00 2001 From: Rene Nochebuena Guerrero Date: Tue, 18 Aug 2026 18:47:09 -0600 Subject: [PATCH] docs: refresh module versions to v1.7.1 (lockstep) --- README.md | 60 +++++++++++++++++++++++++++---------------------------- 1 file changed, 30 insertions(+), 30 deletions(-) diff --git a/README.md b/README.md index a83a60a..8a245ad 100644 --- a/README.md +++ b/README.md @@ -39,22 +39,22 @@ API requires exactly three: **`core` + `web` + one `db-*`**. | Module | Version | Purpose | Depends on | |---|---|---|---| -| [`contracts`][contracts] | v1.7.0 | Pure interfaces. The constitution of the framework. | — | -| [`core`][core] | v1.7.0 | Lifecycle, logging, errors, validation | `contracts` | -| [`web`][web] | v1.7.0 | HTTP server, middleware, routing, health | `contracts` `core` | -| [`auth`][auth] | v1.7.0 | Auth middleware, RBAC | `contracts` `core` `web` | -| [`auth-jwt`][auth-jwt] | v1.7.0 | JWT signing, token pairs, refresh | `contracts` `core` `auth` | +| [`contracts`][contracts] | v1.7.1 | Pure interfaces. The constitution of the framework. | — | +| [`core`][core] | v1.7.1 | Lifecycle, logging, errors, validation | `contracts` | +| [`web`][web] | v1.7.1 | HTTP server, middleware, routing, health | `contracts` `core` | +| [`auth`][auth] | v1.7.1 | Auth middleware, RBAC | `contracts` `core` `web` | +| [`auth-jwt`][auth-jwt] | v1.7.1 | JWT signing, token pairs, refresh | `contracts` `core` `auth` | | [`auth-firebase`][auth-firebase] | — | Firebase authentication *(deferred)* | `contracts` `core` `auth` | -| [`db-postgres`][db-postgres] | v1.7.0 | PostgreSQL client | `contracts` `core` | -| [`db-mysql`][db-mysql] | v1.7.0 | MySQL client | `contracts` `core` | -| [`db-sqlite`][db-sqlite] | v1.7.0 | SQLite client | `contracts` `core` | -| [`cache-valkey`][cache-valkey] | v1.7.0 | Valkey / Redis-compatible cache | `contracts` `core` | -| [`storage-minio`][storage-minio] | v1.7.0 | Object storage | `contracts` `core` | -| [`telemetry`][telemetry] | v1.7.0 | OpenTelemetry — `main` packages only | `contracts` `core` | -| [`worker`][worker] | v1.7.0 | Concurrent background worker pool | `contracts` | -| [`httpclient`][httpclient] | v1.7.0 | Resilient outbound HTTP client | `contracts` `core` | -| [`smtp`][smtp] | v1.7.0 | SMTP email delivery with no-op fallback | `contracts` `core` | -| [`spa-server`][spa-server] | v1.7.0 | Container-first static server for SPAs / PWAs (Docker base image) | `contracts` `core` | +| [`db-postgres`][db-postgres] | v1.7.1 | PostgreSQL client | `contracts` `core` | +| [`db-mysql`][db-mysql] | v1.7.1 | MySQL client | `contracts` `core` | +| [`db-sqlite`][db-sqlite] | v1.7.1 | SQLite client | `contracts` `core` | +| [`cache-valkey`][cache-valkey] | v1.7.1 | Valkey / Redis-compatible cache | `contracts` `core` | +| [`storage-minio`][storage-minio] | v1.7.1 | Object storage | `contracts` `core` | +| [`telemetry`][telemetry] | v1.7.1 | OpenTelemetry — `main` packages only | `contracts` `core` | +| [`worker`][worker] | v1.7.1 | Concurrent background worker pool | `contracts` | +| [`httpclient`][httpclient] | v1.7.1 | Resilient outbound HTTP client | `contracts` `core` | +| [`smtp`][smtp] | v1.7.1 | SMTP email delivery with no-op fallback | `contracts` `core` | +| [`spa-server`][spa-server] | v1.7.1 | Container-first static server for SPAs / PWAs (Docker base image) | `contracts` `core` | --- @@ -62,22 +62,22 @@ API requires exactly three: **`core` + `web` + one `db-*`**. ```mermaid graph TD - contracts["contracts\nv1.7.0"] - core["core\nv1.7.0"] - web["web\nv1.7.0"] - auth["auth\nv1.7.0"] - auth_jwt["auth-jwt\nv1.7.0"] + contracts["contracts\nv1.7.1"] + core["core\nv1.7.1"] + web["web\nv1.7.1"] + auth["auth\nv1.7.1"] + auth_jwt["auth-jwt\nv1.7.1"] auth_firebase["auth-firebase\n(deferred)"] - db_postgres["db-postgres\nv1.7.0"] - db_mysql["db-mysql\nv1.7.0"] - db_sqlite["db-sqlite\nv1.7.0"] - cache_valkey["cache-valkey\nv1.7.0"] - storage_minio["storage-minio\nv1.7.0"] - telemetry["telemetry\nv1.7.0"] - worker["worker\nv1.7.0"] - httpclient["httpclient\nv1.7.0"] - smtp["smtp\nv1.7.0"] - spa_server["spa-server\nv1.7.0"] + db_postgres["db-postgres\nv1.7.1"] + db_mysql["db-mysql\nv1.7.1"] + db_sqlite["db-sqlite\nv1.7.1"] + cache_valkey["cache-valkey\nv1.7.1"] + storage_minio["storage-minio\nv1.7.1"] + telemetry["telemetry\nv1.7.1"] + worker["worker\nv1.7.1"] + httpclient["httpclient\nv1.7.1"] + smtp["smtp\nv1.7.1"] + spa_server["spa-server\nv1.7.1"] contracts --> core contracts --> web