Skip to content

Commit ed491cc

Browse files
chore(release): published v5.3.0 [skip ci] (#2205)
1 parent 68c29ab commit ed491cc

File tree

37 files changed

+193
-95
lines changed

37 files changed

+193
-95
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,17 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [5.3.0](https://github.com/lingui/js-lingui/compare/v5.2.0...v5.3.0) (2025-03-21)
7+
8+
### Bug Fixes
9+
10+
* incorrect index for placeholders in useLingui macro ([#2204](https://github.com/lingui/js-lingui/issues/2204)) ([6688f72](https://github.com/lingui/js-lingui/commit/6688f72688bc93fe5b14802c898ff42ab88940fa))
11+
12+
### Features
13+
14+
* `failOnMissing` & `failOnCompileError` for loaders + compiler ([#2198](https://github.com/lingui/js-lingui/issues/2198)) ([68c29ab](https://github.com/lingui/js-lingui/commit/68c29abf23974d8bffb6cadaacafc88e4760d3cb))
15+
* **babel-plugin-lingui-macro:** allow to configure macro packages ([#2196](https://github.com/lingui/js-lingui/issues/2196)) ([583dd05](https://github.com/lingui/js-lingui/commit/583dd05578b63f26576cf8ebdead83639afdb4b9))
16+
617
# [5.2.0](https://github.com/lingui/js-lingui/compare/v5.1.2...v5.2.0) (2025-01-31)
718

819
### Bug Fixes

lerna.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "5.2.0",
2+
"version": "5.3.0",
33
"packages": ["packages/*"],
44
"npmClient": "yarn",
55
"command": {

packages/babel-plugin-extract-messages/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [5.3.0](https://github.com/lingui/js-lingui/compare/v5.2.0...v5.3.0) (2025-03-21)
7+
8+
**Note:** Version bump only for package @lingui/babel-plugin-extract-messages
9+
610
# [5.2.0](https://github.com/lingui/js-lingui/compare/v5.1.2...v5.2.0) (2025-01-31)
711

812
### Bug Fixes

packages/babel-plugin-extract-messages/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@lingui/babel-plugin-extract-messages",
3-
"version": "5.2.0",
3+
"version": "5.3.0",
44
"description": "Babel plugin for collecting messages from source code for internationalization",
55
"main": "./dist/index.cjs",
66
"module": "./dist/index.mjs",

packages/babel-plugin-lingui-macro/CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,16 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [5.3.0](https://github.com/lingui/js-lingui/compare/v5.2.0...v5.3.0) (2025-03-21)
7+
8+
### Bug Fixes
9+
10+
* incorrect index for placeholders in useLingui macro ([#2204](https://github.com/lingui/js-lingui/issues/2204)) ([6688f72](https://github.com/lingui/js-lingui/commit/6688f72688bc93fe5b14802c898ff42ab88940fa))
11+
12+
### Features
13+
14+
* **babel-plugin-lingui-macro:** allow to configure macro packages ([#2196](https://github.com/lingui/js-lingui/issues/2196)) ([583dd05](https://github.com/lingui/js-lingui/commit/583dd05578b63f26576cf8ebdead83639afdb4b9))
15+
616
# [5.2.0](https://github.com/lingui/js-lingui/compare/v5.1.2...v5.2.0) (2025-01-31)
717

818
### Features

packages/babel-plugin-lingui-macro/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@lingui/babel-plugin-lingui-macro",
3-
"version": "5.2.0",
3+
"version": "5.3.0",
44
"description": "Babel plugin for transforming Lingui Macros",
55
"main": "./dist/index.cjs",
66
"module": "./dist/index.mjs",
@@ -84,9 +84,9 @@
8484
"@babel/core": "^7.20.12",
8585
"@babel/runtime": "^7.20.13",
8686
"@babel/types": "^7.20.7",
87-
"@lingui/conf": "5.2.0",
88-
"@lingui/core": "5.2.0",
89-
"@lingui/message-utils": "5.2.0"
87+
"@lingui/conf": "5.3.0",
88+
"@lingui/core": "5.3.0",
89+
"@lingui/message-utils": "5.3.0"
9090
},
9191
"peerDependencies": {
9292
"babel-plugin-macros": "2 || 3"

packages/cli/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,12 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [5.3.0](https://github.com/lingui/js-lingui/compare/v5.2.0...v5.3.0) (2025-03-21)
7+
8+
### Features
9+
10+
* `failOnMissing` & `failOnCompileError` for loaders + compiler ([#2198](https://github.com/lingui/js-lingui/issues/2198)) ([68c29ab](https://github.com/lingui/js-lingui/commit/68c29abf23974d8bffb6cadaacafc88e4760d3cb))
11+
612
# [5.2.0](https://github.com/lingui/js-lingui/compare/v5.1.2...v5.2.0) (2025-01-31)
713

814
### Bug Fixes

packages/cli/package.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@lingui/cli",
3-
"version": "5.2.0",
3+
"version": "5.3.0",
44
"description": "CLI for working wit message catalogs",
55
"keywords": [
66
"cli",
@@ -57,12 +57,12 @@
5757
"@babel/parser": "^7.22.0",
5858
"@babel/runtime": "^7.21.0",
5959
"@babel/types": "^7.21.2",
60-
"@lingui/babel-plugin-extract-messages": "5.2.0",
61-
"@lingui/babel-plugin-lingui-macro": "5.2.0",
62-
"@lingui/conf": "5.2.0",
63-
"@lingui/core": "5.2.0",
64-
"@lingui/format-po": "5.2.0",
65-
"@lingui/message-utils": "5.2.0",
60+
"@lingui/babel-plugin-extract-messages": "5.3.0",
61+
"@lingui/babel-plugin-lingui-macro": "5.3.0",
62+
"@lingui/conf": "5.3.0",
63+
"@lingui/core": "5.3.0",
64+
"@lingui/format-po": "5.3.0",
65+
"@lingui/message-utils": "5.3.0",
6666
"babel-plugin-macros": "^3.0.1",
6767
"chalk": "^4.1.0",
6868
"chokidar": "3.5.1",

packages/conf/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,12 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [5.3.0](https://github.com/lingui/js-lingui/compare/v5.2.0...v5.3.0) (2025-03-21)
7+
8+
### Features
9+
10+
* **babel-plugin-lingui-macro:** allow to configure macro packages ([#2196](https://github.com/lingui/js-lingui/issues/2196)) ([583dd05](https://github.com/lingui/js-lingui/commit/583dd05578b63f26576cf8ebdead83639afdb4b9))
11+
612
# [5.2.0](https://github.com/lingui/js-lingui/compare/v5.1.2...v5.2.0) (2025-01-31)
713

814
**Note:** Version bump only for package @lingui/conf

packages/conf/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@lingui/conf",
3-
"version": "5.2.0",
3+
"version": "5.3.0",
44
"sideEffects": false,
55
"description": "Get lingui configuration from package.json",
66
"keywords": [

0 commit comments

Comments
 (0)