You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<Description>A modern async HTTP client for REST APIs. Its fluent interface lets you send an HTTP request and parse the response in one go.</Description>
Copy file name to clipboardExpand all lines: RELEASE-NOTES.md
+17-16Lines changed: 17 additions & 16 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,8 @@
1
1
# Release notes
2
-
## Upcoming release
3
-
* Added .NET 5.0+ as a target framework.
4
-
_.NET 5.0+ was already supported, this just makes that clearer._
2
+
## 4.2.0
3
+
Released 07 October 2022.
4
+
5
+
* Added .NET 5.0+ as a target framework. (It was already supported, this just makes that clearer.)
5
6
* Added constructor which takes an `HttpClient` without a base URI (thanks to TimothyMakkison!).
6
7
* Added fluent `request.WithFilter` and `WithoutFilter` methods (thanks to Jericho!).
7
8
* Fixed `resource` parameters for methods like `GetAsync` marked non-nullable.
@@ -14,13 +15,13 @@ Released 22 June 2022.
14
15
* Updated to Json.Net 13.0.1.
15
16
* Fixed IntelliSense docs for `With`/`SetOptions` (thanks to Jericho!).
16
17
17
-
## 4.1
18
+
## 4.1.0
18
19
Released 11 March 2021.
19
20
20
21
* Added support for [chained retry policies](README.md#chained-retry-policies) (thanks to Jericho!).
21
22
* Fixed `WithBody(null)` no longer allowed in 4.0.
22
23
23
-
## 4.0
24
+
## 4.0.0
24
25
Released 13 May 2020.
25
26
26
27
* Added nullable reference type annotations.
@@ -48,7 +49,7 @@ Released 19 July 2019.
48
49
*`bodyBuilder.FormUrlEncoded` now has an overload for dictionary input.
49
50
* Fixed form-URL-encoded body helper enforcing URL length limits.
50
51
51
-
## 3.3
52
+
## 3.3.0
52
53
Released 27 April 2019.
53
54
54
55
* Added support for reading responses into `JToken`, `JObject`, `JArray`, or `dynamic`.
@@ -57,7 +58,7 @@ Released 27 April 2019.
57
58
* Fixed default web proxy not being used.
58
59
* Updated dependencies.
59
60
60
-
## 3.2
61
+
## 3.2.0
61
62
Released 18 April 2018.
62
63
63
64
* Added options to finetune behavior (see `client.SetOptions` and `request.WithOptions`).
@@ -75,7 +76,7 @@ Released 18 April 2018.
75
76
**Possible impacting changes:**
76
77
* The base URL is no longer truncated in some cases. For example, a base URL `https://example.org/index.php` with resource `api` now resolves to `https://example.org/index.php/api` instead of `https://example.org/api`.
77
78
78
-
## 3.1
79
+
## 3.1.0
79
80
Released 19 September 2017.
80
81
81
82
* Added option to set default behaviour for all requests.
@@ -87,7 +88,7 @@ Released 19 September 2017.
87
88
* Fixed `IRetryConfig.MaxRetries` counting the initial request as a retry.
88
89
<small>_For example, `maxRetries: 1` never retried. This value now sets the maximum number of retries after the initial request.</small>_
89
90
90
-
## 3.0
91
+
## 3.0.0
91
92
Released 08 February 2017.
92
93
93
94
* New features:
@@ -112,20 +113,20 @@ Released 08 February 2017.
112
113
* Fixed unintuitive behaviour when the base URL doesn't end in a slash.
113
114
* Relicensed from CC-BY 3.0 to more permissive MIT license.
114
115
115
-
## 2.3
116
+
## 2.3.0
116
117
Released 12 December 2016.
117
118
118
119
* Migrated to .NET Standard 1.3 + .NET Core to improve crossplatform support.
119
120
120
-
## 2.2
121
+
## 2.2.0
121
122
Released 30 June 2016.
122
123
123
124
* Updated to latest version of Json.NET.
124
125
* Merged formatters library into client.
125
126
* Prepared for migration to .NET Core.
126
127
127
128
128
-
## 2.1
129
+
## 2.1.0
129
130
Released 08 May 2016.
130
131
131
132
* Migrated to PCL for cross-platform compatibility.
@@ -135,7 +136,7 @@ Released 08 May 2016.
135
136
* Deprecated `JsonNetFormatter`.
136
137
_(The underlying HttpClient now uses Json.NET by default.)_
137
138
138
-
## 2.0
139
+
## 2.0.0
139
140
Released 28 April 2016.
140
141
141
142
* Replace `IFactory` with a new extensibility model using `IHttpFilter`.
@@ -150,19 +151,19 @@ Released 28 October 2015.
150
151
151
152
* The client is now `IDisposable`.
152
153
153
-
## 1.2
154
+
## 1.2.0
154
155
Released 30 October 2013.
155
156
156
157
* Updated to latest versions of HttpClient and Json.NET.
157
158
158
-
## 1.1
159
+
## 1.1.0
159
160
Released 28 August 2013.
160
161
161
162
* Added request cloning to support use cases like batch queries.
0 commit comments