Laravel Chunk Upload Versions Save

The basic implementation for chunk upload with multiple providers support like jQuery-file-upload, pupload, DropZone and resumable.js

v1.5.4

1 month ago

What's Changed

New Contributors

Full Changelog: https://github.com/pionl/laravel-chunk-upload/compare/v1.5.3...v1.5.4

v1.5.3

1 month ago

What's Changed

New Contributors

Full Changelog: https://github.com/pionl/laravel-chunk-upload/compare/v1.5.2...v1.5.3

v1.5.2

1 year ago

πŸš€ Laravel 10 support officially landed.

v1.5.1

1 year ago

β›‘ fix issue for large file name (resuamblejs) by @shivank44 in https://github.com/pionl/laravel-chunk-upload/pull/125

Full Changelog: https://github.com/pionl/laravel-chunk-upload/compare/v1.5.0...v1.5.1

v1.5.0

2 years ago

πŸš€ Laravel 9 support - all acceptance tests passed by @drjdr #129 ❌ Laravel 5/6 support officially not supported, but still can be used and works (not tested anymore)

v1.4.1

3 years ago

πŸš€ Laravel 8 support - all acceptance tests passed

v1.4.0

3 years ago

πŸŽ‰ Finally a release for Laravel 7 support (bug found by @drjdr) β›‘ Finally I've fixed problems with chunks (Dropzone/Resumable.js with parallel upload). πŸ‘ Also I've found a solution how to get file data after upload for a Dropzone. Check WIKI.

Now the release cycle will be easier thanks to integrations test on all Laravel versions. Update should take less time without breaking any support.

SnΓ­mek obrazovky 2020-06-21 vΒ 18 35 05

v1.3.0

4 years ago

πŸŽ† Added Laravel 6.5 support (@TheFrankman and @michaelaguiar)

PR #85, #80, #84

v1.2.9

5 years ago

πŸŽ† Added Laravel 5.8 support (@ivandokov )

v1.2.8

5 years ago

πŸ™Œ 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
        ],
    ],

Full version of config