Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

bumped multiple deps, versions, updated changelogs #79

Merged
merged 5 commits into from
Apr 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
cargo llvm-cov --no-report --package http-cache-surf --features manager-moka
cargo llvm-cov --no-report --package http-cache-reqwest --features manager-moka
cargo llvm-cov report --lcov --output-path lcov.info
- uses: codecov/codecov-action@v3
- uses: codecov/codecov-action@v4
with:
files: lcov.info
fail_ci_if_error: false
Expand Down
11 changes: 11 additions & 0 deletions http-cache-darkbird/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,17 @@

# Changelog

## [0.2.0] - 2024-04-10

### Changed

- Updated the minimum versions of the following dependencies:
- http-cache [0.19.0]
- http-cache-semantics [2.1.0]
- http [1.1.0]
- reqwest [0.12.3]
- reqwest-middleware [0.3.0]

## [0.1.5] - 2024-01-15

### Changed
Expand Down
14 changes: 7 additions & 7 deletions http-cache-darkbird/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "http-cache-darkbird"
version = "0.1.5"
version = "0.2.0"
description = "http-cache manager implementation for darkbird"
authors = ["Christian Haynes <06chaynes@gmail.com>", "Kat Marchán <kzm@zkat.tech>"]
repository = "https://github.com/06chaynes/http-cache"
Expand All @@ -18,21 +18,21 @@ rust-version = "1.67.1"
[dependencies]
async-trait = "0.1.72"
darkbird = "6.1.8"
http-cache-semantics = "1.0.1"
http-cache-semantics = "2.1.0"
serde = { version = "1.0.178", features = ["derive"] }
thiserror = "1.0.44"

[dependencies.http-cache]
path = "../http-cache"
version = "0.18.0"
version = "0.19.0"
default-features = false

[dev-dependencies]
http = "0.2.9"
reqwest = { version = "0.11.18", default-features = false }
reqwest-middleware = "0.2.2"
http = "1.1.0"
reqwest = { version = "0.12.3", default-features = false }
reqwest-middleware = "0.3.0"
tokio = { version = "1.29.1", features = [ "macros", "rt", "rt-multi-thread" ] }
wiremock = "0.5.19"
wiremock = "0.6.0"
url = { version = "2.4.0", features = ["serde"] }

[dev-dependencies.http-cache-reqwest]
Expand Down
11 changes: 11 additions & 0 deletions http-cache-mokadeser/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,17 @@

# Changelog

## [0.2.0] - 2024-04-10

### Changed

- Updated the minimum versions of the following dependencies:
- http-cache [0.19.0]
- http-cache-semantics [2.1.0]
- http [1.1.0]
- reqwest [0.12.3]
- reqwest-middleware [0.3.0]

## [0.1.3] - 2024-01-15

### Changed
Expand Down
14 changes: 7 additions & 7 deletions http-cache-mokadeser/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "http-cache-mokadeser"
version = "0.1.3"
version = "0.2.0"
description = "http-cache manager implementation for moka stored deserialized"
authors = ["Christian Haynes <06chaynes@gmail.com>", "Kat Marchán <kzm@zkat.tech>"]
repository = "https://github.com/06chaynes/http-cache"
Expand All @@ -17,22 +17,22 @@ rust-version = "1.67.1"

[dependencies]
async-trait = "0.1.72"
http-cache-semantics = "1.0.1"
http-cache-semantics = "2.1.0"
moka = { version = "0.12.0", features = ["future"]}

[dependencies.http-cache]
path = "../http-cache"
version = "0.18.0"
version = "0.19.0"
default-features = false
features = ["bincode"]

[dev-dependencies]
http = "0.2.9"
reqwest = { version = "0.11.18", default-features = false }
reqwest-middleware = "0.2.2"
http = "1.1.0"
reqwest = { version = "0.12.3", default-features = false }
reqwest-middleware = "0.3.0"
tokio = { version = "1.29.1", features = [ "macros", "rt", "rt-multi-thread" ] }
url = { version = "2.4.0", features = ["serde"] }
wiremock = "0.5.19"
wiremock = "0.6.0"

