@pellux/goodvibes-sdk 0.25.0 → 0.25.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/dist/_internal/platform/intelligence/lsp/service.d.ts.map +1 -1
- package/dist/_internal/platform/intelligence/lsp/service.js +18 -9
- package/dist/_internal/platform/providers/anthropic-vertex.d.ts.map +1 -1
- package/dist/_internal/platform/providers/anthropic-vertex.js +135 -2
- package/dist/_internal/platform/version.js +1 -1
- package/dist/_internal/platform/watchers/registry.d.ts.map +1 -1
- package/dist/_internal/platform/watchers/registry.js +4 -1
- package/package.json +9 -8
- package/vendor/bash-language-server/CHANGELOG.md +453 -0
- package/vendor/bash-language-server/GOODVIBES_PATCH.md +22 -0
- package/vendor/bash-language-server/README.md +230 -0
- package/vendor/bash-language-server/out/analyser.d.ts +187 -0
- package/vendor/bash-language-server/out/analyser.js +782 -0
- package/vendor/bash-language-server/out/analyser.js.map +1 -0
- package/vendor/bash-language-server/out/builtins.d.ts +2 -0
- package/vendor/bash-language-server/out/builtins.js +71 -0
- package/vendor/bash-language-server/out/builtins.js.map +1 -0
- package/vendor/bash-language-server/out/cli.d.ts +3 -0
- package/vendor/bash-language-server/out/cli.js +74 -0
- package/vendor/bash-language-server/out/cli.js.map +1 -0
- package/vendor/bash-language-server/out/config.d.ts +88 -0
- package/vendor/bash-language-server/out/config.js +96 -0
- package/vendor/bash-language-server/out/config.js.map +1 -0
- package/vendor/bash-language-server/out/executables.d.ts +19 -0
- package/vendor/bash-language-server/out/executables.js +86 -0
- package/vendor/bash-language-server/out/executables.js.map +1 -0
- package/vendor/bash-language-server/out/parser.d.ts +2 -0
- package/vendor/bash-language-server/out/parser.js +36 -0
- package/vendor/bash-language-server/out/parser.js.map +1 -0
- package/vendor/bash-language-server/out/reserved-words.d.ts +2 -0
- package/vendor/bash-language-server/out/reserved-words.js +33 -0
- package/vendor/bash-language-server/out/reserved-words.js.map +1 -0
- package/vendor/bash-language-server/out/server.d.ts +56 -0
- package/vendor/bash-language-server/out/server.js +756 -0
- package/vendor/bash-language-server/out/server.js.map +1 -0
- package/vendor/bash-language-server/out/shellcheck/config.d.ts +5 -0
- package/vendor/bash-language-server/out/shellcheck/config.js +17 -0
- package/vendor/bash-language-server/out/shellcheck/config.js.map +1 -0
- package/vendor/bash-language-server/out/shellcheck/directive.d.ts +18 -0
- package/vendor/bash-language-server/out/shellcheck/directive.js +62 -0
- package/vendor/bash-language-server/out/shellcheck/directive.js.map +1 -0
- package/vendor/bash-language-server/out/shellcheck/index.d.ts +22 -0
- package/vendor/bash-language-server/out/shellcheck/index.js +229 -0
- package/vendor/bash-language-server/out/shellcheck/index.js.map +1 -0
- package/vendor/bash-language-server/out/shellcheck/types.d.ts +175 -0
- package/vendor/bash-language-server/out/shellcheck/types.js +35 -0
- package/vendor/bash-language-server/out/shellcheck/types.js.map +1 -0
- package/vendor/bash-language-server/out/shfmt/index.d.ts +18 -0
- package/vendor/bash-language-server/out/shfmt/index.js +151 -0
- package/vendor/bash-language-server/out/shfmt/index.js.map +1 -0
- package/vendor/bash-language-server/out/snippets.d.ts +2 -0
- package/vendor/bash-language-server/out/snippets.js +671 -0
- package/vendor/bash-language-server/out/snippets.js.map +1 -0
- package/vendor/bash-language-server/out/types.d.ts +13 -0
- package/vendor/bash-language-server/out/types.js +12 -0
- package/vendor/bash-language-server/out/types.js.map +1 -0
- package/vendor/bash-language-server/out/util/array.d.ts +14 -0
- package/vendor/bash-language-server/out/util/array.js +36 -0
- package/vendor/bash-language-server/out/util/array.js.map +1 -0
- package/vendor/bash-language-server/out/util/async.d.ts +13 -0
- package/vendor/bash-language-server/out/util/async.js +24 -0
- package/vendor/bash-language-server/out/util/async.js.map +1 -0
- package/vendor/bash-language-server/out/util/declarations.d.ts +88 -0
- package/vendor/bash-language-server/out/util/declarations.js +295 -0
- package/vendor/bash-language-server/out/util/declarations.js.map +1 -0
- package/vendor/bash-language-server/out/util/discriminate.d.ts +1 -0
- package/vendor/bash-language-server/out/util/discriminate.js +7 -0
- package/vendor/bash-language-server/out/util/discriminate.js.map +1 -0
- package/vendor/bash-language-server/out/util/fs.d.ts +6 -0
- package/vendor/bash-language-server/out/util/fs.js +73 -0
- package/vendor/bash-language-server/out/util/fs.js.map +1 -0
- package/vendor/bash-language-server/out/util/logger.d.ts +35 -0
- package/vendor/bash-language-server/out/util/logger.js +105 -0
- package/vendor/bash-language-server/out/util/logger.js.map +1 -0
- package/vendor/bash-language-server/out/util/lsp.d.ts +5 -0
- package/vendor/bash-language-server/out/util/lsp.js +13 -0
- package/vendor/bash-language-server/out/util/lsp.js.map +1 -0
- package/vendor/bash-language-server/out/util/platform.d.ts +1 -0
- package/vendor/bash-language-server/out/util/platform.js +7 -0
- package/vendor/bash-language-server/out/util/platform.js.map +1 -0
- package/vendor/bash-language-server/out/util/sh.d.ts +16 -0
- package/vendor/bash-language-server/out/util/sh.js +132 -0
- package/vendor/bash-language-server/out/util/sh.js.map +1 -0
- package/vendor/bash-language-server/out/util/shebang.d.ts +10 -0
- package/vendor/bash-language-server/out/util/shebang.js +53 -0
- package/vendor/bash-language-server/out/util/shebang.js.map +1 -0
- package/vendor/bash-language-server/out/util/sourcing.d.ts +15 -0
- package/vendor/bash-language-server/out/util/sourcing.js +182 -0
- package/vendor/bash-language-server/out/util/sourcing.js.map +1 -0
- package/vendor/bash-language-server/out/util/tree-sitter.d.ts +22 -0
- package/vendor/bash-language-server/out/util/tree-sitter.js +110 -0
- package/vendor/bash-language-server/out/util/tree-sitter.js.map +1 -0
- package/vendor/bash-language-server/package.json +52 -0
- package/vendor/bash-language-server/parser.info +2 -0
- package/vendor/bash-language-server/tree-sitter-bash.wasm +0 -0
- package/scripts/postinstall-patch-minimatch.mjs +0 -285
|
@@ -0,0 +1,453 @@
|
|
|
1
|
+
# Bash Language Server
|
|
2
|
+
|
|
3
|
+
## 5.4.3
|
|
4
|
+
|
|
5
|
+
- Do not overwrite user-provided shellcheck `--shell` argument https://github.com/bash-lsp/bash-language-server/pull/1133
|
|
6
|
+
|
|
7
|
+
## 5.4.2
|
|
8
|
+
|
|
9
|
+
- Fix wrong pnpm engine version
|
|
10
|
+
|
|
11
|
+
## 5.4.1
|
|
12
|
+
|
|
13
|
+
- Bump treesitter to latest version
|
|
14
|
+
|
|
15
|
+
## 5.4.0
|
|
16
|
+
|
|
17
|
+
- Add .editorconfig support for shfmt https://github.com/bash-lsp/bash-language-server/pull/1171
|
|
18
|
+
|
|
19
|
+
## 5.3.4
|
|
20
|
+
|
|
21
|
+
- Add additonal shfmt formatting config options https://github.com/bash-lsp/bash-language-server/pull/1168
|
|
22
|
+
|
|
23
|
+
## 5.3.3
|
|
24
|
+
|
|
25
|
+
- Revert "Add --help fallback for documentation" https://github.com/bash-lsp/bash-language-server/pull/1052
|
|
26
|
+
|
|
27
|
+
## 5.3.2
|
|
28
|
+
|
|
29
|
+
- Handle non-zero exit status when formatting using shfmt https://github.com/bash-lsp/bash-language-server/pull/1163
|
|
30
|
+
|
|
31
|
+
## 5.3.1
|
|
32
|
+
|
|
33
|
+
- Clear diagnostics when closing document https://github.com/bash-lsp/bash-language-server/pull/1135
|
|
34
|
+
|
|
35
|
+
## 5.3.0
|
|
36
|
+
|
|
37
|
+
- Add support for formatting using shfmt (if installed). https://github.com/bash-lsp/bash-language-server/pull/1136
|
|
38
|
+
|
|
39
|
+
## 5.2.0
|
|
40
|
+
|
|
41
|
+
- Upgrade tree-sitter-bash from 0.20.7 to 0.22.5 https://github.com/bash-lsp/bash-language-server/pull/1148
|
|
42
|
+
- Dependency upgrades
|
|
43
|
+
|
|
44
|
+
|
|
45
|
+
## 5.1.2
|
|
46
|
+
|
|
47
|
+
- Use shellcheck's shell directive for selecting the dialect https://github.com/bash-lsp/bash-language-server/pull/1081
|
|
48
|
+
|
|
49
|
+
## 5.1.1
|
|
50
|
+
|
|
51
|
+
- Add --help fallback for documentation https://github.com/bash-lsp/bash-language-server/pull/1052
|
|
52
|
+
|
|
53
|
+
## 5.1.0
|
|
54
|
+
|
|
55
|
+
- Support for renaming symbol! https://github.com/bash-lsp/bash-language-server/pull/915
|
|
56
|
+
|
|
57
|
+
## 5.0.0
|
|
58
|
+
|
|
59
|
+
- Downgrade tree sitter to a stable version https://github.com/bash-lsp/bash-language-server/pull/911
|
|
60
|
+
- Drop support for Node.js 14 that is no longer maintained (security updates ended 30 Apr 2023) https://github.com/bash-lsp/bash-language-server/pull/893
|
|
61
|
+
- Internal changes: switch from yarn classic to pnpm https://github.com/bash-lsp/bash-language-server/pull/893
|
|
62
|
+
|
|
63
|
+
## 4.10.3
|
|
64
|
+
|
|
65
|
+
- Use cat as man pager https://github.com/bash-lsp/bash-language-server/pull/909
|
|
66
|
+
|
|
67
|
+
## 4.10.2
|
|
68
|
+
|
|
69
|
+
- Bump semver development dependency causing false positive distributions security warnings https://github.com/bash-lsp/bash-language-server/pull/905
|
|
70
|
+
|
|
71
|
+
|
|
72
|
+
## 4.10.1
|
|
73
|
+
|
|
74
|
+
- Handle tree-sitter-bash parse errors gracefully
|
|
75
|
+
|
|
76
|
+
## 4.10.0
|
|
77
|
+
|
|
78
|
+
- Upgrade tree-sitter-bash from [2022 November](https://api.github.com/repos/tree-sitter/tree-sitter-bash/git/commits/4488aa41406547e478636a4fcfd24f5bbc3f2f74) to [2023 May](https://api.github.com/repos/tree-sitter/tree-sitter-bash/git/commits/ee2a8f9906b53a785b784ee816c0016c2b6866d2)
|
|
79
|
+
|
|
80
|
+
## 4.9.3
|
|
81
|
+
|
|
82
|
+
- Fix flags/options insertion issue for some clients by using textEdits https://github.com/bash-lsp/bash-language-server/pull/861
|
|
83
|
+
- Dependency upgrades
|
|
84
|
+
|
|
85
|
+
## 4.9.2
|
|
86
|
+
|
|
87
|
+
- Fix flags/options insertion issue for some clients https://github.com/bash-lsp/bash-language-server/pull/847
|
|
88
|
+
- Dependency upgrades
|
|
89
|
+
|
|
90
|
+
## 4.9.1
|
|
91
|
+
|
|
92
|
+
- Snippets: add kind https://github.com/bash-lsp/bash-language-server/pull/816
|
|
93
|
+
- Snippets: use "-" instead of "." in snippets https://github.com/bash-lsp/bash-language-server/pull/812
|
|
94
|
+
|
|
95
|
+
## 4.9.0
|
|
96
|
+
|
|
97
|
+
- Add more snippets and change their naming convention https://github.com/bash-lsp/bash-language-server/pull/805
|
|
98
|
+
|
|
99
|
+
## 4.8.4
|
|
100
|
+
|
|
101
|
+
- Make source error diagnostics ("Source command could not be analyzed") configurable with the `enableSourceErrorDiagnostics` flag.
|
|
102
|
+
|
|
103
|
+
## 4.8.3
|
|
104
|
+
|
|
105
|
+
- Skip sending a `client/registerCapability` request when dynamic capability registration is not supported by the client https://github.com/bash-lsp/bash-language-server/pull/763
|
|
106
|
+
|
|
107
|
+
## 4.8.2
|
|
108
|
+
|
|
109
|
+
- ShellCheck: avoid using the diagnostic tag "deprecated" that allow clients to render diagnostics with a strike through https://github.com/bash-lsp/bash-language-server/pull/753
|
|
110
|
+
|
|
111
|
+
## 4.8.1
|
|
112
|
+
|
|
113
|
+
- Ensure ShellCheck directive parse does not throw on malformed input https://github.com/bash-lsp/bash-language-server/pull/749
|
|
114
|
+
|
|
115
|
+
## 4.8.0
|
|
116
|
+
|
|
117
|
+
- Use ShellCheck directives when analyzing source commands https://github.com/bash-lsp/bash-language-server/pull/747
|
|
118
|
+
|
|
119
|
+
## 4.7.0
|
|
120
|
+
|
|
121
|
+
- Support for bash options auto completions when using Brew or when `pkg-config` fails, but bash completions are found in `"${PREFIX:-/usr}/share/bash-completion/bash_completion"` https://github.com/bash-lsp/bash-language-server/pull/717
|
|
122
|
+
|
|
123
|
+
## 4.6.2
|
|
124
|
+
|
|
125
|
+
- Remove diagnostics for missing nodes that turns out to be unstable (this was introduced in 4.5.3) https://github.com/bash-lsp/bash-language-server/pull/708
|
|
126
|
+
|
|
127
|
+
## 4.6.1
|
|
128
|
+
|
|
129
|
+
- Fix the ShellCheck code action feature that for some clients did not return any code actions. https://github.com/bash-lsp/bash-language-server/pull/700
|
|
130
|
+
|
|
131
|
+
## 4.6.0
|
|
132
|
+
|
|
133
|
+
- Support parsing `: "${VARIABLE:="default"}"` as a variable definition https://github.com/bash-lsp/bash-language-server/pull/693
|
|
134
|
+
|
|
135
|
+
## 4.5.5
|
|
136
|
+
|
|
137
|
+
- Use sourcing info even if `includeAllWorkspaceSymbols` is true to ensure that files not matching the `globPattern` (and therefore not part of the background analysis) is still resolved based on source commands. https://github.com/bash-lsp/bash-language-server/pull/695
|
|
138
|
+
|
|
139
|
+
## 4.5.4
|
|
140
|
+
|
|
141
|
+
- Skip running ShellCheck for unsupported zsh files. We will still try for files without a shebang and without a known file extension. https://github.com/bash-lsp/bash-language-server/pull/694
|
|
142
|
+
|
|
143
|
+
## 4.5.3
|
|
144
|
+
|
|
145
|
+
- Fix issue where some features would work as expected in case of a syntax issue https://github.com/bash-lsp/bash-language-server/pull/691
|
|
146
|
+
|
|
147
|
+
## 4.5.2
|
|
148
|
+
|
|
149
|
+
- Fixed `onReferences` to respect the `context.includeDeclaration` flag https://github.com/bash-lsp/bash-language-server/pull/688
|
|
150
|
+
- Removed unnecessary dependency `urijs` https://github.com/bash-lsp/bash-language-server/pull/688
|
|
151
|
+
|
|
152
|
+
## 4.5.1
|
|
153
|
+
|
|
154
|
+
- Include grouped variables and functions when finding global declarations https://github.com/bash-lsp/bash-language-server/pull/685
|
|
155
|
+
- Skip completions in the middle of a non word when the following characters is not an empty list or whitespace. https://github.com/bash-lsp/bash-language-server/pull/684
|
|
156
|
+
- Remove infrequent and rather useless "Failed to parse" diagnostics (and thereby the `HIGHLIGHT_PARSING_ERRORS` and `highlightParsingErrors` configuration option) – the tree sitter parser is actually rather good at error recovery. Note that these messages will now be shown in the log. https://github.com/bash-lsp/bash-language-server/pull/686
|
|
157
|
+
|
|
158
|
+
## 4.5.0
|
|
159
|
+
|
|
160
|
+
- Include 30 snippets for language constructs (e.g. `if`), builtins (e.g. `test`), expansions (e.g. `[##]`), and external programs (e.g. `sed`) https://github.com/bash-lsp/bash-language-server/pull/683
|
|
161
|
+
|
|
162
|
+
## 4.4.0
|
|
163
|
+
|
|
164
|
+
- Improve source command parser and include diagnostics when parser fails https://github.com/bash-lsp/bash-language-server/pull/673
|
|
165
|
+
- Fix `onHover` bug where sourced symbols on the same line as a reference would hide documentation https://github.com/bash-lsp/bash-language-server/pull/673
|
|
166
|
+
|
|
167
|
+
## 4.3.2
|
|
168
|
+
|
|
169
|
+
- Improved CLI output https://github.com/bash-lsp/bash-language-server/pull/672
|
|
170
|
+
|
|
171
|
+
## 4.3.0
|
|
172
|
+
|
|
173
|
+
- Add centralized and configurable logger that can be controlled using the `BASH_IDE_LOG_LEVEL` environment variable and workspace configuration. https://github.com/bash-lsp/bash-language-server/pull/669
|
|
174
|
+
|
|
175
|
+
## 4.2.5
|
|
176
|
+
|
|
177
|
+
- Fix a critical bug causing memory leaks and high CPU usage for workspaces with many files https://github.com/bash-lsp/bash-language-server/pull/661
|
|
178
|
+
|
|
179
|
+
## 4.2.4
|
|
180
|
+
|
|
181
|
+
- Increase ShellCheck execution delay to 500ms after typing ends.
|
|
182
|
+
|
|
183
|
+
## 4.2.3
|
|
184
|
+
|
|
185
|
+
- Simpler debouncing for ShellCheck tasks where only the last request will return diagnostics https://github.com/bash-lsp/bash-language-server/pull/656
|
|
186
|
+
|
|
187
|
+
## 4.2.2
|
|
188
|
+
|
|
189
|
+
- Reduce CPU usage by introduce a short execution delay and throttling for ShellCheck tasks https://github.com/bash-lsp/bash-language-server/pull/655
|
|
190
|
+
|
|
191
|
+
## 4.2.1
|
|
192
|
+
|
|
193
|
+
- Add support for resolving loop variables https://github.com/bash-lsp/bash-language-server/pull/653
|
|
194
|
+
|
|
195
|
+
## 4.2.0
|
|
196
|
+
|
|
197
|
+
- Improve heuristic for resolving variables by taking the scope into account, both locally and when sourcing files. https://github.com/bash-lsp/bash-language-server/pull/649
|
|
198
|
+
- Support client responding with `null` for `workspace/configuration`. https://github.com/bash-lsp/bash-language-server/pull/650
|
|
199
|
+
|
|
200
|
+
## 4.1.3
|
|
201
|
+
|
|
202
|
+
- Correctly parse environment variable `BACKGROUND_ANALYSIS_MAX_FILES`, although clients should migrate to the new configuration system (see info in the 4.0.1 release). https://github.com/bash-lsp/bash-language-server/pull/640
|
|
203
|
+
|
|
204
|
+
## 4.1.2
|
|
205
|
+
|
|
206
|
+
- Correct ShellCheck `source-path` argument to support following sources based on the local folder of the file and the workspace root.
|
|
207
|
+
|
|
208
|
+
## 4.1.1
|
|
209
|
+
|
|
210
|
+
- Background analysis: handle workspace root being a URL https://github.com/bash-lsp/bash-language-server/pull/625
|
|
211
|
+
- Shell documentation: add `--noprofile --norc` to avoid config files breaking formatting https://github.com/bash-lsp/bash-language-server/pull/626
|
|
212
|
+
|
|
213
|
+
## 4.1.0
|
|
214
|
+
|
|
215
|
+
- Symbols across files are now only included based on sourced files (using non dynamic statements like `source file.sh` or `. ~/file.inc`) instead of including symbols from all files in the workspace. We now also support jump-to-definition on the file path used in a source command. The new behavior can be disabled by turning on the `includeAllWorkspaceSymbols` configuration option. https://github.com/bash-lsp/bash-language-server/pull/244
|
|
216
|
+
|
|
217
|
+
## 4.0.1
|
|
218
|
+
|
|
219
|
+
- **Breaking**: Drop support for Node 12, which reached its official end of life on April 30th 2022. Doing so enables new features. https://github.com/bash-lsp/bash-language-server/pull/584
|
|
220
|
+
- ShellCheck: support code actions, remove duplicated error codes, add URLs and tags, support parsing dialects (sh, bash, dash, ksh) but still fallback to bash, enable configuring ShellCheck arguments using the `shellcheckArguments` configuration parameter (legacy environment variable: `SHELLCHECK_ARGUMENTS`)
|
|
221
|
+
- Support workspace configuration instead of environment variables which enables updating configuration without reloading the server. We still support environment variables, but clients **should migrate to the new workspace configuration**. https://github.com/bash-lsp/bash-language-server/pull/599
|
|
222
|
+
- Allow disabling background analysis by setting `backgroundAnalysisMaxFiles: 0`.
|
|
223
|
+
|
|
224
|
+
## 3.3.1
|
|
225
|
+
|
|
226
|
+
- Fix missing documentation for some help pages https://github.com/bash-lsp/bash-language-server/pull/577
|
|
227
|
+
|
|
228
|
+
## 3.3.0
|
|
229
|
+
|
|
230
|
+
- Performant globbing and background analysis that should fix the server crashing for large workspaces. We currently limit the files parsed to 500, but can be configured using the `BACKGROUND_ANALYSIS_MAX_FILES` environment variable https://github.com/bash-lsp/bash-language-server/pull/569
|
|
231
|
+
- Enable ShellCheck integration to be disabled from the configuration. The default configuration used should be "shellcheck". https://github.com/bash-lsp/bash-language-server/pull/571
|
|
232
|
+
- Support more bash shebangs when doing background analysis https://github.com/bash-lsp/bash-language-server/pull/568
|
|
233
|
+
|
|
234
|
+
## 3.2.3
|
|
235
|
+
|
|
236
|
+
- Fix auto detection for path of shellcheck.exe on Windows https://github.com/bash-lsp/bash-language-server/pull/563
|
|
237
|
+
|
|
238
|
+
## 3.2.2
|
|
239
|
+
|
|
240
|
+
- Get rid of deprecated dependencies for the explainshell integration https://github.com/bash-lsp/bash-language-server/pull/564
|
|
241
|
+
|
|
242
|
+
## 3.2.1
|
|
243
|
+
|
|
244
|
+
- Fix shebang parser that ignores some bash files https://github.com/bash-lsp/bash-language-server/pull/560
|
|
245
|
+
|
|
246
|
+
## 3.2.0
|
|
247
|
+
|
|
248
|
+
- Dependency upgrades
|
|
249
|
+
- Default to shellcheck binary found on path https://github.com/bash-lsp/bash-language-server/pull/555
|
|
250
|
+
|
|
251
|
+
## 3.1.1
|
|
252
|
+
|
|
253
|
+
- Dependency upgrades
|
|
254
|
+
- Improve ShellCheck robustness for files without shebang https://github.com/bash-lsp/bash-language-server/pull/536
|
|
255
|
+
|
|
256
|
+
## 3.1.0
|
|
257
|
+
|
|
258
|
+
- Bunch of dependency upgrades
|
|
259
|
+
- Better completion kind https://github.com/bash-lsp/bash-language-server/pull/466
|
|
260
|
+
|
|
261
|
+
## 3.0.5
|
|
262
|
+
|
|
263
|
+
- Fix Shellcheck issue when using vim-lsp https://github.com/bash-lsp/bash-language-server/pull/443
|
|
264
|
+
|
|
265
|
+
## 3.0.4
|
|
266
|
+
|
|
267
|
+
- Fix Windows support for analyzer https://github.com/bash-lsp/bash-language-server/pull/433
|
|
268
|
+
|
|
269
|
+
## 3.0.3
|
|
270
|
+
|
|
271
|
+
- Workaround for emscripten node 18 support https://github.com/bash-lsp/bash-language-server/pull/404
|
|
272
|
+
|
|
273
|
+
## 3.0.2
|
|
274
|
+
|
|
275
|
+
- Fix analyzer not being called when getHighlightParsingError is off https://github.com/bash-lsp/bash-language-server/pull/396
|
|
276
|
+
|
|
277
|
+
## 3.0.1
|
|
278
|
+
|
|
279
|
+
- Upgrade web-tree-sitter to fix node 18 issue https://github.com/bash-lsp/bash-language-server/pull/394
|
|
280
|
+
|
|
281
|
+
## 3.0.0
|
|
282
|
+
|
|
283
|
+
- Linting based on shellcheck (https://github.com/bash-lsp/bash-language-server/pull/342)
|
|
284
|
+
- BREAKING: Drop node 11 support (ton of dependencies upgraded).
|
|
285
|
+
|
|
286
|
+
## 2.1.0
|
|
287
|
+
|
|
288
|
+
- Fix failing to get options if bash-completion<=2.9 (https://github.com/bash-lsp/bash-language-server/pull/340)
|
|
289
|
+
- onHover now supports for multiline code comments (https://github.com/bash-lsp/bash-language-server/pull/348)
|
|
290
|
+
- Dependency upgrades
|
|
291
|
+
|
|
292
|
+
## 2.0.0
|
|
293
|
+
|
|
294
|
+
- BREAKING: Drop node 10 support
|
|
295
|
+
- Upgrade dependencies
|
|
296
|
+
- Adds support for completing command line arguments (https://github.com/bash-lsp/bash-language-server/pull/294)
|
|
297
|
+
|
|
298
|
+
## 1.17.0
|
|
299
|
+
|
|
300
|
+
- Default configuration change: parsing errors are not highlighted as problems (as the grammar is buggy)
|
|
301
|
+
|
|
302
|
+
## 1.16.1
|
|
303
|
+
|
|
304
|
+
- Fix brace expansion bug (https://github.com/bash-lsp/bash-language-server/pull/240)
|
|
305
|
+
- Do not crash if bash is not installed (https://github.com/bash-lsp/bash-language-server/pull/242)
|
|
306
|
+
|
|
307
|
+
## 1.16.0
|
|
308
|
+
|
|
309
|
+
- Improved completion handler for parameter expansions (https://github.com/bash-lsp/bash-language-server/pull/237)
|
|
310
|
+
|
|
311
|
+
## 1.15.0
|
|
312
|
+
|
|
313
|
+
- Use comments above symbols for documentation (https://github.com/bash-lsp/bash-language-server/pull/234, https://github.com/bash-lsp/bash-language-server/pull/235)
|
|
314
|
+
|
|
315
|
+
## 1.14.0
|
|
316
|
+
|
|
317
|
+
- onHover and onCompletion documentation improvements (https://github.com/bash-lsp/bash-language-server/pull/230)
|
|
318
|
+
- support 0/1 as values for `HIGHLIGHT_PARSING_ERRORS` (https://github.com/bash-lsp/bash-language-server/pull/231)
|
|
319
|
+
|
|
320
|
+
## 1.13.1
|
|
321
|
+
|
|
322
|
+
- Gracefully handle glob failures (https://github.com/bash-lsp/bash-language-server/pull/224, https://github.com/bash-lsp/bash-language-server/pull/226)
|
|
323
|
+
- Maintenance (https://github.com/bash-lsp/bash-language-server/pull/222, https://github.com/bash-lsp/bash-language-server/pull/225)
|
|
324
|
+
|
|
325
|
+
## 1.13.0
|
|
326
|
+
|
|
327
|
+
- Upgrade `vscode-languageserver` from 5 to 6 (https://github.com/bash-lsp/bash-language-server/pull/217)
|
|
328
|
+
|
|
329
|
+
## 1.12.0
|
|
330
|
+
|
|
331
|
+
- Completion handler improvements: remove duplicates, include symbols from other files, ensure that programs found on the paths are actually executable (https://github.com/bash-lsp/bash-language-server/pull/215)
|
|
332
|
+
|
|
333
|
+
## 1.11.3
|
|
334
|
+
|
|
335
|
+
- Recover from file reading errors (https://github.com/bash-lsp/bash-language-server/pull/211)
|
|
336
|
+
|
|
337
|
+
## 1.11.2
|
|
338
|
+
|
|
339
|
+
- Fix invalid documentHighlight response when word cannot be found (https://github.com/bash-lsp/bash-language-server/pull/209)
|
|
340
|
+
|
|
341
|
+
## 1.11.1
|
|
342
|
+
|
|
343
|
+
- Workspace symbols are resolved using fuzzy search (not just starting with it)
|
|
344
|
+
|
|
345
|
+
## 1.11.0
|
|
346
|
+
|
|
347
|
+
- Support for workspace symbols (https://github.com/bash-lsp/bash-language-server/pull/195)
|
|
348
|
+
|
|
349
|
+
## 1.10.0
|
|
350
|
+
|
|
351
|
+
- Improved completion handler and support auto-completion and documentation for [bash reserved words](https://www.gnu.org/software/bash/manual/html_node/Reserved-Word-Index.html) (https://github.com/bash-lsp/bash-language-server/pull/192)
|
|
352
|
+
- Upgrade tree-sitter
|
|
353
|
+
|
|
354
|
+
## 1.9.0
|
|
355
|
+
|
|
356
|
+
- Skip analyzing files with a non-bash shebang
|
|
357
|
+
|
|
358
|
+
## 1.8.0
|
|
359
|
+
|
|
360
|
+
- Extend file glob used for pre-analyzing files from `**/*.sh` to `**/*@(.sh|.inc|.bash|.command)`
|
|
361
|
+
- Make file glob configurable with `GLOB_PATTERN` environment variable
|
|
362
|
+
|
|
363
|
+
## 1.7.0
|
|
364
|
+
|
|
365
|
+
- Add PATH tilde expansion
|
|
366
|
+
- Builtins and man pages formatting
|
|
367
|
+
|
|
368
|
+
## 1.6.1
|
|
369
|
+
|
|
370
|
+
- Expose TypeScript typings from server
|
|
371
|
+
- Update vscode-languageserver dependency
|
|
372
|
+
|
|
373
|
+
## 1.6.0
|
|
374
|
+
|
|
375
|
+
- Switch to tree-sitter-wasm instead of tree-sitter (native bindings) to support node 12 and to ease installation (https://github.com/bash-lsp/bash-language-server/pull/147)
|
|
376
|
+
|
|
377
|
+
## 1.5.6
|
|
378
|
+
|
|
379
|
+
- Fix crash when parsing directories with `.sh` suffix (https://github.com/bash-lsp/bash-language-server/pull/111)
|
|
380
|
+
- Fix invalid LSP response (https://github.com/bash-lsp/bash-language-server/pull/110)
|
|
381
|
+
|
|
382
|
+
## 1.5.5
|
|
383
|
+
|
|
384
|
+
- Upgrade `tree-sitter` from `0.13.5` to `0.13.22`
|
|
385
|
+
- Upgrade `tree-sitter-bash` from `0.13.3` to `0.13.7`
|
|
386
|
+
|
|
387
|
+
## 1.5.4
|
|
388
|
+
|
|
389
|
+
- Fix explain shell configuration issue (https://github.com/bash-lsp/bash-language-server/issues/80)
|
|
390
|
+
|
|
391
|
+
## 1.5.3
|
|
392
|
+
|
|
393
|
+
- Support for showing warning for missing nodes
|
|
394
|
+
- Upgrade `tree-sitter-bash` to `0.13.3`
|
|
395
|
+
|
|
396
|
+
## 1.5.2
|
|
397
|
+
|
|
398
|
+
- Upgrade `tree-sitter` to `0.13.5` and `tree-sitter-bash` to `0.13.2`
|
|
399
|
+
|
|
400
|
+
## 1.5.1
|
|
401
|
+
|
|
402
|
+
- Upgrade `tree-sitter` and `tree-sitter-bash`
|
|
403
|
+
- Fixed build issue with 1.5.0
|
|
404
|
+
|
|
405
|
+
## 1.5.0
|
|
406
|
+
|
|
407
|
+
- Upgrade `tree-sitter` and `tree-sitter-bash`
|
|
408
|
+
|
|
409
|
+
## 1.4.1
|
|
410
|
+
|
|
411
|
+
- It's now possible to disable error reporting by setting the environment variable
|
|
412
|
+
`HIGHLIGHT_PARSING_ERRORS` to `false`.
|
|
413
|
+
|
|
414
|
+
## 1.4.0
|
|
415
|
+
|
|
416
|
+
- Add support for explainshell implemented by [@chrismwendt][chrismwendt] [#45][45]
|
|
417
|
+
- Prefer explainshell output if it's enabled by [@maximbaz][maximbaz] [#58][58]
|
|
418
|
+
|
|
419
|
+
## 1.3.1
|
|
420
|
+
|
|
421
|
+
- More reliable NPM command execution on Windows [#40][40]
|
|
422
|
+
|
|
423
|
+
## 1.3.0
|
|
424
|
+
|
|
425
|
+
- Improved completions by adding support for
|
|
426
|
+
|
|
427
|
+
- Suggestions based on the programs on your PATH [#17][17]
|
|
428
|
+
- Suggestions based on the bash builtins [#33][33]
|
|
429
|
+
|
|
430
|
+
- Implemented the `onHover` message that now shows documentation for programs
|
|
431
|
+
and builtins when you hover your cursor over words in the document. [#17][17]
|
|
432
|
+
[#33][33]
|
|
433
|
+
|
|
434
|
+
- Improved outline hierarchy [#31][31]
|
|
435
|
+
|
|
436
|
+
- Upgraded tree-sitter bash and other libraries. [#28][28]
|
|
437
|
+
|
|
438
|
+
## 1.1.2
|
|
439
|
+
|
|
440
|
+
Update `tree-sitter` to `0.10.0` and `tree-sitter-bash` to `0.6.0`. This
|
|
441
|
+
improves the Bash parser. There are still known parsing issues. For more
|
|
442
|
+
information following the progress on this issue over at
|
|
443
|
+
[tree-sitter/tree-sitter-bash#9](https://github.com/tree-sitter/tree-sitter-bash/issues/9)
|
|
444
|
+
|
|
445
|
+
[17]: https://github.com/bash-lsp/bash-language-server/pull/17
|
|
446
|
+
[28]: https://github.com/bash-lsp/bash-language-server/pull/28
|
|
447
|
+
[31]: https://github.com/bash-lsp/bash-language-server/pull/31
|
|
448
|
+
[33]: https://github.com/bash-lsp/bash-language-server/pull/33
|
|
449
|
+
[40]: https://github.com/bash-lsp/bash-language-server/pull/40
|
|
450
|
+
[45]: https://github.com/bash-lsp/bash-language-server/pull/45
|
|
451
|
+
[58]: https://github.com/bash-lsp/bash-language-server/pull/58
|
|
452
|
+
[chrismwendt]: https://github.com/chrismwendt
|
|
453
|
+
[maximbaz]: https://github.com/maximbaz
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
# GoodVibes Bash LSP Vendor Patch
|
|
2
|
+
|
|
3
|
+
This directory vendors `bash-language-server@5.6.0` for the published SDK
|
|
4
|
+
package.
|
|
5
|
+
|
|
6
|
+
Patch:
|
|
7
|
+
|
|
8
|
+
- `dependencies.editorconfig` is changed from `2.0.1` to `3.0.2`.
|
|
9
|
+
|
|
10
|
+
Reason:
|
|
11
|
+
|
|
12
|
+
- `bash-language-server@5.6.0` pins `editorconfig@2.0.1`.
|
|
13
|
+
- `editorconfig@2.0.1` pins `minimatch@10.0.1`.
|
|
14
|
+
- `minimatch@10.0.1` is in the vulnerable ranges for
|
|
15
|
+
`GHSA-3ppc-4f35-3m26`, `GHSA-7r86-cg39-jmmj`, and
|
|
16
|
+
`GHSA-23c5-xmqv-rm74`.
|
|
17
|
+
- `editorconfig@3.0.2` depends on `minimatch@~10.2.4`, which resolves to the
|
|
18
|
+
fixed `10.2.5` line.
|
|
19
|
+
|
|
20
|
+
The runtime Bash LSP code is otherwise unchanged from the upstream npm package.
|
|
21
|
+
Remove this vendor package when upstream `bash-language-server` publishes a
|
|
22
|
+
release that depends on a fixed `editorconfig`/`minimatch` chain.
|