Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

> **Note**: odd version numbers, for example, `0.13.0`, are not included in this changelog. They are used to test the new features and fixes before the final release.

## [1.7.0] - Unreleased
## [1.7.1] - Unreleased

### Changed:

- Snippets: All snippets that reference schemas updated to use `v1.3.0` schema
- Snippets: Added `devproxy-plugin-har-generator` - HarGeneratorPlugin instance
- Snippets: Added `devproxy-plugin-har-generator-config` - HarGeneratorPlugin config section

## [1.6.0] - 2025-10-13

Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,8 @@ See [Dev Proxy MCP Server](https://github.com/dev-proxy-tools/mcp) for more info
| `devproxy-plugin-graph-random-error-config` | GraphRandomErrorPlugin config section |
| `devproxy-plugin-graph-sdk-guidance` | GraphSdkGuidancePlugin instance |
| `devproxy-plugin-graph-select-guidance` | GraphSdkGuidancePlugin instance |
| `devproxy-plugin-har-generator` | HarGeneratorPlugin instance |
| `devproxy-plugin-har-generator-config` | HarGeneratorPlugin config section |
| `devproxy-plugin-http-file-generator` | HttpFileGeneratorPlugin instance |
| `devproxy-plugin-http-file-generator-config` | HttpFileGeneratorPlugin config section |
| `devproxy-plugin-latency` | LatencyPlugin instance |
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "dev-proxy-toolkit",
"displayName": "Dev Proxy Toolkit",
"description": "Makes it easy to create and update Dev Proxy configuration files.",
"version": "1.7.0",
"version": "1.7.1",
"publisher": "garrytrinder",
"engines": {
"vscode": "^1.101.0"
Expand Down
11 changes: 11 additions & 0 deletions src/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,13 @@ export const pluginSnippets: PluginSnippets = {
GraphSelectGuidancePlugin: {
instance: 'devproxy-plugin-graph-select-guidance',
},
HarGeneratorPlugin: {
instance: 'devproxy-plugin-har-generator',
config: {
name: 'devproxy-plugin-har-generator-config',
required: false,
}
},
HttpFileGeneratorPlugin: {
instance: 'devproxy-plugin-http-file-generator',
config: {
Expand Down Expand Up @@ -302,6 +309,10 @@ export const pluginDocs: PluginDocs = {
name: 'Graph Select Guidance Plugin',
url: 'https://learn.microsoft.com/microsoft-cloud/dev/dev-proxy/technical-reference/graphselectguidanceplugin',
},
HarGeneratorPlugin: {
name: 'HAR Generator Plugin',
url: 'https://learn.microsoft.com/microsoft-cloud/dev/dev-proxy/technical-reference/hargeneratorplugin',
},
HttpFileGeneratorPlugin: {
name: 'HTTP File Generator Plugin',
url: 'https://learn.microsoft.com/microsoft-cloud/dev/dev-proxy/technical-reference/httpfilegeneratorplugin',
Expand Down
23 changes: 23 additions & 0 deletions src/snippets/json-snippets.json
Original file line number Diff line number Diff line change
Expand Up @@ -663,6 +663,29 @@
],
"description": "GraphSdkGuidancePlugin instance"
},
"HarGeneratorPlugin": {
"prefix": "devproxy-plugin-har-generator",
"body": [
"{",
"\t\"name\": \"HarGeneratorPlugin\",",
"\t\"enabled\": true,",
"\t\"pluginPath\": \"~appFolder/plugins/DevProxy.Plugins.dll\",",
"\t\"configSection\": \"harGeneratorPlugin\"",
"}"
],
"description": "HarGeneratorPlugin instance"
},
"HarGeneratorPluginConfig": {
"prefix": "devproxy-plugin-har-generator-config",
"body": [
"\"harGeneratorPlugin\": {",
"\t\"\\$schema\": \"https://raw.githubusercontent.com/dotnet/dev-proxy/main/schemas/v1.3.0/hargeneratorplugin.schema.json\",",
"\t\"includeSensitiveInformation\": false,",
"\t\"includeResponse\": true",
"}"
],
"description": "HarGeneratorPlugin config section"
},
"HttpFileGeneratorPlugin": {
"prefix": "devproxy-plugin-http-file-generator",
"body": [
Expand Down