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
2 changes: 1 addition & 1 deletion DevProxy.Abstractions/DevProxy.Abstractions.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<RootNamespace>DevProxy.Abstractions</RootNamespace>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<Version>3.0.0</Version>
<Version>3.0.1</Version>
<IncludeSourceRevisionInInformationalVersion>false</IncludeSourceRevisionInInformationalVersion>
<RestorePackagesWithLockFile>true</RestorePackagesWithLockFile>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
Expand Down
2 changes: 1 addition & 1 deletion DevProxy.Plugins/DevProxy.Plugins.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<Nullable>enable</Nullable>
<EnableDynamicLoading>true</EnableDynamicLoading>
<RunPostBuildEvent>OnOutputUpdated</RunPostBuildEvent>
<Version>3.0.0</Version>
<Version>3.0.1</Version>
<IncludeSourceRevisionInInformationalVersion>false</IncludeSourceRevisionInInformationalVersion>
<RestorePackagesWithLockFile>true</RestorePackagesWithLockFile>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
Expand Down
2 changes: 1 addition & 1 deletion DevProxy.Plugins/Mocking/MockResponsePlugin.cs
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public sealed class MockResponseConfiguration
[JsonIgnore]
public bool NoMocks { get; set; }
[JsonPropertyName("$schema")]
public string Schema { get; set; } = "https://raw.githubusercontent.com/dotnet/dev-proxy/main/schemas/v3.0.0/mockresponseplugin.mocksfile.schema.json";
public string Schema { get; set; } = "https://raw.githubusercontent.com/dotnet/dev-proxy/main/schemas/v3.0.1/mockresponseplugin.mocksfile.schema.json";
}

