Releases: dotnet/HttpRepl
v7.0.0
- Adds support for running HttpRepl on .NET 7
- Removes support for running HttpRepl on .NET Core 3.1, as .NET Core 3.1 is out of support as of December 13, 2022.
- Shared assemblies now target .NET 6 (minimum supported runtime for the tool) instead of .NET Standard 2.0
Available via nuget
To update from your favorite shell, run:
dotnet tool update --global microsoft.dotnet-httprepl --version 7.0.0
v6.0.0
v5.0.2
v5.0.1
Bugfix release including one fix for issues involving console handling:
- FIX: User might experience
ArgumentOutOfRangeException
and/or improper input and cursor handling when running HttpRepl in some virtualized terminals (#443)
Available via nuget
To update from your favorite shell, run:
dotnet tool update --global microsoft.dotnet-HttpRepl --version 5.0.1
v5.0.1-preview.20611.1
This is a preview of a bugfix release for an impactful console handling bug. Please give this build a chance and let us know both if the bug is fixed and if you run into any other cursor handling and input issues that may be related.
- FIX: User might experience
ArgumentOutOfRangeException
and/or improper input and cursor handling when running HttpRepl in some virtualized terminals (#443)
Available via nuget
To update from your favorite shell, run:
dotnet tool update --global microsoft.dotnet-HttpRepl --version 5.0.1-preview.20611.1
v5.0.0
Final release of 5.0.0. No functional changes after the last prerelease build.
- Query of all PRs included since the 3.1 release
- v5.0.0-preview.20559.6 Release Notes
- v5.0.0-preview.20559.3 Release Notes
- v5.0.0-preview.20552.2 Release Notes
- v5.0.0-preview.20527.2 Release Notes
- v5.0.0-preview.20526.6 Release Notes
- v5.0.0-preview.20521.1 Release Notes
- v5.0.0-preview.20513.2 Release Notes
- v5.0.0-preview.20460.1 Release Notes
- v5.0.0-preview.20418.1 Release Notes
- v5.0.0-preview.20559.6 Release Notes
Available via nuget
To update from your favorite shell, run:
dotnet tool update microsoft.dotnet-httprepl --version 5.0.0 --global
If you don't have the tool installed yet, run:
dotnet tool install microsoft.dotnet-httprepl --version 5.0.0 --global
Note that the --version 5.0.0
argument is optional - the latest non-prerelease version will be installed if you don't specify a version.
v5.0.0-preview.20559.6
A quick update that moves us to the final .NET 5 SDK (#428) and updates a few of our dependencies to the latest (#431).
Available via nuget
To update from your favorite shell, run:
dotnet tool update microsoft.dotnet-httprepl --version 5.0.0-preview.20559.6 --global
If you don't have it installed yet and want to try it for the first time before the final release of 5.0, run:
dotnet tool install microsoft.dotnet-httprepl --version 5.0.0-preview.20559.6 --global
v5.0.0-preview.20559.3
This will likely be the final preview release with new features before 5.0 hits.
- NEW: The
--verbose
option on theconnect
command will now display OpenAPI validation information when attempting to process the OpenAPI Description. - CHANGE: Removed the
--response
option from all HTTP Commands. This option was intended to save both the headers and the body of the message to the same file, but it never worked properly. Since there were unanswered questions about how this should be done (what is the proper way to concatenate those two different pieces of data?) and since it had not worked since release, we opted to cut it from the featureset for now (#426)
Available via nuget
v5.0.0-preview.20552.2
- NEW: Added
swagger.addToSearchPaths
andswagger.removeFromSearchPaths
preferences to enable more fine-grained control of the OpenAPI search paths (#360) - CHANGE: Exceptions thrown by the underlying HttpClient when executing HTTP requests used to be displayed as a full error message + stack trace that took up the whole screen. We now handle those errors more appropriately and display just the message if necessary (#304)
Available via nuget