Skip to content

Releases: ngx-translate/core

v10.0.1

29 Mar 09:54
Compare
Choose a tag to compare

10.0.1 (2018-03-29)

Bug Fixes

  • directive: fix for translations starting or ending with whitespaces (cf45ef5), closes #790

v10.0.0

28 Mar 09:11
Compare
Choose a tag to compare

10.0.0 (2018-03-28)

Features

  • core: support for Angular 6 and RxJS 6 (152208e), closes #816

BREAKING CHANGES

  • core: The library is now compatible with Angular 6+ and RxJS 6+. If you need to use Angular 5, please stay on version 9.1.1. If you need to use RxJS 5, update to 5.6 and use the rxjs-compat library (see the RxJS update guide)

v9.1.1

16 Jan 15:08
Compare
Choose a tag to compare

9.1.1 (2018-01-16)

Bug Fixes

  • TranslateService: fix isolate to get the local translations (cfa1440), closes #524

v9.1.0

15 Jan 12:21
Compare
Choose a tag to compare

9.1.0 (2018-01-15)

Features

  • TranslateService: support merging non-valid JSON object notations (6f7296f), closes #764

v9.0.2

15 Dec 08:28
Compare
Choose a tag to compare

9.0.2 (2017-12-15)

Bug Fixes

  • TranslateService: compile translations even when pending state is true (520bc12)

v9.0.1

24 Nov 08:47
Compare
Choose a tag to compare

9.0.1 (2017-11-24)

Bug Fixes

  • build: use individual RxJS imports for webpack treeshacking

v9.0.0

23 Nov 16:01
Compare
Choose a tag to compare

9.0.0 (2017-11-23)

Bug Fixes

  • ngx-translate: updated build to fix "Unexpected token import errors" (9add703), closes #724 #581

BREAKING CHANGES

  • ngx-translate: I've finally taken the time to update the entire build system for the library using ng-packagr instead of my own custom webpack config.
    I've also added support for rxjs lettable operators at the same time, it means that I've been forced to add a peer dependency for RxJS >= 5.5.2. and I've updated the minimum Angular version to >=5.0.0.
    The library should be much smaller (from ~80ko to ~20ko for the umd bundle!) and it now supports ES2015 to be tree-shackable which might drop the size even more.
    It should also fix the "Unexpected token import errors" that some people were experiencing.
    Unfortunately this might be breaking people since the peer dependency have changed and that's why it's a new major version.

v8.0.0

05 Sep 16:32
Compare
Choose a tag to compare

8.0.0 (2017-09-05)

Bug Fixes

  • TranslateService:
    • updated OpaqueToken -> InjectionToken for Angular v5 (12267e5b)

Breaking Changes

  • the library is now only compatible with Angular v4.0+ because OpaqueToken has been removed from v5 and its replacement InjectionToken was introduced in v4.0
    (12267e5b)

v7.2.2

05 Sep 16:30
Compare
Choose a tag to compare

7.2.2 (2017-09-05)

Bug Fixes

  • TranslateService: revert update to InjectionToken because it broke applications using Angular 2.x (f478838f)

v7.2.1

04 Sep 12:15
Compare
Choose a tag to compare

7.2.1 (2017-09-04)

Bug Fixes

  • TranslateService: updated OpaqueToken -> InjectionToken for Angular v5 (33aa181e, closes #551)