js-i18n-language-server 0.2.0 → 0.4.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 CHANGED
@@ -1,33 +1,45 @@
1
1
 
2
- ## [0.2.0] - 2026-02-01
2
+ ## [0.4.0] - 2026-02-08
3
3
 
4
4
  ### Bug Fixes
5
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
6
+ - Resolve all clippy lint errors
9
7
 
10
8
  ### Documentation
11
9
 
12
- - Add i18n.getKeyAtPosition to LSP features
10
+ - Condense comments.md rules
13
11
 
14
12
  ### Features
15
13
 
16
- - Add i18n.getKeyAtPosition command
17
- - Add i18n.getCurrentLanguage command and reorder commands by category
18
- - Rewrite editTranslation to accept value and write directly
19
- - Add i18n.getTranslationValue command
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
14
+ - Add translation key rename support via LSP textDocument/rename
15
+ - Add delete translation key action
16
+ - Support rename and delete key code action from JSON translation files
17
+ - Add plural fallback to decoration values
25
18
 
26
19
  ### Refactor
27
20
 
28
- - Rely on didChange for state sync after applyEdit
29
- - Extract helpers and eliminate duplicated code
30
- - Extract TruncateOption enum for truncation parameters
21
+ - Extract shared helpers and fix lock ordering
22
+
23
+
24
+ ## [0.3.0] - 2026-02-07
25
+
26
+ ### Documentation
27
+
28
+ - Fix CHANGELOG.md
29
+ - Remove virtualText.maxLength/maxWidth from configuration and LSP docs
30
+ - Update configuration docs for new diagnostics structure
31
+ - Add rationale for #[rstest] over #[googletest::test] in test rules
32
+
33
+ ### Features
34
+
35
+ - Add i18n.getAvailableLanguages command
36
+ - Add enabled/severity support to missing translation diagnostics
37
+ - Add ignorePatterns to unused translation diagnostics
38
+ - Add configurable severity to unused translation diagnostics
39
+
40
+ ### Refactor
41
+
42
+ - Replace #[googletest::test]/expect_that! with #[rstest]/assert_that!
31
43
 
32
44
 
33
45
  ## [0.2.0] - 2026-02-01
@@ -60,9 +72,6 @@
60
72
  - Extract helpers and eliminate duplicated code
61
73
  - Extract TruncateOption enum for truncation parameters
62
74
 
63
- # Changelog
64
-
65
- All notable changes to this project will be documented in this file.
66
75
 
67
76
  ## [0.1.0] - 2026-01-26
68
77
 
@@ -23,7 +23,7 @@
23
23
  "hasInstallScript": true,
24
24
  "license": "MIT",
25
25
  "name": "js-i18n-language-server",
26
- "version": "0.2.0"
26
+ "version": "0.4.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.2.0"
518
+ "version": "0.4.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.0",
2
+ "artifactDownloadUrl": "https://github.com/nabekou29/js-i18n-language-server/releases/download/v0.4.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.2.0",
97
+ "version": "0.4.0",
98
98
  "volta": {
99
99
  "node": "18.14.1",
100
100
  "npm": "9.5.0"