From 038d1891c6f61f746b983c4cd4eb901a3a6e6189 Mon Sep 17 00:00:00 2001 From: Adam J Esslinger Date: Fri, 14 Aug 2026 10:59:15 -0400 Subject: [PATCH] feat: rewrite manifest description as a capability-focused tagline The old description ("PostgreSQL plugin driver for Tabularis (parity implementation)") was internal dev-team language that meant nothing to an end user browsing the registry. Rewrote it to list actual capabilities (schema browsing, EXPLAIN plans, type-aware row editing, DDL generation), matching the style of the strongest sibling plugin descriptions already on the registry (mongodb, firestore). Confirmed under the manifest schema's 280-char cap (260 chars). Also synced the GitHub repo's own description field to match, since it was still carrying the old wording. --- .tabularium | 2 +- CHANGELOG.md | 12 ++++++++++++ 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/.tabularium b/.tabularium index fd42bb8..c92ab4e 100644 --- a/.tabularium +++ b/.tabularium @@ -2,7 +2,7 @@ "$schema": "https://registry.tabularis.dev/manifest.schema.json?kind=driver", "name": "postgresql", "version": "1.0.0-beta.5", - "description": "PostgreSQL plugin driver for Tabularis (parity implementation)", + "description": "Full-featured PostgreSQL driver for Tabularis: browse schemas, tables, views, routines, and triggers; run queries with EXPLAIN plans; edit rows with type-aware binding for enums, JSON, arrays, UUIDs; generate DDL for tables, columns, indexes, and foreign keys.", "category": "database", "tags": ["driver", "postgresql", "postgres", "sql", "relational", "database-driver"], "license": "Apache-2.0", diff --git a/CHANGELOG.md b/CHANGELOG.md index c820692..461a5ca 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,17 @@ # Changelog +## [Unreleased] + +### Changed + +- `.tabularium`'s `description` rewritten from the internal-facing + "PostgreSQL plugin driver for Tabularis (parity implementation)" to a + capability-focused tagline (schemas/tables/views/routines/triggers, + EXPLAIN plans, type-aware row editing, DDL generation) matching the + style of the strongest sibling plugin descriptions on the Tabularium + registry (`mongodb`, `firestore`). Synced the GitHub repo's own + description field to match, since it was still the old wording. + ## [1.0.0-beta.5] - 2026-08-14 ### Added