Fixed the exception when Encoding is set to null. Wasn't a bug but the exception was popping up in the debugger
IList properties marked with [SerializeAs(Content = true)] attribute can be serialized as parent's XML tag content (thanks @partyz0ne)
Better handling for the case a unicode character gets between chunks (thanks @stukalin)
106.6
Fixed some new platform unsupported exceptions
Fixed OAuth regression issues
Moved serialization to the client
Added UseSerializer to IRestClient to specify the client-level (de)serializer
Added UseDotNetXmlSerializer extension to IRestClient
106.5
Wrapped proxy discovery in try-catch for the platform unsupported exception
Fixed DateTime deserialization with millisecond UTC conflict
Fixed HttpMethod is not overridden in RestClient.Sync.Execute(IRestRequest request, Method httpMethod)
Split ISerializer to IJsonSerializer and IXmlSerializer to avoid the namespace confusion
Fixed double escape bug in SimpleJson
106.4.1
Fixed the wrong HTTP method used in Post extension method
Custom content type for multipart requests
106.4.0
Added the XML documentation file to the NuGet package
Fixed the issue with AddBody overrides the XML namespace with an empty string
Fixed the issue when combining query parameters and JSON body caused an incorrect content type
Marked MethodTaskAsync<T> extensions as obsolete (where Method is Get, Post, etc)
Added new extensions for MethodAsync<T> (where Method is the same as above) that will return the result or throw an exception. Obsolete methods still don't throw and return an empty instance.
You can now add query string parameters without encoding them
Fixed the issue with query string parameters in combination with OAuth1
Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebase will rebase this PR
@dependabot recreate will recreate this PR, overwriting any edits that have been made to it
@dependabot merge will merge this PR after your CI passes on it
@dependabot squash and merge will squash and merge this PR after your CI passes on it
@dependabot cancel merge will cancel a previously requested merge and block automerging
@dependabot reopen will reopen this PR if it is closed
@dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
@dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
@dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
@dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
@dependabot use these labels will set the current labels as the default for future PRs for this repo and language
@dependabot use these reviewers will set the current reviewers as the default for future PRs for this repo and language
@dependabot use these assignees will set the current assignees as the default for future PRs for this repo and language
@dependabot use this milestone will set the current milestone as the default for future PRs for this repo and language
You can disable automated security fix PRs for this repo from the Security Alerts page.
Bumps [RestSharp](https://github.com/restsharp/RestSharp) from 106.6.9 to 106.12.0.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/restsharp/RestSharp/releases">RestSharp's releases</a>.</em></p>
<blockquote>
<h2>106.11.7</h2>
<p>Fixed the assembly version</p>
<h2>106.11.5</h2>
<ul>
<li>Closed OAuth encoding issue</li>
<li>Closed several culture-related issues</li>
</ul>
<h2>106.11.4</h2>
<ul>
<li>Regression fixes</li>
<li>Assembly versioning reversal</li>
<li>Fixed Xamarin encoding lookup issue</li>
</ul>
<h2>106.11.3</h2>
<p>Fixing the url parameter encoding replace</p>
<h2>106.11.0</h2>
<ul>
<li>Assembly version to match the file version</li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a href="https://github.com/restsharp/RestSharp/blob/dev/releasenotes.md">RestSharp's changelog</a>.</em></p>
<blockquote>
<h1>RestSharp Release Notes</h1>
<h1>106.10</h1>
<ul>
<li>Added a new package <code>RestSharp.Serializers.NewtonsoftJson</code></li>
<li>Added a new package <code>RestSharp.Serializers.Utf8Json</code></li>
<li>Added a new package <code>RestSharp.Serializers.SystemTextJson</code></li>
<li>New documentation website</li>
<li>Added <code>ThrowOnAnyError</code> property that will tell RestSharp to throw instead of creating an error response</li>
<li>Fixed the error response propagation for async calls</li>
</ul>
<h1>106.9</h1>
<ul>
<li>Fixed the relative URI issue (thanks <a href="https://github.com/maratoss"><code>@maratoss</code></a>)</li>
<li>Added <code>AddDefaultHeaders</code> extension method to <code>RestClient</code> that accepts multiple headers (thanks <a href="https://github.com/Kerl1310"><code>@Kerl1310</code></a>)</li>
<li>Added <code>AddHeaders</code> method to <code>RestRequest</code> that accepts multiple headers (thanks <a href="https://github.com/abailey7"><code>@abailey7</code></a>)</li>
<li>Fixed the crash on <code>null</code> body parameter names (thanks to <a href="https://github.com/ofirZelig"><code>@ofirZelig</code></a>, <a href="https://github.com/mitcht"><code>@mitcht</code></a> and <a href="https://github.com/kd5ziy"><code>@kd5ziy</code></a>)</li>
<li>Fixed the exception when <code>Encoding</code> is set to null. Wasn't a bug but the exception was popping up in the debugger</li>
<li><code>IList</code> properties marked with <code>[SerializeAs(Content = true)]</code> attribute can be serialized as parent's XML tag content (thanks <a href="https://github.com/partyz0ne"><code>@partyz0ne</code></a>)</li>
<li>Better handling for the case a unicode character gets between chunks (thanks <a href="https://github.com/stukalin"><code>@stukalin</code></a>)</li>
</ul>
<h1>106.6</h1>
<ul>
<li>Fixed some new platform unsupported exceptions</li>
<li>Fixed OAuth regression issues</li>
<li>Moved serialization to the client</li>
<li>Added <code>UseSerializer</code> to <code>IRestClient</code> to specify the client-level (de)serializer</li>
<li>Added <code>UseDotNetXmlSerializer</code> extension to <code>IRestClient</code></li>
</ul>
<h1>106.5</h1>
<ul>
<li>Wrapped proxy discovery in try-catch for the platform unsupported exception</li>
<li>Fixed DateTime deserialization with millisecond UTC conflict</li>
<li>Fixed HttpMethod is not overridden in <code>RestClient.Sync.Execute(IRestRequest request, Method httpMethod)</code></li>
<li>Split <code>ISerializer</code> to <code>IJsonSerializer</code> and <code>IXmlSerializer</code> to avoid the namespace confusion</li>
<li>Fixed double escape bug in SimpleJson</li>
</ul>
<h1>106.4.1</h1>
<ul>
<li>Fixed the wrong HTTP method used in <code>Post</code> extension method</li>
<li>Custom content type for multipart requests</li>
</ul>
<h1>106.4.0</h1>
<ul>
<li>Added the XML documentation file to the NuGet package</li>
<li>Fixed the issue with <code>AddBody</code> overrides the XML namespace with an empty string</li>
<li>Fixed the issue when combining query parameters and JSON body caused an incorrect content type</li>
<li>Marked <code>MethodTaskAsync<T></code> extensions as obsolete (where <code>Method</code> is <code>Get</code>, <code>Post</code>, etc)</li>
<li>Added new extensions for <code>MethodAsync<T></code> (where <code>Method</code> is the same as above) that will return the result or throw an exception. Obsolete methods still don't throw and return an empty instance.</li>
<li>You can now add query string parameters without encoding them</li>
<li>Fixed the issue with query string parameters in combination with OAuth1</li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li>See full diff in <a href="https://github.com/restsharp/RestSharp/commits/106.12">compare view</a></li>
</ul>
</details>
<br />
[](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.
[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)
---
<details>
<summary>Dependabot commands and options</summary>
<br />
You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
- `@dependabot use these labels` will set the current labels as the default for future PRs for this repo and language
- `@dependabot use these reviewers` will set the current reviewers as the default for future PRs for this repo and language
- `@dependabot use these assignees` will set the current assignees as the default for future PRs for this repo and language
- `@dependabot use this milestone` will set the current milestone as the default for future PRs for this repo and language
You can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/kdeng00/Icarus/network/alerts).
</details>
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.
Bumps RestSharp from 106.6.9 to 106.12.0.
Release notes
Sourced from RestSharp's releases.
Changelog
Sourced from RestSharp's changelog.
... (truncated)
Commits
Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting
@dependabot rebase.Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot mergewill merge this PR after your CI passes on it@dependabot squash and mergewill squash and merge this PR after your CI passes on it@dependabot cancel mergewill cancel a previously requested merge and block automerging@dependabot reopenwill reopen this PR if it is closed@dependabot closewill close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot ignore this major versionwill close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this minor versionwill close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this dependencywill close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)@dependabot use these labelswill set the current labels as the default for future PRs for this repo and language@dependabot use these reviewerswill set the current reviewers as the default for future PRs for this repo and language@dependabot use these assigneeswill set the current assignees as the default for future PRs for this repo and language@dependabot use this milestonewill set the current milestone as the default for future PRs for this repo and languageYou can disable automated security fix PRs for this repo from the Security Alerts page.
Looks like RestSharp is up-to-date now, so this is no longer needed.
Pull request closed