Skip to content

Releases: dstelljes/luxon-angular

6.0.0

07 Dec 02:31
Compare
Choose a tag to compare
  • Breaking: Pipes now support additional options arguments (#47). This has changed the signatures of the dateTimeToRelative and dateTimeToRelativeCalendar pipes.

    Before:

    {{ date | dateTimeToRelative:'day':'long' }}
    {{ date | dateTimeToRelativeCalendar:'month' }}
    

    After:

    {{ date | dateTimeToRelative:{ unit: 'day', style: 'long' } }}
    {{ date | dateTimeToRelativeCalendar:{ unit: 'month' } }}
  • The dateTimeToLocaleString pipe was added (#45, h/t @malua).

  • The build tooling was updated to Angular 15.

5.2.0

31 Oct 01:41
Compare
Choose a tag to compare
  • The durationToHuman pipe was added (#38).

  • The durationFromIsoTime and durationToIsoTime pipes were added (#39).

5.1.0

02 Aug 02:03
Compare
Choose a tag to compare
  • The library now supports Luxon 3.
  • The build tooling was updated to Angular 14.

5.0.0

14 Dec 19:38
Compare
Choose a tag to compare
  • The build tooling was updated to Angular 13 and Ivy compilation was enabled (#28, #29). The library no longer supports Angular < 12.

4.0.0

10 Aug 13:16
Compare
Choose a tag to compare
  • The library no longer supports Luxon < 2.0.0.

3.1.0

14 Apr 01:41
Compare
Choose a tag to compare

3.0.0

15 Mar 21:47
Compare
Choose a tag to compare
  • The relative formatting pipes, dateTimeToRelative and dateTimeToRelativeCalendar, update as time passes.

  • The library no longer supports Angular < 6. Additionally, we've switched to the standard Angular build tooling.