Releases: pionl/laravel-chunk-upload
Releases · pionl/laravel-chunk-upload
1.2.9
🎆 Added Laravel 5.8 support (@ivandokov )
1.2.8
🙌 Added ability to add or override handlers - #50
Please update to your config (optional):
'handlers' => [
// A list of handlers/providers that will be appended to existing list of handlers
'custom' => [],
// Overrides the list of handlers - use only what you really want
'override' => [
// \Pion\Laravel\ChunkUpload\Handler\DropZoneUploadHandler::class
],
],
1.2.7
1.2.6
1.2.5
1.2.4
1.2.3
1.2.2
1.2.0
New
🎆 Add support for simultaneousUploads (resumable.js) - #27
🙌 Add support for parallelChunkUploads (Dropzone) - #27
Breaking changes
With this release there are some breaking changes for cleaner code. It will break only if you implemented your own handler:
- Any custom handler must implement new method: startSaving which should return ChunkSave or ParallerSave for simultaneousUploads support
ChunkStorage->files()
returns only collection of chunk files, not all files in chunk directory.- Removed
ChunkSave->appendDataToChunkFile
method, use FileMerger class - AbstractHandler::createChunkFileName now has 2 optional parameters.