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