js-i18n-language-server 0.3.0 → 0.4.1

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,4 +1,42 @@
1
1
 
2
+ ## [0.4.1] - 2026-02-11
3
+
4
+ ### Bug Fixes
5
+
6
+ - Remove unused workspaceFolders support
7
+ - Use initialize params for workspace folders in multi-server setups
8
+ - Use markdown-compatible line breaks in hover content
9
+ - Show delete key as Quick Fix for unused translation keys
10
+ - Skip non-file URI schemes in document sync handlers
11
+
12
+ ### Features
13
+
14
+ - Add serverInfo to initialize response
15
+ - Add --log-level CLI arg and JS_I18N_LOG env var
16
+
17
+
18
+ ## [0.4.0] - 2026-02-08
19
+
20
+ ### Bug Fixes
21
+
22
+ - Resolve all clippy lint errors
23
+
24
+ ### Documentation
25
+
26
+ - Condense comments.md rules
27
+
28
+ ### Features
29
+
30
+ - Add translation key rename support via LSP textDocument/rename
31
+ - Add delete translation key action
32
+ - Support rename and delete key code action from JSON translation files
33
+ - Add plural fallback to decoration values
34
+
35
+ ### Refactor
36
+
37
+ - Extract shared helpers and fix lock ordering
38
+
39
+
2
40
  ## [0.3.0] - 2026-02-07
3
41
 
4
42
  ### Documentation
@@ -23,7 +23,7 @@
23
23
  "hasInstallScript": true,
24
24
  "license": "MIT",
25
25
  "name": "js-i18n-language-server",
26
- "version": "0.3.0"
26
+ "version": "0.4.1"
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.3.0"
518
+ "version": "0.4.1"
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.3.0",
2
+ "artifactDownloadUrl": "https://github.com/nabekou29/js-i18n-language-server/releases/download/v0.4.1",
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.3.0",
97
+ "version": "0.4.1",
98
98
  "volta": {
99
99
  "node": "18.14.1",
100
100
  "npm": "9.5.0"