[dev-dependencies.http-cache-reqwest]
path = "../http-cache-reqwest"
Expand Down
14 changes: 14 additions & 0 deletions http-cache-quickcache/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,20 @@

# Changelog

## [0.7.0] - 2024-04-10

### Changed

- MSRV is now 1.71.1

- Updated the minimum versions of the following dependencies:
- http-cache [0.19.0]
- http-cache-semantics [2.1.0]
- http [1.1.0]
- reqwest [0.12.3]
- reqwest-middleware [0.3.0]
- quick_cache [0.5.1]

## [0.6.3] - 2024-01-15

### Changed
Expand Down
18 changes: 9 additions & 9 deletions http-cache-quickcache/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "http-cache-quickcache"
version = "0.6.3"
version = "0.7.0"
description = "http-cache manager implementation for quick-cache"
authors = ["Christian Haynes <06chaynes@gmail.com>", "Kat Marchán <kzm@zkat.tech>"]
repository = "https://github.com/06chaynes/http-cache"
Expand All @@ -13,28 +13,28 @@ categories = [
"web-programming::http-client"
]
edition = "2021"
rust-version = "1.67.1"
rust-version = "1.71.1"

[dependencies]
async-trait = "0.1.72"
bincode = "1.3.3"
http-cache-semantics = "1.0.1"
http-cache-semantics = "2.1.0"
serde = { version = "1.0.178", features = ["derive"] }
url = { version = "2.4.0", features = ["serde"] }
quick_cache = "0.4.0"
quick_cache = "0.5.1"

[dependencies.http-cache]
path = "../http-cache"
version = "0.18.0"
version = "0.19.0"
default-features = false
features = ["bincode"]

[dev-dependencies]
http = "0.2.9"
reqwest = { version = "0.11.18", default-features = false }
reqwest-middleware = "0.2.2"
http = "1.1.0"
reqwest = { version = "0.12.3", default-features = false }
reqwest-middleware = "0.3.0"
tokio = { version = "1.29.1", features = [ "macros", "rt", "rt-multi-thread" ] }
wiremock = "0.5.19"
wiremock = "0.6.0"

