Skip to content

Releases: pionl/laravel-chunk-upload

1.1.6

18 Feb 10:53

Choose a tag to compare

⛑ Fixed scheduler for latest Laravel setup #30 (🙌 @thehelvetian)

1.1.5

13 Feb 10:59
b24fc04

Choose a tag to compare

🎆 Added support for Laravel 5.6 (#29)

1.1.4

04 Feb 16:28

Choose a tag to compare

🙌 Now if the session can't be used, it will fallback to browser data instead to prevent incorrect usage. Now it is more easier to use it - just copy the examples and setup your route.
👍 Resumable identifier is used for chunk name.

1.1.3

27 Oct 13:55

Choose a tag to compare

🍻 Added DropZone support - #22
👷 Removed Laravel dependency in favor of Illuminate packages - #21

1.1.2

06 Sep 14:24

Choose a tag to compare

Added support for Auto-Discovery (thanks to @laravelish - #20)

1.1.1

01 Sep 10:13

Choose a tag to compare

Added support for Laravel 5.5 (thanks to @Colbydude)

1.1.0

03 Jul 11:59

Choose a tag to compare

From now, when file upload has an error, exception will be thrown (on FileReceiver construct).

Related to #17

1.0.4

29 Jun 10:17

Choose a tag to compare

Fixed #15 + #16

1.0.3

17 Mar 17:00

Choose a tag to compare

  • Enabled to construct the FileReceiver with dependency injection - the fasted way.
public function upload(FileReceiver $receiver) {

    // check if the upload is success
    if ($receiver->isUploaded()) {
    ....
    }
}
  • Removed the getChunkFile and added getUploadedFile for all Save classes. Returns always the uploaded file (the uploaded chunk).

1.0.2

17 Mar 16:09

Choose a tag to compare

  • Added resumable.js provider
  • Added getChunkFile method in ChunkSave for returning only the chunk file