astro-vscode 2.15.1 → 2.15.3

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.
Files changed (65) hide show
  1. package/.turbo/turbo-build.log +12 -0
  2. package/.vscodeignore +10 -0
  3. package/CHANGELOG.md +1411 -0
  4. package/dist/node/client.js +1 -1
  5. package/dist/node/server.js +272 -272
  6. package/package.json +3 -9
  7. package/scripts/build-grammar.mjs +45 -0
  8. package/scripts/build.mjs +79 -0
  9. package/scripts/shared.mjs +29 -0
  10. package/src/client.ts +151 -0
  11. package/test/grammar/README.md +5 -0
  12. package/test/grammar/dummy/css.tmLanguage-dummy.json +4 -0
  13. package/test/grammar/dummy/html.tmLanguage-dummy.json +4 -0
  14. package/test/grammar/dummy/js.tmLanguage-dummy.json +4 -0
  15. package/test/grammar/dummy/json.tmLanguage-dummy.json +4 -0
  16. package/test/grammar/dummy/less.tsLanguage-dummy.json +4 -0
  17. package/test/grammar/dummy/postcss.tmLanguage-dummy.json +4 -0
  18. package/test/grammar/dummy/sass.tmLanguage-dummy.json +4 -0
  19. package/test/grammar/dummy/scss.tsLanguage-dummy.json +4 -0
  20. package/test/grammar/dummy/stylus.tmLanguage-dummy.json +4 -0
  21. package/test/grammar/dummy/ts.tmLanguage-dummy.json +4 -0
  22. package/test/grammar/dummy/tsx.tmLanguage-dummy.json +4 -0
  23. package/test/grammar/dummy/unknown.tmLanguage-dummy.json +4 -0
  24. package/test/grammar/fixtures/attributes.astro +14 -0
  25. package/test/grammar/fixtures/attributes.astro.snap +102 -0
  26. package/test/grammar/fixtures/components/component.astro +3 -0
  27. package/test/grammar/fixtures/components/component.astro.snap +17 -0
  28. package/test/grammar/fixtures/constant-entities.astro +7 -0
  29. package/test/grammar/fixtures/constant-entities.astro.snap +80 -0
  30. package/test/grammar/fixtures/raw/israw.astro +15 -0
  31. package/test/grammar/fixtures/raw/israw.astro.snap +68 -0
  32. package/test/grammar/fixtures/script/events.astro +3 -0
  33. package/test/grammar/fixtures/script/events.astro.snap +30 -0
  34. package/test/grammar/fixtures/script/israw.astro +3 -0
  35. package/test/grammar/fixtures/script/israw.astro.snap +13 -0
  36. package/test/grammar/fixtures/script/json.astro +14 -0
  37. package/test/grammar/fixtures/script/json.astro.snap +39 -0
  38. package/test/grammar/fixtures/script/jstypes.astro +15 -0
  39. package/test/grammar/fixtures/script/jstypes.astro.snap +68 -0
  40. package/test/grammar/fixtures/script/module.astro +3 -0
  41. package/test/grammar/fixtures/script/module.astro.snap +17 -0
  42. package/test/grammar/fixtures/script/script.astro +3 -0
  43. package/test/grammar/fixtures/script/script.astro.snap +11 -0
  44. package/test/grammar/fixtures/script/unknowntype.astro +3 -0
  45. package/test/grammar/fixtures/script/unknowntype.astro.snap +17 -0
  46. package/test/grammar/fixtures/style/israw.astro +5 -0
  47. package/test/grammar/fixtures/style/israw.astro.snap +17 -0
  48. package/test/grammar/fixtures/style/less.astro +9 -0
  49. package/test/grammar/fixtures/style/less.astro.snap +28 -0
  50. package/test/grammar/fixtures/style/sass.astro +8 -0
  51. package/test/grammar/fixtures/style/sass.astro.snap +26 -0
  52. package/test/grammar/fixtures/style/scss.astro +9 -0
  53. package/test/grammar/fixtures/style/scss.astro.snap +28 -0
  54. package/test/grammar/fixtures/style/style.astro +3 -0
  55. package/test/grammar/fixtures/style/style.astro.snap +11 -0
  56. package/test/grammar/fixtures/style/stylus.astro +9 -0
  57. package/test/grammar/fixtures/style/stylus.astro.snap +38 -0
  58. package/test/grammar/fixtures/text.astro +15 -0
  59. package/test/grammar/fixtures/text.astro.snap +58 -0
  60. package/test/grammar/test.mjs +59 -0
  61. package/test/runTest.js +27 -0
  62. package/test/suite/extension.test.js +15 -0
  63. package/test/suite/index.js +40 -0
  64. package/test/tsconfig.json +14 -0
  65. package/tsconfig.json +9 -0