[dev-dependencies.http-cache-reqwest]
path = "../http-cache-reqwest"
Expand Down
2 changes: 1 addition & 1 deletion http-cache-quickcache/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ An http-cache manager implementation for [quick-cache](https://github.com/arthur

## Minimum Supported Rust Version (MSRV)

1.67.1
1.71.1

## Install

Expand Down
13 changes: 13 additions & 0 deletions http-cache-reqwest/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# Changelog

## [0.14.0] - 2024-04-10

### Changed

- Replaced `task-local-extensions::Extensions` with `http::Extensions`.

- Updated the minimum versions of the following dependencies:
- http-cache [0.19.0]
- http-cache-semantics [2.1.0]
- http [1.1.0]
- reqwest [0.12.3]
- reqwest-middleware [0.3.0]

## [0.13.0] - 2024-01-15

### Added
Expand Down
15 changes: 7 additions & 8 deletions http-cache-reqwest/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "http-cache-reqwest"
version = "0.13.0"
version = "0.14.0"
description = "http-cache middleware implementation for reqwest"
authors = ["Christian Haynes <06chaynes@gmail.com>", "Kat Marchán <kzm@zkat.tech>"]
repository = "https://github.com/06chaynes/http-cache"
Expand All @@ -17,22 +17,21 @@ edition = "2021"
[dependencies]
anyhow = "1.0.72"
async-trait = "0.1.72"
http = "0.2.9"
http-cache-semantics = "1.0.1"
reqwest = { version = "0.11.18", default-features = false }
reqwest-middleware = "0.2.2"
http = "1.1.0"
http-cache-semantics = "2.1.0"
reqwest = { version = "0.12.3", default-features = false }
reqwest-middleware = "0.3.0"
serde = { version = "1.0.178", features = ["derive"] }
task-local-extensions = "0.1.4"
url = { version = "2.4.0", features = ["serde"] }

[dependencies.http-cache]
path = "../http-cache"
version = "0.18.0"
version = "0.19.0"
default-features = false

[dev-dependencies]
tokio = { version = "1.29.1", features = ["macros", "rt-multi-thread"] }
wiremock = "0.5.19"
wiremock = "0.6.0"

[features]
default = ["manager-cacache"]
Expand Down
3 changes: 1 addition & 2 deletions http-cache-reqwest/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -61,15 +61,14 @@ use std::{
pub use http::request::Parts;
use http::{
header::{HeaderName, CACHE_CONTROL},
HeaderValue, Method,
Extensions, HeaderValue, Method,
};
use http_cache::{
BoxError, HitOrMiss, Middleware, Result, XCACHE, XCACHELOOKUP,
};
use http_cache_semantics::CachePolicy;
use reqwest::{Request, Response, ResponseBuilderExt};
use reqwest_middleware::{Error, Next};
use task_local_extensions::Extensions;
use url::Url;

pub use http_cache::{
Expand Down
9 changes: 9 additions & 0 deletions http-cache-surf/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Changelog

## [0.13.0] - 2024-04-10

### Changed

- Updated the minimum versions of the following dependencies:
- http-cache [0.19.0]
- http-cache-semantics [2.1.0]
- http [1.1.0]

## [0.12.1] - 2024-01-15

### Changed
Expand Down
10 changes: 5 additions & 5 deletions http-cache-surf/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "http-cache-surf"
version = "0.12.1"
version = "0.13.0"
description = "http-cache middleware implementation for surf"
authors = ["Christian Haynes <06chaynes@gmail.com>", "Kat Marchán <kzm@zkat.tech>"]
repository = "https://github.com/06chaynes/http-cache"
Expand All @@ -17,8 +17,8 @@ edition = "2021"
[dependencies]
anyhow = "1.0.72"
async-trait = "0.1.72"
http = "0.2.9"
http-cache-semantics = "1.0.1"
http = "1.1.0"
http-cache-semantics = "2.1.0"
http-types = "2.12.0"
serde = { version = "1.0.178", features = ["derive"] }
surf = { version = "2.3.2", default-features = false }
Expand All @@ -27,14 +27,14 @@ thiserror = "1.0.44"

[dependencies.http-cache]
path = "../http-cache"
version = "0.18.0"
version = "0.19.0"
default-features = false
features = ["with-http-types"]

[dev-dependencies]
async-std = { version = "1.12.0", features = ["attributes"] }
surf = { version = "2.3.2", features = ["curl-client"] }
wiremock = "0.5.19"
wiremock = "0.6.0"

[features]
default = ["manager-cacache"]
Expand Down
9 changes: 9 additions & 0 deletions http-cache/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Changelog

## [0.19.0] - 2024-04-10

### Changed

- Updated the minimum versions of the following dependencies:
- cacache [13.0.0]
- http [1.1.0]
- http-cache-semantics [2.1.0]

## [0.18.0] - 2024-01-15

### Added
Expand Down
10 changes: 5 additions & 5 deletions http-cache/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "http-cache"
version = "0.18.0"
version = "0.19.0"
description = "An HTTP caching middleware"
authors = ["Christian Haynes <06chaynes@gmail.com>", "Kat Marchán <kzm@zkat.tech>"]
repository = "https://github.com/06chaynes/http-cache"
Expand All @@ -18,9 +18,9 @@ rust-version = "1.67.1"
[dependencies]
async-trait = "0.1.72"
bincode = { version = "1.3.3", optional = true }
cacache = { version = "12.0.0", default-features = false, features = ["mmap"], optional = true }
http = "0.2.9"
http-cache-semantics = "1.0.1"
cacache = { version = "13.0.0", default-features = false, features = ["mmap"], optional = true }
http = "1.1.0"
http-cache-semantics = "2.1.0"
http-types = { version = "2.12.0", default-features = false, optional = true }
httpdate = "1.0.2"
moka = { version = "0.12.0", features = ["future"], optional = true }
Expand All @@ -30,7 +30,7 @@ url = { version = "2.4.0", features = ["serde"] }
[dev-dependencies]
async-attributes = "1.1.2"
async-std = { version = "1.12.0" }
http-cache-semantics = "1.0.1"
http-cache-semantics = "2.1.0"
tokio = { version = "1.29.1", features = [ "macros", "rt", "rt-multi-thread" ] }

[features]
Expand Down
Loading