Skip to content

Commit c1b21d2

Browse files
authored
chore: bump version to 0.8.3 (#732)
Changes since v0.8.2: - fix(connection): delegate URI parsing to tokio_postgres::Config (#731) - fix(connection): scan for any .s.PGSQL.<port> socket (#728) - test(connection): add connection path integration tests (#730)
1 parent a104a71 commit c1b21d2

File tree

3 files changed

+10
-2
lines changed

3 files changed

+10
-2
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,14 @@ All notable changes to this project will be documented in this file.
44

55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).
66

7+
## [0.8.3] - 2026-03-24
8+
9+
### Fixed
10+
11+
- **URI query-string `host=` and `port=` parameters now respected.** Previously, passing `postgres://ignored:9999/db?host=localhost&port=5433` would silently discard the query-string overrides and attempt to connect to `ignored:9999`. The internal URI parser has been replaced with delegation to `tokio_postgres::Config::from_str()`, which handles all standard libpq parameters correctly. (#731)
12+
- **Default socket detection now finds any `.s.PGSQL.<port>` socket**, not only port 5432. `default_host_port()` scans well-known socket directories for any PostgreSQL socket file and returns the lowest-numbered port found, with port 5432 fast-pathed for the common case. (#728)
13+
- **Integration tests** for the full connection path matrix (groups A–G from issue #709). (#730)
14+
715
## [0.8.1] - 2026-03-24
816

917
### Fixed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rpg"
3-
version = "0.8.1"
3+
version = "0.8.3"
44
edition = "2021"
55
rust-version = "1.82"
66
description = "Modern Postgres terminal with built-in diagnostics and AI assistant"

0 commit comments

Comments
 (0)