js-i18n-language-server 0.4.0 → 0.4.2

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,32 @@
1
1
 
2
+ ## [0.4.2] - 2026-02-12
3
+
4
+ ### Bug Fixes
5
+
6
+ - Filter translations by namespace in missing/unused key diagnostics
7
+ - Add namespace filtering to hover, goto_definition, references, rename, and decorations
8
+
9
+ ### Refactor
10
+
11
+ - Extract resolve_usage_namespace and simplify filter_by_namespace
12
+
13
+
14
+ ## [0.4.1] - 2026-02-11
15
+
16
+ ### Bug Fixes
17
+
18
+ - Remove unused workspaceFolders support
19
+ - Use initialize params for workspace folders in multi-server setups
20
+ - Use markdown-compatible line breaks in hover content
21
+ - Show delete key as Quick Fix for unused translation keys
22
+ - Skip non-file URI schemes in document sync handlers
23
+
24
+ ### Features
25
+
26
+ - Add serverInfo to initialize response
27
+ - Add --log-level CLI arg and JS_I18N_LOG env var
28
+
29
+
2
30
  ## [0.4.0] - 2026-02-08
3
31
 
4
32
  ### Bug Fixes
@@ -23,7 +23,7 @@
23
23
  "hasInstallScript": true,
24
24
  "license": "MIT",
25
25
  "name": "js-i18n-language-server",
26
- "version": "0.4.0"
26
+ "version": "0.4.2"
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.4.0"
518
+ "version": "0.4.2"
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.4.0",
2
+ "artifactDownloadUrl": "https://github.com/nabekou29/js-i18n-language-server/releases/download/v0.4.2",
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.4.0",
97
+ "version": "0.4.2",
98
98
  "volta": {
99
99
  "node": "18.14.1",
100
100
  "npm": "9.5.0"