public class MockResponsePlugin(
Expand Down
2 changes: 1 addition & 1 deletion DevProxy/DevProxy.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<Nullable>enable</Nullable>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<Title>Dev Proxy</Title>
<Version>3.0.0</Version>
<Version>3.0.1</Version>
<Company>.NET Foundation</Company>
<Product>Dev Proxy</Product>
<AssemblyName>devproxy</AssemblyName>
Expand Down
2 changes: 1 addition & 1 deletion DevProxy/config/m365-mocks.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"$schema": "https://raw.githubusercontent.com/dotnet/dev-proxy/main/schemas/v3.0.0/mockresponseplugin.mocksfile.schema.json",
"$schema": "https://raw.githubusercontent.com/dotnet/dev-proxy/main/schemas/v3.0.1/mockresponseplugin.mocksfile.schema.json",
"mocks": [
{
"request": {
Expand Down
18 changes: 9 additions & 9 deletions DevProxy/config/m365.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"$schema": "https://raw.githubusercontent.com/dotnet/dev-proxy/main/schemas/v3.0.0/rc.schema.json",
"$schema": "https://raw.githubusercontent.com/dotnet/dev-proxy/main/schemas/v3.0.1/rc.schema.json",
"plugins": [
{
"name": "DevToolsPlugin",
Expand Down Expand Up @@ -173,11 +173,11 @@
"https://*.sharepoint-df.*/*_vti_bin/*"
],
"mocksPlugin": {
"$schema": "https://raw.githubusercontent.com/dotnet/dev-proxy/main/schemas/v3.0.0/mockresponseplugin.schema.json",
"$schema": "https://raw.githubusercontent.com/dotnet/dev-proxy/main/schemas/v3.0.1/mockresponseplugin.schema.json",
"mocksFile": "m365-mocks.json"
},
"graphRandomErrorsPlugin": {
"$schema": "https://raw.githubusercontent.com/dotnet/dev-proxy/main/schemas/v3.0.0/graphrandomerrorplugin.schema.json",
"$schema": "https://raw.githubusercontent.com/dotnet/dev-proxy/main/schemas/v3.0.1/graphrandomerrorplugin.schema.json",
"allowedErrors": [
429,
500,
Expand All @@ -189,28 +189,28 @@
"rate": 50
},
"executionSummaryPlugin": {
"$schema": "https://raw.githubusercontent.com/dotnet/dev-proxy/main/schemas/v3.0.0/executionsummaryplugin.schema.json",
"$schema": "https://raw.githubusercontent.com/dotnet/dev-proxy/main/schemas/v3.0.1/executionsummaryplugin.schema.json",
"groupBy": "url"
},
"graphMinimalPermissionsPlugin": {
"$schema": "https://raw.githubusercontent.com/dotnet/dev-proxy/main/schemas/v3.0.0/graphminimalpermissionsplugin.schema.json",
"$schema": "https://raw.githubusercontent.com/dotnet/dev-proxy/main/schemas/v3.0.1/graphminimalpermissionsplugin.schema.json",
"type": "delegated"
},
"cachingGuidance": {
"$schema": "https://raw.githubusercontent.com/dotnet/dev-proxy/main/schemas/v3.0.0/cachingguidanceplugin.schema.json",
"$schema": "https://raw.githubusercontent.com/dotnet/dev-proxy/main/schemas/v3.0.1/cachingguidanceplugin.schema.json",
"cacheThresholdSeconds": 5
},
"latencyPlugin": {
"$schema": "https://raw.githubusercontent.com/dotnet/dev-proxy/main/schemas/v3.0.0/latencyplugin.schema.json",
"$schema": "https://raw.githubusercontent.com/dotnet/dev-proxy/main/schemas/v3.0.1/latencyplugin.schema.json",
"minMs": 200,
"maxMs": 10000
},
"devTools": {
"$schema": "https://raw.githubusercontent.com/dotnet/dev-proxy/main/schemas/v3.0.0/devtoolsplugin.schema.json",
"$schema": "https://raw.githubusercontent.com/dotnet/dev-proxy/main/schemas/v3.0.1/devtoolsplugin.schema.json",
"preferredBrowser": "Edge"
},
"rateLimiting": {
"$schema": "https://raw.githubusercontent.com/dotnet/dev-proxy/main/schemas/v3.0.0/ratelimitingplugin.schema.json",
"$schema": "https://raw.githubusercontent.com/dotnet/dev-proxy/main/schemas/v3.0.1/ratelimitingplugin.schema.json",
"costPerRequest": 2,
"rateLimit": 120,
"resetTimeWindowSeconds": 5
Expand Down
2 changes: 1 addition & 1 deletion DevProxy/config/microsoft-graph-rate-limiting.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"$schema": "https://raw.githubusercontent.com/dotnet/dev-proxy/main/schemas/v3.0.0/rc.schema.json",
"$schema": "https://raw.githubusercontent.com/dotnet/dev-proxy/main/schemas/v3.0.1/rc.schema.json",
"plugins": [
{
"name": "RateLimitingPlugin",
Expand Down
6 changes: 3 additions & 3 deletions DevProxy/config/microsoft-graph.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"$schema": "https://raw.githubusercontent.com/dotnet/dev-proxy/main/schemas/v3.0.0/rc.schema.json",
"$schema": "https://raw.githubusercontent.com/dotnet/dev-proxy/main/schemas/v3.0.1/rc.schema.json",
"plugins": [
{
"name": "GraphSelectGuidancePlugin",
Expand Down Expand Up @@ -67,7 +67,7 @@
"https://microsoftgraph.chinacloudapi.cn/beta/*"
],
"graphRandomErrorsPlugin": {
"$schema": "https://raw.githubusercontent.com/dotnet/dev-proxy/main/schemas/v3.0.0/graphrandomerrorplugin.schema.json",
"$schema": "https://raw.githubusercontent.com/dotnet/dev-proxy/main/schemas/v3.0.1/graphrandomerrorplugin.schema.json",
"allowedErrors": [
429,
500,
Expand All @@ -79,7 +79,7 @@
"rate": 50
},
"executionSummaryPlugin": {
"$schema": "https://raw.githubusercontent.com/dotnet/dev-proxy/main/schemas/v3.0.0/executionsummaryplugin.schema.json",
"$schema": "https://raw.githubusercontent.com/dotnet/dev-proxy/main/schemas/v3.0.1/executionsummaryplugin.schema.json",
"groupBy": "url"
},
"labelMode": "text",
Expand Down
2 changes: 1 addition & 1 deletion DevProxy/config/spo-csom-types.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"$schema": "https://raw.githubusercontent.com/dotnet/dev-proxy/main/schemas/v3.0.0/minimalcsompermissions.types.schema.json",
"$schema": "https://raw.githubusercontent.com/dotnet/dev-proxy/main/schemas/v3.0.1/minimalcsompermissions.types.schema.json",
"types": {
"268004ae-ef6b-4e9b-8425-127220d84719": "Microsoft.Online.SharePoint.TenantAdministration.Tenant",
"3747adcd-a3c3-41b9-bfab-4a64dd2f1e0a": "Microsoft.SharePoint.Client.RequestContext"
Expand Down
2 changes: 1 addition & 1 deletion DevProxy/devproxy-errors.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"$schema": "https://raw.githubusercontent.com/dotnet/dev-proxy/main/schemas/v3.0.0/genericrandomerrorplugin.errorsfile.schema.json",
"$schema": "https://raw.githubusercontent.com/dotnet/dev-proxy/main/schemas/v3.0.1/genericrandomerrorplugin.errorsfile.schema.json",
"errors": [
{
"request": {
Expand Down
4 changes: 2 additions & 2 deletions DevProxy/devproxyrc.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"$schema": "https://raw.githubusercontent.com/dotnet/dev-proxy/main/schemas/v3.0.0/rc.schema.json",
"$schema": "https://raw.githubusercontent.com/dotnet/dev-proxy/main/schemas/v3.0.1/rc.schema.json",
"plugins": [
{
"name": "RetryAfterPlugin",
Expand All @@ -17,7 +17,7 @@
"https://jsonplaceholder.typicode.com/*"
],
"genericRandomErrorPlugin": {
"$schema": "https://raw.githubusercontent.com/dotnet/dev-proxy/main/schemas/v3.0.0/genericrandomerrorplugin.schema.json",
"$schema": "https://raw.githubusercontent.com/dotnet/dev-proxy/main/schemas/v3.0.1/genericrandomerrorplugin.schema.json",
"errorsFile": "devproxy-errors.json",
"rate": 50
},
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM ubuntu:26.04

ARG DEVPROXY_VERSION=3.0.0
ARG DEVPROXY_VERSION=3.0.1
ARG USERNAME=devproxy
ENV DEVPROXY_VERSION=${DEVPROXY_VERSION}

Expand Down
2 changes: 1 addition & 1 deletion Dockerfile_beta
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM ubuntu:26.04

ARG DEVPROXY_VERSION=3.0.0
ARG DEVPROXY_VERSION=3.0.1
ARG USERNAME=devproxy
ENV DEVPROXY_VERSION=${DEVPROXY_VERSION}

Expand Down
4 changes: 2 additions & 2 deletions install-beta.iss
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@

#define MyAppName "Dev Proxy Beta"
; for local use only. In production replaced by a command line arg
#define MyAppSetupExeName "dev-proxy-installer-win-x64-3.0.0-beta.1"
#define MyAppVersion "3.0.0-beta.1"
#define MyAppSetupExeName "dev-proxy-installer-win-x64-3.0.1-beta.1"
#define MyAppVersion "3.0.1-beta.1"
#define MyAppPublisher ".NET Foundation"
#define MyAppURL "https://aka.ms/devproxy"
#define DevProxyExecutable "devproxy-beta.exe"
Expand Down
4 changes: 2 additions & 2 deletions install.iss
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@

#define MyAppName "Dev Proxy"
; for local use only. In production replaced by a command line arg
#define MyAppSetupExeName "dev-proxy-installer-win-x64-3.0.0"
#define MyAppVersion "3.0.0"
#define MyAppSetupExeName "dev-proxy-installer-win-x64-3.0.1"
#define MyAppVersion "3.0.1"
#define MyAppPublisher ".NET Foundation"
#define MyAppURL "https://aka.ms/devproxy"
#define DevProxyExecutable "devproxy.exe"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"subscriptionId": {
"type": "string"
},
"workspace": {
"workspaceName": {
"type": "string"
}
},
Expand Down
2 changes: 1 addition & 1 deletion schemas/v0.25.0/apicenteronboardingplugin.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"subscriptionId": {
"type": "string"
},
"workspace": {
"workspaceName": {
"type": "string"
}
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"subscriptionId": {
"type": "string"
},
"workspace": {
"workspaceName": {
"type": "string"
}
},
Expand Down
2 changes: 1 addition & 1 deletion schemas/v0.25.0/mockrequestplugin.mockfile.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
]
},
"body": {
"type": "object"
"type": ["object", "string"]
},
"headers": {
"type": "array",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"subscriptionId": {
"type": "string"
},
"workspace": {
"workspaceName": {
"type": "string"
}
},
Expand Down
2 changes: 1 addition & 1 deletion schemas/v0.26.0/apicenteronboardingplugin.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"subscriptionId": {
"type": "string"
},
"workspace": {
"workspaceName": {
"type": "string"
}
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"subscriptionId": {
"type": "string"
},
"workspace": {
"workspaceName": {
"type": "string"
}
},
Expand Down
2 changes: 1 addition & 1 deletion schemas/v0.26.0/mockrequestplugin.mockfile.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
]
},
"body": {
"type": "object"
"type": ["object", "string"]
},
"headers": {
"type": "array",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"type": "string",
"description": "ID of the Azure subscription where the Azure API Center instance is located."
},
"workspace": {
"workspaceName": {
"type": "string",
"description": "Name of the Azure API Center workspace to use. Default is 'default'.",
"default": "default"
Expand Down
2 changes: 1 addition & 1 deletion schemas/v0.27.0/apicenteronboardingplugin.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"type": "string",
"description": "ID of the Azure subscription where the Azure API Center instance is located."
},
"workspace": {
"workspaceName": {
"type": "string",
"description": "Name of the Azure API Center workspace to use. Default is 'default'."
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"type": "string",
"description": "ID of the Azure subscription where the Azure API Center instance is located."
},
"workspace": {
"workspaceName": {
"type": "string",
"description": "Name of the Azure API Center workspace to use. Default is 'default'."
}
Expand Down
2 changes: 1 addition & 1 deletion schemas/v0.27.0/mockrequestplugin.mockfile.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
"description": "HTTP method to use (default: POST)."
},
"body": {
"type": "object",
"type": ["object", "string"],
"description": "Body of the request (object or string)."
},
"headers": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"type": "string",
"description": "ID of the Azure subscription where the Azure API Center instance is located."
},
"workspace": {
"workspaceName": {
"type": "string",
"description": "Name of the Azure API Center workspace to use. Default is 'default'.",
"default": "default"
Expand Down
2 changes: 1 addition & 1 deletion schemas/v0.28.0/apicenteronboardingplugin.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"type": "string",
"description": "ID of the Azure subscription where the Azure API Center instance is located."
},
"workspace": {
"workspaceName": {
"type": "string",
"description": "Name of the Azure API Center workspace to use. Default is 'default'."
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"type": "string",
"description": "ID of the Azure subscription where the Azure API Center instance is located."
},
"workspace": {
"workspaceName": {
"type": "string",
"description": "Name of the Azure API Center workspace to use. Default is 'default'."
}
Expand Down
2 changes: 1 addition & 1 deletion schemas/v0.28.0/mockrequestplugin.mockfile.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
"description": "HTTP method to use (default: POST)."
},
"body": {
"type": "object",
"type": ["object", "string"],
"description": "Body of the request (object or string)."
},
"headers": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"type": "string",
"description": "ID of the Azure subscription where the Azure API Center instance is located."
},
"workspace": {
"workspaceName": {
"type": "string",
"description": "Name of the Azure API Center workspace to use. Default is 'default'.",
"default": "default"
Expand Down
2 changes: 1 addition & 1 deletion schemas/v0.29.0/apicenteronboardingplugin.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"type": "string",
"description": "ID of the Azure subscription where the Azure API Center instance is located."
},
"workspace": {
"workspaceName": {
"type": "string",
"description": "Name of the Azure API Center workspace to use. Default is 'default'."
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"type": "string",
"description": "ID of the Azure subscription where the Azure API Center instance is located."
},
"workspace": {
"workspaceName": {
"type": "string",
"description": "Name of the Azure API Center workspace to use. Default is 'default'."
}
Expand Down
2 changes: 1 addition & 1 deletion schemas/v0.29.0/mockrequestplugin.mockfile.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
"description": "HTTP method to use (default: POST)."
},
"body": {
"type": "object",
"type": ["object", "string"],
"description": "Body of the request (object or string)."
},
"headers": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"type": "string",
"description": "ID of the Azure subscription where the Azure API Center instance is located."
},
"workspace": {
"workspaceName": {
"type": "string",
"description": "Name of the Azure API Center workspace to use. Default is 'default'.",
"default": "default"
Expand Down
2 changes: 1 addition & 1 deletion schemas/v0.29.1/apicenteronboardingplugin.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"type": "string",
"description": "ID of the Azure subscription where the Azure API Center instance is located."
},
"workspace": {
"workspaceName": {
"type": "string",
"description": "Name of the Azure API Center workspace to use. Default is 'default'."
}
Expand Down
Loading
Loading