Skip to content

Commit e9f00df

Browse files
committed
Update snippets to use v0.20.0 schemas. Closes #110
Closes #110
1 parent 55f8391 commit e9f00df

File tree

3 files changed

+18
-12
lines changed

3 files changed

+18
-12
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [0.7.0] - 2024-08-28
9+
10+
### Changed:
11+
12+
- Snippets: All snippets that reference schemas updated to use `v0.20.0` schema
13+
814
## [0.6.0] - 2024-07-11
915

1016
### Changed:

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ The Dev Proxy Toolkit extension for Visual Studio Code makes it easy to create a
66

77
> **IMPORTANT**
88
>
9-
> Dev Proxy Toolkit is designed to be used with the latest version of Dev Proxy, v0.19.1. If you are using an earlier build some features may not work as intended.
9+
> Dev Proxy Toolkit is designed to be used with the latest version of Dev Proxy, 0.20.0. If you are using an earlier build some features may not work as intended.
1010
>
1111
1212
## Features

src/snippets.json

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"prefix": "devproxy-config-file",
44
"body": [
55
"{",
6-
"\t\"\\$schema\": \"https://raw.githubusercontent.com/microsoft/dev-proxy/main/schemas/v0.19.1/rc.schema.json\",",
6+
"\t\"\\$schema\": \"https://raw.githubusercontent.com/microsoft/dev-proxy/main/schemas/0.20.0/rc.schema.json\",",
77
"\t\"plugins\": [",
88
"\t\t$1",
99
"\t],",
@@ -17,15 +17,15 @@
1717
"ConfigFileSchema": {
1818
"prefix": "devproxy-config-file-schema",
1919
"body": [
20-
"\"\\$schema\": \"https://raw.githubusercontent.com/microsoft/dev-proxy/main/schemas/v0.19.1/rc.schema.json\","
20+
"\"\\$schema\": \"https://raw.githubusercontent.com/microsoft/dev-proxy/main/schemas/0.20.0/rc.schema.json\","
2121
],
2222
"description": "Dev Proxy config file schema"
2323
},
2424
"MocksFile": {
2525
"prefix": "devproxy-mocks-file",
2626
"body": [
2727
"{",
28-
"\t\"\\$schema\": \"https://raw.githubusercontent.com/microsoft/dev-proxy/main/schemas/v0.19.1/mockresponseplugin.schema.json\",",
28+
"\t\"\\$schema\": \"https://raw.githubusercontent.com/microsoft/dev-proxy/main/schemas/0.20.0/mockresponseplugin.schema.json\",",
2929
"\t\"mocks\": [",
3030
"\t\t$1",
3131
"\t]",
@@ -36,7 +36,7 @@
3636
"MocksFileSchema": {
3737
"prefix": "devproxy-mocks-file-schema",
3838
"body": [
39-
"\"\\$schema\": \"https://raw.githubusercontent.com/microsoft/dev-proxy/main/schemas/v0.19.1/mockresponseplugin.schema.json\","
39+
"\"\\$schema\": \"https://raw.githubusercontent.com/microsoft/dev-proxy/main/schemas/0.20.0/mockresponseplugin.schema.json\","
4040
],
4141
"description": "Dev Proxy mocks file schema"
4242
},
@@ -212,7 +212,7 @@
212212
"prefix": "devproxy-plugin-crud-api-file",
213213
"body": [
214214
"{",
215-
"\t\"\\$schema\": \"https://raw.githubusercontent.com/microsoft/dev-proxy/main/schemas/v0.19.1/crudapiplugin.schema.json\",",
215+
"\t\"\\$schema\": \"https://raw.githubusercontent.com/microsoft/dev-proxy/main/schemas/0.20.0/crudapiplugin.schema.json\",",
216216
"\t\"actions\": [",
217217
"\t\t$1",
218218
"\t],",
@@ -225,7 +225,7 @@
225225
"CrudApiPluginFileSchema": {
226226
"prefix": "devproxy-plugin-crud-api-file-schema",
227227
"body": [
228-
"\"\\$schema\": \"https://raw.githubusercontent.com/microsoft/dev-proxy/main/schemas/v0.19.1/crudapiplugin.schema.json\","
228+
"\"\\$schema\": \"https://raw.githubusercontent.com/microsoft/dev-proxy/main/schemas/0.20.0/crudapiplugin.schema.json\","
229229
],
230230
"description": "CrudApiPlugin API file schema"
231231
},
@@ -329,7 +329,7 @@
329329
"prefix": "devproxy-plugin-generic-random-error-file",
330330
"body": [
331331
"{",
332-
"\t\"\\$schema\": \"https://raw.githubusercontent.com/microsoft/dev-proxy/main/schemas/v0.19.1/genericrandomerrorplugin.schema.json\",",
332+
"\t\"\\$schema\": \"https://raw.githubusercontent.com/microsoft/dev-proxy/main/schemas/0.20.0/genericrandomerrorplugin.schema.json\",",
333333
"\t\"responses\": [",
334334
"\t\t$1",
335335
"\t]",
@@ -340,7 +340,7 @@
340340
"GenericRandomErrorPluginFileSchema": {
341341
"prefix": "devproxy-plugin-generic-random-error-file-schema",
342342
"body": [
343-
"\"\\$schema\": \"https://raw.githubusercontent.com/microsoft/dev-proxy/main/schemas/v0.19.1/genericrandomerrorplugin.schema.json\","
343+
"\"\\$schema\": \"https://raw.githubusercontent.com/microsoft/dev-proxy/main/schemas/0.20.0/genericrandomerrorplugin.schema.json\","
344344
],
345345
"description": "GenericRandomErrorPlugin errors file schema"
346346
},
@@ -607,7 +607,7 @@
607607
"MockResponsePluginFileSchema": {
608608
"prefix": "devproxy-plugin-mock-response-schema",
609609
"body": [
610-
"\"\\$schema\": \"https://raw.githubusercontent.com/microsoft/dev-proxy/main/schemas/v0.19.1/mockresponseplugin.schema.json\","
610+
"\"\\$schema\": \"https://raw.githubusercontent.com/microsoft/dev-proxy/main/schemas/0.20.0/mockresponseplugin.schema.json\","
611611
],
612612
"description": "MockResponsePlugin schema"
613613
},
@@ -692,7 +692,7 @@
692692
"prefix": "devproxy-plugin-rate-limiting-file",
693693
"body": [
694694
"{",
695-
"\t\"\\$schema\": \"https://raw.githubusercontent.com/microsoft/dev-proxy/main/schemas/v0.19.1/ratelimitingplugin.schema.json\",",
695+
"\t\"\\$schema\": \"https://raw.githubusercontent.com/microsoft/dev-proxy/main/schemas/0.20.0/ratelimitingplugin.schema.json\",",
696696
"\t\"body\": {",
697697
"\t\t$1",
698698
"\t},",
@@ -707,7 +707,7 @@
707707
"RateLimitingFileSchema": {
708708
"prefix": "devproxy-plugin-rate-limiting-file-schema",
709709
"body": [
710-
"\"\\$schema\": \"https://raw.githubusercontent.com/microsoft/dev-proxy/main/schemas/v0.19.1/ratelimitingplugin.schema.json\","
710+
"\"\\$schema\": \"https://raw.githubusercontent.com/microsoft/dev-proxy/main/schemas/0.20.0/ratelimitingplugin.schema.json\","
711711
],
712712
"description": "Dev Proxy rate limiting file schema"
713713
},

0 commit comments

Comments
 (0)