<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/requests-cache.git/tests/unit/test_cache_keys.py, branch master</title>
<subtitle>github.com: reclosedev/requests-cache
</subtitle>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/requests-cache.git/'/>
<entry>
<title>Add support for key-only request parameters</title>
<updated>2022-01-14T21:59:17+00:00</updated>
<author>
<name>Jordan Cook</name>
<email>jordan.cook@pioneer.com</email>
</author>
<published>2022-01-14T21:54:55+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/requests-cache.git/commit/?id=030e788121a2679ec4f39cf3b01d1d670a31f19a'/>
<id>030e788121a2679ec4f39cf3b01d1d670a31f19a</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Format using a more typical line length of 100</title>
<updated>2022-01-01T18:10:43+00:00</updated>
<author>
<name>Jordan Cook</name>
<email>jordan.cook@pioneer.com</email>
</author>
<published>2022-01-01T18:02:10+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/requests-cache.git/commit/?id=023b9bf36a4305f5edceece7ac6eabbd16e2e40d'/>
<id>023b9bf36a4305f5edceece7ac6eabbd16e2e40d</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Reorganize &amp; improve request normalization functions:</title>
<updated>2021-09-21T04:33:30+00:00</updated>
<author>
<name>Jordan Cook</name>
<email>jordan.cook@pioneer.com</email>
</author>
<published>2021-09-20T02:06:03+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/requests-cache.git/commit/?id=b3fc1f042e2deebcc62c1a074a02c0f90ab406ca'/>
<id>b3fc1f042e2deebcc62c1a074a02c0f90ab406ca</id>
<content type='text'>
* Handle all normalization in `cache_keys` module, get rid of `normalize_dict()` function used in `CachedSession`
* Reorganize `cache_keys` helper functions into the following:
    * `normalize_request()`
        * `normalize_url()`
        * `normalize_headers()`
        * `normalize_params()`
        * `normalize_body()`
        * `normalize_json_body()`
    * `redact_response()`
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* Handle all normalization in `cache_keys` module, get rid of `normalize_dict()` function used in `CachedSession`
* Reorganize `cache_keys` helper functions into the following:
    * `normalize_request()`
        * `normalize_url()`
        * `normalize_headers()`
        * `normalize_params()`
        * `normalize_body()`
        * `normalize_json_body()`
    * `redact_response()`
</pre>
</div>
</content>
</entry>
<entry>
<title>Redact ingored_parameters from CachedResponse.url</title>
<updated>2021-09-15T16:49:48+00:00</updated>
<author>
<name>Jordan Cook</name>
<email>jordan.cook@pioneer.com</email>
</author>
<published>2021-09-15T16:49:48+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/requests-cache.git/commit/?id=1a6881aa4d44d41fef9338c5b17d8a2cf6be6949'/>
<id>1a6881aa4d44d41fef9338c5b17d8a2cf6be6949</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Use blake2 instead of sha256 for hashing request info</title>
<updated>2021-09-06T22:47:45+00:00</updated>
<author>
<name>Jordan Cook</name>
<email>JWCook@users.noreply.github.com</email>
</author>
<published>2021-09-06T20:43:28+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/requests-cache.git/commit/?id=332700018a62290616391850f79cc23eaacba4ea'/>
<id>332700018a62290616391850f79cc23eaacba4ea</id>
<content type='text'>
With an 8-byte digest for shorter cache keys. This is still plenty long
enough to avoid hash collisions: `4e-15` for 100,000 items, `4e-7` chance for 1 billion items, etc.

This makes it more convenient for manually inspecting cache items,
especially for the filesystem backend, which uses cache keys as
filenames.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
With an 8-byte digest for shorter cache keys. This is still plenty long
enough to avoid hash collisions: `4e-15` for 100,000 items, `4e-7` chance for 1 billion items, etc.

This makes it more convenient for manually inspecting cache items,
especially for the filesystem backend, which uses cache keys as
filenames.
</pre>
</div>
</content>
</entry>
<entry>
<title>Allow match_headers to optionally accept a list of specific headers to match</title>
<updated>2021-09-06T22:39:30+00:00</updated>
<author>
<name>Jordan Cook</name>
<email>jordan.cook@pioneer.com</email>
</author>
<published>2021-09-05T19:26:32+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/requests-cache.git/commit/?id=30f6896b8c6bcd151fc50001ad451ffd6c6091e0'/>
<id>30f6896b8c6bcd151fc50001ad451ffd6c6091e0</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Add some additional tests for cache key normalization</title>
<updated>2021-08-28T20:11:31+00:00</updated>
<author>
<name>Jordan Cook</name>
<email>jordan.cook@pioneer.com</email>
</author>
<published>2021-08-28T20:11:31+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/requests-cache.git/commit/?id=60f4bb089c794ebc797cd016bbb9cd5ba5845ba0'/>
<id>60f4bb089c794ebc797cd016bbb9cd5ba5845ba0</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Add support for custom cache keys</title>
<updated>2021-08-15T02:58:30+00:00</updated>
<author>
<name>Jordan Cook</name>
<email>jordan.cook@pioneer.com</email>
</author>
<published>2021-08-15T02:19:03+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/requests-cache.git/commit/?id=7f6389747924c33999eb1a0dc9184dd5511a0e35'/>
<id>7f6389747924c33999eb1a0dc9184dd5511a0e35</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Add more test coverage for cache_control and cache_keys modules</title>
<updated>2021-08-12T20:25:15+00:00</updated>
<author>
<name>Jordan Cook</name>
<email>jordan.cook@pioneer.com</email>
</author>
<published>2021-08-10T20:06:50+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/requests-cache.git/commit/?id=0c29101d1c9532936e6548265accb14e335064f5'/>
<id>0c29101d1c9532936e6548265accb14e335064f5</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
