Skip to content

Commit 3f0a359

Browse files
authored
Update snippet schemas to 0.19.0. Closes #94 (#95)
1 parent e4575c2 commit 3f0a359

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.5.0] - 2024-06-27
9+
10+
### Changed:
11+
12+
- Snippets: All snippets that reference schemas updated to use `v0.19.0` schema
13+
814
## [0.4.0] - 2024-05-30
915

1016
### Added:

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "dev-proxy-toolkit",
33
"displayName": "Dev Proxy Toolkit",
44
"description": "Makes it easy to create and update Dev Proxy configuration files.",
5-
"version": "0.4.0",
5+
"version": "0.5.0",
66
"publisher": "garrytrinder",
77
"engines": {
88
"vscode": "^1.85.0"

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.18.0/rc.schema.json\",",
6+
"\t\"\\$schema\": \"https://raw.githubusercontent.com/microsoft/dev-proxy/main/schemas/v0.19.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.18.0/rc.schema.json\","
20+
"\"\\$schema\": \"https://raw.githubusercontent.com/microsoft/dev-proxy/main/schemas/v0.19.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.18.0/mockresponseplugin.schema.json\",",
28+
"\t\"\\$schema\": \"https://raw.githubusercontent.com/microsoft/dev-proxy/main/schemas/v0.19.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.18.0/mockresponseplugin.schema.json\","
39+
"\"\\$schema\": \"https://raw.githubusercontent.com/microsoft/dev-proxy/main/schemas/v0.19.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.18.0/crudapiplugin.schema.json\",",
191+
"\t\"\\$schema\": \"https://raw.githubusercontent.com/microsoft/dev-proxy/main/schemas/v0.19.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.18.0/crudapiplugin.schema.json\","
204+
"\"\\$schema\": \"https://raw.githubusercontent.com/microsoft/dev-proxy/main/schemas/v0.19.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.18.0/genericrandomerrorplugin.schema.json\",",
308+
"\t\"\\$schema\": \"https://raw.githubusercontent.com/microsoft/dev-proxy/main/schemas/v0.19.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.18.0/genericrandomerrorplugin.schema.json\","
319+
"\"\\$schema\": \"https://raw.githubusercontent.com/microsoft/dev-proxy/main/schemas/v0.19.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.18.0/mockresponseplugin.schema.json\","
576+
"\"\\$schema\": \"https://raw.githubusercontent.com/microsoft/dev-proxy/main/schemas/v0.19.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.18.0/ratelimitingplugin.schema.json\",",
650+
"\t\"\\$schema\": \"https://raw.githubusercontent.com/microsoft/dev-proxy/main/schemas/v0.19.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.18.0/ratelimitingplugin.schema.json\","
665+
"\"\\$schema\": \"https://raw.githubusercontent.com/microsoft/dev-proxy/main/schemas/v0.19.0/ratelimitingplugin.schema.json\","
666666
],
667667
"description": "Dev Proxy rate limiting file schema"
668668
},

0 commit comments

Comments
 (0)