package/CHANGELOG.md ADDED
@@ -0,0 +1,1411 @@
1
+ # astro-vscode
2
+
3
+ ## 2.15.3
4
+
5
+ ### Patch Changes
6
+
7
+ - 8673fa5: Fixes certain cases where content schemas would not be reloaded properly when they were updated
8
+
9
+ ## 2.15.2
10
+
11
+ ### Patch Changes
12
+
13
+ - 43f66cd: Fixes publishing on OpenVSX. For full changelogs between 2.11.0 and this version, please see [CHANGELOG.md](https://github.com/withastro/language-tools/blob/main/packages/vscode/CHANGELOG.md) in the repository.
14
+
15
+ ## 2.15.1
16
+
17
+ ### Patch Changes
18
+
19
+ - 40ebf98: Fixes publish
20
+
21
+ ## 2.15.0
22
+
23
+ ### Minor Changes
24
+
25
+ - 3a836de: Allow disabling the handling of updating imports when files are renamed. This is now disabled by default in VS Code, as the Astro TypeScript plugin will handle it correctly.
26
+
27
+ ### Patch Changes
28
+
29
+ - 5a44072: Fixes formatting not working by default in certain circumstances
30
+
31
+ ## 2.14.2
32
+
33
+ ### Patch Changes
34
+
35
+ - 572e9cb: Fix Astro codeblock syntax highlighting for MDX files
36
+ - af5bbc5: Fixes content intellisense not working inside Markdoc files using the `markdoc` language identifier
37
+
38
+ ## 2.14.1
39
+
40
+ ### Patch Changes
41
+
42
+ - 28dfebe: Updates to the stable version of Volar 2.4.0
43
+
44
+ ## 2.14.0
45
+
46
+ ### Minor Changes
47
+
48
+ - d624646: Adds support for Content Collection Intellisense
49
+
50
+ ## 2.13.4
51
+
52
+ ### Patch Changes
53
+
54
+ - e5732ff: Updates internal dependencies
55
+
56
+ ## 2.13.3
57
+
58
+ ### Patch Changes
59
+
60
+ - 5186329: Update internal dependencies
61
+
62
+ ## 2.13.2
63
+
64
+ ### Patch Changes
65
+
66
+ - e8e18a8: Fixes an issue where errors inside script and style tags could be offset by a few characters when multi bytes characters were present in the file
67
+
68
+ ## 2.13.1
69
+
70
+ ### Patch Changes
71
+
72
+ - cc94bef: Revert a change to top-level returns that could prevent the return types of functions from being correct in certain cases
73
+
74
+ ## 2.13.0
75
+
76
+ ### Minor Changes
77
+
78
+ - b65d6b4: Adds support for SCSS and LESS intellisense inside style tags
79
+
80
+ ### Patch Changes
81
+
82
+ - 3a60f00: Fixes code lens on `Astro.glob` not working as expected
83
+
84
+ ## 2.12.8
85
+
86
+ ### Patch Changes
87
+
88
+ - 7733a56: Revert changes to Emmet completions, it was generating the wrong completions in certain cases
89
+
90
+ ## 2.12.7
91
+
92
+ ### Patch Changes
93
+
94
+ - 0a46801: Fixes a regression where errors could wrongly show (or not show) inside scripts and style tags
95
+ - 72f61e1: Fixes Emmet completions sometimes showing in places they shouldn't
96
+
97
+ ## 2.12.6
98
+
99
+ ### Patch Changes
100
+
101
+ - adc8d53: Try to publish again
102
+
103
+ ## 2.12.5
104
+
105
+ ### Patch Changes
106
+
107
+ - 91e77e1: Try publishing - a fourth time
108
+
109
+ ## 2.12.4
110
+
111
+ ### Patch Changes
112
+
113
+ - de10bb2: Try publishing - a third time
114
+
115
+ ## 2.12.3
116
+
117
+ ### Patch Changes
118
+
119
+ - a360c7e: Second attempt at publishing
120
+
121
+ ## 2.12.2
122
+
123
+ ### Patch Changes
124
+
125
+ - 7938491: Fixes publishing
126
+
127
+ ## 2.12.1
128
+
129
+ ### Patch Changes
130
+
131
+ - 708167e: Fixes script and style tags being wrongfully included in the generated TSX
132
+
133
+ ## 2.12.0
134
+
135
+ ### Minor Changes
136
+
137
+ - d993c0d: Improves the handling of script and style tags. This release fixes numerous issues where the presence of those tags could break intellisense in certain parts of the file.
138
+
139
+ ### Patch Changes
140
+
141
+ - aae45af: Updates `prettier-plugin-astro` to 0.14.1
142
+
143
+ ## 2.11.0
144
+
145
+ ### Minor Changes
146
+
147
+ - b8a6af3: Upgrades to the latest version of Volar, the underlying framework powering the Astro language server. This update should fix some of the recent issues regarding intellisense inside script tags.
148
+
149
+ ### Patch Changes
150
+
151
+ - 829093f: Add syntax highlighting for `astro` tagged code block inside MDX files.
152
+
153
+ ## 2.10.2
154
+
155
+ ### Patch Changes
156
+
157
+ - a8d8804: Second attempt at fixing publishing for OpenVSX
158
+
159
+ ## 2.10.1
160
+
161
+ ### Patch Changes
162
+
163
+ - 5f4541d: Fixes broken release on OpenVSX
164
+
165
+ ## 2.10.0
166
+
167
+ ### Minor Changes
168
+
169
+ - c8af6db: Upgrades the language server to use the latest version of Volar. This changes should have no negative impacts on the experience.
170
+
171
+ ## 2.9.1
172
+
173
+ ### Patch Changes
174
+
175
+ - a401068: Fixes certain code actions corrupting Vue and Svelte files in specific situations
176
+
177
+ ## 2.9.0
178
+
179
+ ### Minor Changes
180
+
181
+ - 65d3425: Upgrades the language server to use Volar 2.2. This changes should have no negative impacts on the experience.
182
+
183
+ ## 2.8.6
184
+
185
+ ### Patch Changes
186
+
187
+ - 85a47b3: Fixes commenting shortcut not using the proper comments inside expressions in certain cases
188
+
189
+ ## 2.8.5
190
+
191
+ ### Patch Changes
192
+
193
+ - 8e55c37: Fixes attributes for HTML events (onload, onclick etc) using the wrong highlighting for interpolated attributes
194
+
195
+ ## 2.8.4
196
+
197
+ ### Patch Changes
198
+
199
+ - 9ca368b: Update to the latest version of Volar. This release should fix some of the caching issues that has crept up recently
200
+ - d57daad: Fix notification about Prettier being missing appearing on every format
201
+ - b166787: Fixes auto imports through completions and code actions inside script tags sometimes not updating the text correctly
202
+ - eb49fb2: Fixes completions for Astro-specific attributes not working in certain contexts
203
+
204
+ ## 2.8.3
205
+
206
+ ### Patch Changes
207
+
208
+ - c1fa115: Fixes `.prettierignore` and `.editorconfig` not working correctly. This update also improves the error logging around Prettier, the LSP will now warn when it failed to load the Prettier config.
209
+
210
+ ## 2.8.2
211
+
212
+ ### Patch Changes
213
+
214
+ - 79b7968: Fixes Organize Imports not working correctly
215
+ - db49ff7: Fixes `text.astro` TextMate scope not being applied to top-level text nodes.
216
+
217
+ ## 2.8.1
218
+
219
+ ### Patch Changes
220
+
221
+ - 15c9455: Fixes HTML Entities (ex: `<`) not being highlighted like they would inside HTML files
222
+ - f1447ef: chore: Update `volar-service-prettier`. This is only an internal refactor and there should be no visible changes.
223
+
224
+ ## 2.8.0
225
+
226
+ ### Minor Changes
227
+
228
+ - 85b42dc: Update to the latest version of Volar. This release fixes a few issues such as missing Prettier crashing the language server in some cases, resolutions not working correctly inside TSX files, and more.
229
+
230
+ ## 2.7.7
231
+
232
+ ### Patch Changes
233
+
234
+ - 1b68dfb: Improves descriptions for attributes specific to Astro (`is:raw`, `set:html`, etc.)
235
+
236
+ ## 2.7.5
237
+
238
+ ### Patch Changes
239
+
240
+ - 7c4c1f2: Update Volar services. This update fixes an issue where `typescript.validate` settings wouldn't work in Astro files the same way they would inside TypeScript files
241
+ - 1436e6e: Fixes mapping from compiler location to LSP range.
242
+
243
+ ## 2.7.4
244
+
245
+ ### Patch Changes
246
+
247
+ - 6924c7e: Fixes semantic highlighting not working inside .ts(x) files in certain cases
248
+ - 310fbfe: Fix Svelte and Vue integrations not working on Windows in certain cases
249
+
250
+ ## 2.7.3
251
+
252
+ ### Patch Changes
253
+
254
+ - de58706: Fix imports from certain packages not working correctly in certain cases
255
+
256
+ ## 2.7.1
257
+
258
+ ### Patch Changes
259
+
260
+ - 7b1ab72: Fix TypeScript not working inside script tags
261
+
262
+ ## 2.7.0
263
+
264
+ ### Minor Changes
265
+
266
+ - 15a5532: Upgrade to Volar 2.0. No regressions are currently expected, however as this is a fairly consequential backend change, please report any issues you encounter.
267
+
268
+ For reference, Volar is the underlying framework that powers the Astro language server, you can think of it as Vite for editor tooling.
269
+
270
+ ## 2.6.3
271
+
272
+ ### Patch Changes
273
+
274
+ - a97c048: Adds a completion for `transition:persist`
275
+
276
+ ## 2.6.2
277
+
278
+ ### Patch Changes
279
+
280
+ - 63e2c81: Fix fallback types not being properly included in some contexts such as inside the VS Code extension
281
+
282
+ ## 2.6.1
283
+
284
+ ### Patch Changes
285
+
286
+ - 5cd3bae: Fix Astro types not working on version of Astro older than 4.0.8 when React types were installed
287
+
288
+ ## 2.6.0
289
+
290
+ ### Minor Changes
291
+
292
+ - dab6801: Enables more accurate types when using JSX-based frameworks. This internal refactor to Astro's JSX types will be an invisible change for most users, but fixes a number of type checking problems for users of other JSX frameworks.
293
+
294
+ ## 2.5.6
295
+
296
+ ### Patch Changes
297
+
298
+ - 37434ab: Fixes incorrectly highlighted escaped interpolation in template literal attributes
299
+
300
+ ## 2.5.4
301
+
302
+ ### Patch Changes
303
+
304
+ - 45d49f5: Fix errors spilling out of inline event attributes in certain cases
305
+ - 5013f2e: Fix autoclosing of brackets not working inside tags in certain cases
306
+
307
+ ## 2.5.3
308
+
309
+ ### Patch Changes
310
+
311
+ - 621320a: Fix language server crashing when encountering malformed files in certain cases
312
+ - dc98b0b: Fixes an issue where type checking errors were shown on define:vars scripts when "type=module" attribute was also present.
313
+ - 598689a: Improve detection of Astro in complex monorepos
314
+
315
+ ## 2.5.2
316
+
317
+ ### Patch Changes
318
+
319
+ - bd3d933: Fix formatting sometimes causing the code to become invalid inside inline events (onclick, onload...)
320
+ - ee41dce: Add support for TypeScript 5.3
321
+ - 19217c4: Automatically flatten inferred unions from `getStaticPaths` into each other so that divergent props don't need to be manually discriminated before destructuring.
322
+
323
+ ## 2.5.1
324
+
325
+ ### Patch Changes
326
+
327
+ - 89d4613: Show full reason why an editor integration might have failed loading
328
+
329
+ ## 2.5.0
330
+
331
+ ### Minor Changes
332
+
333
+ - f4402eb: Add intellisense for Astro.self, add auto inferring of props for `getStaticPaths`
334
+
335
+ ## 2.4.1
336
+
337
+ ### Patch Changes
338
+
339
+ - 0e9861e: Fix errors on JSON script tags
340
+ - bae3749: Fix usage of prettier plugins without prettier-plugin-astro
341
+
342
+ ## 2.4.0
343
+
344
+ ### Minor Changes
345
+
346
+ - 9381e1d: Update dependencies
347
+
348
+ ## 2.3.4
349
+
350
+ ### Patch Changes
351
+
352
+ - 4046fb8: Fix intellisense not working in nested script and style tags
353
+
354
+ ## 2.3.3
355
+
356
+ ### Patch Changes
357
+
358
+ - 351f5dd: Fix formatting not respecting Prettier overrides in certain cases
359
+
360
+ ## 2.3.1
361
+
362
+ ### Patch Changes
363
+
364
+ - 0a34d96: Use editor formatting settings as a fallback when there's no Prettier config
365
+ - 4e10283: Fix TSServer crash, for real this time
366
+
367
+ ## 2.3.0
368
+
369
+ ### Minor Changes
370
+
371
+ - 1bb48f4: Add completions snippets for getStaticPaths, the Props interface and prerender statements
372
+
373
+ ### Patch Changes
374
+
375
+ - 2ac4220: Update to latest version of the Astro Prettier plugin
376
+ - 4b510dd: Fix TSServer crashing in certain situations
377
+ - cd0f5d5: Order `astro:*` completions higher than other completions
378
+ - 9759fdb: Fix wordpattern syntax in astro-language-configuration.json
379
+
380
+ ## 2.1.4
381
+
382
+ ### Patch Changes
383
+
384
+ - bb38a76: Fix formatting not working in certain situations
385
+
386
+ ## 2.1.3
387
+
388
+ ### Patch Changes
389
+
390
+ - 65fca95: Update Volar to latest version. This fixes resolving Astro files from `node_modules` and various other import errors.
391
+
392
+ ## 2.1.2
393
+
394
+ ### Patch Changes
395
+
396
+ - 2748230: Use configured tsdk
397
+ - ab8fd87: Add transition:name and transition:animate attributes
398
+
399
+ ## 2.1.1
400
+
401
+ ### Patch Changes
402
+
403
+ - 0725820: Attempt new release
404
+
405
+ ## 2.1.0
406
+
407
+ ### Minor Changes
408
+
409
+ - f9b2aea: The Astro TypeScript plugin is now powered by Volar! Much like our Volar-powered language server, this brings many improvement in stability, performance and in the future, will allow us to add more features to it much more easily than before.
410
+
411
+ ### Patch Changes
412
+
413
+ - fa15d04: Properly treat script tags with type="module" as their own scope
414
+ - 1202c9d: Upgraded dependencies, added support for Prettier 3
415
+ - d71c081: Upgraded Volar version
416
+ - 6057e81: Significantly reduce the weight of the extension
417
+
418
+ ## 2.0.18
419
+
420
+ ### Patch Changes
421
+
422
+ - 60e4ce0: Fix packaging error causing TypeScript plugin to not work
423
+ - Updated dependencies [60e4ce0]
424
+ - @astrojs/ts-plugin@1.0.10
425
+
426
+ ## 2.0.17
427
+
428
+ ### Patch Changes
429
+
430
+ - b6a98e0: Better handle when the Astro compiler fails to parse a file
431
+ - Updated dependencies [b6a98e0]
432
+ - @astrojs/ts-plugin@1.0.9
433
+
434
+ ## 2.0.16
435
+
436
+ ### Patch Changes
437
+
438
+ - f72d8d2: Fix auto imports and quick fixes not working in certain situations
439
+ - 2b889dc: Update to latest version of Volar
440
+ - 170a193: Update dependencies
441
+ - Updated dependencies [170a193]
442
+ - @astrojs/ts-plugin@1.0.8
443
+
444
+ ## 2.0.15
445
+
446
+ ### Patch Changes
447
+
448
+ - 9d1cd4d: Fix crash when a file named 404.astro was present in the project
449
+
450
+ ## 2.0.14
451
+
452
+ ### Patch Changes
453
+
454
+ - a8e39a9: Fix `astro.trace.server` not working
455
+ - 0205f03: Fixed TypeScript error showing when deconstructing from Astro.props a variable with the same name as the normalized file name
456
+
457
+ ## 2.0.13
458
+
459
+ ### Patch Changes
460
+
461
+ - ab364c5: Fix missing import in `client.ts`
462
+
463
+ ## 2.0.0
464
+
465
+ ### Major Changes
466
+
467
+ - 0c747db: The Astro VS Code extension and language server are now powered by Volar (https://volarjs.github.io/)! This updates massively improve performance and add numerous features such as selection ranges, document highlights, support for intellisense on inline JavaScript, CodeLens helper for `Astro.glob` and more.
468
+
469
+ In the background, this update means that we now have to maintain a lot less code ourselves, which means we'll be able to dedicate more time to offering fun, Astro-specific features instead of maintaining core features.
470
+
471
+ ## 2.0.0-next.12
472
+
473
+ ### Patch Changes
474
+
475
+ - b108370: Fix crash on empty glob pattern
476
+
477
+ ## 2.0.0-next.11
478
+
479
+ ### Patch Changes
480
+
481
+ - af88980: Fix packaging error
482
+
483
+ ## 2.0.0-next.10
484
+
485
+ ### Patch Changes
486
+
487
+ - d5e2d51: Fix certain types being wrongly included into projects
488
+ - d5e2d51: Added back "Select TypeScript version" command
489
+ - d5e2d51: Fix single quotes attributes breaking the syntax highlighting when inline HTML events were used
490
+
491
+ ## 2.0.0-next.9
492
+
493
+ ### Patch Changes
494
+
495
+ - 8b82179: Remove buggy links and paths completions on certain HTML attributes
496
+ - 8b82179: Fix color pickers not showing for inline styles (style attributes)
497
+ - 8b82179: Remove completion for certain irrelevant properties
498
+ - 8b82179: Fix signature helpers not working
499
+ - 8b82179: Fix auto imports and code actions not working under certain circumstances
500
+
501
+ ## 2.0.0-next.8
502
+
503
+ ### Patch Changes
504
+
505
+ - 5a4e068: Fix completions not appearing for Svelte and Vue components in certain cases
506
+ - 5a4e068: Fix Prettier config not being considered when formatting
507
+ - 5a4e068: Fix auto-imports and quickfixes sometimes not properly inserting the import
508
+
509
+ ## 2.0.0-next.7
510
+
511
+ ### Patch Changes
512
+
513
+ - df6cd5a: Fix crash at start
514
+
515
+ ## 2.0.0-next.6
516
+
517
+ ### Patch Changes
518
+
519
+ - 4038ca5: Attempt to solve crash in packaged version
520
+
521
+ ## 2.0.0-next.5
522
+
523
+ ### Patch Changes
524
+
525
+ - 77d74d9: Update Astro Prettier Plugin to 0.9.0
526
+
527
+ ## 2.0.0-next.4
528
+
529
+ ### Patch Changes
530
+
531
+ - f707876: Fix commands not working
532
+
533
+ ## 2.0.0-next.3
534
+
535
+ ### Patch Changes
536
+
537
+ - 46f321f: Fix packaging error, part 2
538
+
539
+ ## 2.0.0-next.2
540
+
541
+ ### Patch Changes
542
+
543
+ - fce2944: Fix publishing error
544
+
545
+ ## 2.0.0-next.1
546
+
547
+ ### Patch Changes
548
+
549
+ - 0cb6b9e: Publish pre-release to marketplace
550
+
551
+ ## 2.0.0-next.0
552
+
553
+ ### Major Changes
554
+
555
+ - The Astro VS Code extension and language server are now powered by Volar (https://volarjs.github.io/)! This updates massively improve performance and add numerous features such as selection ranges, document highlights, support for intellisense on inline JavaScript, CodeLens helper for `Astro.glob` and more.
556
+
557
+ In the background, this update means that we now have to maintain a lot less code ourselves, which means we'll be able to dedicate more time to offering fun, Astro-specific features instead of maintaining core features.
558
+
559
+ ### Patch Changes
560
+
561
+ - Updated dependencies
562
+ - @astrojs/language-server@2.0.0-next.0
563
+
564
+ ## 1.0.8
565
+
566
+ ### Patch Changes
567
+
568
+ - c6cf1d7: Update Prettier plugin version
569
+ - Updated dependencies [c6cf1d7]
570
+ - @astrojs/ts-plugin@1.0.7
571
+
572
+ ## 1.0.7
573
+
574
+ ### Patch Changes
575
+
576
+ - e54ec6c: Update to prettier-plugin-astro@0.9.0
577
+
578
+ ## 1.0.6
579
+
580
+ ### Patch Changes
581
+
582
+ - 3fcbc1a: Fix TypeScript plugin crashing at start in certain circumstances
583
+ - Updated dependencies [3fcbc1a]
584
+ - @astrojs/ts-plugin@1.0.6
585
+
586
+ ## 1.0.5
587
+
588
+ ### Patch Changes
589
+
590
+ - ae15420: Fix importing `.astro` files in `.ts` files not working with TypeScript 5.0+
591
+ - 841a761: Fix type for `scopeUri` in workspace/configuration request
592
+ - 4f7430b: Update `prettier-plugin-astro` to 0.8.1
593
+ - Updated dependencies [ae15420]
594
+ - @astrojs/ts-plugin@1.0.5
595
+
596
+ ## 1.0.4
597
+
598
+ ### Patch Changes
599
+
600
+ - eaefe96: Fix packaging error
601
+ - Updated dependencies [eaefe96]
602
+ - @astrojs/ts-plugin@1.0.4
603
+
604
+ ## 1.0.3
605
+
606
+ ### Patch Changes
607
+
608
+ - 685513b: Improve stability related to converting files to TSX
609
+ - Updated dependencies [685513b]
610
+ - @astrojs/ts-plugin@1.0.3
611
+
612
+ ## 1.0.0
613
+
614
+ ### Major Changes
615
+
616
+ - 39a7669: 1.0! This release includes no new changes by itself, but symbolize the official release of what was previously the pre-release version of the extension. For changelogs, please refer to the changelog from `0.29.0` to now.
617
+
618
+ ### Patch Changes
619
+
620
+ - Updated dependencies [39a7669]
621
+ - @astrojs/ts-plugin@1.0.0
622
+
623
+ ## 0.29.8
624
+
625
+ ### Patch Changes
626
+
627
+ - 53ad6ce: Add file template snippets when opening a new file
628
+ - 8ff8bdf: Update compiler version to fix Windows mapping issue
629
+ - Updated dependencies [8ff8bdf]
630
+ - @astrojs/ts-plugin@0.4.5
631
+
632
+ ## 0.29.7
633
+
634
+ ### Patch Changes
635
+
636
+ - 4e777bb: Update branded assets
637
+
638
+ ## 0.29.6
639
+
640
+ ### Patch Changes
641
+
642
+ - edccff6: Support workspace-local language server versions in the Visual Studio Code plugin
643
+ - c04adf3: Upgrade compiler version to 1.1.1
644
+ - Updated dependencies [c04adf3]
645
+ - @astrojs/ts-plugin@0.4.4
646
+
647
+ ## 0.29.5
648
+
649
+ ### Patch Changes
650
+
651
+ - 59bfc7b: Fixed Astro commands showing even outside Astro files
652
+ - Updated dependencies [6b81412]
653
+ - @astrojs/ts-plugin@0.4.3
654
+
655
+ ## 0.29.4
656
+
657
+ ### Patch Changes
658
+
659
+ - ad08f8e: Fix completions of strings not showing in certain cases
660
+ - 94a9b61: Add proper support for renaming symbols inside Astro (.astro) files
661
+ - ad08f8e: Add support for breakpoints
662
+ - Updated dependencies [94a9b61]
663
+ - @astrojs/ts-plugin@0.4.2
664
+
665
+ ## 0.29.3
666
+
667
+ ### Patch Changes
668
+
669
+ - d8ba449: Fix Prettier plugins not being loaded when formatting
670
+
671
+ ## 0.29.1
672
+
673
+ ### Patch Changes
674
+
675
+ - 985515d: Update `@astrojs/compiler`, fixing a few bugs
676
+ - Updated dependencies [985515d]
677
+ - @astrojs/ts-plugin@0.4.1
678
+
679
+ ## 0.29.0
680
+
681
+ ### Minor Changes
682
+
683
+ - c8cdef9: Improved support for `.astro` imports inside JavaScript/TypeScript files:
684
+ - Added support for finding file references inside Astro files
685
+ - Added support for path completions for .astro, .md and .mdx files
686
+ - Fixed cases where our TypeScript plugin would fail to load under certain circumstance
687
+ - Fixed certain cases where Go to definition / implementation would fail
688
+ - 291ff7c: Migrate the language-server to use a new TSX output using the Astro compiler. This should make things such as autocomplete and hover information much more accurate, in addition to bringing support for numerous Astro features that were previously not working (such as support for the shorthand syntax for props, support for `is:raw` and more!)
689
+
690
+ ### Patch Changes
691
+
692
+ - Updated dependencies [c8cdef9]
693
+ - @astrojs/ts-plugin@0.4.0
694
+
695
+ ## 0.28.3
696
+
697
+ ### Patch Changes
698
+
699
+ - 6fecee2: Update Prettier plugin to 0.7.0
700
+
701
+ ## 0.28.2
702
+
703
+ ### Patch Changes
704
+
705
+ - 1f9ecaa: Fix numbers inside HTML attributes not being properly highlighted
706
+
707
+ ## 0.28.1
708
+
709
+ ### Patch Changes
710
+
711
+ - c2a6829: Update Prettier plugin to 0.6.0
712
+
713
+ ## 0.28.0
714
+
715
+ ### Minor Changes
716
+
717
+ - 4eeb0f3: Fix numerous issues related to file renames, deletes and moves not being properly caught by the extension and resulting in false positives
718
+ - 9b559ca: Add support for getting updated code from unsaved Astro, Svelte and Vue files
719
+
720
+ ### Patch Changes
721
+
722
+ - 7492907: Add support for import completions of .md, .mdx and .html files
723
+ - 8d352de: Fix Organize Imports sometimes adding code to script tags
724
+ - f4a8513: Fix completions of component props not working if a CSS file was imported before the component
725
+
726
+ ## 0.27.0
727
+
728
+ ### Minor Changes
729
+
730
+ - a88e58b: Add support for Go to References
731
+ - 796d2d2: Add support for finding file references (Right click about anywhere / Command > Astro: Find File References"
732
+ - 2a8fba0: Add support for Go to Implementation inside Astro files
733
+
734
+ ### Patch Changes
735
+
736
+ - a3daea4: Improve completions on the Fragment element, add completions for slot on components
737
+ - 8582a3d: Add support for syntax highlighting for event handlers
738
+
739
+ ## 0.26.2
740
+
741
+ ### Patch Changes
742
+
743
+ - a8ea743: Empty changeset for failed deploy
744
+
745
+ ## 0.26.1
746
+
747
+ ### Patch Changes
748
+
749
+ - c4f7a36: Trying desesperately to figure deployment out
750
+
751
+ ## 0.26.0
752
+
753
+ ### Minor Changes
754
+
755
+ - c4f7a36: Update language-server
756
+
757
+ ## 0.24.4
758
+
759
+ ### Patch Changes
760
+
761
+ - 96957ac: Fix extension not working properly inside the browser
762
+
763
+ ## 0.24.3
764
+
765
+ ### Patch Changes
766
+
767
+ - 7390abe: We're in deploy hell, but this time it'll work
768
+
769
+ ## 0.24.2
770
+
771
+ ### Patch Changes
772
+
773
+ - 6b2ca00: Retry deploy again
774
+
775
+ ## 0.24.1
776
+
777
+ ### Patch Changes
778
+
779
+ - 180ade5: Empty changeset for failed publish
780
+
781
+ ## 0.24.0
782
+
783
+ ### Minor Changes
784
+
785
+ - b66ae70: Update the VS Code extension to use a bundled version of the language server for better performance and compatibility with running the extension in the web
786
+ - 5a583d3: TypeScript will now be loaded from VS Code / the workspace instead of being bundled inside the language server
787
+
788
+ ### Patch Changes
789
+
790
+ - Updated dependencies [b66ae70]
791
+ - @astrojs/ts-plugin@0.3.0
792
+
793
+ ## 0.23.3
794
+
795
+ ### Patch Changes
796
+
797
+ - 150946c: Publish failed
798
+ - Updated dependencies [150946c]
799
+ - @astrojs/language-server@0.23.3
800
+
801
+ ## 0.23.2
802
+
803
+ ### Patch Changes
804
+
805
+ - Updated dependencies [b13fb51]
806
+ - @astrojs/language-server@0.23.2
807
+
808
+ ## 0.23.1
809
+
810
+ ### Patch Changes
811
+
812
+ - Updated dependencies [422376e]
813
+ - @astrojs/language-server@0.23.1
814
+
815
+ ## 0.23.0
816
+
817
+ ### Patch Changes
818
+
819
+ - 56c14f8: Fix a regression with how VS Code handle unbalanced brackets since 1.70
820
+ - Updated dependencies [b6c95f2]
821
+ - Updated dependencies [1dcef68]
822
+ - @astrojs/language-server@0.23.0
823
+
824
+ ## 0.22.0
825
+
826
+ ### Patch Changes
827
+
828
+ - f3777ac: Added settings to configure the path to the language server and the runtime to use to run it
829
+ - Updated dependencies [61620f1]
830
+ - Updated dependencies [9337f00]
831
+ - Updated dependencies [d5aafc0]
832
+ - @astrojs/language-server@0.22.0
833
+
834
+ ## 0.21.1
835
+
836
+ ### Patch Changes
837
+
838
+ - Updated dependencies [0e9d7d0]
839
+ - Updated dependencies [3f79dbf]
840
+ - @astrojs/language-server@0.21.1
841
+
842
+ ## 0.21.0
843
+
844
+ ### Minor Changes
845
+
846
+ - 574b75d: Remove support for the Markdown component
847
+
848
+ ### Patch Changes
849
+
850
+ - 81f3aa5: Added a debug command to show the currently opened document's TSX output
851
+ - Updated dependencies [81f3aa5]
852
+ - Updated dependencies [574b75d]
853
+ - Updated dependencies [d23ba22]
854
+ - @astrojs/language-server@0.21.0
855
+
856
+ ## 0.20.4
857
+
858
+ ### Patch Changes
859
+
860
+ - a3a13d1: Fix extension failing to send a notification when ts|jsconfig.json was updated
861
+ - a04124c: Fixed syntax highlighting not working properly for components with @, \_ and . in them
862
+
863
+ ## 0.20.3
864
+
865
+ ### Patch Changes
866
+
867
+ - Updated dependencies [081cf24]
868
+ - @astrojs/language-server@0.20.3
869
+
870
+ ## 0.20.2
871
+
872
+ ### Patch Changes
873
+
874
+ - bd47f6e: Fix changes to an Astro config file causing the extension to crash, fixed JSON modules not being updated properly
875
+
876
+ ## 0.20.1
877
+
878
+ ### Patch Changes
879
+
880
+ - Updated dependencies [e6996f5]
881
+ - Updated dependencies [4589c2b]
882
+ - @astrojs/language-server@0.20.1
883
+
884
+ ## 0.20.0
885
+
886
+ ### Patch Changes
887
+
888
+ - Updated dependencies [fa3f0f7]
889
+ - Updated dependencies [ba0fab1]
890
+ - @astrojs/language-server@0.20.0
891
+
892
+ ## 0.19.6
893
+
894
+ ### Patch Changes
895
+
896
+ - Updated dependencies [4c1045d]
897
+ - @astrojs/language-server@0.19.6
898
+
899
+ ## 0.19.5
900
+
901
+ ### Patch Changes
902
+
903
+ - 421ab52: Added a new setting (`astro.typescript.allowArbitraryAttributes`) to enable support for arbitrary attributes
904
+ - Updated dependencies [421ab52]
905
+ - Updated dependencies [06e3c95]
906
+ - Updated dependencies [301dcfb]
907
+ - Updated dependencies [dd1283b]
908
+ - @astrojs/language-server@0.19.5
909
+
910
+ ## 0.19.4
911
+
912
+ ### Patch Changes
913
+
914
+ - Updated dependencies [1033856]
915
+ - @astrojs/language-server@0.19.4
916
+
917
+ ## 0.19.3
918
+
919
+ ### Patch Changes
920
+
921
+ - Updated dependencies [49ff4ef]
922
+ - Updated dependencies [14cbf05]
923
+ - @astrojs/language-server@0.19.3
924
+
925
+ ## 0.19.2
926
+
927
+ ### Patch Changes
928
+
929
+ - Updated dependencies [7de4967]
930
+ - @astrojs/language-server@0.19.2
931
+
932
+ ## 0.19.1
933
+
934
+ ### Patch Changes
935
+
936
+ - 59e8ad6: Update README, disable frontmatter indenting by default
937
+ - fec2817: Improved syntax highlighting, auto-indentation and auto-closing
938
+ - Updated dependencies [729dff5]
939
+ - Updated dependencies [05a48c2]
940
+ - Updated dependencies [fe2d26b]
941
+ - @astrojs/language-server@0.19.1
942
+
943
+ ## 0.19.0
944
+
945
+ ### Minor Changes
946
+
947
+ - a97b9a4: Add support for Inlay Hints. Minimum VS Code version supported starting from this update is 1.67.0 (April 2022)
948
+
949
+ ### Patch Changes
950
+
951
+ - Updated dependencies [a97b9a4]
952
+ - @astrojs/language-server@0.19.0
953
+
954
+ ## 0.18.1
955
+
956
+ ### Patch Changes
957
+
958
+ - 666739a: Revert update to latest LSP and inlay hints support
959
+ - Updated dependencies [666739a]
960
+ - @astrojs/language-server@0.18.1
961
+
962
+ ## 0.18.0
963
+
964
+ ### Minor Changes
965
+
966
+ - d3c6fd8: Add support for formatting
967
+ - 09e1163: Updated language server to latest version of LSP, added support for Inlay Hints
968
+
969
+ ### Patch Changes
970
+
971
+ - Updated dependencies [d3c6fd8]
972
+ - Updated dependencies [09e1163]
973
+ - Updated dependencies [fcaba8e]
974
+ - Updated dependencies [4138005]
975
+ - Updated dependencies [76ff46a]
976
+ - @astrojs/language-server@0.18.0
977
+
978
+ ## 0.17.0
979
+
980
+ ### Patch Changes
981
+
982
+ - Updated dependencies [3ad0f65]
983
+ - Updated dependencies [2e9da14]
984
+ - @astrojs/language-server@0.17.0
985
+
986
+ ## 0.16.1
987
+
988
+ ### Patch Changes
989
+
990
+ - Updated dependencies [ad5a5e5]
991
+ - Updated dependencies [1bd790d]
992
+ - @astrojs/language-server@0.16.1
993
+
994
+ ## 0.16.0
995
+
996
+ ### Patch Changes
997
+
998
+ - 1bcae45: Remove support for Node 12 (VS Code versions under 1.56)
999
+ - Updated dependencies [b485acd]
1000
+ - Updated dependencies [1cff04c]
1001
+ - Updated dependencies [1bcae45]
1002
+ - Updated dependencies [9abff62]
1003
+ - Updated dependencies [c8d81a1]
1004
+ - @astrojs/language-server@0.16.0
1005
+
1006
+ ## 0.15.0
1007
+
1008
+ ### Patch Changes
1009
+
1010
+ - Updated dependencies [7978de1]
1011
+ - Updated dependencies [3ac74bc]
1012
+ - Updated dependencies [6bb45cb]
1013
+ - @astrojs/language-server@0.15.0
1014
+
1015
+ ## 0.14.0
1016
+
1017
+ ### Patch Changes
1018
+
1019
+ - Updated dependencies [9118c46]
1020
+ - Updated dependencies [9ea5b97]
1021
+ - Updated dependencies [dbf624a]
1022
+ - @astrojs/language-server@0.14.0
1023
+
1024
+ ## 0.13.4
1025
+
1026
+ ### Patch Changes
1027
+
1028
+ - 74c9961: Fixed Astro syntax to detect `<Markdown />` component correctly
1029
+ - Updated dependencies [5874655]
1030
+ - @astrojs/language-server@0.13.4
1031
+
1032
+ ## 0.13.3
1033
+
1034
+ ### Patch Changes
1035
+
1036
+ - Updated dependencies [1fb21ff]
1037
+ - Updated dependencies [99d7536]
1038
+ - Updated dependencies [b363c00]
1039
+ - @astrojs/language-server@0.13.3
1040
+
1041
+ ## 0.13.2
1042
+
1043
+ ### Patch Changes
1044
+
1045
+ - Updated dependencies [aff8b76]
1046
+ - @astrojs/language-server@0.13.2
1047
+
1048
+ ## 0.13.1
1049
+
1050
+ ### Patch Changes
1051
+
1052
+ - ea74fdb: Publish failed
1053
+ - Updated dependencies [ea74fdb]
1054
+ - @astrojs/language-server@0.13.1
1055
+
1056
+ ## 0.13.0
1057
+
1058
+ ### Minor Changes
1059
+
1060
+ - 82b8891: Add HTML hover info, fix Astro directives producing errors, fix missing children property for JSX based frameworks
1061
+
1062
+ ### Patch Changes
1063
+
1064
+ - Updated dependencies [9f4f907]
1065
+ - Updated dependencies [82b8891]
1066
+ - Updated dependencies [c09116f]
1067
+ - @astrojs/language-server@0.13.0
1068
+
1069
+ ## 0.12.1
1070
+
1071
+ ### Patch Changes
1072
+
1073
+ - Updated dependencies [49955c6]
1074
+ - @astrojs/language-server@0.12.1
1075
+
1076
+ ## 0.12.0
1077
+
1078
+ ### Minor Changes
1079
+
1080
+ - 8a58a56: Refactor the language-server, fixes many issues related to imports, add support for completions in multiple style tags
1081
+
1082
+ ### Patch Changes
1083
+
1084
+ - Updated dependencies [8a58a56]
1085
+ - @astrojs/language-server@0.12.0
1086
+
1087
+ ## 0.11.0
1088
+
1089
+ ### Patch Changes
1090
+
1091
+ - d056cd5: Fixes production bugs in extension
1092
+ - Updated dependencies [d056cd5]
1093
+ - Updated dependencies [fd92a85]
1094
+ - @astrojs/language-server@0.11.0
1095
+ - @astrojs/ts-plugin@0.2.1
1096
+
1097
+ ## 0.9.3
1098
+
1099
+ ### Patch Changes
1100
+
1101
+ - c4d43b4: Deploy to OpenVSX
1102
+ - Updated dependencies [c4d43b4]
1103
+ - @astrojs/language-server@0.9.3
1104
+
1105
+ ## 0.9.2
1106
+
1107
+ ### Patch Changes
1108
+
1109
+ - 91404d1: Enable publishing to OpenVSX
1110
+ - Updated dependencies [91404d1]
1111
+ - @astrojs/language-server@0.9.2
1112
+
1113
+ ## 0.9.1
1114
+
1115
+ ### Patch Changes
1116
+
1117
+ - 7dc85cc: Add support for Emmet inside components, upgrade Emmet version
1118
+ - Updated dependencies [7dc85cc]
1119
+ - @astrojs/language-server@0.9.1
1120
+
1121
+ ## 0.9.0
1122
+
1123
+ ### Minor Changes
1124
+
1125
+ - 6b6b47a: Remove internal astro.d.ts files, instead prefer the one provided by Astro itself
1126
+
1127
+ ### Patch Changes
1128
+
1129
+ - Updated dependencies [6b6b47a]
1130
+ - @astrojs/language-server@0.9.0
1131
+ - @astrojs/ts-plugin@0.2.0
1132
+
1133
+ ## 0.8.10
1134
+
1135
+ ### Patch Changes
1136
+
1137
+ - 8878324: Add feature to reload language server on ts/jsconfig change
1138
+ - Updated dependencies [5b16fb4]
1139
+ - @astrojs/language-server@0.8.10
1140
+
1141
+ ## 0.8.9
1142
+
1143
+ ### Patch Changes
1144
+
1145
+ - Updated dependencies [d0485a2]
1146
+ - @astrojs/language-server@0.8.9
1147
+
1148
+ ## 0.8.8
1149
+
1150
+ ### Patch Changes
1151
+
1152
+ - Updated dependencies [526d5c7]
1153
+ - @astrojs/language-server@0.8.8
1154
+
1155
+ ## 0.8.7
1156
+
1157
+ ### Patch Changes
1158
+
1159
+ - Updated dependencies [897ab35]
1160
+ - @astrojs/language-server@0.8.7
1161
+
1162
+ ## 0.8.6
1163
+
1164
+ ### Patch Changes
1165
+
1166
+ - Updated dependencies [97559b6]
1167
+ - Updated dependencies [4c93d24]
1168
+ - @astrojs/language-server@0.8.6
1169
+
1170
+ ## 0.8.5
1171
+
1172
+ ### Patch Changes
1173
+
1174
+ - f1f3091: Fix commenting, namespaced elements, and Fragment typings
1175
+ - Updated dependencies [f1f3091]
1176
+ - @astrojs/language-server@0.8.5
1177
+ - @astrojs/ts-plugin@0.1.1
1178
+
1179
+ ## 0.8.4
1180
+
1181
+ ### Patch Changes
1182
+
1183
+ - Updated dependencies [481e009]
1184
+ - @astrojs/language-server@0.8.4
1185
+
1186
+ ## 0.8.3
1187
+
1188
+ ### Patch Changes
1189
+
1190
+ - cad5430: Fix plain script and style blocks
1191
+ - Updated dependencies [fef3091]
1192
+ - @astrojs/language-server@0.8.3
1193
+
1194
+ ## 0.8.2
1195
+
1196
+ ### Patch Changes
1197
+
1198
+ - a408131: Several fixes for the syntax highlighter
1199
+ - Updated dependencies [528c6bd]
1200
+ - @astrojs/language-server@0.8.2
1201
+
1202
+ ## 0.8.1
1203
+
1204
+ ### Patch Changes
1205
+
1206
+ - Updated dependencies [b20db6e]
1207
+ - @astrojs/language-server@0.8.1
1208
+
1209
+ ## 0.8.0
1210
+
1211
+ ### Minor Changes
1212
+
1213
+ - cf48420: Adds syntax highlighting support for Astro fenced codeblocks in all Markdown files
1214
+
1215
+ ## 0.7.20
1216
+
1217
+ ### Patch Changes
1218
+
1219
+ - 5034f23: Adds support for running as a [Web Extension](https://code.visualstudio.com/api/extension-guides/web-extensions)
1220
+
1221
+ ## 0.7.19
1222
+
1223
+ ### Patch Changes
1224
+
1225
+ - 2910b03: Add support for at-prefixed attributes
1226
+ - Updated dependencies [2910b03]
1227
+ - @astrojs/language-server@0.7.19
1228
+
1229
+ ## 0.7.18
1230
+
1231
+ ### Patch Changes
1232
+
1233
+ - Updated dependencies [12b4ed3]
1234
+ - @astrojs/language-server@0.7.18
1235
+
1236
+ ## 0.7.17
1237
+
1238
+ ### Patch Changes
1239
+
1240
+ - Updated dependencies [7c6f6a6]
1241
+ - @astrojs/language-server@0.7.17
1242
+
1243
+ ## 0.7.16
1244
+
1245
+ ### Patch Changes
1246
+
1247
+ - Updated dependencies [b6f44d4]
1248
+ - Updated dependencies [4166283]
1249
+ - @astrojs/language-server@0.7.16
1250
+
1251
+ ## 0.7.15
1252
+
1253
+ ### Patch Changes
1254
+
1255
+ - Updated dependencies [6340a79]
1256
+ - @astrojs/language-server@0.7.15
1257
+
1258
+ ## 0.7.14
1259
+
1260
+ ### Patch Changes
1261
+
1262
+ - Updated dependencies [e0facf6]
1263
+ - Updated dependencies [3c903c3]
1264
+ - Updated dependencies [b0a8bc1]
1265
+ - @astrojs/language-server@0.7.14
1266
+
1267
+ ## 0.7.13
1268
+
1269
+ ### Patch Changes
1270
+
1271
+ - Updated dependencies [1b2afc7]
1272
+ - @astrojs/language-server@0.7.13
1273
+
1274
+ ## 0.7.12
1275
+
1276
+ ### Patch Changes
1277
+
1278
+ - Updated dependencies [553969e]
1279
+ - Updated dependencies [b4c1b70]
1280
+ - @astrojs/language-server@0.7.12
1281
+
1282
+ ## 0.7.11
1283
+
1284
+ ### Patch Changes
1285
+
1286
+ - Updated dependencies [02bcb91]
1287
+ - @astrojs/language-server@0.7.11
1288
+
1289
+ ## 0.7.10
1290
+
1291
+ ### Patch Changes
1292
+
1293
+ - Updated dependencies [1958d51]
1294
+ - Updated dependencies [f558e54]
1295
+ - @astrojs/language-server@0.7.10
1296
+
1297
+ ## 0.7.9
1298
+
1299
+ ### Patch Changes
1300
+
1301
+ - Updated dependencies [6c952ae]
1302
+ - @astrojs/language-server@0.7.9
1303
+
1304
+ ## 0.7.8
1305
+
1306
+ ### Patch Changes
1307
+
1308
+ - Updated dependencies [f2f7fc8]
1309
+ - @astrojs/language-server@0.7.8
1310
+
1311
+ ## 0.7.7
1312
+
1313
+ ### Patch Changes
1314
+
1315
+ - Updated dependencies [6501757]
1316
+ - @astrojs/language-server@0.7.7
1317
+
1318
+ ## 0.7.6
1319
+
1320
+ ### Patch Changes
1321
+
1322
+ - Updated dependencies [ea2d56d]
1323
+ - @astrojs/language-server@0.7.6
1324
+
1325
+ ## 0.7.4
1326
+
1327
+ ### Patch Changes
1328
+
1329
+ - Updated dependencies [6604c9f]
1330
+ - @astrojs/language-server@0.7.4
1331
+
1332
+ ## 0.7.3
1333
+
1334
+ ### Patch Changes
1335
+
1336
+ - ae4a9e5: Provides special highlighting for component names
1337
+ - Updated dependencies [8f7bd34]
1338
+ - @astrojs/language-server@0.7.3
1339
+
1340
+ ## 0.7.2
1341
+
1342
+ ### Patch Changes
1343
+
1344
+ - 1b3a832: Adds diagnostics (errors and warnings)
1345
+ - Updated dependencies [1b3a832]
1346
+ - @astrojs/language-server@0.7.2
1347
+
1348
+ ## 0.7.1
1349
+
1350
+ ### Patch Changes
1351
+
1352
+ - Updated dependencies [7874c06]
1353
+ - @astrojs/language-server@0.7.1
1354
+
1355
+ ## 0.7.1
1356
+
1357
+ ### Patch Changes
1358
+
1359
+ - 25a7f22: Publishing new version
1360
+
1361
+ ## 0.7.0
1362
+
1363
+ ### Patch Changes
1364
+
1365
+ - Updated dependencies [72d3ff0]
1366
+ - @astrojs/language-server@0.7.0
1367
+
1368
+ ## 0.6.1
1369
+
1370
+ - Makes the v0.6.0 features actually work 😅
1371
+
1372
+ ## 0.6.0
1373
+
1374
+ - Fixes bug with signature help not appearing in the component script section.
1375
+ - Adds completion suggestions for `Astro.*` APIs in the component script.
1376
+ - Adds support for Hover based hints in the component script section.
1377
+ - Fixes bug with Go to Definition (cmd + click) for Components.
1378
+
1379
+ ## 0.5.0
1380
+
1381
+ - Bug fixes, dependency updates
1382
+
1383
+ ## 0.4.3
1384
+
1385
+ ### Patch Changes
1386
+
1387
+ - Improve support for <Markdown> component
1388
+ - Bug fixes and improvements
1389
+
1390
+ ## 0.4.2
1391
+
1392
+ ### Patch Changes
1393
+
1394
+ - b3886c2: Added support for new <Markdown> component
1395
+
1396
+ ## 0.4.1
1397
+
1398
+ ### Patch Changes
1399
+
1400
+ - Updated VS Code Marketplace banner
1401
+
1402
+ ## 0.4.0
1403
+
1404
+ ### Minor Changes
1405
+
1406
+ - 06e2597: Adds support for import suggestions
1407
+
1408
+ ### Patch Changes
1409
+
1410
+ - Updated dependencies [06e2597]
1411
+ - astro-languageserver@0.4.0