Skip to content

Commit a1118f8

Browse files
authored
4.3.0 (#181)
## 4.3.0 - 2025-05-08 ### Fixed - fix(nc_texttotext): retries and graceful error handling for schedule (#179) @kyteinsky - fix(dyn_loader): richer error message for embedding server start fail (#179) @kyteinsky - fix(deps): add libreoffice to install_deps (#180) @kyteinsky ### Changed - bump minor version to match the companion app Signed-off-by: Anupam Kumar <kyteinsky@gmail.com>
1 parent e183d45 commit a1118f8

File tree

6 files changed

+19
-8
lines changed

6 files changed

+19
-8
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ help:
2121
#.PHONY: build-push
2222
#build-push:
2323
# docker login ghcr.io
24-
# docker buildx build --push --platform linux/arm64/v8,linux/amd64 --tag ghcr.io/nextcloud/context_chat_backend:4.2.0 --tag ghcr.io/nextcloud/context_chat_backend:latest .
24+
# docker buildx build --push --platform linux/arm64/v8,linux/amd64 --tag ghcr.io/nextcloud/context_chat_backend:4.3.0 --tag ghcr.io/nextcloud/context_chat_backend:latest .
2525

2626
.PHONY: run
2727
run:
@@ -34,5 +34,5 @@ run:
3434
register:
3535
docker exec master-nextcloud-1 sudo -u www-data php occ app_api:app:unregister context_chat_backend --silent || true
3636
docker exec master-nextcloud-1 sudo -u www-data php occ app_api:app:register context_chat_backend manual_install --json-info \
37-
"{\"id\":\"context_chat_backend\",\"name\":\"Context Chat Backend\",\"daemon_config_name\":\"manual_install\",\"version\":\"4.2.0\",\"secret\":\"12345\",\"port\":10034,\"scopes\":[],\"system\":0}" \
37+
"{\"id\":\"context_chat_backend\",\"name\":\"Context Chat Backend\",\"daemon_config_name\":\"manual_install\",\"version\":\"4.3.0\",\"secret\":\"12345\",\"port\":10034,\"scopes\":[],\"system\":0}" \
3838
--force-scopes --wait-finish

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ If nextcloud is inside a container, `--add-host` option would be required by you
7272
**2. Register the app using the deploy daemon (be mindful of the port number and the app's version):**
7373
```
7474
occ app_api:app:register context_chat_backend manual_install --json-info \
75-
"{\"appid\":\"context_chat_backend\",\"name\":\"Context Chat Backend\",\"daemon_config_name\":\"manual_install\",\"version\":\"4.2.0\",\"secret\":\"12345\",\"port\":10034,\"scopes\":[],\"system_app\":0}" \
75+
"{\"appid\":\"context_chat_backend\",\"name\":\"Context Chat Backend\",\"daemon_config_name\":\"manual_install\",\"version\":\"4.3.0\",\"secret\":\"12345\",\"port\":10034,\"scopes\":[],\"system_app\":0}" \
7676
--force-scopes --wait-finish
7777
```
7878
The command to unregister is given below (force is used to also remove apps whose container has been removed)
@@ -229,7 +229,7 @@ sudo -u www-data php occ app_api:app:register \
229229
--json-info "{\"appid\":\"context_chat_backend\",\
230230
\"name\":\"Context Chat Backend\",\
231231
\"daemon_config_name\":\"manual_install\",\
232-
\"version\":\"4.2.0\",\
232+
\"version\":\"4.3.0\",\
233233
\"secret\":\"12345\",\
234234
\"port\":10034,\
235235
\"scopes\":[],\

appinfo/info.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Install the given apps for Context Chat to work as desired **in the given order*
2020
2121
Setup background job workers as described here: https://docs.nextcloud.com/server/latest/admin_manual/ai/overview.html#improve-ai-task-pickup-speed
2222
]]></description>
23-
<version>4.2.0</version>
23+
<version>4.3.0</version>
2424
<licence>agpl</licence>
2525
<author mail="kyteinsky@gmail.com" homepage="https://github.com/kyteinsky">Anupam Kumar</author>
2626
<namespace>Context Chat</namespace>
@@ -35,7 +35,7 @@ Setup background job workers as described here: https://docs.nextcloud.com/serve
3535
<docker-install>
3636
<registry>ghcr.io</registry>
3737
<image>nextcloud/context_chat_backend</image>
38-
<image-tag>4.2.0</image-tag>
38+
<image-tag>4.3.0</image-tag>
3939
</docker-install>
4040
<environment-variables>
4141
<variable>

changelog.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,17 @@ All notable changes to this project will be documented in this file.
88
The format is based on [Keep a Changelog](http://keepachangelog.com/)
99
and this project adheres to [Semantic Versioning](http://semver.org/).
1010

11+
## 4.3.0 - 2025-05-08
12+
13+
### Fixed
14+
- fix(nc_texttotext): retries and graceful error handling for schedule (#179) @kyteinsky
15+
- fix(dyn_loader): richer error message for embedding server start fail (#179) @kyteinsky
16+
- fix(deps): add libreoffice to install_deps (#180) @kyteinsky
17+
18+
### Changed
19+
- bump minor version to match the companion app
20+
21+
1122
## 4.2.0 - 2025-04-03
1223

1324
### Changed

example.env

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ AA_VERSION=3.0.0
1818
APP_SECRET=12345
1919
APP_ID=context_chat_backend
2020
APP_DISPLAY_NAME=Context Chat Backend
21-
APP_VERSION=4.2.0
21+
APP_VERSION=4.3.0
2222
APP_HOST=0.0.0.0
2323
APP_PORT=10034
2424
APP_PERSISTENT_STORAGE=persistent_storage

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# SPDX-License-Identifier: AGPL-3.0-or-later
33
[project]
44
name = "context_chat_backend"
5-
version = "4.2.0"
5+
version = "4.3.0"
66
requires-python = ">=3.11"
77
authors = [
88
{ name = "Anupam Kumar", email = "kyteinsky@gmail.com" }

0 commit comments

Comments
 (0)