fine-uploader v5.16.0 Release Notes

Release Date: 2018-03-09 // about 6 years ago
  • ๐Ÿš€ This is the biggest release in a long time, closing out a ton of long-standing cases, and making it much easier for developers to integrate Fine Uploader into their own servers. This was developed and tested over the course of 4+ months on a large closed-source project.

    From the commit message notes, the following is included here:

    โœ… Local dev/testing ports 3000/3001 clash with my local env, and possibly others - moving to 4000/4001.

    returned onUploadChunk promise can override method, params, headers, & url

    promissory onUpload callback

    โœ… always ensure test server are killed either on test start or stop

    ๐Ÿ‘ท don't try to kill test server on CI before tests start

    option to allow upload responses without { "success": true }

    ๐Ÿ‘ allow default params to be omitted from upload requests

    don't fail upload w/ non-JSON response when requireSuccessJson = false

    ๐Ÿ‘ more flexible chunking.success request support

    โž• add .editorconfig (can't believe this didn't exist until now)

    ๐Ÿ‘ Allow custom resume keys and data to be specified.

    include customResumeData in return value of getResumableFilesData API method

    โž• add isResumable public API method

    introduce chunking.success.resetOnStatus to allow FU to reset a file based on chunking.success response code

    ๐Ÿ†• new API method: isResumable(id)

    ๐Ÿ‘ Allow onUpload resolved Promise to pause the file.
    ๐Ÿ‘€ Use case: When onUpload is called, you make a request to your server to see if the file already exists. If it does, you want to let your user decide if they want to overwrite the file, or cancel the upload entirely. While waiting for user input you don't want to hold a spot in the upload queue. If the user decided to overwrite the file, call the continueUpload API method.

    ๐Ÿ‘ Allow per-file chunk sizes to be specified.
    chunking.partSize now accepts a function, which passes the file ID and size

    feat(beforeUnload): new option to turn off beforeUnload alert during uploads

    ๐Ÿ‘ feat(features.js): auto-detect folder support

    ๐Ÿ‘ Allow access to Blob when file status is still SUBMITTING

    ๐Ÿ“„ docs: options, API, and events doc updates

    โž• added qq.status.UPLOAD_FINALIZING - don't cancel or pause in this state

    closes #848
    closes #1697
    closes #1755
    closes #1325
    closes #1647
    closes #1703