<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/kombu.git, branch 4.2</title>
<subtitle>github.com: celery/kombu.git
</subtitle>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/kombu.git/'/>
<entry>
<title>Mention 4.2.2-post1 in changelog.</title>
<updated>2019-01-08T09:49:47+00:00</updated>
<author>
<name>Omer Katz</name>
<email>omer.drow@gmail.com</email>
</author>
<published>2019-01-08T09:48:56+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/kombu.git/commit/?id=06ee7855814f66280b1b3277b0ac7ff4d8f3e76d'/>
<id>06ee7855814f66280b1b3277b0ac7ff4d8f3e76d</id>
<content type='text'>
Fixed formatting as well.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Fixed formatting as well.
</pre>
</div>
</content>
</entry>
<entry>
<title>Bump version: 3.2.2 → 4.2.2-post1</title>
<updated>2019-01-01T13:58:47+00:00</updated>
<author>
<name>Omer Katz</name>
<email>omer.drow@gmail.com</email>
</author>
<published>2019-01-01T13:55:02+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/kombu.git/commit/?id=76381d85401b2ea692408c2fb9caad4c1825114b'/>
<id>76381d85401b2ea692408c2fb9caad4c1825114b</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Bump version: 4.2.1 → 4.2.2</title>
<updated>2018-12-06T14:29:26+00:00</updated>
<author>
<name>Omer Katz</name>
<email>omer.drow@gmail.com</email>
</author>
<published>2018-12-06T14:29:26+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/kombu.git/commit/?id=9a5d25eb05866e80361b691737ae7c9de7ea91ac'/>
<id>9a5d25eb05866e80361b691737ae7c9de7ea91ac</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Update Changelog.</title>
<updated>2018-12-06T14:28:52+00:00</updated>
<author>
<name>Omer Katz</name>
<email>omer.drow@gmail.com</email>
</author>
<published>2018-12-06T14:28:52+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/kombu.git/commit/?id=2f4c377f2026d805b2ae7d870939848fa2488469'/>
<id>2f4c377f2026d805b2ae7d870939848fa2488469</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Correct order of Redis `zadd` dict elements (#953)</title>
<updated>2018-12-06T14:23:22+00:00</updated>
<author>
<name>Jeppe Fihl-Pearson</name>
<email>tenzer@tenzer.dk</email>
</author>
<published>2018-11-20T13:27:38+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/kombu.git/commit/?id=273b0f0cc09d6d75c552f45654b677f142927f7d'/>
<id>273b0f0cc09d6d75c552f45654b677f142927f7d</id>
<content type='text'>
The changed `zadd()` behaviour in redis-py 3 states:
https://github.com/andymccurdy/redis-py#mset-msetnx-and-zadd

&gt; For ZADD, the dict is a mapping of element-names -&gt; score.

So the dictionary generated for `zadd()` should be flipped around to have the
`delivery_tag` as the key and the score as value. This commit fixes that.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The changed `zadd()` behaviour in redis-py 3 states:
https://github.com/andymccurdy/redis-py#mset-msetnx-and-zadd

&gt; For ZADD, the dict is a mapping of element-names -&gt; score.

So the dictionary generated for `zadd()` should be flipped around to have the
`delivery_tag` as the key and the score as value. This commit fixes that.</pre>
</div>
</content>
</entry>
<entry>
<title>Support redis-py v2 and v3 (#948)</title>
<updated>2018-12-06T14:23:11+00:00</updated>
<author>
<name>Ash Berlin-Taylor</name>
<email>ash_github@firemirror.com</email>
</author>
<published>2018-11-19T17:33:50+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/kombu.git/commit/?id=94294a5e5bd3fdeb639bcbe32e3a9ac08bb0ba9c'/>
<id>94294a5e5bd3fdeb639bcbe32e3a9ac08bb0ba9c</id>
<content type='text'>
Further to #946 this fixes the underlying issue in a easy-to-upgrade way
for end users, many of whom will have Redis installed via other means.
By having this check here and supporting both versions concurrently it
makes it easier for end users, and to use celery/kombu in projects that
use Redis elsewhere.

With this change it is possibly worth reverting #946</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Further to #946 this fixes the underlying issue in a easy-to-upgrade way
for end users, many of whom will have Redis installed via other means.
By having this check here and supporting both versions concurrently it
makes it easier for end users, and to use celery/kombu in projects that
use Redis elsewhere.

With this change it is possibly worth reverting #946</pre>
</div>
</content>
</entry>
<entry>
<title>Bump version: 4.2.0 → 4.2.1</title>
<updated>2018-05-30T14:07:29+00:00</updated>
<author>
<name>Omer Katz</name>
<email>omer.drow@gmail.com</email>
</author>
<published>2018-05-30T14:07:29+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/kombu.git/commit/?id=c627c6d9d1f29ae0bcb03931d5f24001e60f72a9'/>
<id>c627c6d9d1f29ae0bcb03931d5f24001e60f72a9</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Updated changelog.</title>
<updated>2018-05-30T14:07:24+00:00</updated>
<author>
<name>Omer Katz</name>
<email>omer.drow@gmail.com</email>
</author>
<published>2018-05-30T14:07:24+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/kombu.git/commit/?id=736d1909bac5d14074ad116796871fc9a4c4c667'/>
<id>736d1909bac5d14074ad116796871fc9a4c4c667</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Remove data_files from setup.py (#882)</title>
<updated>2018-05-30T13:18:13+00:00</updated>
<author>
<name>Sławomir Ehlert</name>
<email>slafs.e@gmail.com</email>
</author>
<published>2018-05-30T13:18:13+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/kombu.git/commit/?id=25cafc4f5f506aefb56d5e48521822d1a0450e22'/>
<id>25cafc4f5f506aefb56d5e48521822d1a0450e22</id>
<content type='text'>
Fixes #881

Also add some blank lines for pep-8 compatibility</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Fixes #881

Also add some blank lines for pep-8 compatibility</pre>
</div>
</content>
</entry>
<entry>
<title>Bump stable version for docs.</title>
<updated>2018-05-28T13:57:51+00:00</updated>
<author>
<name>Omer Katz</name>
<email>omer.drow@gmail.com</email>
</author>
<published>2018-05-28T13:56:40+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/kombu.git/commit/?id=e8e92af89e3a86d4e4ef5d662e5becf2e1bc94ff'/>
<id>e8e92af89e3a86d4e4ef5d662e5becf2e1bc94ff</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
