@neo4j-cypher/lint-worker 1.10.1-next.0 → 1.10.1-next.10
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 +116 -0
- package/README.md +3 -1
- package/dist/cjs/lintWorker.cjs +272 -251
- package/dist/esm/lintWorker.mjs +272 -251
- package/package.json +30 -30
- package/src/helpers.ts +6 -10
- package/src/index.ts +3 -3
- package/src/lintWorker.ts +3 -6
- package/src/tests/version.test.ts +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,121 @@
|
|
|
1
1
|
# @neo4j-cypher/lint-worker
|
|
2
2
|
|
|
3
|
+
## 1.10.1-next.10
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- e69ee30: Update grammar and semantic analysis to 2026.06
|
|
8
|
+
- Updated dependencies [02df611]
|
|
9
|
+
- Updated dependencies [e69ee30]
|
|
10
|
+
- @neo4j-cypher/language-support@2.0.0-next.33
|
|
11
|
+
- @neo4j-cypher/query-tools@2.0.0-next.33
|
|
12
|
+
|
|
13
|
+
## 1.10.1-next.9
|
|
14
|
+
|
|
15
|
+
### Patch Changes
|
|
16
|
+
|
|
17
|
+
- cd4ab49: Update grammar and semantic analysis to 2026.05
|
|
18
|
+
- Updated dependencies [cd4ab49]
|
|
19
|
+
- Updated dependencies [0b2d441]
|
|
20
|
+
- @neo4j-cypher/language-support@2.0.0-next.32
|
|
21
|
+
- @neo4j-cypher/query-tools@2.0.0-next.32
|
|
22
|
+
|
|
23
|
+
## 1.10.1-next.8
|
|
24
|
+
|
|
25
|
+
### Patch Changes
|
|
26
|
+
|
|
27
|
+
- 3b2faf5: Rewrite global parserWrapper for instantiated CypherLanguageService objects
|
|
28
|
+
|
|
29
|
+
Breaking changes for direct consumers of `@neo4j-cypher/language-support`:
|
|
30
|
+
|
|
31
|
+
- Removed export: `parserWrapper`. The same `ParsingResult` as `parserWrapper.parse` would yield can still be received by `createParsingResult` in `CypherLanguageService`. Instances of the new CypherLanguageService class provide helpers for linting/highlighting/completions/signature info where parsing is handled internally.
|
|
32
|
+
- Renamed exports: `applySyntaxColouring` → `highlightSyntax`, `syntaxColouringLegend` → `syntaxHighlightingLegend`
|
|
33
|
+
- `autocomplete()`, `lintCypherQuery()`, `highlightSyntax()`, and `getSignatureInfo()` now take an options object as the third parameter instead of positional args
|
|
34
|
+
|
|
35
|
+
- ca1bba6: Update grammar and semantic analysis to 2026.04
|
|
36
|
+
- Updated dependencies [08f94af]
|
|
37
|
+
- Updated dependencies [0763d97]
|
|
38
|
+
- Updated dependencies [3b2faf5]
|
|
39
|
+
- Updated dependencies [ca1bba6]
|
|
40
|
+
- @neo4j-cypher/language-support@2.0.0-next.31
|
|
41
|
+
- @neo4j-cypher/query-tools@2.0.0-next.31
|
|
42
|
+
|
|
43
|
+
## 1.10.1-next.7
|
|
44
|
+
|
|
45
|
+
### Patch Changes
|
|
46
|
+
|
|
47
|
+
- 0e457d6: Updates grammar and semantic analysis to 2026.03
|
|
48
|
+
- Updated dependencies [82f0c39]
|
|
49
|
+
- Updated dependencies [0e457d6]
|
|
50
|
+
- Updated dependencies [b0170f9]
|
|
51
|
+
- Updated dependencies [25fad16]
|
|
52
|
+
- @neo4j-cypher/query-tools@2.0.0-next.30
|
|
53
|
+
- @neo4j-cypher/language-support@2.0.0-next.30
|
|
54
|
+
|
|
55
|
+
## 1.10.1-next.6
|
|
56
|
+
|
|
57
|
+
### Patch Changes
|
|
58
|
+
|
|
59
|
+
- Updated dependencies [bfdc70e]
|
|
60
|
+
- @neo4j-cypher/language-support@2.0.0-next.29
|
|
61
|
+
- @neo4j-cypher/query-tools@2.0.0-next.29
|
|
62
|
+
|
|
63
|
+
## 1.10.1-next.5
|
|
64
|
+
|
|
65
|
+
### Patch Changes
|
|
66
|
+
|
|
67
|
+
- 5df1435: Updates grammar and semantic analysis to 2026.01
|
|
68
|
+
- Updated dependencies [5df1435]
|
|
69
|
+
- @neo4j-cypher/language-support@2.0.0-next.28
|
|
70
|
+
- @neo4j-cypher/query-tools@2.0.0-next.28
|
|
71
|
+
|
|
72
|
+
## 1.10.1-next.4
|
|
73
|
+
|
|
74
|
+
### Patch Changes
|
|
75
|
+
|
|
76
|
+
- 6a2a408: Fix aura linter version
|
|
77
|
+
- 68d92a8: Updates dev artifacts to 2025.12
|
|
78
|
+
- Updated dependencies [20b31b6]
|
|
79
|
+
- Updated dependencies [8c4d12d]
|
|
80
|
+
- Updated dependencies [68d92a8]
|
|
81
|
+
- @neo4j-cypher/language-support@2.0.0-next.27
|
|
82
|
+
- @neo4j-cypher/query-tools@2.0.0-next.27
|
|
83
|
+
|
|
84
|
+
## 1.10.1-next.3
|
|
85
|
+
|
|
86
|
+
### Patch Changes
|
|
87
|
+
|
|
88
|
+
- 8e8d7f1: Add vector support to linting
|
|
89
|
+
- 808aa73: Updates grammar and semantic analysis to 2025.11
|
|
90
|
+
- Updated dependencies [8e8d7f1]
|
|
91
|
+
- Updated dependencies [808aa73]
|
|
92
|
+
- @neo4j-cypher/language-support@2.0.0-next.26
|
|
93
|
+
- @neo4j-cypher/query-tools@2.0.0-next.26
|
|
94
|
+
|
|
95
|
+
## 1.10.1-next.2
|
|
96
|
+
|
|
97
|
+
### Patch Changes
|
|
98
|
+
|
|
99
|
+
- Updated dependencies [b1e686e]
|
|
100
|
+
- @neo4j-cypher/language-support@2.0.0-next.25
|
|
101
|
+
- @neo4j-cypher/query-tools@2.0.0-next.25
|
|
102
|
+
|
|
103
|
+
## 1.10.1-next.1
|
|
104
|
+
|
|
105
|
+
### Patch Changes
|
|
106
|
+
|
|
107
|
+
- 246d60c: Fixes bug when switching to linters with new npm version scheme
|
|
108
|
+
- 3a29711: Update grammar and semantic analysis to version 2025.09
|
|
109
|
+
- b9c0e9d: Updates semantic analysis and grammar to 2025.10
|
|
110
|
+
- 5fdc6dd: Fixes faulty worker termination on big queries
|
|
111
|
+
- Updated dependencies [8eacddd]
|
|
112
|
+
- Updated dependencies [3a29711]
|
|
113
|
+
- Updated dependencies [b9c0e9d]
|
|
114
|
+
- Updated dependencies [d77e8a1]
|
|
115
|
+
- Updated dependencies [7183c63]
|
|
116
|
+
- @neo4j-cypher/language-support@2.0.0-next.24
|
|
117
|
+
- @neo4j-cypher/query-tools@2.0.0-next.24
|
|
118
|
+
|
|
3
119
|
## 1.10.1-next.0
|
|
4
120
|
|
|
5
121
|
### Patch Changes
|
package/README.md
CHANGED
|
@@ -1,3 +1,5 @@
|
|
|
1
1
|
# Lint Worker
|
|
2
2
|
|
|
3
|
-
This package contains the Cypher lint worker used in both the language server and react-codemirror. For compatability with the vscode API it is compiled to CommonJS and for react-codemirror it is compiled to ESM.
|
|
3
|
+
This package contains the Cypher lint worker used in both the language server and react-codemirror. For compatability with the vscode API it is compiled to CommonJS and for react-codemirror it is compiled to ESM.
|
|
4
|
+
|
|
5
|
+
Since the TeaVM 0.13.0 update, the bundle minification is broken for older versions of esbuild. >= 0.27.0 works
|