From cef469cae98128b3e367c21a377353856d8c1cf6 Mon Sep 17 00:00:00 2001 From: Ahmad Nazir Raja Date: Thu, 21 May 2026 23:41:09 +0200 Subject: [PATCH 1/2] Release 0.36.0: structured GET /api/v1/connections response Co-Authored-By: Claude Sonnet 4.6 --- CHANGELOG.md | 4 ++++ playground.docker-compose.yml | 2 +- src/pine/version.clj | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 91cb3ac..73fdb68 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,10 @@ log follows the conventions of [keepachangelog.com](http://keepachangelog.com/). ## [Unreleased] +## [0.36.0] - 2026-05-21 +### Added +- Structured `GET /api/v1/connections` response: returns an object with `version`, `selected-connection-id`, and a `connections` list of `{id, label}` entries (where `label` is formatted as `host:port · dbname`). + ## [0.35.0] - 2026-05-05 ### Added - Per-session database connections: `build`, `eval`, and `sql` endpoints now accept an optional `connection-id` parameter. Queries run against that specific connection pool; when absent, the global connection is used (backward compatible). diff --git a/playground.docker-compose.yml b/playground.docker-compose.yml index df9d1c9..5a8b536 100644 --- a/playground.docker-compose.yml +++ b/playground.docker-compose.yml @@ -18,7 +18,7 @@ services: retries: 10 pine: - image: ahmadnazir/pine:0.35.0 + image: ahmadnazir/pine:0.36.0 container_name: pine_server depends_on: sample-db-ecommerce: diff --git a/src/pine/version.clj b/src/pine/version.clj index 7068eb4..8d2cf84 100644 --- a/src/pine/version.clj +++ b/src/pine/version.clj @@ -1,3 +1,3 @@ (ns pine.version) -(def version "0.35.0") +(def version "0.36.0") From 5989214cc4d61a14d5d00edcd5ee16bbaca15ec8 Mon Sep 17 00:00:00 2001 From: Ahmad Nazir Raja Date: Thu, 21 May 2026 23:44:06 +0200 Subject: [PATCH 2/2] Credit @Koziar in 0.36.0 changelog Co-Authored-By: Claude Sonnet 4.6 --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 73fdb68..8616a47 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,7 +6,7 @@ log follows the conventions of [keepachangelog.com](http://keepachangelog.com/). ## [0.36.0] - 2026-05-21 ### Added -- Structured `GET /api/v1/connections` response: returns an object with `version`, `selected-connection-id`, and a `connections` list of `{id, label}` entries (where `label` is formatted as `host:port · dbname`). +- Structured `GET /api/v1/connections` response: returns an object with `version`, `selected-connection-id`, and a `connections` list of `{id, label}` entries (where `label` is formatted as `host:port · dbname`) (by @Koziar). ## [0.35.0] - 2026-05-05 ### Added