Releases: uploadcare/uploadcare-js-api-clients
Releases · uploadcare/uploadcare-js-api-clients
v6.2.0
v6.1.0
v6.0.0
6.0.0 (2022-12-07)
- refactor(rest-client)!: merge document and video conversion methods into the two common ones -
convert
andconversionJobStatus
(beb2bb6) - fix(rest-client)!: do not change case of the
appdata
field and its content (92d785d) - feat(rest-client)!: accept boolean or "auto" for the
store
option (440e228)
Features
- api-client-utils: add
timeout
option to thepoll
(f27f25a) - rest-client: add addon job status polling (8f2aec7)
- rest-client: add conversion api polling (41c6aa5)
BREAKING CHANGES
- Methods
convertVideo
,convertDocument
,videoConversionJobStatus
anddocumentConversionJobStatus
are removed. Please useconvert
andconversionJobStatus
methods. Type of conversion (video or document) passed astype
option. - Now
appdata
field is returned as-is, without kebab -> camel case conversion - string ("true", "false", "1", "0") values for the
store
option ofconvertVideo
andconvertDocument
aren't accepted anymore. Please useboolean
value or "auto". It's "auto" by default"
v5.2.0
v5.1.2
v5.1.1
v5.1.0
v5.0.0
5.0.0 (2022-09-13)
- refactor(upload-client)!: drop
multipartMaxAttempts
option (178436e)
Features
- api-client-utils: add
UploadcareNetworkError
(0e917d2) - upload-client: add
retryNetworkErrorMaxTimes
option to specify retries count on network errors (400fedd) - upload-client: throw
UploadcareNetworkError
instead ofError
(f7e3f55)
BREAKING CHANGES
- option
multipartMaxAttempts
is dropped. UseretryNetworkErrorMaxTimes
instead. It will affect all the requests, not only multipart uploads.