Skip to content

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Oct 6, 2025

Bumps ureq from 2.12.1 to 3.1.2.

Changelog

Sourced from ureq's changelog.

3.1.2

  • Fix bug when query is after host "example.com?query" #1115

3.1.1

  • Fix regression in MSRV (hold back native-tls) #1113
  • Fix edge case regression when setting request header Content-Length: 0 #1109

3.1.0

DECISION: webpki-roots and webpki-root-certs goes from pre-release (0.26) to stable release (1.0.0). This is potentially a big change for ureq users. We release this as semver minor.

  • Bump all deps to latest #1104
  • Fixes to CONNECT to follow spec #1103
  • Send Content-Length for File #1100
  • native-tls transport capture and surface underlying errors #1093
  • Bump webpki-roots/webpki-root-certs to 1.0.0 #1089
  • Bump rustls-platform-verifier to 0.6.0 #1089
  • Allow the license CDLA-Permissive-2.0 #1089

3.0.12

  • Chunked transfer handle abrupt close after 0\r\n #1074
  • Fix incorrect DNS resolving when using proxies #1081
  • Use + instead of %20 for url encoded form bodies #1071
  • Fix problem with double-quotes in cookie values #1068
  • Reduce Body size #1065
  • Fix featue flag public_suffix for CookieStore #1063
  • Improve doc for 10MB limit #1061

3.0.11

  • Fix CONNECT proxy bug #1057
  • Fix bug setting cookies in redirects #1055
  • Annotated example for making a Transport #1054
  • Feature for adding unencoded query parameters #1039
  • Fix bug in not encoding ' in query parameters #1039
  • Fix bug making timeout settings not working #1051
  • Big refactor of ureq-proto #1042
  • Extension trait for http::Request allowing agent config #1011

3.0.10

  • Bump rustls-platform-verifier to 0.5.0

3.0.9

... (truncated)

Commits

Dependabot compatibility score

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 show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @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 dependabot bot added dependencies Pull requests that update a dependency file rust Pull requests that update Rust code labels Oct 6, 2025
Bumps [ureq](https://github.com/algesten/ureq) from 2.12.1 to 3.1.2.
- [Changelog](https://github.com/algesten/ureq/blob/main/CHANGELOG.md)
- [Commits](algesten/ureq@2.12.1...3.1.2)

---
updated-dependencies:
- dependency-name: ureq
  dependency-version: 3.1.2
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot force-pushed the dependabot/cargo/ureq-3.1.2 branch from a7aa62a to 4ef2259 Compare October 7, 2025 08:42
sanity and others added 2 commits October 8, 2025 15:53
In ureq 3.x, the `into_json()` method was removed. The replacement is
`body_mut().read_json()` which requires a mutable response variable.

Changes:
- Replace `response.into_json()` with `response.body_mut().read_json()`
- Make response variable mutable to satisfy `body_mut()` requirement

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <[email protected]>
@sanity
Copy link
Collaborator

sanity commented Oct 8, 2025

Fix Applied

Fixed the CI test failure caused by ureq 3.x API changes.

Issue

The test was failing with:

error[E0599]: no method named `into_json` found for struct `ureq::http::Response`

Root Cause

ureq 3.x removed the .into_json() method. The replacement API is .body_mut().read_json().

Changes Made

  • Replaced response.into_json() with response.body_mut().read_json()
  • Made the response variable mutable (required by body_mut())

Testing

✅ Compiles locally
⏳ CI tests are now running

The fix is in commit e713662.

[AI-assisted debugging and comment]

@sanity sanity added this pull request to the merge queue Oct 9, 2025
Merged via the queue into main with commit 312c423 Oct 9, 2025
8 checks passed
@sanity sanity deleted the dependabot/cargo/ureq-3.1.2 branch October 9, 2025 00:44
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file rust Pull requests that update Rust code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant