Skip to content

Latest commit

 

History

History
71 lines (54 loc) · 2.96 KB

CHANGELOG.md

File metadata and controls

71 lines (54 loc) · 2.96 KB

18.0.0 (2024-09-19)

  • Update the Angular dependencies to latest version.

17.0.0 (2024-01-12)

  • Update the Angular dependencies to latest version.

16.0.0 (2023-07-26)

  • Update the Angular dependencies to latest version.

15.0.0 (2022-12-29)

  • Update the Angular dependencies to latest version.

14.0.0 (2022-08-01)

  • Update the Angular dependencies to latest version.
  • Use UntypedFormControl.

9.0.1 (2020-03-19)

  • Update the Angular dependencies to latest version.

9.0.0 (2020-02-22)

  • Updated to Angular 9.

8.1.1 (2019-09-02)

  • Fix a bug where min validation was not performed if max constraints were not set.

8.1.0 (2019-09-02)

  • Add minHeight and minWidth validation for images. Closing #4.
  • Add maxHeight, maxWidth, minHeight, and minWidth properties to errors object.
  • imageWidth and imageHeight properties now reflect validation errors for their counterparts (maxWidth, minWidth for imageWidth, maxHeight, minHeight for imageHeight)

8.0.0 (2019-05-29)

  • Update to Angular v8.

7.0.0 (2018-10-23)

  • Update to Angular v7. Major versions will align with major Angular versions moving forward.
  • Compatible with Angular SSR (Server Side Rendering) since version 2.0.1.
  • Packaging updated to use ng-packagr, according to instructions provided here.

2.0.1 (2018-10-15)

  • Validation when using string or array doesn't match against file extension correctly. This matches against the end of the filenames by appending $ to the end of the string or string array Regex.

2.0.0 (2018-05-05)

  • Updated demo and README - Added compatibility section and links to Rxjs docs.

Breaking Changes

  • Using Angular v6, which means Rxjs v6, which means if your project is using Angular v4 or v5, you should stick to FileInputAccessor v1.x.x

1.0.12 (2018-05-05)

  • README.md - Added example code for uploading files
  • Dependencies - Updated so they actually reflect the Angular versions this is compatible with. Version 1.x.x works with Angular >=4.0.0 <6.0.0
  • Removed some redundant code that wasn't really doing anything (fingers crossed).

1.0.11 (2018-02-16)

  • Fix an error when importing directly from Rxjs.
  • This will change in future versions (version 2.x) to keep best practices moving forward

1.0.10 (2018-02-16)

  • Update types from 'any'.
  • Add setDisabledState() implementation.
  • Demo cleanup.
  • Refactor input properties to provide better completion.

1.0.9 (2018-01-26)

  • Update RxJS to 5.5.6 and removed deep operator imports in favor of pipeable operators.