summaryrefslogtreecommitdiff
path: root/docs
Commit message (Collapse)AuthorAgeFilesLines
* Bump version: 5.3.0b2 → 5.3.0b3v5.3.0b3Asif Saif Uddin2023-03-201-1/+1
|
* docs: Add notes for kombu.utils.json.register_type (#1660)Serhii Tereshchenko2023-03-021-0/+17
| | | Refs #1590
* Switch references to master to mainOmer Katz2022-12-291-4/+4
|
* Bump version: 5.3.0b1 → 5.3.0b2v5.3.0b2Asif Saif Uddin2022-10-191-1/+1
|
* Bump version: 5.3.0a1 → 5.3.0b1v5.3.0b1Asif Saif Uddin2022-08-011-1/+1
|
* Avoid losing type of UUID when serializing/deserializing (#1575)Carlos Gottberg2022-07-171-2/+8
| | | | | | | | | | | | | | | | | | | | | * Avoid losing type of UUID when serializing/deserializing Serializing UUIDs as strs and deserializing them as strs can lead to somewhat obscure bugs such as the one that led to the creation of this PR in django-cacheback https://github.com/codeinthehole/django-cacheback/pull/100 which some would call unexpected behaviour. After all, an UUID is altogether a different type from strs and if bytes got their own serializer/deserializer for UUID the same logic should apply. * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * Update documentation for JSON serialization Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
* Bump version: 5.2.4 → 5.3.0a1v5.3.0a1Asif Saif Uddin2022-06-291-1/+1
|
* Kafka support (#1506)CountRedClaw2022-04-211-0/+31
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Add kafka support * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * Fix checks * Fix checks * Update kombu/transport/confluentkafka.py Co-authored-by: Asif Saif Uddin <auvipy@gmail.com> * Add customization ability * Add docs * Fix pypi integration tests * Fix pydocstyle * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * Cleanup * Disable PyPy tests * Fix tests * Add docs Co-authored-by: ilbo0518 <ilia.borsuk@netcracker.com> Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> Co-authored-by: Asif Saif Uddin <auvipy@gmail.com>
* json.py cleaning from outdated libs (#1533)dobosevych2022-04-162-6/+3
| | | | | | | | | | | | * json.py cleaning from outdated libs * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * 1. Removed cjson and simplejson from documentation, as those libraries aren't supported anymore 2. Removed _json_extra_kwargs from json.py Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
* Bump pyupgrade version and add __future__.annotations importMarcelo Trylesinski2022-04-151-0/+2
|
* Correct documentation stating kombu uses pickle protocol version 2Jonathan Lopez2022-04-061-1/+1
|
* Bump version: 5.2.3 → 5.2.4v5.2.4Asif Saif Uddin2022-03-061-1/+1
|
* Some small updates (#1486)Mads Jensen2022-01-301-1/+1
| | | | | * Some small updates * Update QpidException super-call to Python 3 syntax.
* Bump version: 5.2.2 → 5.2.3v5.2.3Asif Saif Uddin2021-12-291-1/+1
|
* Bump version: 5.2.1 → 5.2.2v5.2.2Asif Saif Uddin2021-11-161-1/+1
|
* update introduction docsAsif Saif Uddin2021-11-161-9/+1
|
* Bump version: 5.2.0 → 5.2.1v5.2.1Asif Saif Uddin2021-11-081-1/+1
|
* Quick fix: current version is 5.2.0, not 5.2.01v5.2.0Naomi Elstein2021-11-021-1/+1
|
* Bump version: 5.2.0rc1 → 5.2.0Naomi Elstein2021-11-021-1/+1
|
* Bump version: 5.1.0 → 5.2.0rc1v5.2.0rc1Asif Saif Uddin2021-09-071-1/+1
|
* Small fixes in documentationMatus Valo2021-06-091-0/+1
|
* Bump version: 5.1.0b1 → 5.1.0Omer Katz2021-05-231-1/+1
|
* Ignore kombu.transport.librabbitmq in apicheck.Matus Valo2021-04-141-0/+1
| | | | | We are ignoring kombu.transport.librabbitmq because apicheck is failing due missing librabbitmq library.
* Bump version: 5.0.2 → 5.1.0b1v5.1.0b1Asif Saif Uddin (Auvi)2021-04-011-1/+1
|
* Small doc fixes (#1319)Gabriel Niebler2021-03-181-11/+19
| | | | | | | | | | | | | | | * Clean up grammar in paragraph about callbacks * Structure event draining examples into subsections * Make code example make more sense … and bring it more in line with text above. * Fix code example * Fix another code example typo in method name
* Fix tiny mistake in introduction (#1312)Gabriel Niebler2021-03-161-3/+3
| | | | | | | | | * Fix tiny mistake in introduction … at least I _think_ it's a mistake. * Remove unused import in code example * Fix minor grammatical errors
* alter doc (#1304)gal cohen2021-03-021-0/+1
| | | Co-authored-by: galcohen <gal.cohen@autodesk.com>
* SQS back-off policy (#1301)gal cohen2021-03-021-0/+40
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * sqs retry policy * add test * method definition * add validation * rename policy * add kombu doc * improve docstring * add test and doc * test fix * test fixes * add doc * Update docs/reference/kombu.transport.SQS.rst Co-authored-by: Omer Katz <omer.drow@gmail.com> * Update docs/reference/kombu.transport.SQS.rst Co-authored-by: Omer Katz <omer.drow@gmail.com> * Update kombu/transport/SQS.py Co-authored-by: Omer Katz <omer.drow@gmail.com> * Update kombu/transport/SQS.py Co-authored-by: Omer Katz <omer.drow@gmail.com> * Update kombu/transport/SQS.py Co-authored-by: Omer Katz <omer.drow@gmail.com> * review improvements * improvements * add improvements * rename Co-authored-by: galcohen <gal.cohen@autodesk.com> Co-authored-by: Omer Katz <omer.drow@gmail.com> Co-authored-by: Asif Saif Uddin <auvipy@gmail.com>
* Python 3 style print statementRedowan Delowar2021-01-151-1/+1
|
* Update connections.rst with Redis sentinel exampleAnudeep Samaiya2020-12-231-0/+3
| | | Add redis sentinel example for in connections.rst for kombu.
* Remove kombu.transport.sqlalchemy.models from API reference Table of ContentMatus Valo2020-11-031-3/+2
|
* Reformat and improve kombu transport reference docs (#1264)Matus Valo2020-11-033-36/+36
|
* Added kombu.pools.get_limit() to pools userguideMatus Valo2020-10-241-1/+14
|
* Fix parameter of SimpleBuffer in exampleMatus Valo2020-10-241-1/+1
|
* Fix default value of pool limit to 10 in docs.Matus Valo2020-10-121-1/+1
| | | | | In commit 40722ea59c38282a986ab83ebce853f1c8a67e8d the pool limit was changed from 200 to 10.
* Split reference guide into sectionsMatus Valo2020-10-081-18/+43
|
* rename section kombu -> kombu.serialization in reference docsMatus Valo2020-10-021-3/+3
|
* Removed kombu.five from reference toctreeMatus Valo2020-09-271-1/+0
|
* Fixed examples in failover documentationMatus Valo2020-09-241-4/+0
|
* Added Redis SentinelChannel to reference docsMatus Valo2020-09-231-0/+7
|
* Bump version: 5.0.1 → 5.0.2v5.0.2Omer Katz2020-09-061-1/+1
|
* Added Failover userguideMatus Valo2020-09-052-0/+173
|
* Indent code block in documentationMatus Valo2020-08-281-2/+2
|
* Bump version: 5.0.0 → 5.0.1v5.0.1Omer Katz2020-08-231-1/+1
|
* Fix documentation issues.Omer Katz2020-08-232-13/+2
|
* Bump version: 4.6.11 → 5.0.0v5.0.0Omer Katz2020-08-051-1/+1
|
* pyupgradeOmer Katz2020-07-131-3/+0
|
* v4.6.11v4.6.11Asif Saif Uddin (Auvi)2020-06-241-1/+1
|
* Improve mention for MongoDB transport mention in docsDefteZ2020-06-141-1/+2
|
* v4.6.10v4.6.104.6.9Asif Saif Uddin (Auvi)2020-06-031-1/+1
|