Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 1 addition & 7 deletions .github/workflows/integration_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,15 +65,9 @@ jobs:
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
repository: nextcloud/server
submodules: 'true'
ref: ${{ matrix.server-versions }}

- name: Checkout submodules
shell: bash
run: |
auth_header="$(git config --local --get http.https://github.com/.extraheader)"
git submodule sync --recursive
git -c "http.extraheader=$auth_header" -c protocol.version=2 submodule update --init --force --recursive --depth=1

- name: Set up php ${{ matrix.php-versions }}
uses: shivammathur/setup-php@44454db4f0199b8b9685a5d763dc37cbf79108e1 # v2.36.0
with:
Expand Down
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,16 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).

## [2.3.0] - 2025-12-29

### Added
- Support for NC34

### Changed
- updated python dependencies
- retry task scheduling when a connection error is thrown
- switch from httpx to niquests

## [2.2.0] - 2025-12-19

### Added
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

APP_ID := context_agent
APP_NAME := Nextcloud Context Agent
APP_VERSION := 2.2.0
APP_VERSION := 2.3.0
JSON_INFO := "{\"id\":\"$(APP_ID)\",\"name\":\"$(APP_NAME)\",\"daemon_config_name\":\"manual_install\",\"version\":\"$(APP_VERSION)\",\"secret\":\"12345\",\"port\":9081}"


Expand Down
4 changes: 2 additions & 2 deletions appinfo/info.xml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ Positive:
* The software for this app is open source, no trained AI model is used
]]>
</description>
<version>2.2.0</version>
<version>2.3.0</version>
<licence>MIT</licence>
<author mail="[email protected]" homepage="https://marcelklehr.de">Marcel Klehr</author>
<namespace>ContextAgent</namespace>
Expand All @@ -45,7 +45,7 @@ Positive:
<docker-install>
<registry>ghcr.io</registry>
<image>nextcloud/context_agent</image>
<image-tag>2.2.0</image-tag>
<image-tag>2.3.0</image-tag>
</docker-install>
<routes>
<route>
Expand Down
Loading
Loading