Methods that formerly returned Response now return Result.
You'll need to change all instances of .call() to .call()? or handle
errors using a match statement.
Non-2xx responses are considered Error by default. See Error documentation
for details on how to get Response bodies for non-2xx.
Rewrite Error type. It's now an enum of two types of error: Status and
Transport. Status errors (i.e. non-2xx) can be readily turned into a
Response using match statements.
Errors now include the source error (e.g. errors from DNS or I/O) when
appropriate, as well as the URL that caused an error.
The "synthetic error" concept is removed.
Move more configuration to Agent. Timeouts, TLS config, and proxy config
now require building an Agent.
Create AgentBuilder to separate the process of building an agent from using
the resulting agent. Headers can be set on an AgentBuilder, not the
resulting Agent.
Agent is cheaply cloneable with an internal Arc. This makes it easy to
share a single agent throughout your program.
There is now a default timeout_connect of 30 seconds. Read and write
timeouts continue to be unset by default.
Add ureq::request_url and Agent::request_url, to send requests with
already-parsed URLs.
Remove native_tls support.
Remove convenience methods options(url), trace(url), and patch(url).
To send requests with those verbs use request(method, url).
Remove Request::build. This was a workaround because some of Request's
methods took &mut self instead of mut self, and is no longer needed.
You can simply delete any calls to Request::build.
Remove Agent::set_cookie.
Remove Header from the public API. The type wasn't used by any public
methods.
Remove basic auth support. The API was incomplete. We may add back something
better in the future.
Remove into_json_deserialize. Now into_json handles both serde_json::Value
and other types that implement serde::Deserialize. If you were using
serde_json before, you will probably have to explicitly annotate a type,
like: let v: serde_json::Value = response.into_json();.
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
- `@dependabot badge me` will comment on this PR with code to add a "Dependabot enabled" badge to your readme
Additionally, you can set the following in your Dependabot [dashboard](https://app.dependabot.com):
- Update frequency (including time of day and day of week)
- Pull request limits (per update run and/or open at any time)
- Out-of-range updates (receive only lockfile updates, if desired)
- Security updates (receive only security updates, if desired)
Updates the requirements on ureq to permit the latest version.
Changelog
Sourced from ureq's changelog.
Commits
6da035b
Update CHANGELOG.md6390558
Update CHANGELOG for 2.0.0.8f9f3e5
Fix main lib.rs and README.md example (#284)7ffaa8c
Minor changes to simple example to get rid of warnings and error.1f0d842
Document simplest error example234eb55
Update CHANGELOG and Cargo.toml for 2.0.0-rc4 (#279)de18051
Do more validation on status line. (#266)243b987
Remove error_on_non_2xx. (#272)e25a687
Document error handling.8cb4f40
Add history to response objects (#275)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 - `@dependabot badge me` will comment on this PR with code to add a "Dependabot enabled" badge to your readme Additionally, you can set the following in your Dependabot [dashboard](https://app.dependabot.com): - Update frequency (including time of day and day of week) - Pull request limits (per update run and/or open at any time) - Out-of-range updates (receive only lockfile updates, if desired) - Security updates (receive only security updates, if desired)