Skip to content

Commit

Permalink
v1.6.1
Browse files Browse the repository at this point in the history
  • Loading branch information
eldertek committed Jan 4, 2025
1 parent 1ba4a1c commit 8a266d4
Show file tree
Hide file tree
Showing 56 changed files with 6,402 additions and 285 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
## 1.6.1 - 2025-01-04
### Fixed
- Better handling of user context errors ("Backends provided no user object")
- Improved error handling for moved or deleted files during scan
- Enhanced file deletion process with better error handling and logging
- Fixed file path normalization for user IDs containing special characters
- Added automatic cleanup of file references when files no longer exist

## 1.6.0 - 2025-01-03
### Added
- New filtering system to ignore files during scan:
Expand Down
4 changes: 4 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ source_build_directory := $(CURDIR)/build/artifacts/source
build_dir := $(CURDIR)/build/artifacts
sign_dir := $(source_build_directory)/sign
EXCLUDES := --exclude="/.git" \
--exclude="tests" \
--exclude="/build" \
--exclude="Makefile" \
--exclude="/*.log" \
Expand Down Expand Up @@ -72,3 +73,6 @@ publish:
@sed -i 's/<version>[0-9]*\.[0-9]*\.[0-9]*<\/version>/<version>$(version)<\/version>/' appinfo/info.xml
@sed -i 's/"version": "[0-9]*\.[0-9]*\.[0-9]*"/"version": "$(version)"/' package.json
@echo "Version updated to $(version)"

test:
composer test
2 changes: 1 addition & 1 deletion appinfo/info.xml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
* 📊 **Aperçu & Simulation** - Visualisez ce qui serait supprimé avant d'agir
* 💼 **Traitement en Arrière-plan** - Tâches automatisées de recherche de doublons
]]></description>
<version>1.6.0</version>
<version>=1.6.1</version>
<author>André Théo LAURET</author>

<namespace>DuplicateFinder</namespace>
Expand Down
36 changes: 33 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,32 @@
}
],
"scripts": {
"lint": "find . -name \\*.php -not -path './vendor/*' -print0 | xargs -0 -n1 php -l"
"lint": "find . -name \\*.php -not -path './vendor/*' -print0 | xargs -0 -n1 php -l",
"test": "phpunit -c tests/phpunit.xml"
},
"autoload": {
"psr-4": {
"OCA\\DuplicateFinder\\": "lib/"
}
},
"autoload-dev": {
"psr-4": {
"OCA\\DuplicateFinder\\Tests\\": "tests/"
}
},
"repositories": [
{
"type": "package",
"package": {
"name": "nextcloud/server",
"version": "28.0.9",
"dist": {
"url": "https://codeload.github.com/nextcloud/server/zip/refs/tags/v28.0.9",
"type": "zip"
}
}
}
],
"config": {
"allow-plugins": {
"composer/package-versions-deprecated": true
Expand All @@ -20,8 +44,14 @@
}
},
"require": {
"nextcloud/ocp": "^28.0",
"nextcloud/ocp": "28.0.9",
"symfony/console": "^6.3",
"doctrine/dbal": "^3.7"
"symfony/event-dispatcher": "^6.3",
"doctrine/dbal": "^3.7",
"nextcloud/server": "28.0.9"
},
"require-dev": {
"phpunit/phpunit": "^10.0",
"nextcloud/coding-standard": "1.3.2"
}
}
Loading

0 comments on commit 8a266d4

Please sign in to comment.