Skip to content

Latest commit

 

History

History
49 lines (32 loc) · 2.06 KB

CHANGELOG.md

File metadata and controls

49 lines (32 loc) · 2.06 KB

Changelog

v8.1.0 (2023-03-15)

  • Accommodate marker pipe and directive
  • Enable support for other marker packages apart from the original from Kim Biesbjerg
  • Merged P4's PRs (#1, #2) in order to improve the pipe parser when it comes to pipe args and structural directives
  • Fixed some botched imports
  • Re-added --marker/-m option to CLI thanks to tmijieux's PR
  • Moved to eslint and fixed errors/warnings
  • Other minor clerical changes and small refactoring
  • Remove dependency on a specific version of the Angular compiler. Instead, we rely on the peer dependency. #3

v8.0.5 (2023-03-02)

  • fix(pipe-parser): Search for pipe in structural directives #1

    This fix will now detect the pipe in code like this:

    <ng-container *ngTemplateOutlet="section; context: {
      title: 'example.translation.key' | translate
    }"></ng-container>
    
  • fix: Find uses of translate pipe in pipe arguments #2

    Fixes the following:

    {{ 'value' | testPipe: ('test1' | translate) }} // finds nothing, misses 'test1'
    {{ 'Hello' | translate: {world: ('World' | translate)} }} // finds 'Hello', misses 'World'
    {{ 'previewHeader' | translate:{filename: filename || ('video' | translate)} }} // finds 'previewHeader', misses 'video'
    

v8.0.3 (2022-12-15)

  • First package published under the @vendure namespace
  • Update references in README

v8 - v8.0.2

Prior to v8

See the releases in the original repo.