Matt Palmer
524e044fd7
Re-export reqwest crate ( #158 )
...
* Re-export reqwest crate
In a large project, it's not unheard of for multiple mutually-incompatible versions of a major crate like `reqwest` to end up in the mix. By re-exporting the version of `reqwest` used by `reqwest-middleware`, we can be sure we're referring to the *correct* `reqwest`, rather than some other, incompatible, `reqwest`.
* Update CHANGELOG.md
---------
Co-authored-by: Ethan Brierley <ethanboxx@gmail.com>
2024-06-26 20:35:44 +01:00
Matt Palmer
226562735c
Expose some more reqwest features ( #160 )
2024-06-25 10:20:53 +01:00
Marcus Griep
88dbfe67fb
feat: support opentelemetry 0.23 ( #156 )
2024-06-03 10:12:56 +01:00
pvichivanives
2927624652
Bump retry-policies to 0.4 ( #155 )
...
* bump reqwest to 0.4
* Update reqwest-retry/src/middleware.rs
Co-authored-by: Chris Beck <5683852+cbeck88@users.noreply.github.com>
* fix unwrap issue
---------
Co-authored-by: Chris Beck <5683852+cbeck88@users.noreply.github.com>
Co-authored-by: Ethan Brierley <ethanboxx@gmail.com>
2024-06-01 02:02:26 +01:00
Chris Beck
3ae02fcd8b
add re-exports from retry-policies crate ( #157 )
...
fixes #84
2024-06-01 01:57:43 +01:00
Ethan Brierley
620b089db1
chore: release minor `reqwest-middleware` 🚀
2024-05-07 11:53:24 +01:00
Stefan Adrian Danaita
fa84b1fd41
[BOT-272] Function description update
2024-05-07 11:39:49 +01:00
Stefan Adrian Danaita
7dc0560d38
[BOT-272] Change function from ::extend to ::from_client
2024-05-07 11:39:49 +01:00
Stefan Adrian Danaita
8d394a964a
[BOT-272] Fmt
2024-05-07 11:39:49 +01:00
Stefan Adrian Danaita
d406eb2ce7
[BOT-272] ClientBuilder extend convenience function
2024-05-07 11:39:49 +01:00
Eirik Albrigtsen
c558e7414a
main changelog entries
...
Signed-off-by: Eirik Albrigtsen <eirik.albrigtsen@truelayer.com>
2024-04-26 13:58:01 +01:00
Luca Palmieri
9ac5f691bf
Fix logging of `User-Agent` header in `reqwest-tracing` ( #148 )
2024-04-26 13:54:35 +01:00
Ben Beasley
1954b5c94f
Fix missing LICENSE-* files in released crates ( #147 )
...
* Fix missing LICENSE-* files in released crates
* Changelog: Included license files in crates
2024-04-26 13:53:50 +01:00
Simon
abdf1844c3
feat(reqwest-retry): Configurable log level for retry event ( #137 )
...
* Make retry log level configurable
* Add Changelog entry
* Update macro
* Add comment with issue to macro
* Update CHANGELOG
2024-04-11 10:16:33 +01:00
Eirik Albrigtsen
24c277a763
Document breaking feature removal for reqwest-middleware
...
for #144
will edit the release object if accepted
Signed-off-by: Eirik Albrigtsen <eirik.albrigtsen@truelayer.com>
2024-04-10 14:26:14 +01:00
Ethan Brierley
d2286b5e79
fix: Remove full url from default span & `http.url` -> `url.full` in `SpanBackendWithUrl`
2024-04-10 09:55:52 +01:00
Ethan Brierley
d401fc52e7
chore: remove deprecated items (we're making a breaking change anyway)
2024-04-10 09:55:52 +01:00
Ethan Brierley
09189ab63e
fix: test compilation
2024-04-10 09:55:52 +01:00
Christopher Serr
3422e7338c
Match stable Semantic Conventions for HTTP Spans
...
The stable [Semantic Conventions for HTTP
Spans](https://opentelemetry.io/docs/specs/semconv/http/http-spans/ ) use
different keys than the ones used in this crate. This changes them to
match the keys as defined by the stable specification.
2024-04-10 09:55:52 +01:00
Ethan Brierley
94a38211f7
feat!: prepare breaking release ( #143 )
2024-04-10 09:55:41 +01:00
Ethan Brierley
e778b7df11
chore: revert change switching from `Arc` to `Box` in public APIs ( #142 )
...
fixes #139
There are other potential long term solutions listed [here](https://github.com/TrueLayer/reqwest-middleware/issues/139#issuecomment-2045946644 )
> I didn't put much thought into it. Internally there used to be a `Box<[Arc<dyn Middleware>]>` which is cloned about quite often.
>
> * https://docs.rs/reqwest-middleware/0.2.5/src/reqwest_middleware/client.rs.html#87
> * https://docs.rs/reqwest-middleware/0.2.5/src/reqwest_middleware/client.rs.html#139
>
> Because of all the cloning, I decided to flip it to be `Arc<Box>` instead of `Box<Arc>`.
>
> I see three solutions here.
>
> 1. The one I'd lean towards is `Arc<Arc>` even if it's a bit silly, but prevents extra unnecessary allocations on each request.
> 2. An alternative is to implement Middleware for Arc and then you can use the regular with(...) api. This would mean there's an extra box around your middleware
> 3. Revert this particular change
In the short term, I think it's best to go with option 3. This will unblock the next release. We can consider the other options for future releasees
2024-04-10 09:30:17 +01:00
Ethan Brierley
0bdb2b6ef4
feat!: upgrade to matchit `0.8.0` ( #140 )
...
A copy of #134 but just with the matchit upgrade.
Thank you @matiu2 for raising the original PR
2024-04-10 09:05:51 +01:00
Ethan Brierley
cb083ad66e
Revert "Init dependabot ( #116 )" ( #138 )
...
This reverts commit 79dbb2d194
.
2024-04-05 14:19:05 +01:00
Ethan Brierley
938a3a0e3c
chore: `cargo-fmt`
2024-04-03 18:23:30 +01:00
Conrad Ludgate
60212ae451
reqwest 0.12 and other breaking changes ( #135 )
...
* update reqwest and http crates
remove task_local_extensions
* remove older opentelemetry packages
* remove more legacy and add new otel
* attempt to make features additive
* features are additive
* delete commented out code
* build split
* docs
* more uniform with reqwest::Client
* remove arcs
* slight optimisation
* update readmes
* update changelog
2024-04-03 18:13:10 +01:00
Ethan Brierley
69269e183a
chore(request-middleware): release patch version 🚀 ( #131 )
2024-03-15 16:27:00 +00:00
Ethan Brierley
a7df7657e6
chore(request-tracing): release patch version 🚀 ( #123 )
2024-03-15 16:26:17 +00:00
dependabot[bot]
89ce2efb88
Bump actions/checkout from 2 to 4 ( #125 )
...
Bumps [actions/checkout](https://github.com/actions/checkout ) from 2 to 4.
- [Release notes](https://github.com/actions/checkout/releases )
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md )
- [Commits](https://github.com/actions/checkout/compare/v2...v4 )
---
updated-dependencies:
- dependency-name: actions/checkout
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-03-15 16:18:36 +00:00
Pohan
0edce5364e
Update reqwest version to 0.11.10 ( #115 )
...
* Update reqwest version to 0.11.10
* chore: udpate the correct version
---------
Co-authored-by: Ethan Brierley <ethan.brierley@truelayer.com>
2024-03-15 16:18:04 +00:00
Vasiliy Taranov
79dbb2d194
Init dependabot ( #116 )
2024-03-12 15:10:38 +00:00
Vasiliy Taranov
2a3f239a05
fix typos, add github action ( #122 )
2024-03-12 15:10:18 +00:00
Ethan Brierley
d20903e2f7
fix(reqwest-tracing): fix missing deps ( #124 )
...
Missed in https://github.com/TrueLayer/reqwest-middleware/pull/118
2024-03-12 15:03:25 +00:00
Robert Collins
d44458f402
Support opentelemetry 0.22 ( #118 )
2024-03-11 17:04:51 +00:00
Ethan Brierley
b53d355aea
chore!(reqwest-retry): bump minor version 🚀
2024-03-05 12:10:10 +00:00
bbaldino
4bdf56f2e0
Adapt to retry-policies changes ( #113 )
2024-03-05 12:05:19 +00:00
Pro
8d40b60776
Fix typo in readme ( #117 )
2024-02-23 08:53:40 +00:00
Ethan Brierley
1c31f4bc7f
chore!(reqwest-tracing): bump patch version 🚀
2024-01-21 20:04:58 +00:00
Julian Tescher
32cc268f07
Add support for `opentelemetry` version `0.21` ( #112 )
...
* Add support for `opentelemetry` version `0.21`
* Fix tracer provider import
2024-01-19 11:17:54 +00:00
Ethan Brierley
d297b1c5df
chore: `cargo fmt`
2023-11-07 09:59:22 +00:00
Jan Srzednicki
b7017dca6f
Document using `tokio::time::sleep` ( #111 )
...
* Document using `tokio::time::sleep`
* Update reqwest-retry/src/middleware.rs
---------
Co-authored-by: Ethan Brierley <ethanboxx@gmail.com>
2023-11-07 09:35:16 +00:00
Ethan Brierley
304d6f1ebc
ci: fix `rustdoc::redundant_explicit_links` ( #110 )
2023-10-24 10:50:53 +01:00
Ari
de1b651bcc
add fetch_mode_no_cors_method ( #108 )
...
* add fetch_mode_no_cors_method
* Update changelog
* Bump verion
2023-10-24 10:39:06 +01:00
Tom Milligan
efdd52f2fa
readme: add link to reqwest-chain crate ( #103 )
2023-09-12 11:45:07 +01:00
Thom Wright
7eb52bbe65
[EWT-319] Upgrade retry-policies ( #104 )
2023-09-08 10:22:46 +01:00
tl-rodrigo-gryzinski
f1e71bef3c
Disable wasm tests and add warning to README ( #105 )
2023-09-07 14:46:53 +01:00
tl-rodrigo-gryzinski
c2d477edae
[reqwest-retry] Patch release ( #102 )
2023-08-30 13:15:36 +01:00
Ethan Brierley
a54319a9d6
Patch release `v0.4.6` 🚀 ( #100 )
...
* Add support for OpenTelemetry v0.20
* Add back dev-deps
* Attempt at tests
* Update reqwest-tracing/src/otel.rs
* Update reqwest-tracing/src/otel.rs
* Update reqwest-tracing/Cargo.toml
* Update reqwest-tracing/CHANGELOG.md
2023-08-23 12:34:20 +01:00
Conrad Ludgate
7b3493d96c
add opentelementry 0.20 support ( #101 )
2023-08-23 11:49:15 +01:00
Ethan Brierley
a530ea7f93
Cut `reqwest-middleware` patch release `0.2.3 ( #98 )
2023-08-07 10:50:56 +01:00
Oleh Martsokha
31f8aebce4
Impl reqwest::Error methods ( #96 )
...
* impl reqwest::Error methods
* update changelog
* use reqwest::StatusCode
* typo
* consistent comments
* fn is_middleware()
2023-08-07 10:34:01 +01:00