From e8c1f518b988f45f3f6da84333550b215dcde94b Mon Sep 17 00:00:00 2001 From: Andrii Bodnar Date: Wed, 18 Jan 2023 14:35:10 +0200 Subject: [PATCH] chore(release): published v3.16.0 [skip ci] --- CHANGELOG.md | 22 +++++++++++++++++++ lerna.json | 2 +- .../CHANGELOG.md | 11 ++++++++++ .../package.json | 4 ++-- packages/cli/CHANGELOG.md | 17 ++++++++++++++ packages/cli/package.json | 8 +++---- packages/conf/CHANGELOG.md | 8 +++++++ packages/conf/package.json | 2 +- packages/core/CHANGELOG.md | 8 +++++++ packages/core/package.json | 6 ++--- packages/detect-locale/CHANGELOG.md | 8 +++++++ packages/detect-locale/package.json | 2 +- packages/loader/CHANGELOG.md | 8 +++++++ packages/loader/package.json | 6 ++--- packages/macro/CHANGELOG.md | 12 ++++++++++ packages/macro/package.json | 4 ++-- packages/react/CHANGELOG.md | 8 +++++++ packages/react/package.json | 4 ++-- 18 files changed, 121 insertions(+), 19 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e9cb9de7c..15cfb45f5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,28 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [3.16.0](https://github.com/lingui/js-lingui/compare/v3.15.0...v3.16.0) (2023-01-18) + + +### Bug Fixes + +* **cli:** {locale} and {name} replace only once in catalog path ([#1342](https://github.com/lingui/js-lingui/issues/1342)) ([9e2d7d2](https://github.com/lingui/js-lingui/commit/9e2d7d28147169e70e9e54bc61d09745a1cbf813)) +* **cli:** catalogsMergePath doesn't merge catalogs ([#1341](https://github.com/lingui/js-lingui/issues/1341)) ([12ad0df](https://github.com/lingui/js-lingui/commit/12ad0dfa69004e1aeb3ac4aad57e6c7bf2325bad)) +* Dynamic versioning of internal packages ([#1332](https://github.com/lingui/js-lingui/issues/1332)) ([a1ff393](https://github.com/lingui/js-lingui/commit/a1ff393ec14cc4ce44cf2717eee80bd77312b8c1)) +* **macro:** Extraction outputting empty objects ([#1331](https://github.com/lingui/js-lingui/issues/1331)) ([261265f](https://github.com/lingui/js-lingui/commit/261265f8a838386caa13d153e56e25363d806c19)) +* Local development not working on Windows ([ad9b735](https://github.com/lingui/js-lingui/commit/ad9b73566b105e13812da2f515116ed1cf80c3e8)) +* **types:** ``can have an `i18n` props ([#1308](https://github.com/lingui/js-lingui/issues/1308)) ([de01f8d](https://github.com/lingui/js-lingui/commit/de01f8df0d814f2a42d26d7235c72d4592325ad3)) + + +### Features + +* `lingui extract` should fail with a non-zero exit code when there are extraction failures ([#1299](https://github.com/lingui/js-lingui/issues/1299)) ([c863322](https://github.com/lingui/js-lingui/commit/c863322a5f4706cc888ea351c463e7a343cc6dfd)) +* allow extract to work with i18n._ calls not created from macro ([#1309](https://github.com/lingui/js-lingui/issues/1309)) ([90be171](https://github.com/lingui/js-lingui/commit/90be1719becc4710c910ea16928b7ce41ef9ab19)) + + + + + # [3.15.0](https://github.com/lingui/js-lingui/compare/v3.14.0...v3.15.0) (2022-11-07) diff --git a/lerna.json b/lerna.json index 582b3af42..5c7537536 100644 --- a/lerna.json +++ b/lerna.json @@ -1,5 +1,5 @@ { - "version": "3.15.0", + "version": "3.16.0", "packages": [ "packages/*" ], diff --git a/packages/babel-plugin-extract-messages/CHANGELOG.md b/packages/babel-plugin-extract-messages/CHANGELOG.md index e31f5d554..95cc204d4 100644 --- a/packages/babel-plugin-extract-messages/CHANGELOG.md +++ b/packages/babel-plugin-extract-messages/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [3.16.0](https://github.com/lingui/js-lingui/compare/v3.15.0...v3.16.0) (2023-01-18) + + +### Features + +* allow extract to work with i18n._ calls not created from macro ([#1309](https://github.com/lingui/js-lingui/issues/1309)) ([90be171](https://github.com/lingui/js-lingui/commit/90be1719becc4710c910ea16928b7ce41ef9ab19)) + + + + + # [3.15.0](https://github.com/lingui/js-lingui/compare/v3.14.0...v3.15.0) (2022-11-07) **Note:** Version bump only for package @lingui/babel-plugin-extract-messages diff --git a/packages/babel-plugin-extract-messages/package.json b/packages/babel-plugin-extract-messages/package.json index 169fcd995..00e9001af 100644 --- a/packages/babel-plugin-extract-messages/package.json +++ b/packages/babel-plugin-extract-messages/package.json @@ -1,6 +1,6 @@ { "name": "@lingui/babel-plugin-extract-messages", - "version": "3.15.0", + "version": "3.16.0", "description": "Babel plugin for collecting messages from source code for internationalization", "main": "./build/index.js", "author": { @@ -35,7 +35,7 @@ "dependencies": { "@babel/generator": "^7.11.6", "@babel/runtime": "^7.11.2", - "@lingui/conf": "^3.15.0", + "@lingui/conf": "3.16.0", "mkdirp": "^1.0.4" } } diff --git a/packages/cli/CHANGELOG.md b/packages/cli/CHANGELOG.md index 498038535..806a5adbb 100644 --- a/packages/cli/CHANGELOG.md +++ b/packages/cli/CHANGELOG.md @@ -3,6 +3,23 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [3.16.0](https://github.com/lingui/js-lingui/compare/v3.15.0...v3.16.0) (2023-01-18) + + +### Bug Fixes + +* **cli:** {locale} and {name} replace only once in catalog path ([#1342](https://github.com/lingui/js-lingui/issues/1342)) ([9e2d7d2](https://github.com/lingui/js-lingui/commit/9e2d7d28147169e70e9e54bc61d09745a1cbf813)) +* **cli:** catalogsMergePath doesn't merge catalogs ([#1341](https://github.com/lingui/js-lingui/issues/1341)) ([12ad0df](https://github.com/lingui/js-lingui/commit/12ad0dfa69004e1aeb3ac4aad57e6c7bf2325bad)) + + +### Features + +* `lingui extract` should fail with a non-zero exit code when there are extraction failures ([#1299](https://github.com/lingui/js-lingui/issues/1299)) ([c863322](https://github.com/lingui/js-lingui/commit/c863322a5f4706cc888ea351c463e7a343cc6dfd)) + + + + + # [3.15.0](https://github.com/lingui/js-lingui/compare/v3.14.0...v3.15.0) (2022-11-07) diff --git a/packages/cli/package.json b/packages/cli/package.json index f2718059c..ce16d76aa 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -1,6 +1,6 @@ { "name": "@lingui/cli", - "version": "3.15.0", + "version": "3.16.0", "description": "CLI for working wit message catalogs", "keywords": [ "cli", @@ -44,9 +44,9 @@ "@babel/plugin-syntax-jsx": "^7.10.4", "@babel/runtime": "^7.11.2", "@babel/types": "^7.11.5", - "@lingui/babel-plugin-extract-messages": "^3.15.0", - "@lingui/conf": "^3.15.0", - "@lingui/core": "^3.15.0", + "@lingui/babel-plugin-extract-messages": "3.16.0", + "@lingui/conf": "3.16.0", + "@lingui/core": "3.16.0", "babel-plugin-macros": "^3.0.1", "bcp-47": "^1.0.7", "chalk": "^4.1.0", diff --git a/packages/conf/CHANGELOG.md b/packages/conf/CHANGELOG.md index 444d71c2d..19285679f 100644 --- a/packages/conf/CHANGELOG.md +++ b/packages/conf/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [3.16.0](https://github.com/lingui/js-lingui/compare/v3.15.0...v3.16.0) (2023-01-18) + +**Note:** Version bump only for package @lingui/conf + + + + + # [3.15.0](https://github.com/lingui/js-lingui/compare/v3.14.0...v3.15.0) (2022-11-07) diff --git a/packages/conf/package.json b/packages/conf/package.json index 383edd721..af564ffb0 100644 --- a/packages/conf/package.json +++ b/packages/conf/package.json @@ -1,6 +1,6 @@ { "name": "@lingui/conf", - "version": "3.15.0", + "version": "3.16.0", "sideEffects": false, "description": "Get lingui configuration from package.json", "keywords": [ diff --git a/packages/core/CHANGELOG.md b/packages/core/CHANGELOG.md index ff2bbaf81..a49f853a4 100644 --- a/packages/core/CHANGELOG.md +++ b/packages/core/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [3.16.0](https://github.com/lingui/js-lingui/compare/v3.15.0...v3.16.0) (2023-01-18) + +**Note:** Version bump only for package @lingui/core + + + + + # [3.15.0](https://github.com/lingui/js-lingui/compare/v3.14.0...v3.15.0) (2022-11-07) diff --git a/packages/core/package.json b/packages/core/package.json index 050a31a3f..17d3f0dd1 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,6 +1,6 @@ { "name": "@lingui/core", - "version": "3.15.0", + "version": "3.16.0", "sideEffects": false, "description": "I18n tools for javascript", "main": "./build/cjs/index.js", @@ -47,7 +47,7 @@ ], "dependencies": { "@babel/runtime": "^7.11.2", - "make-plural": "^6.2.2", - "@messageformat/parser": "^5.0.0" + "@messageformat/parser": "^5.0.0", + "make-plural": "^6.2.2" } } diff --git a/packages/detect-locale/CHANGELOG.md b/packages/detect-locale/CHANGELOG.md index 4a2f9bf22..bbe590747 100644 --- a/packages/detect-locale/CHANGELOG.md +++ b/packages/detect-locale/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [3.16.0](https://github.com/lingui/js-lingui/compare/v3.15.0...v3.16.0) (2023-01-18) + +**Note:** Version bump only for package @lingui/detect-locale + + + + + # [3.15.0](https://github.com/lingui/js-lingui/compare/v3.14.0...v3.15.0) (2022-11-07) **Note:** Version bump only for package @lingui/detect-locale diff --git a/packages/detect-locale/package.json b/packages/detect-locale/package.json index f714bc962..c53fdd604 100644 --- a/packages/detect-locale/package.json +++ b/packages/detect-locale/package.json @@ -1,6 +1,6 @@ { "name": "@lingui/detect-locale", - "version": "3.15.0", + "version": "3.16.0", "sideEffects": false, "description": "@Lingui package to help you find the correct browser/server locale", "main": "./build/cjs/index.js", diff --git a/packages/loader/CHANGELOG.md b/packages/loader/CHANGELOG.md index bd29bf867..0a69a99a9 100644 --- a/packages/loader/CHANGELOG.md +++ b/packages/loader/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [3.16.0](https://github.com/lingui/js-lingui/compare/v3.15.0...v3.16.0) (2023-01-18) + +**Note:** Version bump only for package @lingui/loader + + + + + # [3.15.0](https://github.com/lingui/js-lingui/compare/v3.14.0...v3.15.0) (2022-11-07) diff --git a/packages/loader/package.json b/packages/loader/package.json index 6326b3b13..21cb4c58d 100644 --- a/packages/loader/package.json +++ b/packages/loader/package.json @@ -1,6 +1,6 @@ { "name": "@lingui/loader", - "version": "3.15.0", + "version": "3.16.0", "description": "webpack loader for lingui message catalogs", "types": "./build/index.d.ts", "main": "./build/index.js", @@ -36,8 +36,8 @@ ], "dependencies": { "@babel/runtime": "^7.11.2", - "@lingui/cli": "^3.15.0", - "@lingui/conf": "^3.15.0", + "@lingui/cli": "3.16.0", + "@lingui/conf": "3.16.0", "loader-utils": "^2.0.0" }, "devDependencies": { diff --git a/packages/macro/CHANGELOG.md b/packages/macro/CHANGELOG.md index bca53ef92..faafaa77e 100644 --- a/packages/macro/CHANGELOG.md +++ b/packages/macro/CHANGELOG.md @@ -3,6 +3,18 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [3.16.0](https://github.com/lingui/js-lingui/compare/v3.15.0...v3.16.0) (2023-01-18) + + +### Bug Fixes + +* **macro:** Extraction outputting empty objects ([#1331](https://github.com/lingui/js-lingui/issues/1331)) ([261265f](https://github.com/lingui/js-lingui/commit/261265f8a838386caa13d153e56e25363d806c19)) +* **types:** ``can have an `i18n` props ([#1308](https://github.com/lingui/js-lingui/issues/1308)) ([de01f8d](https://github.com/lingui/js-lingui/commit/de01f8df0d814f2a42d26d7235c72d4592325ad3)) + + + + + # [3.15.0](https://github.com/lingui/js-lingui/compare/v3.14.0...v3.15.0) (2022-11-07) diff --git a/packages/macro/package.json b/packages/macro/package.json index 3134d2de1..55e980608 100644 --- a/packages/macro/package.json +++ b/packages/macro/package.json @@ -1,6 +1,6 @@ { "name": "@lingui/macro", - "version": "3.15.0", + "version": "3.16.0", "description": "Macro for generating messages in ICU MessageFormat syntax", "main": "./build/index.js", "author": { @@ -28,7 +28,7 @@ ], "dependencies": { "@babel/runtime": "^7.11.2", - "@lingui/conf": "^3.15.0", + "@lingui/conf": "3.16.0", "ramda": "^0.27.1" }, "peerDependencies": { diff --git a/packages/react/CHANGELOG.md b/packages/react/CHANGELOG.md index b5b82001b..a09e961d0 100644 --- a/packages/react/CHANGELOG.md +++ b/packages/react/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [3.16.0](https://github.com/lingui/js-lingui/compare/v3.15.0...v3.16.0) (2023-01-18) + +**Note:** Version bump only for package @lingui/react + + + + + # [3.15.0](https://github.com/lingui/js-lingui/compare/v3.14.0...v3.15.0) (2022-11-07) **Note:** Version bump only for package @lingui/react diff --git a/packages/react/package.json b/packages/react/package.json index 371010b0f..c59a9b4c6 100644 --- a/packages/react/package.json +++ b/packages/react/package.json @@ -1,6 +1,6 @@ { "name": "@lingui/react", - "version": "3.15.0", + "version": "3.16.0", "sideEffects": false, "description": "React components for translations", "main": "./build/cjs/index.js", @@ -48,7 +48,7 @@ }, "dependencies": { "@babel/runtime": "^7.11.2", - "@lingui/core": "^3.15.0" + "@lingui/core": "3.16.0" }, "devDependencies": { "react-testing-library": "^8.0.1"