From a8093cc3084b37532db9a1bf2360c3c889bcfb49 Mon Sep 17 00:00:00 2001 From: kyteinsky Date: Wed, 26 Aug 2026 14:37:11 +0530 Subject: [PATCH] 5.5.0-beta1 Signed-off-by: kyteinsky --- Makefile | 4 ++-- README.md | 4 ++-- appinfo/info.xml | 4 ++-- changelog.md | 6 ++++++ example.env | 2 +- pyproject.toml | 2 +- 6 files changed, 14 insertions(+), 8 deletions(-) diff --git a/Makefile b/Makefile index 660206d0..0c8a3fd7 100644 --- a/Makefile +++ b/Makefile @@ -21,7 +21,7 @@ help: #.PHONY: build-push #build-push: # docker login ghcr.io -# docker buildx build --push --platform linux/arm64/v8,linux/amd64 --tag ghcr.io/nextcloud/context_chat_backend:5.5.0-beta0 --tag ghcr.io/nextcloud/context_chat_backend:latest . +# docker buildx build --push --platform linux/arm64/v8,linux/amd64 --tag ghcr.io/nextcloud/context_chat_backend:5.5.0-beta1 --tag ghcr.io/nextcloud/context_chat_backend:latest . .PHONY: run run: @@ -34,5 +34,5 @@ run: register: docker exec master-nextcloud-1 sudo -u www-data php occ app_api:app:unregister context_chat_backend --silent || true docker exec master-nextcloud-1 sudo -u www-data php occ app_api:app:register context_chat_backend manual_install --json-info \ - "{\"id\":\"context_chat_backend\",\"name\":\"Context Chat Backend\",\"daemon_config_name\":\"manual_install\",\"version\":\"5.5.0-beta0\",\"secret\":\"12345\",\"port\":10034,\"scopes\":[],\"system\":0}" \ + "{\"id\":\"context_chat_backend\",\"name\":\"Context Chat Backend\",\"daemon_config_name\":\"manual_install\",\"version\":\"5.5.0-beta1\",\"secret\":\"12345\",\"port\":10034,\"scopes\":[],\"system\":0}" \ --force-scopes --wait-finish diff --git a/README.md b/README.md index b8b890ee..2c51ed8a 100644 --- a/README.md +++ b/README.md @@ -73,7 +73,7 @@ If nextcloud is inside a container, `--add-host` option would be required by you **2. Register the app using the deploy daemon (be mindful of the port number and the app's version):** ``` occ app_api:app:register context_chat_backend manual_install --json-info \ -"{\"appid\":\"context_chat_backend\",\"name\":\"Context Chat Backend\",\"daemon_config_name\":\"manual_install\",\"version\":\"5.5.0-beta0\",\"secret\":\"12345\",\"port\":10034}" \ +"{\"appid\":\"context_chat_backend\",\"name\":\"Context Chat Backend\",\"daemon_config_name\":\"manual_install\",\"version\":\"5.5.0-beta1\",\"secret\":\"12345\",\"port\":10034}" \ --wait-finish ``` The command to unregister is given below (force is used to also remove apps whose container has been removed) @@ -226,7 +226,7 @@ sudo -u www-data php occ app_api:app:register \ --json-info "{\"appid\":\"context_chat_backend\",\ \"name\":\"Context Chat Backend\",\ \"daemon_config_name\":\"manual_install\",\ - \"version\":\"5.5.0-beta0\",\ + \"version\":\"5.5.0-beta1\",\ \"secret\":\"12345\",\ \"port\":10034}" \ --wait-finish diff --git a/appinfo/info.xml b/appinfo/info.xml index 3b7d151e..ed75bbdf 100644 --- a/appinfo/info.xml +++ b/appinfo/info.xml @@ -21,7 +21,7 @@ Install the given apps for Context Chat to work as desired **in the given order* Setup background job workers as described here: https://docs.nextcloud.com/server/latest/admin_manual/ai/overview.html#improve-ai-task-pickup-speed ]]> - 5.5.0-beta0 + 5.5.0-beta1 agpl Anupam Kumar Context Chat @@ -36,7 +36,7 @@ Setup background job workers as described here: https://docs.nextcloud.com/serve ghcr.io nextcloud-releases/context_chat_backend - 5.5.0-beta0 + 5.5.0-beta1 diff --git a/changelog.md b/changelog.md index 7fdafbe5..adaf2ae3 100644 --- a/changelog.md +++ b/changelog.md @@ -9,6 +9,12 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/). +## 5.5.0-beta1 - 2026-08-26 + +### Fixed +- fix(repair): handle version suffixes robustly (#341) @kyteinsky + + ## 5.5.0-beta0 - 2026-08-17 ### Changed diff --git a/example.env b/example.env index 723438b2..1bf2f773 100644 --- a/example.env +++ b/example.env @@ -18,7 +18,7 @@ AA_VERSION=3.0.0 APP_SECRET=12345 APP_ID=context_chat_backend APP_DISPLAY_NAME=Context Chat Backend -APP_VERSION=5.5.0-beta0 +APP_VERSION=5.5.0-beta1 APP_HOST=0.0.0.0 APP_PORT=10034 APP_PERSISTENT_STORAGE=persistent_storage diff --git a/pyproject.toml b/pyproject.toml index 7cbf3b1e..7e93ac89 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -2,7 +2,7 @@ # SPDX-License-Identifier: AGPL-3.0-or-later [project] name = "context_chat_backend" -version = "5.5.0-beta0" +version = "5.5.0-beta1" requires-python = ">=3.11" authors = [ { name = "Anupam Kumar", email = "kyteinsky@gmail.com" }