File tree Expand file tree Collapse file tree 4 files changed +66
-0
lines changed Expand file tree Collapse file tree 4 files changed +66
-0
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
8
8
## [ 0.4.0] - 2024-05-30
9
9
10
+ ### Added:
11
+
12
+ - Snippet: ` devproxy-reporter-json ` - JsonReporter instance
13
+ - Snippet: ` devproxy-reporter-markdown ` - MarkdownReporter instance
14
+ - Snippet: ` devproxy-reporter-plain-text ` - PlainTextReporter instance
15
+ - CodeLens: ` JsonReporter `
16
+ - CodeLens: ` MarkdownReporter `
17
+ - CodeLens: ` PlainTextReporter `
18
+
10
19
### Changed:
11
20
12
21
- Notification: Support for installing Dev Proxy via package manager when not installed
Original file line number Diff line number Diff line change @@ -104,3 +104,6 @@ The following sections describe the features that the extension contributes to V
104
104
| ` devproxy-plugin-rate-limiting-file ` | Dev Proxy rate limiting file |
105
105
| ` devproxy-plugin-rate-limiting-file-schema ` | Dev Proxy rate limiting file schema |
106
106
| ` devproxy-plugin-retry-after ` | RetryAfterPlugin instance |
107
+ | ` devproxy-reporter-json ` | JsonReporter instance |
108
+ | ` devproxy-reporter-markdown ` | MarkdownReporter instance |
109
+ | ` devproxy-reporter-plain-text ` | PlainTextReporter instance |
Original file line number Diff line number Diff line change @@ -136,6 +136,15 @@ export const pluginSnippets: PluginSnippets = {
136
136
RetryAfterPlugin : {
137
137
instance : 'devproxy-plugin-retry-after' ,
138
138
} ,
139
+ JsonReporter : {
140
+ instance : 'devproxy-reporter-json' ,
141
+ } ,
142
+ MarkdownReporter : {
143
+ instance : 'devproxy-reporter-markdown'
144
+ } ,
145
+ PlainTextReporter : {
146
+ instance : 'devproxy-reporter-plain-text'
147
+ } ,
139
148
} ;
140
149
141
150
export const pluginDocs : PluginDocs = {
@@ -238,5 +247,17 @@ export const pluginDocs: PluginDocs = {
238
247
RetryAfterPlugin : {
239
248
name : 'Retry After Plugin' ,
240
249
url : 'https://learn.microsoft.com/microsoft-cloud/dev/dev-proxy/technical-reference/retryafterplugin' ,
250
+ } ,
251
+ JsonReporter : {
252
+ name : 'JSON Reporter' ,
253
+ url : 'https://learn.microsoft.com/microsoft-cloud/dev/dev-proxy/technical-reference/jsonreporter' ,
254
+ } ,
255
+ MarkdownReporter : {
256
+ name : 'Markdown Reporter' ,
257
+ url : 'https://learn.microsoft.com/microsoft-cloud/dev/dev-proxy/technical-reference/markdownreporter' ,
258
+ } ,
259
+ PlainTextReporter : {
260
+ name : 'Plain Text Reporter' ,
261
+ url : 'https://learn.microsoft.com/microsoft-cloud/dev/dev-proxy/technical-reference/plaintextreporter' ,
241
262
}
242
263
} ;
Original file line number Diff line number Diff line change 676
676
" }"
677
677
],
678
678
"description" : " RetryAfterPlugin instance"
679
+ },
680
+ "JsonReporter" : {
681
+ "prefix" : " devproxy-reporter-json" ,
682
+ "body" : [
683
+ " {" ,
684
+ " \t\" name\" : \" JsonReporter\" ," ,
685
+ " \t\" enabled\" : true," ,
686
+ " \t\" pluginPath\" : \" ~appFolder/plugins/dev-proxy-plugins.dll\" " ,
687
+ " }"
688
+ ],
689
+ "description" : " JsonReporter instance"
690
+ },
691
+ "MarkdownReporter" : {
692
+ "prefix" : " devproxy-reporter-markdown" ,
693
+ "body" : [
694
+ " {" ,
695
+ " \t\" name\" : \" MarkdownReporter\" ," ,
696
+ " \t\" enabled\" : true," ,
697
+ " \t\" pluginPath\" : \" ~appFolder/plugins/dev-proxy-plugins.dll\" " ,
698
+ " }"
699
+ ],
700
+ "description" : " MarkdownReporter instance"
701
+ },
702
+ "PlainTextReporter" : {
703
+ "prefix" : " devproxy-reporter-plain-text" ,
704
+ "body" : [
705
+ " {" ,
706
+ " \t\" name\" : \" PlainTextReporter\" ," ,
707
+ " \t\" enabled\" : true," ,
708
+ " \t\" pluginPath\" : \" ~appFolder/plugins/dev-proxy-plugins.dll\" " ,
709
+ " }"
710
+ ],
711
+ "description" : " PlainTextReporter instance"
679
712
}
680
713
}
You can’t perform that action at this time.
0 commit comments