Pass If-Modified-Since header during streaming`

This commit is contained in:
DarthSim
2025-08-05 19:44:40 +03:00
parent 8967bf7f82
commit 2609144cb4
2 changed files with 2 additions and 0 deletions

View File

@@ -3,6 +3,7 @@
## [Unreleased]
### Fixed
- Fix the `Vary` header value when `IMGPROXY_AUTO_JXL` or `IMGPROXY_ENFORCE_JXL` configs are set to `true`.
- Fix the `If-Modified-Since` request header handling when the `raw` processing option is used.
- (pro) Fix generating thumbnails for VP9 videos with high bit depth.
- (pro) Fix `IMGPROXY_CUSTOM_RESPONSE_HEADERS` and `IMGPROXY_RESPONSE_HEADERS_PASSTHROUGH` configs behavior when the `raw` processing option is used.

View File

@@ -24,6 +24,7 @@ import (
var (
streamReqHeaders = []string{
"If-None-Match",
"If-Modified-Since",
"Accept-Encoding",
"Range",
}