Skip to content

Commit 7f514fa

Browse files
committed
Update snippets to use v0.19.1 schemas. Closes #109
1 parent 2594cd5 commit 7f514fa

File tree

3 files changed

+19
-13
lines changed

3 files changed

+19
-13
lines changed

CHANGELOG.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,15 @@ 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.6.0] - 2024-07-11
9+
10+
### Changed:
11+
12+
- Snippets: All snippets that reference schemas updated to use `v0.19.1` schema
13+
814
## [0.5.0] - 2024-06-27
915

10-
### Added:
16+
### Added:
1117

1218
- Snippets: `devproxy-plugin-api-center-minimal-permissions` - ApiCenterMinimalPermissionsPlugin instance
1319
- Snippets: `devproxy-plugin-api-center-minimal-permissions-config` - ApiCenterMinimalPermissionsPlugin config section

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.0. 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, v0.19.1. 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.0/rc.schema.json\",",
6+
"\t\"\\$schema\": \"https://raw.githubusercontent.com/microsoft/dev-proxy/main/schemas/v0.19.1/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.0/rc.schema.json\","
20+
"\"\\$schema\": \"https://raw.githubusercontent.com/microsoft/dev-proxy/main/schemas/v0.19.1/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.0/mockresponseplugin.schema.json\",",
28+
"\t\"\\$schema\": \"https://raw.githubusercontent.com/microsoft/dev-proxy/main/schemas/v0.19.1/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.0/mockresponseplugin.schema.json\","
39+
"\"\\$schema\": \"https://raw.githubusercontent.com/microsoft/dev-proxy/main/schemas/v0.19.1/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.0/crudapiplugin.schema.json\",",
215+
"\t\"\\$schema\": \"https://raw.githubusercontent.com/microsoft/dev-proxy/main/schemas/v0.19.1/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.0/crudapiplugin.schema.json\","
228+
"\"\\$schema\": \"https://raw.githubusercontent.com/microsoft/dev-proxy/main/schemas/v0.19.1/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.0/genericrandomerrorplugin.schema.json\",",
332+
"\t\"\\$schema\": \"https://raw.githubusercontent.com/microsoft/dev-proxy/main/schemas/v0.19.1/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.0/genericrandomerrorplugin.schema.json\","
343+
"\"\\$schema\": \"https://raw.githubusercontent.com/microsoft/dev-proxy/main/schemas/v0.19.1/genericrandomerrorplugin.schema.json\","
344344
],
345345
"description": "GenericRandomErrorPlugin errors file schema"
346346
},
@@ -608,7 +608,7 @@
608608
"MockResponsePluginFileSchema": {
609609
"prefix": "devproxy-plugin-mock-response-schema",
610610
"body": [
611-
"\"\\$schema\": \"https://raw.githubusercontent.com/microsoft/dev-proxy/main/schemas/v0.19.0/mockresponseplugin.schema.json\","
611+
"\"\\$schema\": \"https://raw.githubusercontent.com/microsoft/dev-proxy/main/schemas/v0.19.1/mockresponseplugin.schema.json\","
612612
],
613613
"description": "MockResponsePlugin schema"
614614
},
@@ -693,7 +693,7 @@
693693
"prefix": "devproxy-plugin-rate-limiting-file",
694694
"body": [
695695
"{",
696-
"\t\"\\$schema\": \"https://raw.githubusercontent.com/microsoft/dev-proxy/main/schemas/v0.19.0/ratelimitingplugin.schema.json\",",
696+
"\t\"\\$schema\": \"https://raw.githubusercontent.com/microsoft/dev-proxy/main/schemas/v0.19.1/ratelimitingplugin.schema.json\",",
697697
"\t\"body\": {",
698698
"\t\t$1",
699699
"\t},",
@@ -708,7 +708,7 @@
708708
"RateLimitingFileSchema": {
709709
"prefix": "devproxy-plugin-rate-limiting-file-schema",
710710
"body": [
711-
"\"\\$schema\": \"https://raw.githubusercontent.com/microsoft/dev-proxy/main/schemas/v0.19.0/ratelimitingplugin.schema.json\","
711+
"\"\\$schema\": \"https://raw.githubusercontent.com/microsoft/dev-proxy/main/schemas/v0.19.1/ratelimitingplugin.schema.json\","
712712
],
713713
"description": "Dev Proxy rate limiting file schema"
714714
},

0 commit comments

Comments
 (0)