From 64555933d2e277303f7677678d586864b9eb342d Mon Sep 17 00:00:00 2001 From: Michael Bromley Date: Thu, 2 Mar 2023 10:02:16 +0100 Subject: [PATCH] chore: Update changelog, bump version --- CHANGELOG.md | 22 ++++++++++++++++++++++ package.json | 2 +- 2 files changed, 23 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6e87139e..2fe8c96c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,27 @@ # Changelog +## v8.0.5 (2023-03-02) + +- fix(pipe-parser): Search for pipe in structural directives [#1](https://github.com/vendure-ecommerce/ngx-translate-extract/pull/1) + + This fix will now detect the pipe in code like this: + + ``` + + ``` + +- fix: Find uses of translate pipe in pipe arguments [#2](https://github.com/vendure-ecommerce/ngx-translate-extract/pull/2) + + Fixes the following: + + ```json + {{ '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 diff --git a/package.json b/package.json index d3ba2644..04949158 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@vendure/ngx-translate-extract", - "version": "8.0.3", + "version": "8.0.5", "description": "Extract strings from projects using ngx-translate", "author": "Kim Biesbjerg ", "license": "MIT",