From d14d276feee852067612dc0673158734e28fe9b5 Mon Sep 17 00:00:00 2001 From: ankitsejwal Date: Fri, 27 Feb 2026 20:02:56 +0530 Subject: [PATCH] chore: adopt hybrid versioning scheme (2601.1.0.0) Switch from 0.16.x to YYQQ.MAJOR.MINOR.PATCH versioning aligned with flowbi/web-services. Reorganize changelog with upstream changes folded into the release that syncs them. --- CHANGELOG.md | 31 ++++++++++++++++++------------- pkg/command/version.go | 2 +- 2 files changed, 19 insertions(+), 14 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d0ab69819..9e6078cc0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,23 @@ ## Changelog -Current [release](https://github.com/flowbi/pgweb/releases) is `0.16.19`. +Current [release](https://github.com/flowbi/pgweb/releases) is `2601.1.0.0`. + +## 2601.1.0.0 - 2026-02-27 + +### Flow.BI +- `NEW` Adopt hybrid versioning scheme (YYQQ.MAJOR.MINOR.PATCH) + +### Upstream (sosedoff/pgweb v0.17.0) +- `NEW` Add PGWEB_BOOKMARKS_DIR environment variable +- `NEW` Add PostgreSQL 18 compatibility +- `FIX` Session manager race condition (TryLock to Lock) +- `FIX` Security dependency updates (crypto, logrus) +- `INFRA` Go 1.22 to 1.25, gin v1.9 to v1.11, Dockerfile bullseye to trixie +- `INFRA` Connect backend refactored to pkg/connect package + +--- + +## Previous Releases (0.16.x) ## 0.16.19 - 2026-02-27 @@ -102,18 +119,6 @@ Current [release](https://github.com/flowbi/pgweb/releases) is `0.16.19`. - `FIX` Fix typos in documentation and code - `FIX` Add execution time display for empty queries -## Upstream 0.17.0 - 2025-11-22 - -- `NEW` Add PGWEB_BOOKMARKS_DIR environment variable to configure bookmarks directory -- `NEW` Update Dockerfile to use Golang 1.24 image, GH-821 -- `NEW` Bump go crypto package to 0.44.x, GH-820, GH-823 -- `NEW` Add PostgreSQL 18 support to Github Actions, GH-816 -- `NEW` Connect backend refactor, GH-801 -- `NEW` Add server settings view, GH-768 -- `NEW` Add exec time of empty queries, GH-763 -- `FIX` Minor typos, GH-764, GH-786 -- `FIX` Shorten git revision printed in the --version output, GH-770 - ## 0.16.2 - 2024-11-02 - `FIX` Build a new Docker image with PostgreSQL 17 support diff --git a/pkg/command/version.go b/pkg/command/version.go index 143a8194c..016bb147b 100644 --- a/pkg/command/version.go +++ b/pkg/command/version.go @@ -8,7 +8,7 @@ import ( const ( // Version is the current Pgweb application version - Version = "0.17.0" + Version = "2601.1.0.0" ) var (