object-storage-proxy 0.3.4__tar.gz → 0.3.5__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (30) hide show
  1. {object_storage_proxy-0.3.4 → object_storage_proxy-0.3.5}/Cargo.lock +1 -1
  2. {object_storage_proxy-0.3.4 → object_storage_proxy-0.3.5}/Cargo.toml +1 -1
  3. {object_storage_proxy-0.3.4 → object_storage_proxy-0.3.5}/PKG-INFO +1 -1
  4. {object_storage_proxy-0.3.4 → object_storage_proxy-0.3.5}/src/credentials/signer.rs +1 -0
  5. {object_storage_proxy-0.3.4 → object_storage_proxy-0.3.5}/src/lib.rs +1 -0
  6. {object_storage_proxy-0.3.4 → object_storage_proxy-0.3.5}/.cargo/config.toml +0 -0
  7. {object_storage_proxy-0.3.4 → object_storage_proxy-0.3.5}/.github/workflows/ci.yml +0 -0
  8. {object_storage_proxy-0.3.4 → object_storage_proxy-0.3.5}/.gitignore +0 -0
  9. {object_storage_proxy-0.3.4 → object_storage_proxy-0.3.5}/LICENSE +0 -0
  10. {object_storage_proxy-0.3.4 → object_storage_proxy-0.3.5}/README.md +0 -0
  11. {object_storage_proxy-0.3.4 → object_storage_proxy-0.3.5}/img/logo.svg +0 -0
  12. {object_storage_proxy-0.3.4 → object_storage_proxy-0.3.5}/img/request_lifecycle.svg +0 -0
  13. {object_storage_proxy-0.3.4 → object_storage_proxy-0.3.5}/img/request_stages.svg +0 -0
  14. {object_storage_proxy-0.3.4 → object_storage_proxy-0.3.5}/pyproject.toml +0 -0
  15. {object_storage_proxy-0.3.4 → object_storage_proxy-0.3.5}/requirements.txt +0 -0
  16. {object_storage_proxy-0.3.4 → object_storage_proxy-0.3.5}/src/credentials/hmac_keystore.rs +0 -0
  17. {object_storage_proxy-0.3.4 → object_storage_proxy-0.3.5}/src/credentials/mod.rs +0 -0
  18. {object_storage_proxy-0.3.4 → object_storage_proxy-0.3.5}/src/credentials/models.rs +0 -0
  19. {object_storage_proxy-0.3.4 → object_storage_proxy-0.3.5}/src/credentials/secrets_proxy.rs +0 -0
  20. {object_storage_proxy-0.3.4 → object_storage_proxy-0.3.5}/src/object_storage_proxy.pyi +0 -0
  21. {object_storage_proxy-0.3.4 → object_storage_proxy-0.3.5}/src/parsers/cos_map.rs +0 -0
  22. {object_storage_proxy-0.3.4 → object_storage_proxy-0.3.5}/src/parsers/credentials.rs +0 -0
  23. {object_storage_proxy-0.3.4 → object_storage_proxy-0.3.5}/src/parsers/keystore.rs +0 -0
  24. {object_storage_proxy-0.3.4 → object_storage_proxy-0.3.5}/src/parsers/mod.rs +0 -0
  25. {object_storage_proxy-0.3.4 → object_storage_proxy-0.3.5}/src/parsers/path.rs +0 -0
  26. {object_storage_proxy-0.3.4 → object_storage_proxy-0.3.5}/src/utils/mod.rs +0 -0
  27. {object_storage_proxy-0.3.4 → object_storage_proxy-0.3.5}/src/utils/validator.rs +0 -0
  28. {object_storage_proxy-0.3.4 → object_storage_proxy-0.3.5}/test_integration.sh +0 -0
  29. {object_storage_proxy-0.3.4 → object_storage_proxy-0.3.5}/test_server.py +0 -0
  30. {object_storage_proxy-0.3.4 → object_storage_proxy-0.3.5}/uv.lock +0 -0
@@ -1701,7 +1701,7 @@ dependencies = [
1701
1701
 
1702
1702
  [[package]]
1703
1703
  name = "object-storage-proxy"
1704
- version = "0.3.4"
1704
+ version = "0.3.5"
1705
1705
  dependencies = [
1706
1706
  "async-trait",
1707
1707
  "chrono",
@@ -1,6 +1,6 @@
1
1
  [package]
2
2
  name = "object-storage-proxy"
3
- version = "0.3.4"
3
+ version = "0.3.5"
4
4
  edition = "2024"
5
5
 
6
6
  [dependencies]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: object-storage-proxy
3
- Version: 0.3.4
3
+ Version: 0.3.5
4
4
  Classifier: License :: Other/Proprietary License
5
5
  Classifier: Programming Language :: Rust
6
6
  Classifier: Programming Language :: Python :: Implementation :: CPython
@@ -105,6 +105,7 @@ impl<'a> AwsSign<'a, HashMap<String, String>> {
105
105
  "x-amz-security-token",
106
106
  "trailer",
107
107
  "x-amz-trailer",
108
+ "content-encoding",
108
109
  ]
109
110
  };
110
111
 
@@ -634,6 +634,7 @@ impl ProxyHttp for MyProxy {
634
634
  "x-amz-date",
635
635
  "x-amz-content-sha256",
636
636
  "x-amz-security-token",
637
+ "content-encoding",
637
638
  "range",
638
639
  "trailer",
639
640
  "x-amz-trailer",