From ad08fa2c5c3a3b5ed9098c5719a09b8b7bb5ef5b Mon Sep 17 00:00:00 2001 From: Lingui Date: Tue, 2 Feb 2021 09:37:50 +0000 Subject: [PATCH] chore(release): published v3.5.0 [skip ci] --- CHANGELOG.md | 24 +++++++++++++++++++ lerna.json | 2 +- .../CHANGELOG.md | 8 +++++++ .../package.json | 4 ++-- packages/cli/CHANGELOG.md | 21 ++++++++++++++++ packages/cli/package.json | 6 ++--- packages/conf/CHANGELOG.md | 11 +++++++++ packages/conf/package.json | 2 +- packages/core/CHANGELOG.md | 8 +++++++ packages/core/package.json | 2 +- 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 | 12 ++++++++++ packages/react/package.json | 4 ++-- packages/snowpack-plugin/CHANGELOG.md | 11 +++++++++ packages/snowpack-plugin/package.json | 6 ++--- 20 files changed, 142 insertions(+), 19 deletions(-) create mode 100644 packages/snowpack-plugin/CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md index 66e8ad1b4..756d2fdd4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,30 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [3.5.0](https://github.com/lingui/js-lingui/compare/v3.4.0...v3.5.0) (2021-02-02) + + +### Bug Fixes + +* @lingui/conf lodash.get dependency ([#950](https://github.com/lingui/js-lingui/issues/950)) ([f7b59ab](https://github.com/lingui/js-lingui/commit/f7b59abbcfc8bd797478a549641ca9e3b97a9701)) +* pseudolocalization ([#961](https://github.com/lingui/js-lingui/issues/961)) ([f1e1a25](https://github.com/lingui/js-lingui/commit/f1e1a25acd654c9877147ce3f40bc827bc54987a)) +* message when translations are missing ([#964](https://github.com/lingui/js-lingui/issues/964)) ([14f24f2](https://github.com/lingui/js-lingui/commit/14f24f2725771dcea0793de146abc9b86ea88789)) +* NODE_ENV=production crashes lingui extract [#952](https://github.com/lingui/js-lingui/issues/952) ([f368b35](https://github.com/lingui/js-lingui/commit/f368b353e975dab4024b755eb9d70f48b535a693)) +* obsolete flag disable when using extract [files] ([#967](https://github.com/lingui/js-lingui/issues/967)) ([0ea63e9](https://github.com/lingui/js-lingui/commit/0ea63e9a0b5cd2463fca18621e6dba16642f4d00)) +* React macros fixes ([#958](https://github.com/lingui/js-lingui/issues/958)) ([353c537](https://github.com/lingui/js-lingui/commit/353c5379a22473293aafcb4651db387e72c82a7a)) +* **docs:** documentation-typos ([#955](https://github.com/lingui/js-lingui/issues/955)) ([f73cb8c](https://github.com/lingui/js-lingui/commit/f73cb8c09d9919489f5fbb9a539da30faae53004)) + + +### Features + +* Introduced @lingui/snowpack-plugin ([#947](https://github.com/lingui/js-lingui/issues/947)) ([96bd31b](https://github.com/lingui/js-lingui/commit/96bd31b54d5ebfa2e28c96e14ee92d43b4199ae5)) + + + + + # [3.4.0](https://github.com/lingui/js-lingui/compare/v3.3.0...v3.4.0) (2021-01-13) diff --git a/packages/cli/package.json b/packages/cli/package.json index e8248d3fe..3b4429dc5 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -1,6 +1,6 @@ { "name": "@lingui/cli", - "version": "3.4.0", + "version": "3.5.0", "description": "CLI for working wit message catalogs", "keywords": [ "cli", @@ -38,8 +38,8 @@ "@babel/plugin-syntax-jsx": "^7.10.4", "@babel/runtime": "^7.11.2", "@babel/types": "^7.11.5", - "@lingui/babel-plugin-extract-messages": "^3.4.0", - "@lingui/conf": "^3.4.0", + "@lingui/babel-plugin-extract-messages": "^3.5.0", + "@lingui/conf": "^3.5.0", "babel-plugin-macros": "^2.8.0", "bcp-47": "^1.0.7", "chalk": "^4.1.0", diff --git a/packages/conf/CHANGELOG.md b/packages/conf/CHANGELOG.md index 332001962..7a4d81862 100644 --- a/packages/conf/CHANGELOG.md +++ b/packages/conf/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.5.0](https://github.com/lingui/js-lingui/compare/v3.4.0...v3.5.0) (2021-02-02) + + +### Bug Fixes + +* @lingui/conf lodash.get dependency ([#950](https://github.com/lingui/js-lingui/issues/950)) ([f7b59ab](https://github.com/lingui/js-lingui/commit/f7b59abbcfc8bd797478a549641ca9e3b97a9701)) + + + + + # [3.4.0](https://github.com/lingui/js-lingui/compare/v3.3.0...v3.4.0) (2021-01-13) diff --git a/packages/conf/package.json b/packages/conf/package.json index dbd94b4af..8a0e58d92 100644 --- a/packages/conf/package.json +++ b/packages/conf/package.json @@ -1,6 +1,6 @@ { "name": "@lingui/conf", - "version": "3.4.0", + "version": "3.5.0", "description": "Get lingui configuration from package.json", "keywords": [ "lingui", diff --git a/packages/core/CHANGELOG.md b/packages/core/CHANGELOG.md index 537b8ea9f..c020b6ab5 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.5.0](https://github.com/lingui/js-lingui/compare/v3.4.0...v3.5.0) (2021-02-02) + +**Note:** Version bump only for package @lingui/core + + + + + # [3.4.0](https://github.com/lingui/js-lingui/compare/v3.3.0...v3.4.0) (2021-01-13) diff --git a/packages/core/package.json b/packages/core/package.json index 820ead8ec..395926231 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,6 +1,6 @@ { "name": "@lingui/core", - "version": "3.4.0", + "version": "3.5.0", "description": "I18n tools for javascript", "main": "index.js", "types": "cjs/index.d.ts", diff --git a/packages/detect-locale/CHANGELOG.md b/packages/detect-locale/CHANGELOG.md index 36dacae09..dfe5520db 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.5.0](https://github.com/lingui/js-lingui/compare/v3.4.0...v3.5.0) (2021-02-02) + +**Note:** Version bump only for package @lingui/detect-locale + + + + + # [3.4.0](https://github.com/lingui/js-lingui/compare/v3.3.0...v3.4.0) (2021-01-13) diff --git a/packages/detect-locale/package.json b/packages/detect-locale/package.json index 89f4c7c28..98fe3f10a 100644 --- a/packages/detect-locale/package.json +++ b/packages/detect-locale/package.json @@ -1,6 +1,6 @@ { "name": "@lingui/detect-locale", - "version": "3.4.0", + "version": "3.5.0", "description": "@Lingui package to help you find the correct browser/server locale", "main": "index.js", "types": "cjs/index.d.ts", diff --git a/packages/loader/CHANGELOG.md b/packages/loader/CHANGELOG.md index bea8943e4..a10feac93 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.5.0](https://github.com/lingui/js-lingui/compare/v3.4.0...v3.5.0) (2021-02-02) + +**Note:** Version bump only for package @lingui/loader + + + + + # [3.4.0](https://github.com/lingui/js-lingui/compare/v3.3.0...v3.4.0) (2021-01-13) **Note:** Version bump only for package @lingui/loader diff --git a/packages/loader/package.json b/packages/loader/package.json index aeed771e4..c1817fd9e 100644 --- a/packages/loader/package.json +++ b/packages/loader/package.json @@ -1,6 +1,6 @@ { "name": "@lingui/loader", - "version": "3.4.0", + "version": "3.5.0", "description": "webpack loader for lingui message catalogs", "main": "index.js", "author": { @@ -30,8 +30,8 @@ }, "dependencies": { "@babel/runtime": "^7.11.2", - "@lingui/cli": "^3.4.0", - "@lingui/conf": "^3.4.0", + "@lingui/cli": "^3.5.0", + "@lingui/conf": "^3.5.0", "loader-utils": "^2.0.0", "ramda": "^0.27.1" }, diff --git a/packages/macro/CHANGELOG.md b/packages/macro/CHANGELOG.md index ef9d5dac8..d817f01ad 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.5.0](https://github.com/lingui/js-lingui/compare/v3.4.0...v3.5.0) (2021-02-02) + + +### Bug Fixes + +* React macros fixes ([#958](https://github.com/lingui/js-lingui/issues/958)) ([353c537](https://github.com/lingui/js-lingui/commit/353c5379a22473293aafcb4651db387e72c82a7a)) +* wrong typing of Trans macro component prop ([#960](https://github.com/lingui/js-lingui/issues/960)) ([57482c0](https://github.com/lingui/js-lingui/commit/57482c0f1ecab7c266628e7c9be2bd10538c7a57)) + + + + + # [3.4.0](https://github.com/lingui/js-lingui/compare/v3.3.0...v3.4.0) (2021-01-13) diff --git a/packages/macro/package.json b/packages/macro/package.json index bd9dcb00f..cabfa115b 100644 --- a/packages/macro/package.json +++ b/packages/macro/package.json @@ -1,6 +1,6 @@ { "name": "@lingui/macro", - "version": "3.4.0", + "version": "3.5.0", "description": "Macro for generating messages in ICU MessageFormat syntax", "main": "index.ts", "author": { @@ -29,7 +29,7 @@ ], "dependencies": { "@babel/runtime": "^7.11.2", - "@lingui/conf": "^3.4.0", + "@lingui/conf": "^3.5.0", "ramda": "^0.27.1" }, "peerDependencies": { diff --git a/packages/react/CHANGELOG.md b/packages/react/CHANGELOG.md index e74010fb9..44a2a956c 100644 --- a/packages/react/CHANGELOG.md +++ b/packages/react/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.5.0](https://github.com/lingui/js-lingui/compare/v3.4.0...v3.5.0) (2021-02-02) + + +### Bug Fixes + +* **docs:** documentation-typos ([#955](https://github.com/lingui/js-lingui/issues/955)) ([f73cb8c](https://github.com/lingui/js-lingui/commit/f73cb8c09d9919489f5fbb9a539da30faae53004)) +* I18nProvider defaultComponent typing ([#953](https://github.com/lingui/js-lingui/issues/953)) ([6b08dd3](https://github.com/lingui/js-lingui/commit/6b08dd309d1ac8e0a8dc081e097e69678e822eda)) + + + + + # [3.4.0](https://github.com/lingui/js-lingui/compare/v3.3.0...v3.4.0) (2021-01-13) **Note:** Version bump only for package @lingui/react diff --git a/packages/react/package.json b/packages/react/package.json index 3bd9da68b..37ad5ef25 100644 --- a/packages/react/package.json +++ b/packages/react/package.json @@ -1,6 +1,6 @@ { "name": "@lingui/react", - "version": "3.4.0", + "version": "3.5.0", "description": "React components for translations", "main": "index.js", "types": "cjs/index.d.ts", @@ -40,7 +40,7 @@ }, "dependencies": { "@babel/runtime": "^7.11.2", - "@lingui/core": "^3.4.0" + "@lingui/core": "^3.5.0" }, "devDependencies": { "react-testing-library": "^8.0.1" diff --git a/packages/snowpack-plugin/CHANGELOG.md b/packages/snowpack-plugin/CHANGELOG.md new file mode 100644 index 000000000..cc811702e --- /dev/null +++ b/packages/snowpack-plugin/CHANGELOG.md @@ -0,0 +1,11 @@ +# Change Log + +All notable changes to this project will be documented in this file. +See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +# [3.5.0](https://github.com/lingui/js-lingui/compare/v3.4.0...v3.5.0) (2021-02-02) + + +### Features + +* Introduced @lingui/snowpack-plugin ([#947](https://github.com/lingui/js-lingui/issues/947)) ([96bd31b](https://github.com/lingui/js-lingui/commit/96bd31b54d5ebfa2e28c96e14ee92d43b4199ae5)) diff --git a/packages/snowpack-plugin/package.json b/packages/snowpack-plugin/package.json index 0b85d37b5..ca2daa60a 100644 --- a/packages/snowpack-plugin/package.json +++ b/packages/snowpack-plugin/package.json @@ -1,6 +1,6 @@ { "name": "@lingui/snowpack-plugin", - "version": "3.4.0", + "version": "3.5.0", "description": "Snowpack plugin for Lingui message catalogs", "main": "index.js", "license": "MIT", @@ -27,7 +27,7 @@ }, "dependencies": { "@babel/runtime": "^7", - "@lingui/cli": "^3.4.0", - "@lingui/conf": "^3.4.0" + "@lingui/cli": "^3.5.0", + "@lingui/conf": "^3.5.0" } }