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
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`) (by @Koziar).

## [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).
Expand Down
2 changes: 1 addition & 1 deletion playground.docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion src/pine/version.clj
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
(ns pine.version)

(def version "0.35.0")
(def version "0.36.0")
Loading