This repository was archived by the owner on Jul 31, 2022. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +33
-32
lines changed Expand file tree Collapse file tree 3 files changed +33
-32
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1
1
# Change Log
2
2
3
+ ## 0.3.43
4
+
5
+ ### Patch Changes
6
+
7
+ - [ #391 ] ( https://github.com/graphql/vscode-graphql/pull/391 ) [ ` 6be5593 ` ] ( https://github.com/graphql/vscode-graphql/commit/6be5593a45a4629f3438f59223ecb04949cb48d2 ) Thanks [ @acao ] ( https://github.com/acao ) ! - LSP upgrades:
8
+
9
+ - bugfix for ` insertText ` & completion on invalid list types
10
+ - add support for template strings and tags with replacement expressions, so strings like these should work now:
11
+
12
+ ``` ts
13
+ const = /* GraphiQL*/
14
+ `
15
+ ${myFragments }
16
+ query MyQuery {
17
+ something
18
+ ${anotherString }
19
+ }
20
+
21
+ `
22
+ ```
23
+
24
+ ``` ts
25
+ const = gql `
26
+ ${myFragments }
27
+ query MyQuery {
28
+ something
29
+ ${anotherString }
30
+ }
31
+
32
+ `
33
+ ```
34
+
3
35
All notable changes to the "vscode-graphql" extension will be manually documented in this file.
4
36
5
37
Check [ Keep a Changelog] ( http://keepachangelog.com/ ) for recommendations on how to structure this file.
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " vscode-graphql" ,
3
- "version" : " 0.3.42 " ,
3
+ "version" : " 0.3.43 " ,
4
4
"preview" : true ,
5
5
"private" : true ,
6
6
"license" : " MIT" ,
You can’t perform that action at this time.
0 commit comments