Skip to content

Releases: pionl/laravel-chunk-upload

1.2.9

05 Mar 12:41
074b2f9
Compare
Choose a tag to compare

🎆 Added Laravel 5.8 support (@ivandokov )

1.2.8

11 Sep 09:27
f556e3e
Compare
Choose a tag to compare

🙌 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

1.2.7

07 Sep 08:34
Compare
Choose a tag to compare

🎆 Added Laravel 5.7 support (@trideout)

1.2.6

11 Jun 09:05
e18712e
Compare
Choose a tag to compare

⛑ Change how parallel save handles last chunk detection #37

1.2.5

30 May 19:19
Compare
Choose a tag to compare

🙌 Added ng-file-upload support - #39 (thanks to @L3o-pold)

1.2.4

24 May 12:53
93915fb
Compare
Choose a tag to compare

⛑ Fix incorrect sorting of chunk files with more complex file names #38

1.2.3

21 May 19:22
90b7541
Compare
Choose a tag to compare

🍻 Added simple uploader support - #36 (thanks to @dyktek)

1.2.2

15 May 14:59
8a1c315
Compare
Choose a tag to compare

⛑ Fixed incorrect usage of new method startSaving in SingleUploadHandler #34 (🙌 @HOTAIBI )

1.2.0

08 May 12:54
202eb34
Compare
Choose a tag to compare

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:

1.1.7

05 Mar 18:14
ee9157a
Compare
Choose a tag to compare

Minor fix of a static function call