Path to this page:
./
devel/py-cachecontrol,
Port of httplib2s caching to requests
Branch: CURRENT,
Version: 0.14.1,
Package name: py312-cachecontrol-0.14.1,
Maintainer: pkgsrc-usersCacheControl is a port of the caching algorithms in httplib2 for use
with requests session object.
It was written because httplib2's better support for caching is often
mitigated by its lack of thread safety. The same is true of requests in
terms of caching.
Master sites:
Filesize: 28.25 KB
Version history: (Expand)
- (2024-11-05) Updated to version: py312-cachecontrol-0.14.1
- (2024-10-14) Updated to version: py312-cachecontrol-0.14.0
- (2024-02-02) Updated to version: py311-cachecontrol-0.14.0
- (2023-10-28) Updated to version: py311-cachecontrol-0.13.1nb1
- (2023-06-08) Updated to version: py310-cachecontrol-0.13.1
- (2023-06-06) Updated to version: py310-cachecontrol-0.13.0
CVS history: (Expand)
2024-02-02 09:15:08 by Adam Ciarcinski | Files touched by this commit (2) | |
Log message:
py-cachecontrol: updated to 0.14.0
v0.14.0
doc: improve the docs
chore: update install command for FileCache
serialize: simplify loading logic
pyproject: constrain msgpack < 2.0.0
Miscellaneous repo cleanup
update readme
FileCache.directory: explictly allow pathlib.Path
Add support for Python 3.12 and drop EOL 3.6
Fix document code case errors
Don't use the cache if the request has a Range header
|
2023-11-07 23:38:10 by Thomas Klausner | Files touched by this commit (112) |
Log message:
*: latest py-sphinx only support Python 3.9+
|
2023-10-28 21:57:26 by Thomas Klausner | Files touched by this commit (516) | |
Log message:
python/wheel.mk: simplify a lot, and switch to 'installer' for installation
This follows the recommended bootstrap method (flit_core, build, installer).
However, installer installs different files than pip, so update PLISTs
for all packages using wheel.mk and bump their PKGREVISIONs.
|
2023-06-08 12:09:52 by Adam Ciarcinski | Files touched by this commit (3) | |
Log message:
py-cachecontrol: updated to 0.13.1
v0.13.1
serialize: remove v1 and v2 formats
refactor: move the serialization implementation to method
feat: drop support of Python older than 3.7
fix(typing): fix wrong types
workflows: add a release workflow
cachecontrol: 0.13.1
|
2023-06-06 09:58:53 by Thomas Klausner | Files touched by this commit (3) | |
Log message:
py-cachecontrol: update to 0.13.0.
Fix #292: disuse HTTPResponse.strict by @dairiki in #301
fix: double reading error on urllib3 2.0 by @frostming in #296
Packaging the tests, or not by @dimbleby in #287
Add type annotations by @dimbleby in #279
Use Python's unittest mock by @jelly in #289
feat: remove compat module by @frostming in #303
tests: Support python 3.11 by @danigm in #304
fix: use pytest native method name by @frostming in #305
Remove use of utcnow by @pganssle in #290
Release 0.13.0 by @frostming in #307
|
2023-05-30 11:45:01 by Thomas Klausner | Files touched by this commit (6) | |
Log message:
py-cachecontrol: revert update to 0.12.12nb1
Requested by adam
distfile was pulled from pypi
XXX: this version has problems with urllib2
|
2023-05-30 09:39:19 by Thomas Klausner | Files touched by this commit (6) | |
Log message:
py-cachecontrol: update to 0.12.12nb1.
Updated to 0.12.12 but add a post-release patch to
improve urllib 2.
Bugfixes and use filelock (instead of lockfile)
|
2022-05-23 13:56:16 by Adam Ciarcinski | Files touched by this commit (2) | |
Log message:
py-cachecontrol: updated to 0.12.11
0.12.11
Added new variant of FileCache, SeparateBodyFileCache, which uses less memory by \
storing the body in a separate file than metadata, and streaming data in and out \
directly to/from that file.
|