Skip to content

Commit 14e41f6

Browse files
committed
Fix issue with chunkRetryDelays
1 parent 9166e1f commit 14e41f6

8 files changed

Lines changed: 18 additions & 14 deletions

File tree

CHANGELOG.md

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,17 @@
11
# Changelog
22

3+
## 4.25.3
4+
5+
- Fix issue with `chunkRetryDelays`. #671
6+
37
## 4.25.2
48

5-
- Fix issue with fixed with file items not row wrapping correctly #653
6-
- Fix file info label when remove button positioned to the right #620
9+
- Fix issue with fixed with file items not row wrapping correctly. #653
10+
- Fix file info label when remove button positioned to the right. #620
711

812
## 4.25.1
913

10-
- Renamed `beforePrepareOutput` hook to `beforePrepareFile`
14+
- Renamed `beforePrepareOutput` hook to `beforePrepareFile`.
1115

1216
## 4.25.0
1317

dist/filepond.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* FilePond 4.25.2
2+
* FilePond 4.25.3
33
* Licensed under MIT, https://opensource.org/licenses/MIT/
44
* Please visit https://pqina.nl/filepond/ for details.
55
*/

dist/filepond.esm.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* FilePond 4.25.2
2+
* FilePond 4.25.3
33
* Licensed under MIT, https://opensource.org/licenses/MIT/
44
* Please visit https://pqina.nl/filepond/ for details.
55
*/
@@ -1856,7 +1856,7 @@ const defaultOptions = {
18561856
chunkUploads: [false, Type.BOOLEAN], // Enable chunked uploads
18571857
chunkForce: [false, Type.BOOLEAN], // Force use of chunk uploads even for files smaller than chunk size
18581858
chunkSize: [5000000, Type.INT], // Size of chunks (5MB default)
1859-
chunkRetryDelays: [[500, 1000, 3000], Type.Array], // Amount of times to retry upload of a chunk when it fails
1859+
chunkRetryDelays: [[500, 1000, 3000], Type.ARRAY], // Amount of times to retry upload of a chunk when it fails
18601860

18611861
// The server api end points to use for uploading (see docs)
18621862
server: [null, Type.SERVER_API],

dist/filepond.esm.min.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/filepond.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* FilePond 4.25.2
2+
* FilePond 4.25.3
33
* Licensed under MIT, https://opensource.org/licenses/MIT/
44
* Please visit https://pqina.nl/filepond/ for details.
55
*/
@@ -3782,7 +3782,7 @@
37823782
chunkUploads: [false, Type.BOOLEAN], // Enable chunked uploads
37833783
chunkForce: [false, Type.BOOLEAN], // Force use of chunk uploads even for files smaller than chunk size
37843784
chunkSize: [5000000, Type.INT], // Size of chunks (5MB default)
3785-
chunkRetryDelays: [[500, 1000, 3000], Type.Array], // Amount of times to retry upload of a chunk when it fails
3785+
chunkRetryDelays: [[500, 1000, 3000], Type.ARRAY], // Amount of times to retry upload of a chunk when it fails
37863786

37873787
// The server api end points to use for uploading (see docs)
37883788
server: [null, Type.SERVER_API],

dist/filepond.min.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/filepond.min.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "filepond",
3-
"version": "4.25.2",
3+
"version": "4.25.3",
44
"description": "FilePond, Where files go to stretch their bits.",
55
"license": "MIT",
66
"author": {

0 commit comments

Comments
 (0)