Skip to content

Commit dc76152

Browse files
authored
5.1.0 (#243)
## 5.1.0 - 2025-12-05 ### Added - add env var to skip model downloads from huggingface (#242) @kyteinsky ### Fixed - narrow down pip's package search and other ci fixes (#236) @kyteinsky Signed-off-by: Anupam Kumar <[email protected]>
1 parent 2a047ec commit dc76152

File tree

6 files changed

+17
-8
lines changed

6 files changed

+17
-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:5.0.1 --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:5.1.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\":\"5.0.1\",\"secret\":\"12345\",\"port\":10034,\"scopes\":[],\"system\":0}" \
37+
"{\"id\":\"context_chat_backend\",\"name\":\"Context Chat Backend\",\"daemon_config_name\":\"manual_install\",\"version\":\"5.1.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
@@ -75,7 +75,7 @@ If nextcloud is inside a container, `--add-host` option would be required by you
7575
**2. Register the app using the deploy daemon (be mindful of the port number and the app's version):**
7676
```
7777
occ app_api:app:register context_chat_backend manual_install --json-info \
78-
"{\"appid\":\"context_chat_backend\",\"name\":\"Context Chat Backend\",\"daemon_config_name\":\"manual_install\",\"version\":\"5.0.1\",\"secret\":\"12345\",\"port\":10034,\"scopes\":[],\"system_app\":0}" \
78+
"{\"appid\":\"context_chat_backend\",\"name\":\"Context Chat Backend\",\"daemon_config_name\":\"manual_install\",\"version\":\"5.1.0\",\"secret\":\"12345\",\"port\":10034,\"scopes\":[],\"system_app\":0}" \
7979
--force-scopes --wait-finish
8080
```
8181
The command to unregister is given below (force is used to also remove apps whose container has been removed)
@@ -227,7 +227,7 @@ sudo -u www-data php occ app_api:app:register \
227227
--json-info "{\"appid\":\"context_chat_backend\",\
228228
\"name\":\"Context Chat Backend\",\
229229
\"daemon_config_name\":\"manual_install\",\
230-
\"version\":\"5.0.1\",\
230+
\"version\":\"5.1.0\",\
231231
\"secret\":\"12345\",\
232232
\"port\":10034}" \
233233
--force-scopes \

appinfo/info.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Setup background job workers as described here: https://docs.nextcloud.com/serve
2222
2323
HaRP is not supported in this app yet, please use Docker Socket Proxy (DSP) as the Deploy Daemon in AppAPI.
2424
]]></description>
25-
<version>5.0.1</version>
25+
<version>5.1.0</version>
2626
<licence>agpl</licence>
2727
<author mail="[email protected]" homepage="https://github.com/kyteinsky">Anupam Kumar</author>
2828
<namespace>Context Chat</namespace>
@@ -37,7 +37,7 @@ HaRP is not supported in this app yet, please use Docker Socket Proxy (DSP) as t
3737
<docker-install>
3838
<registry>ghcr.io</registry>
3939
<image>nextcloud/context_chat_backend</image>
40-
<image-tag>5.0.1</image-tag>
40+
<image-tag>5.1.0</image-tag>
4141
</docker-install>
4242
<routes>
4343
<route>

changelog.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,15 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/)
99
and this project adheres to [Semantic Versioning](http://semver.org/).
1010

1111

12+
## 5.1.0 - 2025-12-05
13+
14+
### Added
15+
- add env var to skip model downloads from huggingface (#242) @kyteinsky
16+
17+
### Fixed
18+
- narrow down pip's package search and other ci fixes (#236) @kyteinsky
19+
20+
1221
## 5.0.1 - 2025-11-12
1322

1423
### Fixed

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=5.0.1
21+
APP_VERSION=5.1.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 = "5.0.1"
5+
version = "5.1.0"
66
requires-python = ">=3.11"
77
authors = [
88
{ name = "Anupam Kumar", email = "[email protected]" }

0 commit comments

Comments
 (0)