Skip to content

Releases: adobe/aem-upload

v2.0.3

29 Jan 20:15
Compare
Choose a tag to compare

2.0.3 (2024-01-29)

Bug Fixes

  • improve support for handling eventual consistency when uploading. (#118) (0372ef4)

v2.0.2

04 Aug 00:38
Compare
Choose a tag to compare

2.0.2 (2023-08-04)

Bug Fixes

  • pass request options to cors requests (#113) (528b654)

v2.0.1

26 May 16:40
Compare
Choose a tag to compare

2.0.1 (2023-05-26)

Bug Fixes

v2.0.0

21 Apr 17:29
Compare
Choose a tag to compare

2.0.0 (2023-04-21)

Features

  • use fetch instead of axios, and expose http options (#107) (1650a94)
  • switch to using non-module specific syntax.
  • improve linting rules and fix formatting errors
  • clean up deprecated code that was introduced when node-httptransfer was integrated.
  • add information about directories created to result.
  • change result to simple javascript object.

BREAKING CHANGES

  • several classes and underlying functionality changed. See upgrade guide for details.

v1.5.0

23 Jan 21:28
Compare
Choose a tag to compare

1.5.0 (2023-01-23)

v1.4.1

20 Dec 23:20
Compare
Choose a tag to compare

1.4.1 (2022-12-20)

v1.4.0

19 Aug 21:15
Compare
Choose a tag to compare

1.4.0 (2022-08-19)

v1.3.0

29 Jul 22:54
Compare
Choose a tag to compare

1.3.0 (2022-07-29)

v1.2.1

02 Jun 16:56
Compare
Choose a tag to compare

1.2.1 (2022-06-02)

Fix

  • include uploadDuration when uploading files. (#78) (396d7ee), closes #78

v1.2.0

03 May 18:26
Compare
Choose a tag to compare

1.2.0 (2022-05-03)

Values provided to DirectBinaryUploadOptions.withUrl() may (and should) now be URI encoded. For example, previous versions of the module would have accepted the following:

options.withUrl('http://localhost/content/dam/my path');

Going forward, the value should instead be:

options.withUrl('http://localhost/content/dam/my%20path');