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
{{ message }}
This repository was archived by the owner on Apr 10, 2018. It is now read-only.
Copy file name to clipboardExpand all lines: README.md
+21-17Lines changed: 21 additions & 17 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,12 +8,16 @@ This is some kind of a RestSharp port to PCL.
8
8
9
9
# Changes #
10
10
11
+
## 3.1.1 ##
12
+
13
+
* Fix for [issue #57](https://github.com/FubarDevelopment/restsharp.portable/issues/57) (thanks to zevsst)
14
+
11
15
## 3.1.0 ##
12
16
13
17
This is the final release for version 3. Be aware that version 3.1 contains many **breaking changes**:
14
18
15
-
* The ```IRestRequest.Credentials``` property moved to ```IRestClient.Credentials```
16
-
* Credentials for authenticators are specified using the ```IRestClient.Credentials``` property
19
+
* The `IRestRequest.Credentials` property moved to `IRestClient.Credentials`
20
+
* Credentials for authenticators are specified using the `IRestClient.Credentials` property
17
21
* New core library that contains all interfaces and other generic stuff
18
22
* New interface for proxies
19
23
* New interfaces that are an abstraction of the HttpClient and its request/response messages
@@ -29,7 +33,7 @@ This is the final release for version 3. Be aware that version 3.1 contains many
29
33
30
34
* Async locking fixes (provided by [evnik](https://github.com/evnik))
31
35
* OAuth 1.0 fixes (required for Twitter)
32
-
* UTF-8 encoding for characters like ```\u2764\uFE0F``` (❤️)
36
+
* UTF-8 encoding for characters like `\u2764\uFE0F` (❤️)
33
37
* Use [EscapeUriString](https://msdn.microsoft.com/de-de/library/system.uri.escapeuristring.aspx) compatible URL encoding for query parameters
34
38
35
39
## 3.0.0 beta 09 ##
@@ -38,7 +42,7 @@ Fix endless loop for OAuth2 and failed requests when a refresh token is availabl
38
42
39
43
## 3.0.0 beta 07 ##
40
44
41
-
Remember the OAuth2 refresh token when calling the ```GetCurrentToken``` function with a set
45
+
Remember the OAuth2 refresh token when calling the `GetCurrentToken` function with a set
42
46
refresh token. This should fix the problem with exiring access tokens.
43
47
44
48
## 3.0.0 beta 06 ##
@@ -57,14 +61,14 @@ refresh token. This should fix the problem with exiring access tokens.
57
61
58
62
## 3.0.0 beta 02 ##
59
63
60
-
* Support more headers when using ```HttpWebRequest``` instead of ```HttpClient```
61
-
* New ```UserAgent``` property for ```IRestClient```
62
-
* Activated automatic decompression for ```HttpClient``` and ```HttpWebRequest```
64
+
* Support more headers when using `HttpWebRequest` instead of `HttpClient`
65
+
* New `UserAgent` property for `IRestClient`
66
+
* Activated automatic decompression for `HttpClient` and `HttpWebRequest`
63
67
64
68
## 3.0.0 beta 01 ##
65
69
66
-
* Refactoring to reduce source code duplication by adding a ```RestClientBase``` class
67
-
* Allow customization of ```HttpWebRequest``` creation to allow the usage of client certificates
70
+
* Refactoring to reduce source code duplication by adding a `RestClientBase` class
71
+
* Allow customization of `HttpWebRequest` creation to allow the usage of client certificates
68
72
* Support for RSA-SHA1 for platforms with full .NET Framework support
69
73
* New OAuth 1.0 test that uses [oauthbin.com](http://oauthbin.com)
70
74
@@ -97,15 +101,15 @@ refresh token. This should fix the problem with exiring access tokens.
97
101
## 3.0.0 alpha 3 ##
98
102
99
103
* Revamped authenticator interfaces
100
-
* Provide a way to process the ```Www-Authenticate``` header
101
-
* Make HTTP Basic/Digest authenticators work with ```Proxy-Authenticate``` header
102
-
* Credentials property moved from ```IRestRequest``` to ```IRestClient```
104
+
* Provide a way to process the `Www-Authenticate` header
105
+
* Make HTTP Basic/Digest authenticators work with `Proxy-Authenticate` header
106
+
* Credentials property moved from `IRestRequest` to `IRestClient`
103
107
* The NTLM authenticator is not needed anymore, because the the credentials from
104
-
the ```IRestRequest``` are automatically used in the ```HttpClientHandler``` which handles
108
+
the `IRestRequest` are automatically used in the `HttpClientHandler` which handles
105
109
the Basic/Digest/NTLM authentication automatically
106
110
* All authenticators should query the credentials passed to the authenticator
107
-
* New ```AuthenticationChallengeHandler``` which selects one of the registered
108
-
authenticators in response to a ```Www-Authenticate``` or ```Proxy-Authenticate``` challenge.
111
+
* New `AuthenticationChallengeHandler` which selects one of the registered
112
+
authenticators in response to a `Www-Authenticate` or `Proxy-Authenticate` challenge.
109
113
* New Gitter OAuth 2.0 client
110
114
111
115
## 2.4.5 ##
@@ -133,7 +137,7 @@ refresh token. This should fix the problem with exiring access tokens.
133
137
134
138
## 2.4.0 ##
135
139
136
-
* New ```Timeout``` property to fix issue [#13](https://github.com/FubarDevelopment/restsharp.portable/issues/13) with [CancellationTokenSource.CancelAfter](https://msdn.microsoft.com/de-de/library/hh194678%28v=vs.110%29.aspx)
140
+
* New `Timeout` property to fix issue [#13](https://github.com/FubarDevelopment/restsharp.portable/issues/13) with [CancellationTokenSource.CancelAfter](https://msdn.microsoft.com/de-de/library/hh194678%28v=vs.110%29.aspx)
137
141
138
142
## 2.3.2 ##
139
143
@@ -279,7 +283,7 @@ We use the class with:
279
283
```csharp
280
284
using (varclient=newRestClient(newUri("https://www.bitstamp.net/api/")))
0 commit comments