Skip to content

Commit 9b23f8c

Browse files
committed
Update snippet schemas to v0.18.0. Closes #87
Closes #87
1 parent b991bd4 commit 9b23f8c

File tree

2 files changed

+12
-11
lines changed

2 files changed

+12
-11
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1010
### Changed:
1111

1212
- Notification: Support for installing Dev Proxy via package manager when not installed
13+
- Snippets: All snippets that reference schemas updated to use `v0.18.0` schema
1314

1415
## [0.3.1] - 2024-05-22
1516

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.17.1/rc.schema.json\",",
6+
"\t\"\\$schema\": \"https://raw.githubusercontent.com/microsoft/dev-proxy/main/schemas/v0.18.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.17.1/rc.schema.json\","
20+
"\"\\$schema\": \"https://raw.githubusercontent.com/microsoft/dev-proxy/main/schemas/v0.18.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.17.1/mockresponseplugin.schema.json\",",
28+
"\t\"\\$schema\": \"https://raw.githubusercontent.com/microsoft/dev-proxy/main/schemas/v0.18.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.17.1/mockresponseplugin.schema.json\","
39+
"\"\\$schema\": \"https://raw.githubusercontent.com/microsoft/dev-proxy/main/schemas/v0.18.0/mockresponseplugin.schema.json\","
4040
],
4141
"description": "Dev Proxy mocks file schema"
4242
},
@@ -188,7 +188,7 @@
188188
"prefix": "devproxy-plugin-crud-api-file",
189189
"body": [
190190
"{",
191-
"\t\"\\$schema\": \"https://raw.githubusercontent.com/microsoft/dev-proxy/main/schemas/v0.17.1/crudapiplugin.schema.json\",",
191+
"\t\"\\$schema\": \"https://raw.githubusercontent.com/microsoft/dev-proxy/main/schemas/v0.18.0/crudapiplugin.schema.json\",",
192192
"\t\"actions\": [",
193193
"\t\t$1",
194194
"\t],",
@@ -201,7 +201,7 @@
201201
"CrudApiPluginFileSchema": {
202202
"prefix": "devproxy-plugin-crud-api-file-schema",
203203
"body": [
204-
"\"\\$schema\": \"https://raw.githubusercontent.com/microsoft/dev-proxy/main/schemas/v0.17.1/crudapiplugin.schema.json\","
204+
"\"\\$schema\": \"https://raw.githubusercontent.com/microsoft/dev-proxy/main/schemas/v0.18.0/crudapiplugin.schema.json\","
205205
],
206206
"description": "CrudApiPlugin API file schema"
207207
},
@@ -305,7 +305,7 @@
305305
"prefix": "devproxy-plugin-generic-random-error-file",
306306
"body": [
307307
"{",
308-
"\t\"\\$schema\": \"https://raw.githubusercontent.com/microsoft/dev-proxy/main/schemas/v0.17.1/genericrandomerrorplugin.schema.json\",",
308+
"\t\"\\$schema\": \"https://raw.githubusercontent.com/microsoft/dev-proxy/main/schemas/v0.18.0/genericrandomerrorplugin.schema.json\",",
309309
"\t\"responses\": [",
310310
"\t\t$1",
311311
"\t]",
@@ -316,7 +316,7 @@
316316
"GenericRandomErrorPluginFileSchema": {
317317
"prefix": "devproxy-plugin-generic-random-error-file-schema",
318318
"body": [
319-
"\"\\$schema\": \"https://raw.githubusercontent.com/microsoft/dev-proxy/main/schemas/v0.17.1/genericrandomerrorplugin.schema.json\","
319+
"\"\\$schema\": \"https://raw.githubusercontent.com/microsoft/dev-proxy/main/schemas/v0.18.0/genericrandomerrorplugin.schema.json\","
320320
],
321321
"description": "GenericRandomErrorPlugin errors file schema"
322322
},
@@ -573,7 +573,7 @@
573573
"MockResponsePluginFileSchema": {
574574
"prefix": "devproxy-plugin-mock-response-schema",
575575
"body": [
576-
"\"\\$schema\": \"https://raw.githubusercontent.com/microsoft/dev-proxy/main/schemas/v0.17.1/mockresponseplugin.schema.json\","
576+
"\"\\$schema\": \"https://raw.githubusercontent.com/microsoft/dev-proxy/main/schemas/v0.18.0/mockresponseplugin.schema.json\","
577577
],
578578
"description": "MockResponsePlugin schema"
579579
},
@@ -647,7 +647,7 @@
647647
"prefix": "devproxy-plugin-rate-limiting-file",
648648
"body": [
649649
"{",
650-
"\t\"\\$schema\": \"https://raw.githubusercontent.com/microsoft/dev-proxy/main/schemas/v0.17.1/ratelimitingplugin.schema.json\",",
650+
"\t\"\\$schema\": \"https://raw.githubusercontent.com/microsoft/dev-proxy/main/schemas/v0.18.0/ratelimitingplugin.schema.json\",",
651651
"\t\"body\": {",
652652
"\t\t$1",
653653
"\t},",
@@ -662,7 +662,7 @@
662662
"RateLimitingFileSchema": {
663663
"prefix": "devproxy-plugin-rate-limiting-file-schema",
664664
"body": [
665-
"\"\\$schema\": \"https://raw.githubusercontent.com/microsoft/dev-proxy/main/schemas/v0.17.1/ratelimitingplugin.schema.json\","
665+
"\"\\$schema\": \"https://raw.githubusercontent.com/microsoft/dev-proxy/main/schemas/v0.18.0/ratelimitingplugin.schema.json\","
666666
],
667667
"description": "Dev Proxy rate limiting file schema"
668668
},

0 commit comments

Comments
 (0)