<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/requests-cache.git/requests_cache/serializers/__init__.py, branch codecov</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>Reorganize user docs: break down User Guide and Advanced Usage sections into smaller pages</title>
<updated>2021-08-26T22:04:15+00:00</updated>
<author>
<name>Jordan Cook</name>
<email>jordan.cook@pioneer.com</email>
</author>
<published>2021-08-26T19:48:33+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/requests-cache.git/commit/?id=e203a48cdf58eda51f85b27d3eaf852bd9da941c'/>
<id>e203a48cdf58eda51f85b27d3eaf852bd9da941c</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Better serializer docs</title>
<updated>2021-08-21T01:56:46+00:00</updated>
<author>
<name>Jordan Cook</name>
<email>jordan.cook@pioneer.com</email>
</author>
<published>2021-08-20T22:42:29+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/requests-cache.git/commit/?id=d492c56e6870537d02894a31325d23733f2d554b'/>
<id>d492c56e6870537d02894a31325d23733f2d554b</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Remove deprecated 'core' module and BaseCache.remove_old_entries()</title>
<updated>2021-08-15T02:58:28+00:00</updated>
<author>
<name>Jordan Cook</name>
<email>jordan.cook@pioneer.com</email>
</author>
<published>2021-08-09T01:02:00+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/requests-cache.git/commit/?id=bc7ab17836d2afe03db198730f9c8a5aee922a44'/>
<id>bc7ab17836d2afe03db198730f9c8a5aee922a44</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Drop support for python 3.6</title>
<updated>2021-08-15T02:58:01+00:00</updated>
<author>
<name>Jordan Cook</name>
<email>jordan.cook@pioneer.com</email>
</author>
<published>2021-08-03T12:52:18+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/requests-cache.git/commit/?id=707a054da49b3a5ccbac9e16bfb490f1ff65ccb6'/>
<id>707a054da49b3a5ccbac9e16bfb490f1ff65ccb6</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Improve type annotations and fix type checking errors</title>
<updated>2021-07-06T21:24:26+00:00</updated>
<author>
<name>Jordan Cook</name>
<email>jordan.cook@pioneer.com</email>
</author>
<published>2021-07-06T19:49:07+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/requests-cache.git/commit/?id=6f54262b06a96b1019339e655b22c63f5882a632'/>
<id>6f54262b06a96b1019339e655b22c63f5882a632</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Some serialization fixes &amp; updates:</title>
<updated>2021-07-03T20:44:10+00:00</updated>
<author>
<name>Jordan Cook</name>
<email>jordan.cook@pioneer.com</email>
</author>
<published>2021-06-22T18:05:56+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/requests-cache.git/commit/?id=a08c39ad6b213eb379df5872de0a695348c82542'/>
<id>a08c39ad6b213eb379df5872de0a695348c82542</id>
<content type='text'>
* Fix tests on python 3.6:
    * Make `cattrs` optional again
    * Don't run tests for serializers with missing optional dependencies
    * Show any skipped tests in pytest output
 * Fix redirect serialization for backends that serialize all values (DynamoDB and Redis)
    * Otherwise, the redirect value (which is just another key) will get converted into a `CachedResponse`
* Make `pickle` serializer use `cattrs` if installed
* Make `bson` serializer compatible with both `pymongo` version and standalone `bson` library
* Split up `CattrStage` and preconf converters into separate modules
* Turn preconf converters into `Stage` objects
* Add `DeprecationWarning` for previous method of using `itsdangerous`, now that there's a better way to initialize it via `SerializerPipeline`
* Remove `suppress_warnings` kwarg that's now unused
* Make `SerializerPipeline`, `Stage`, and `CattrStage` importable from top-level package (`from requests_cache import ...`)
* Add some more details to docs and docstrings
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* Fix tests on python 3.6:
    * Make `cattrs` optional again
    * Don't run tests for serializers with missing optional dependencies
    * Show any skipped tests in pytest output
 * Fix redirect serialization for backends that serialize all values (DynamoDB and Redis)
    * Otherwise, the redirect value (which is just another key) will get converted into a `CachedResponse`
* Make `pickle` serializer use `cattrs` if installed
* Make `bson` serializer compatible with both `pymongo` version and standalone `bson` library
* Split up `CattrStage` and preconf converters into separate modules
* Turn preconf converters into `Stage` objects
* Add `DeprecationWarning` for previous method of using `itsdangerous`, now that there's a better way to initialize it via `SerializerPipeline`
* Remove `suppress_warnings` kwarg that's now unused
* Make `SerializerPipeline`, `Stage`, and `CattrStage` importable from top-level package (`from requests_cache import ...`)
* Add some more details to docs and docstrings
</pre>
</div>
</content>
</entry>
<entry>
<title>addressing comments from JWCook</title>
<updated>2021-06-21T18:54:42+00:00</updated>
<author>
<name>Parker Hancock</name>
<email>633163+parkerhancock@users.noreply.github.com</email>
</author>
<published>2021-06-21T18:54:42+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/requests-cache.git/commit/?id=623f4cfdeeaa193541624ac31c41a32f890abe95'/>
<id>623f4cfdeeaa193541624ac31c41a32f890abe95</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Add pyyaml as an optional dependency, and fix import</title>
<updated>2021-06-18T00:48:11+00:00</updated>
<author>
<name>Jordan Cook</name>
<email>jordan.cook@pioneer.com</email>
</author>
<published>2021-06-18T00:47:08+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/requests-cache.git/commit/?id=a9baf03860b4797b9b48f5a9fb37746477e87a4a'/>
<id>a9baf03860b4797b9b48f5a9fb37746477e87a4a</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>cleaning up preconf and builtin serializers</title>
<updated>2021-06-16T01:24:24+00:00</updated>
<author>
<name>Parker Hancock</name>
<email>633163+parkerhancock@users.noreply.github.com</email>
</author>
<published>2021-06-16T01:24:24+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/requests-cache.git/commit/?id=f251bc4bfdd36f6952f89b9ee22dd245762f528c'/>
<id>f251bc4bfdd36f6952f89b9ee22dd245762f528c</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>extirpated 'is_binary' from pipelines</title>
<updated>2021-06-15T02:58:56+00:00</updated>
<author>
<name>Parker Hancock</name>
<email>633163+parkerhancock@users.noreply.github.com</email>
</author>
<published>2021-06-15T02:58:56+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/requests-cache.git/commit/?id=abdffac620cd832119255c31aaf0f05a1cc4f973'/>
<id>abdffac620cd832119255c31aaf0f05a1cc4f973</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
