From 06b4495036c2a50eec0ee6c753d0b555459f19bb Mon Sep 17 00:00:00 2001 From: Jason Lynch Date: Fri, 19 Dec 2025 12:11:46 -0500 Subject: [PATCH] build(release): bump version to v0.6.1 --- CHANGELOG.md | 7 +++++++ api/apiv1/gen/control_plane/service.go | 2 +- api/apiv1/gen/http/openapi.json | 2 +- api/apiv1/gen/http/openapi.yaml | 2 +- api/apiv1/gen/http/openapi3.json | 2 +- api/apiv1/gen/http/openapi3.yaml | 2 +- api/version.txt | 2 +- changes/unreleased/Fixed-20251219-094938.yaml | 3 --- changes/unreleased/Fixed-20251219-104159.yaml | 3 --- changes/v0.6.1.md | 6 ++++++ docs/changelog.md | 7 +++++++ mkdocs.yml | 2 +- 12 files changed, 27 insertions(+), 13 deletions(-) delete mode 100644 changes/unreleased/Fixed-20251219-094938.yaml delete mode 100644 changes/unreleased/Fixed-20251219-104159.yaml create mode 100644 changes/v0.6.1.md diff --git a/CHANGELOG.md b/CHANGELOG.md index 916ab0df..9fbd4a12 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## v0.6.1 - 2025-12-19 + +### Fixed + +- Fixed incorrect pgbackrest command format for database restore endpoint. +- Fixed task logs API to return a `last_entry_id` even if `after_entry_id` is the last entry. + ## v0.6.0 - 2025-12-17 ### Added diff --git a/api/apiv1/gen/control_plane/service.go b/api/apiv1/gen/control_plane/service.go index bd21d25e..e5c2d640 100644 --- a/api/apiv1/gen/control_plane/service.go +++ b/api/apiv1/gen/control_plane/service.go @@ -74,7 +74,7 @@ type Service interface { const APIName = "control-plane" // APIVersion is the version of the API as defined in the design. -const APIVersion = "v0.6.0" +const APIVersion = "v0.6.1" // ServiceName is the name of the service as defined in the design. This is the // same value that is set in the endpoint request contexts under the ServiceKey diff --git a/api/apiv1/gen/http/openapi.json b/api/apiv1/gen/http/openapi.json index 48e00f2b..7471427e 100644 --- a/api/apiv1/gen/http/openapi.json +++ b/api/apiv1/gen/http/openapi.json @@ -3,7 +3,7 @@ "info": { "title": "pgEdge Control Plane v1 API", "description": "A distributed application that provides a declarative API to deploy and manage Postgres databases.", - "version": "v0.6.0" + "version": "v0.6.1" }, "host": "localhost:3000", "consumes": [ diff --git a/api/apiv1/gen/http/openapi.yaml b/api/apiv1/gen/http/openapi.yaml index cd1615c6..1a319bd3 100644 --- a/api/apiv1/gen/http/openapi.yaml +++ b/api/apiv1/gen/http/openapi.yaml @@ -2,7 +2,7 @@ swagger: "2.0" info: title: pgEdge Control Plane v1 API description: A distributed application that provides a declarative API to deploy and manage Postgres databases. - version: v0.6.0 + version: v0.6.1 host: localhost:3000 consumes: - application/json diff --git a/api/apiv1/gen/http/openapi3.json b/api/apiv1/gen/http/openapi3.json index 0248499b..56dc3080 100644 --- a/api/apiv1/gen/http/openapi3.json +++ b/api/apiv1/gen/http/openapi3.json @@ -3,7 +3,7 @@ "info": { "title": "pgEdge Control Plane v1 API", "description": "A distributed application that provides a declarative API to deploy and manage Postgres databases.", - "version": "v0.6.0" + "version": "v0.6.1" }, "servers": [ { diff --git a/api/apiv1/gen/http/openapi3.yaml b/api/apiv1/gen/http/openapi3.yaml index 67852f4e..af2b93dd 100644 --- a/api/apiv1/gen/http/openapi3.yaml +++ b/api/apiv1/gen/http/openapi3.yaml @@ -2,7 +2,7 @@ openapi: 3.0.3 info: title: pgEdge Control Plane v1 API description: A distributed application that provides a declarative API to deploy and manage Postgres databases. - version: v0.6.0 + version: v0.6.1 servers: - url: http://localhost:3000 paths: diff --git a/api/version.txt b/api/version.txt index e07d136c..45a99704 100644 --- a/api/version.txt +++ b/api/version.txt @@ -1 +1 @@ -v0.6.0 \ No newline at end of file +v0.6.1 \ No newline at end of file diff --git a/changes/unreleased/Fixed-20251219-094938.yaml b/changes/unreleased/Fixed-20251219-094938.yaml deleted file mode 100644 index bd889f41..00000000 --- a/changes/unreleased/Fixed-20251219-094938.yaml +++ /dev/null @@ -1,3 +0,0 @@ -kind: Fixed -body: Fixed incorrect pgbackrest command format for database restore endpoint. -time: 2025-12-19T09:49:38.606386-05:00 diff --git a/changes/unreleased/Fixed-20251219-104159.yaml b/changes/unreleased/Fixed-20251219-104159.yaml deleted file mode 100644 index 8f4be86d..00000000 --- a/changes/unreleased/Fixed-20251219-104159.yaml +++ /dev/null @@ -1,3 +0,0 @@ -kind: Fixed -body: Fixed task logs API to return a `last_entry_id` even if `after_entry_id` is the last entry. -time: 2025-12-19T10:41:59.153319-05:00 diff --git a/changes/v0.6.1.md b/changes/v0.6.1.md new file mode 100644 index 00000000..fde70eee --- /dev/null +++ b/changes/v0.6.1.md @@ -0,0 +1,6 @@ +## v0.6.1 - 2025-12-19 + +### Fixed + +- Fixed incorrect pgbackrest command format for database restore endpoint. +- Fixed task logs API to return a `last_entry_id` even if `after_entry_id` is the last entry. diff --git a/docs/changelog.md b/docs/changelog.md index 916ab0df..9fbd4a12 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -1,5 +1,12 @@ # Changelog +## v0.6.1 - 2025-12-19 + +### Fixed + +- Fixed incorrect pgbackrest command format for database restore endpoint. +- Fixed task logs API to return a `last_entry_id` even if `after_entry_id` is the last entry. + ## v0.6.0 - 2025-12-17 ### Added diff --git a/mkdocs.yml b/mkdocs.yml index 264296ce..ccc7ba63 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -51,7 +51,7 @@ theme: name: Switch to system preference extra: generator: false - control_plane_version: v0.6.0 + control_plane_version: v0.6.1 copyright: Copyright © 2023 - 2025 pgEdge, Inc repo_url: https://github.com/pgEdge/control-plane nav: