js-i18n-language-server 0.2.0 → 0.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +10 -23
- package/npm-shrinkwrap.json +2 -2
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,33 +1,23 @@
|
|
|
1
1
|
|
|
2
|
-
## [0.
|
|
3
|
-
|
|
4
|
-
### Bug Fixes
|
|
5
|
-
|
|
6
|
-
- Use --prepend for changelog to preserve manual entries
|
|
7
|
-
- Prevent duplicate translation entries during workspace indexing
|
|
8
|
-
- Replace blocking_lock with async lock to prevent deadlock
|
|
2
|
+
## [0.3.0] - 2026-02-07
|
|
9
3
|
|
|
10
4
|
### Documentation
|
|
11
5
|
|
|
12
|
-
-
|
|
6
|
+
- Fix CHANGELOG.md
|
|
7
|
+
- Remove virtualText.maxLength/maxWidth from configuration and LSP docs
|
|
8
|
+
- Update configuration docs for new diagnostics structure
|
|
9
|
+
- Add rationale for #[rstest] over #[googletest::test] in test rules
|
|
13
10
|
|
|
14
11
|
### Features
|
|
15
12
|
|
|
16
|
-
- Add i18n.
|
|
17
|
-
- Add
|
|
18
|
-
-
|
|
19
|
-
- Add
|
|
20
|
-
- Add language fallback resolution to getCurrentLanguage
|
|
21
|
-
- Add i18n/decorationsChanged custom notification
|
|
22
|
-
- Restore edit translation code actions with experimental capability gate
|
|
23
|
-
- Add maxWidth for display-width-based truncation
|
|
24
|
-
- Make maxWidth required with default 32, maxLength optional
|
|
13
|
+
- Add i18n.getAvailableLanguages command
|
|
14
|
+
- Add enabled/severity support to missing translation diagnostics
|
|
15
|
+
- Add ignorePatterns to unused translation diagnostics
|
|
16
|
+
- Add configurable severity to unused translation diagnostics
|
|
25
17
|
|
|
26
18
|
### Refactor
|
|
27
19
|
|
|
28
|
-
-
|
|
29
|
-
- Extract helpers and eliminate duplicated code
|
|
30
|
-
- Extract TruncateOption enum for truncation parameters
|
|
20
|
+
- Replace #[googletest::test]/expect_that! with #[rstest]/assert_that!
|
|
31
21
|
|
|
32
22
|
|
|
33
23
|
## [0.2.0] - 2026-02-01
|
|
@@ -60,9 +50,6 @@
|
|
|
60
50
|
- Extract helpers and eliminate duplicated code
|
|
61
51
|
- Extract TruncateOption enum for truncation parameters
|
|
62
52
|
|
|
63
|
-
# Changelog
|
|
64
|
-
|
|
65
|
-
All notable changes to this project will be documented in this file.
|
|
66
53
|
|
|
67
54
|
## [0.1.0] - 2026-01-26
|
|
68
55
|
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
"hasInstallScript": true,
|
|
24
24
|
"license": "MIT",
|
|
25
25
|
"name": "js-i18n-language-server",
|
|
26
|
-
"version": "0.
|
|
26
|
+
"version": "0.3.0"
|
|
27
27
|
},
|
|
28
28
|
"node_modules/@isaacs/balanced-match": {
|
|
29
29
|
"engines": {
|
|
@@ -515,5 +515,5 @@
|
|
|
515
515
|
}
|
|
516
516
|
},
|
|
517
517
|
"requires": true,
|
|
518
|
-
"version": "0.
|
|
518
|
+
"version": "0.3.0"
|
|
519
519
|
}
|
package/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"artifactDownloadUrl": "https://github.com/nabekou29/js-i18n-language-server/releases/download/v0.
|
|
2
|
+
"artifactDownloadUrl": "https://github.com/nabekou29/js-i18n-language-server/releases/download/v0.3.0",
|
|
3
3
|
"bin": {
|
|
4
4
|
"js-i18n-language-server": "run-js-i18n-language-server.js"
|
|
5
5
|
},
|
|
@@ -94,7 +94,7 @@
|
|
|
94
94
|
"zipExt": ".tar.xz"
|
|
95
95
|
}
|
|
96
96
|
},
|
|
97
|
-
"version": "0.
|
|
97
|
+
"version": "0.3.0",
|
|
98
98
|
"volta": {
|
|
99
99
|
"node": "18.14.1",
|
|
100
100
|
"npm": "9.5.0"
|