From 11bfc705c84e70cec3f4ffde509614ccd37a4c16 Mon Sep 17 00:00:00 2001 From: yunohost-bot Date: Mon, 4 May 2026 00:16:28 +0200 Subject: [PATCH 1/3] Upgrade sources - `main` v5.13.21: https://github.com/invoiceninja/invoiceninja/releases/tag/v5.13.21 --- manifest.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/manifest.toml b/manifest.toml index 07ea4f9..4710692 100644 --- a/manifest.toml +++ b/manifest.toml @@ -7,7 +7,7 @@ name = "InvoiceNinja 5" description.en = "Create and email invoices, track payments, expenses, and time tasks" description.fr = "Créer et envoyer des factures par e-mail, suivre les paiements, les dépenses et les tâches horaires" -version = "5.12.70~ynh1" +version = "5.13.21~ynh1" maintainers = ["Sebastian Gumprich"] @@ -58,8 +58,8 @@ ram.runtime = "50M" [resources.sources] [resources.sources.main] - url = "https://github.com/invoiceninja/invoiceninja/releases/download/v5.12.70/invoiceninja.tar" - sha256 = "b631ba3651873f0635131e4c518eff5f0cc803ecfd28bcf3ab012db5be3181fc" + url = "https://github.com/invoiceninja/invoiceninja/releases/download/v5.13.21/invoiceninja.tar" + sha256 = "7112908810127485dcc0fa2ab80877e7a058dc12b38a82a089686c8028f9fabc" format = "tar.gz" in_subdir = false autoupdate.strategy = "latest_github_release" From 55b8640fe97f44935739cd489a7b3aa4075799bf Mon Sep 17 00:00:00 2001 From: yunohost-bot Date: Mon, 4 May 2026 00:16:31 +0200 Subject: [PATCH 2/3] Auto-update READMEs --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 9a9614f..3d9791c 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ Create and email invoices, track payments, expenses, and time tasks [![🌐 Official app website](https://img.shields.io/badge/Official_app_website-darkgreen?style=for-the-badge)](https://invoiceninja.org) [![App Demo](https://img.shields.io/badge/App_Demo-blue?style=for-the-badge)](https://react.invoicing.co/demo) -[![Version: 5.12.70~ynh1](https://img.shields.io/badge/Version-5.12.70~ynh1-rgb(18,138,11)?style=for-the-badge)](https://ci-apps.yunohost.org/ci/apps/invoiceninja5/) +[![Version: 5.13.21~ynh1](https://img.shields.io/badge/Version-5.13.21~ynh1-rgb(18,138,11)?style=for-the-badge)](https://ci-apps.yunohost.org/ci/apps/invoiceninja5/)
From cda00cd6ef5f604d96b881af4a52b331eb40d50c Mon Sep 17 00:00:00 2001 From: CodeShakingSheep <19874562+CodeShakingSheep@users.noreply.github.com> Date: Tue, 5 May 2026 16:13:44 -0500 Subject: [PATCH 3/3] Fix cache permission error by creating cache data dir explicitly --- scripts/upgrade | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/scripts/upgrade b/scripts/upgrade index de2e82e..d5cd095 100755 --- a/scripts/upgrade +++ b/scripts/upgrade @@ -74,6 +74,7 @@ pushd "$install_dir" #mkdir -p $install_dir/bootstrap/cache/ $install_dir/storage/framework/cache/ $install_dir/storage/framework/sessions/ # clear cached stuff under /app/data/storage/framework (https://github.com/laravel/framework/issues/17377) + mkdir -p $install_dir/storage/framework/cache/data/ php$php_version artisan view:clear php$php_version artisan cache:clear @@ -82,10 +83,6 @@ pushd "$install_dir" # Optimize the framework for better performance php$php_version artisan optimize --no-interaction --verbose - - # clear cached stuff under /app/data/storage/framework (https://github.com/laravel/framework/issues/17377) - #php$php_version artisan view:clear - #php$php_version artisan cache:clear popd #=================================================