Skip to content

Commit d220114

Browse files
authored
Merge pull request #225 from nextcloud/prepare-v2.8.0
Prepare v2.8.0
2 parents fd3bcfc + 007c45e commit d220114

5 files changed

Lines changed: 1512 additions & 1379 deletions

File tree

.github/workflows/integration_test.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -330,6 +330,7 @@ jobs:
330330
curl -u "$CREDS" -H "oCS-APIRequest: true" "http://localhost:8080/ocs/v2.php/taskprocessing/task/$TASK_ID?format=json"
331331
[ "$TASK_STATUS" = '"STATUS_SUCCESSFUL"' ]
332332
[ "$STREAMING_OBSERVED" -eq 1 ]
333+
echo "$TASK"
333334
334335
- name: Show nextcloud logs
335336
if: always()

CHANGELOG.md

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,40 @@ 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+
## [2.8.0] - 2026-05-08
12+
13+
### Added
14+
- support for NC35
15+
- Assignment tools
16+
- web_fetch tool
17+
- Talk: reactions, replies, polls, and file sharing tools
18+
- Stream output text and tool calls
19+
- Extend context chat tool
20+
- on-demand memory storage and recall tools
21+
- support for multimodal chat inputs and outputs
22+
- Tables app support
23+
- tools for agent skills
24+
- more files tools
25+
26+
### Changed
27+
- Validate more inputs
28+
29+
### Fixed
30+
- Reduce token usage by truncating old tool results
31+
- don't lose message history due to history cut off
32+
33+
## [2.7.0] - 2026-07-15
34+
35+
### Added
36+
- Deck: Add card discovery (list_board_cards) and card comment tools
37+
- mail inbox tools
38+
39+
### Changed
40+
- optimize tool call denied instruction
41+
42+
### Fixed
43+
- MCP streamable-http transport for initializing
44+
1145
## [2.6.0] - 2026-04-16
1246

1347
### Added

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
APP_ID := context_agent
66
APP_NAME := Nextcloud Context Agent
7-
APP_VERSION := 2.6.0
7+
APP_VERSION := 2.8.0
88
JSON_INFO := "{\"id\":\"$(APP_ID)\",\"name\":\"$(APP_NAME)\",\"daemon_config_name\":\"manual_install\",\"version\":\"$(APP_VERSION)\",\"secret\":\"12345\",\"port\":9081}"
99

1010

appinfo/info.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ Positive:
2828
* The software for this app is open source, no trained AI model is used
2929
]]>
3030
</description>
31-
<version>2.6.0</version>
31+
<version>2.8.0</version>
3232
<licence>MIT</licence>
3333
<author mail="mklehr@gmx.net" homepage="https://marcelklehr.de">Marcel Klehr</author>
3434
<namespace>ContextAgent</namespace>
@@ -39,13 +39,13 @@ Positive:
3939
<screenshot>https://github.com/nextcloud/context_agent/blob/main/img/screenshot.png?raw=true</screenshot>
4040
<repository type="git">https://github.com/nextcloud/context_agent</repository>
4141
<dependencies>
42-
<nextcloud min-version="31.0.8" max-version="34"/>
42+
<nextcloud min-version="31.0.8" max-version="35"/>
4343
</dependencies>
4444
<external-app>
4545
<docker-install>
4646
<registry>ghcr.io</registry>
4747
<image>nextcloud/context_agent</image>
48-
<image-tag>2.6.0</image-tag>
48+
<image-tag>2.8.0</image-tag>
4949
</docker-install>
5050
<routes>
5151
<route>

0 commit comments

Comments
 (0)