hishel 1.1.0__tar.gz → 1.1.1__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.
- {hishel-1.1.0 → hishel-1.1.1}/CHANGELOG.md +10 -0
- {hishel-1.1.0 → hishel-1.1.1}/PKG-INFO +11 -1
- {hishel-1.1.0 → hishel-1.1.1}/pyproject.toml +11 -11
- {hishel-1.1.0 → hishel-1.1.1}/.gitignore +0 -0
- {hishel-1.1.0 → hishel-1.1.1}/LICENSE +0 -0
- {hishel-1.1.0 → hishel-1.1.1}/README.md +0 -0
- {hishel-1.1.0 → hishel-1.1.1}/hishel/__init__.py +0 -0
- {hishel-1.1.0 → hishel-1.1.1}/hishel/_async_cache.py +0 -0
- {hishel-1.1.0 → hishel-1.1.1}/hishel/_async_httpx.py +0 -0
- {hishel-1.1.0 → hishel-1.1.1}/hishel/_core/_headers.py +0 -0
- {hishel-1.1.0 → hishel-1.1.1}/hishel/_core/_spec.py +0 -0
- {hishel-1.1.0 → hishel-1.1.1}/hishel/_core/_storages/_async_base.py +0 -0
- {hishel-1.1.0 → hishel-1.1.1}/hishel/_core/_storages/_async_sqlite.py +0 -0
- {hishel-1.1.0 → hishel-1.1.1}/hishel/_core/_storages/_packing.py +0 -0
- {hishel-1.1.0 → hishel-1.1.1}/hishel/_core/_storages/_sync_base.py +0 -0
- {hishel-1.1.0 → hishel-1.1.1}/hishel/_core/_storages/_sync_sqlite.py +0 -0
- {hishel-1.1.0 → hishel-1.1.1}/hishel/_core/models.py +0 -0
- {hishel-1.1.0 → hishel-1.1.1}/hishel/_policies.py +0 -0
- {hishel-1.1.0 → hishel-1.1.1}/hishel/_sync_cache.py +0 -0
- {hishel-1.1.0 → hishel-1.1.1}/hishel/_sync_httpx.py +0 -0
- {hishel-1.1.0 → hishel-1.1.1}/hishel/_utils.py +0 -0
- {hishel-1.1.0 → hishel-1.1.1}/hishel/asgi.py +0 -0
- {hishel-1.1.0 → hishel-1.1.1}/hishel/fastapi.py +0 -0
- {hishel-1.1.0 → hishel-1.1.1}/hishel/httpx.py +0 -0
- {hishel-1.1.0 → hishel-1.1.1}/hishel/py.typed +0 -0
- {hishel-1.1.0 → hishel-1.1.1}/hishel/requests.py +0 -0
|
@@ -2,12 +2,22 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
|
|
5
|
+
## 1.1.1 - 2025-11-01
|
|
6
|
+
### ⚙️ Miscellaneous Tasks
|
|
7
|
+
- Bump the python-packages group with 10 updates (#396)
|
|
8
|
+
|
|
9
|
+
### 📦 Dependencies
|
|
10
|
+
- Bump actions/upload-artifact from 4 to 5 (#395)
|
|
11
|
+
- Bump actions/download-artifact from 4 to 6 (#394)
|
|
12
|
+
- Bump astral-sh/setup-uv from 5 to 7 (#393)
|
|
13
|
+
|
|
5
14
|
## 1.1.0 - 2025-10-31
|
|
6
15
|
### ⚙️ Miscellaneous Tasks
|
|
7
16
|
- Add in memory example
|
|
8
17
|
|
|
9
18
|
### 🐛 Bug Fixes
|
|
10
19
|
- Pass any response with non-expected status code on revalidation to client
|
|
20
|
+
- Pass any response with non-expected status code on revalidation to client
|
|
11
21
|
|
|
12
22
|
### 🚀 Features
|
|
13
23
|
- Allow setting storage base with via `database_path` for sqlite storage
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: hishel
|
|
3
|
-
Version: 1.1.
|
|
3
|
+
Version: 1.1.1
|
|
4
4
|
Summary: Elegant HTTP Caching for Python
|
|
5
5
|
Project-URL: Homepage, https://hishel.com
|
|
6
6
|
Project-URL: Source, https://github.com/karpetrosyan/hishel
|
|
@@ -410,12 +410,22 @@ Hishel is inspired by and builds upon the excellent work in the Python HTTP ecos
|
|
|
410
410
|
|
|
411
411
|
All notable changes to this project will be documented in this file.
|
|
412
412
|
|
|
413
|
+
## 1.1.1 - 2025-11-01
|
|
414
|
+
### ⚙️ Miscellaneous Tasks
|
|
415
|
+
- Bump the python-packages group with 10 updates (#396)
|
|
416
|
+
|
|
417
|
+
### 📦 Dependencies
|
|
418
|
+
- Bump actions/upload-artifact from 4 to 5 (#395)
|
|
419
|
+
- Bump actions/download-artifact from 4 to 6 (#394)
|
|
420
|
+
- Bump astral-sh/setup-uv from 5 to 7 (#393)
|
|
421
|
+
|
|
413
422
|
## 1.1.0 - 2025-10-31
|
|
414
423
|
### ⚙️ Miscellaneous Tasks
|
|
415
424
|
- Add in memory example
|
|
416
425
|
|
|
417
426
|
### 🐛 Bug Fixes
|
|
418
427
|
- Pass any response with non-expected status code on revalidation to client
|
|
428
|
+
- Pass any response with non-expected status code on revalidation to client
|
|
419
429
|
|
|
420
430
|
### 🚀 Features
|
|
421
431
|
- Allow setting storage base with via `database_path` for sqlite storage
|
|
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "hishel"
|
|
7
|
-
version = "1.1.
|
|
7
|
+
version = "1.1.1"
|
|
8
8
|
dynamic = ["readme"]
|
|
9
9
|
description = " Elegant HTTP Caching for Python"
|
|
10
10
|
license = "BSD-3-Clause"
|
|
@@ -118,27 +118,27 @@ combine-as-imports = true
|
|
|
118
118
|
|
|
119
119
|
[dependency-groups]
|
|
120
120
|
dev = [
|
|
121
|
-
"anyio==4.
|
|
121
|
+
"anyio==4.11.0",
|
|
122
122
|
"anysqlite>=0.0.5",
|
|
123
|
-
"coverage==7.10.
|
|
123
|
+
"coverage==7.10.7",
|
|
124
124
|
"fastapi[standard]>=0.119.1",
|
|
125
|
-
"hatch==1.
|
|
125
|
+
"hatch==1.15.1",
|
|
126
126
|
"inline-snapshot>=0.28.0",
|
|
127
127
|
"mike>=2.1.3",
|
|
128
128
|
"mkdocs==1.6.1",
|
|
129
129
|
"mkdocs-git-committers-plugin>=0.2.3",
|
|
130
130
|
"mkdocs-git-revision-date-localized-plugin>=1.4.7",
|
|
131
|
-
"mkdocs-material==9.6.
|
|
132
|
-
"mypy==1.
|
|
131
|
+
"mkdocs-material==9.6.22",
|
|
132
|
+
"mypy==1.18.2",
|
|
133
133
|
"pyright>=1.1.404",
|
|
134
|
-
"pytest==8.4.
|
|
134
|
+
"pytest==8.4.2",
|
|
135
135
|
"pytest-cov>=6.2.1",
|
|
136
136
|
"pytest-icdiff>=0.9",
|
|
137
|
-
"ruff==0.
|
|
137
|
+
"ruff==0.14.3",
|
|
138
138
|
"time-machine>=2.19.0",
|
|
139
|
-
"trio==0.
|
|
140
|
-
"types-boto3==1.40.
|
|
141
|
-
"types-pyyaml==6.0.12.
|
|
139
|
+
"trio==0.31.0",
|
|
140
|
+
"types-boto3==1.40.64",
|
|
141
|
+
"types-pyyaml==6.0.12.20250915",
|
|
142
142
|
"types-requests>=2.31.0.6",
|
|
143
143
|
"zipp>=3.19.1",
|
|
144
144
|
]
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|