From 1beba31683b878b8d405e197182cf6aa363b3f1f Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 22 Aug 2026 04:05:47 +0000 Subject: [PATCH] Version Packages --- .changeset/connection-timeouts.md | 9 -------- .changeset/tui-ink7-and-row-inspection.md | 24 ---------------------- examples/llm-memory-db-mssql/CHANGELOG.md | 7 +++++++ examples/llm-memory-db-mssql/package.json | 2 +- examples/llm-memory-db-pg/CHANGELOG.md | 7 +++++++ examples/llm-memory-db-pg/package.json | 2 +- examples/todo-db/CHANGELOG.md | 7 +++++++ examples/todo-db/package.json | 2 +- packages/cli/CHANGELOG.md | 25 +++++++++++++++++++++++ packages/cli/package.json | 2 +- packages/sdk/CHANGELOG.md | 10 +++++++++ packages/sdk/package.json | 2 +- 12 files changed, 61 insertions(+), 38 deletions(-) delete mode 100644 .changeset/connection-timeouts.md delete mode 100644 .changeset/tui-ink7-and-row-inspection.md diff --git a/.changeset/connection-timeouts.md b/.changeset/connection-timeouts.md deleted file mode 100644 index f1d8107c..00000000 --- a/.changeset/connection-timeouts.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -"@noormdev/sdk": minor ---- - -## Connection - -### Added - -* `feat(db):` Connections now carry a connect timeout, so an unreachable host fails instead of hanging forever. Defaults to 15s; set `connection.connectTimeoutMs` per config to raise it for a database that resumes from an auto-paused state. diff --git a/.changeset/tui-ink7-and-row-inspection.md b/.changeset/tui-ink7-and-row-inspection.md deleted file mode 100644 index c55f6b99..00000000 --- a/.changeset/tui-ink7-and-row-inspection.md +++ /dev/null @@ -1,24 +0,0 @@ ---- -"@noormdev/cli": minor ---- - -## TUI - -### Added - -* `feat(tui):` The interactive UI now draws in the alternate screen at full terminal height, and restores the terminal on exit instead of leaving itself in scrollback. -* `feat(tui):` Forms are a two-column layout with browse and edit modes. Arrow keys move between fields on every field type including selects, `Enter` opens a field and commits it, `Esc` reverts it, and submit is a `[ Save ]` row you navigate to. -* `feat(tui):` Lists size themselves to the terminal instead of a fixed row count, and keep their cursor when you leave a screen and come back. -* `feat(explore):` `r` on a table shows its first and last rows, ordered by primary key. `Enter` opens a row as YAML or JSON, `f` switches format, and the arrow keys walk between rows. -* `feat(explore):` The detail screen scrolls, and `v` shows a value the column grid had to truncate. -* `feat(sql):` Wide result grids drop whole columns behind a `… N more columns` marker rather than squeezing every column past legibility. `Enter` opens a row in full. -* `feat(tui):` Mouse support: click to move the cursor, double-click to activate, wheel to scroll. Set `ui.mouse: false` in `.noorm/settings.yml` to restore click-drag text selection. -* `feat(db):` `Esc` cancels a connection test or query that is hanging. On PostgreSQL and MySQL the server is asked to stop the query; on SQL Server and SQLite the client stops waiting and says so. - -### Fixed - -* `fix(sql):` Backspace in the results filter did nothing, because the key reports as `delete` on the previous Ink release. -* `fix(tui):` Screens sized from the terminal never recomputed on resize. -* `fix(explore):` Column, index and parameter lists re-flowed per row, so the type column landed on a different offset on nearly every row. -* `fix(explore):` "Total Objects" counted categories the screen does not list, so it exceeded the rows a reader could see. -* `fix(tui):` The help screen and log viewer drew past the bottom of the window, putting their first lines out of reach. diff --git a/examples/llm-memory-db-mssql/CHANGELOG.md b/examples/llm-memory-db-mssql/CHANGELOG.md index d1262eee..407aae3f 100644 --- a/examples/llm-memory-db-mssql/CHANGELOG.md +++ b/examples/llm-memory-db-mssql/CHANGELOG.md @@ -1,5 +1,12 @@ # @noormdev/example-llm-memory-db-mssql +## 0.0.5 + +### Patch Changes + +- Updated dependencies [bab7dfc] + - @noormdev/sdk@1.2.0 + ## 0.0.4 ### Patch Changes diff --git a/examples/llm-memory-db-mssql/package.json b/examples/llm-memory-db-mssql/package.json index 5b8e039a..e45ab652 100644 --- a/examples/llm-memory-db-mssql/package.json +++ b/examples/llm-memory-db-mssql/package.json @@ -1,6 +1,6 @@ { "name": "@noormdev/example-llm-memory-db-mssql", - "version": "0.0.4", + "version": "0.0.5", "private": true, "type": "module", "description": "LLM-memory schema + SDK example exercising NoORM against MSSQL with TVPs", diff --git a/examples/llm-memory-db-pg/CHANGELOG.md b/examples/llm-memory-db-pg/CHANGELOG.md index 1e69165e..11353d1e 100644 --- a/examples/llm-memory-db-pg/CHANGELOG.md +++ b/examples/llm-memory-db-pg/CHANGELOG.md @@ -1,5 +1,12 @@ # @noormdev/example-llm-memory-db-pg +## 0.0.5 + +### Patch Changes + +- Updated dependencies [bab7dfc] + - @noormdev/sdk@1.2.0 + ## 0.0.4 ### Patch Changes diff --git a/examples/llm-memory-db-pg/package.json b/examples/llm-memory-db-pg/package.json index 9ccc263b..8e18068f 100644 --- a/examples/llm-memory-db-pg/package.json +++ b/examples/llm-memory-db-pg/package.json @@ -1,6 +1,6 @@ { "name": "@noormdev/example-llm-memory-db-pg", - "version": "0.0.4", + "version": "0.0.5", "private": true, "type": "module", "description": "Full-surface noorm example: LLM memory + task tracker schema, SDK, and tests against PostgreSQL", diff --git a/examples/todo-db/CHANGELOG.md b/examples/todo-db/CHANGELOG.md index 4a949b76..793588e0 100644 --- a/examples/todo-db/CHANGELOG.md +++ b/examples/todo-db/CHANGELOG.md @@ -1,5 +1,12 @@ # @noormdev/example-todo-db +## 0.0.5 + +### Patch Changes + +- Updated dependencies [bab7dfc] + - @noormdev/sdk@1.2.0 + ## 0.0.4 ### Patch Changes diff --git a/examples/todo-db/package.json b/examples/todo-db/package.json index 0dcba611..d2f68c85 100644 --- a/examples/todo-db/package.json +++ b/examples/todo-db/package.json @@ -1,6 +1,6 @@ { "name": "@noormdev/example-todo-db", - "version": "0.0.4", + "version": "0.0.5", "private": true, "type": "module", "description": "SDK integration tests exercising the todo-db example schema", diff --git a/packages/cli/CHANGELOG.md b/packages/cli/CHANGELOG.md index a0cc0e0f..2bcab871 100644 --- a/packages/cli/CHANGELOG.md +++ b/packages/cli/CHANGELOG.md @@ -1,5 +1,30 @@ # @noormdev/cli +## 1.2.0 + +### Minor Changes + +- bab7dfc: ## TUI + + ### Added + + - `feat(tui):` The interactive UI now draws in the alternate screen at full terminal height, and restores the terminal on exit instead of leaving itself in scrollback. + - `feat(tui):` Forms are a two-column layout with browse and edit modes. Arrow keys move between fields on every field type including selects, `Enter` opens a field and commits it, `Esc` reverts it, and submit is a `[ Save ]` row you navigate to. + - `feat(tui):` Lists size themselves to the terminal instead of a fixed row count, and keep their cursor when you leave a screen and come back. + - `feat(explore):` `r` on a table shows its first and last rows, ordered by primary key. `Enter` opens a row as YAML or JSON, `f` switches format, and the arrow keys walk between rows. + - `feat(explore):` The detail screen scrolls, and `v` shows a value the column grid had to truncate. + - `feat(sql):` Wide result grids drop whole columns behind a `… N more columns` marker rather than squeezing every column past legibility. `Enter` opens a row in full. + - `feat(tui):` Mouse support: click to move the cursor, double-click to activate, wheel to scroll. Set `ui.mouse: false` in `.noorm/settings.yml` to restore click-drag text selection. + - `feat(db):` `Esc` cancels a connection test or query that is hanging. On PostgreSQL and MySQL the server is asked to stop the query; on SQL Server and SQLite the client stops waiting and says so. + + ### Fixed + + - `fix(sql):` Backspace in the results filter did nothing, because the key reports as `delete` on the previous Ink release. + - `fix(tui):` Screens sized from the terminal never recomputed on resize. + - `fix(explore):` Column, index and parameter lists re-flowed per row, so the type column landed on a different offset on nearly every row. + - `fix(explore):` "Total Objects" counted categories the screen does not list, so it exceeded the rows a reader could see. + - `fix(tui):` The help screen and log viewer drew past the bottom of the window, putting their first lines out of reach. + ## 1.1.0 ## 1.0.2 diff --git a/packages/cli/package.json b/packages/cli/package.json index 4c5dc6ce..d43623bc 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -1,6 +1,6 @@ { "name": "@noormdev/cli", - "version": "1.1.0", + "version": "1.2.0", "description": "Database schema & changeset manager CLI", "type": "module", "bin": { diff --git a/packages/sdk/CHANGELOG.md b/packages/sdk/CHANGELOG.md index 31022e39..1d7be330 100644 --- a/packages/sdk/CHANGELOG.md +++ b/packages/sdk/CHANGELOG.md @@ -1,5 +1,15 @@ # @noormdev/sdk +## 1.2.0 + +### Minor Changes + +- bab7dfc: ## Connection + + ### Added + + - `feat(db):` Connections now carry a connect timeout, so an unreachable host fails instead of hanging forever. Defaults to 15s; set `connection.connectTimeoutMs` per config to raise it for a database that resumes from an auto-paused state. + ## 1.1.0 ### Minor Changes diff --git a/packages/sdk/package.json b/packages/sdk/package.json index 36d54dfb..bb0c11b0 100644 --- a/packages/sdk/package.json +++ b/packages/sdk/package.json @@ -1,6 +1,6 @@ { "name": "@noormdev/sdk", - "version": "1.1.0", + "version": "1.2.0", "description": "Database schema & changeset manager SDK", "type": "module", "main": "./dist/index.js",