From dba29e4b0f15c4fb2dba0a4c523859154e5b92d8 Mon Sep 17 00:00:00 2001 From: Bas Dijkstra Date: Tue, 19 Nov 2024 17:00:46 +0100 Subject: [PATCH] Prepare for RestAssured.Net 4.5.0 release --- CHANGELOG.md | 16 ++++++++++++++++ RestAssured.Net/RestAssured.Net.csproj | 2 +- 2 files changed, 17 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ad01e79..2a1591c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,22 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Unreleased +Nothing yet. + +### [4.5.0] - 2024-11-19 + +#### Added + +- Added support for .NET 9 ([#124](https://github.com/basdijkstra/rest-assured-net/issues/124)) + +#### Fixed + +- Fixed issue where `ResponseLogLevel` defined in static config could not be overwritten at individual test level ([#128](https://github.com/basdijkstra/rest-assured-net/issues/128) by [@sqh-jack-starkey](https://github.com/sqh-jack-starkey)) + +#### Deprecated + +- Deprecated `Log(RequestLogLevel requestLogLevel)` and `Log(ResponseLogLevel responseLogLevel)` in favour of `Log(LogConfiguration logConfiguration)` + #### Updated - Version bumps for HtmlAgilityPack (main project) diff --git a/RestAssured.Net/RestAssured.Net.csproj b/RestAssured.Net/RestAssured.Net.csproj index 636139d..2c8a326 100644 --- a/RestAssured.Net/RestAssured.Net.csproj +++ b/RestAssured.Net/RestAssured.Net.csproj @@ -5,7 +5,7 @@ disable enable True - 4.4.0 + 4.5.0 Bas Dijkstra On Test Automation C# port of the popular REST Assured library for writing tests for HTTP APIs.