diff --git a/CHANGELOG.md b/CHANGELOG.md index ad56f93..04d1bac 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ All notable changes to `laravel-filepond` will be documented in this file. +## 10.0.1 - 2024-10-07 + +- Fixed large file processing (out of memory exception) 🐛. + ## 10.0.0 - 2023-11-23 - Locked package version to Laravel 10. 🔒 diff --git a/README.md b/README.md index 85c9b82..580eeb9 100644 --- a/README.md +++ b/README.md @@ -6,12 +6,13 @@ A straight forward backend support for Laravel application to work with [FilePond](https://pqina.nl/filepond/) file upload javascript library. This package keeps tracks of all the uploaded files and provides an easier interface for the developers to interact with them. It currently features - - Single and multiple file uploads. -- Chunk uploads with resume. +- Chunk uploads with resume support. - Third party storage support. - Global server side validation for temporary files. - Controller/Request level validation before moving the temporary files to permanent location. - Scheduled artisan command to clean up temporary files and folders after they have expired. - Can handle filepond's `process`, `patch`, `head`, `revert` and `restore` endpoints. +- Can handle large files efficiently. Support the development with a :star: to let others know it worked for you.