Skip to content
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
26 changes: 26 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# Changelog

All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## Unreleased

## 0.2.0 - 08-15-2025

#### Changed

* Refactored the cache implementation so that response bodies being cached are
streamed to storage while being read from the response ([#11](https://github.com/stjude-rust-labs/http-cache-stream/pull/11)).

#### Fixed

* Fixed an issue with Azure Storage incorrect 304 responses were causing an
error ([#10](https://github.com/stjude-rust-labs/http-cache-stream/pull/10)).

## 0.1.0 - 03-31-2025

#### Added

* Initial release of the crate.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "http-cache-stream"
version = "0.1.0"
version = "0.2.0"
description = "A HTTP cache implementation for streaming bodies."
rust-version = { workspace = true }
edition = { workspace = true }
Expand Down
4 changes: 2 additions & 2 deletions crates/reqwest/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "http-cache-stream-reqwest"
version = "0.1.0"
version = "0.2.0"
description = "A caching middleware for reqwest that supports streaming bodies."
rust-version = { workspace = true }
edition = { workspace = true }
Expand All @@ -10,7 +10,7 @@ homepage = { workspace = true }
repository = { workspace = true }

[dependencies]
http-cache-stream = { path = "../.." , version = "0.1.0" }
http-cache-stream = { path = "../.." , version = "0.2.0" }
anyhow = { workspace = true }
reqwest = { workspace = true, features = ["stream"] }
reqwest-middleware = { workspace = true }
Expand Down
Loading