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
34 changes: 34 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,40 @@ All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).

## 4.0.0 - 2025-08-21

### Added

- ✨ Support Nextcloud 32.

### Changed

- 🔌 Upgrade dependencies.
- 🔌 Improve tests.

### Removed

- 🧹 Drop support for Nextcloud 31.

## 3.0.0 - 2025-02-24

### Added

- ✨ Support Nextcloud 31.
- 🔌 Add reuse compliance.

### Changed

- 🗣️ Update translations.
- 🔌 Upgrade dependencies.
- 🔌 Updating cypress.yml workflow
- 🔌 Use psr-log 3 compatible.
- 🔌 Move dev tools to vendor-bin.

### Removed

- 🧹 Drop support for Nextcloud 30.

## 2.0.0 - 2024-09-11

### Added
Expand Down
42 changes: 21 additions & 21 deletions appinfo/info.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,26 +4,26 @@
- SPDX-License-Identifier: AGPL-3.0-or-later
-->
<info xmlns:xsi= "http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://apps.nextcloud.com/schema/apps/info.xsd">
<id>data_request</id>
<name>Data Request</name>
<summary>Request your data from the admins</summary>
<description><![CDATA[Enable your users to request an export or deletion of their data. According options are added to the personal settings section. Administrators will be notified by email about the request.]]></description>
<version>4.0.0-dev.0</version>
<licence>agpl</licence>
<author mail="blizzz@arthur-schiwon.de" homepage="https://nextcloud.com">Arthur Schiwon</author>
<namespace>DataRequest</namespace>
<category>tools</category>
<website>https://github.com/nextcloud/data_request</website>
<bugs>https://github.com/nextcloud/data_request/issues</bugs>
<repository type="git">https://github.com/nextcloud/data_request.git</repository>
<screenshot>https://raw.githubusercontent.com/nextcloud/data_request/master/screenshots/personal-settings.png</screenshot>
<screenshot>https://raw.githubusercontent.com/nextcloud/data_request/master/screenshots/settings-close-up.png</screenshot>
<dependencies>
<nextcloud min-version="32" max-version="32" />
</dependencies>
xsi:noNamespaceSchemaLocation="https://apps.nextcloud.com/schema/apps/info.xsd">
<id>data_request</id>
<name>Data Request</name>
<summary>Request your data from the admins</summary>
<description><![CDATA[Enable your users to request an export or deletion of their data. According options are added to the personal settings section. Administrators will be notified by email about the request.]]></description>
<version>4.0.0</version>
<licence>agpl</licence>
<author mail="blizzz@arthur-schiwon.de" homepage="https://nextcloud.com">Arthur Schiwon</author>
<namespace>DataRequest</namespace>
<category>tools</category>
<website>https://github.com/nextcloud/data_request</website>
<bugs>https://github.com/nextcloud/data_request/issues</bugs>
<repository type="git">https://github.com/nextcloud/data_request.git</repository>
<screenshot>https://raw.githubusercontent.com/nextcloud/data_request/master/screenshots/personal-settings.png</screenshot>
<screenshot>https://raw.githubusercontent.com/nextcloud/data_request/master/screenshots/settings-close-up.png</screenshot>
<dependencies>
<nextcloud min-version="32" max-version="32" />
</dependencies>

<settings>
<personal>OCA\DataRequest\Settings\Personal</personal>
</settings>
<settings>
<personal>OCA\DataRequest\Settings\Personal</personal>
</settings>
</info>
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "data_request",
"version": "4.0.0-dev.0",
"version": "4.0.0",
"description": "Test script for the Nextcloud data_request app",
"main": "init.js",
"directories": {
Expand Down
Loading