Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 0 additions & 9 deletions .changeset/connection-timeouts.md

This file was deleted.

24 changes: 0 additions & 24 deletions .changeset/tui-ink7-and-row-inspection.md

This file was deleted.

7 changes: 7 additions & 0 deletions examples/llm-memory-db-mssql/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion examples/llm-memory-db-mssql/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
7 changes: 7 additions & 0 deletions examples/llm-memory-db-pg/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion examples/llm-memory-db-pg/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
7 changes: 7 additions & 0 deletions examples/todo-db/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion examples/todo-db/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
25 changes: 25 additions & 0 deletions packages/cli/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion packages/cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@noormdev/cli",
"version": "1.1.0",
"version": "1.2.0",
"description": "Database schema & changeset manager CLI",
"type": "module",
"bin": {
Expand Down
10 changes: 10 additions & 0 deletions packages/sdk/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion packages/sdk/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down