Pika

Latest version: v1.3.2

Safety actively analyzes 723650 Python packages for vulnerabilities to keep your Python projects secure.

Scan your dependencies

Page 2 of 5

1.0.0

[GitHub milestone](https://github.com/pika/pika/milestone/8?closed=1)

- `AsyncioConnection`, `TornadoConnection` and
`TwistedProtocolConnection` are no longer auto-imported
([PR](https://github.com/pika/pika/pull/1129))
- `BlockingConnection.consume` now returns `(None, None, None)` when
inactivity timeout is reached
([PR](https://github.com/pika/pika/pull/901))
- Python 3.7 support
([Issue](https://github.com/pika/pika/issues/1107))
- `all_channels` parameter of the `Channel.basic_qos` method renamed
to `global_qos`
- `global_` parameter of the `Basic.Qos` spec class renamed to
`global_qos`
- **NOTE:** `heartbeat_interval` is removed, use `heartbeat` instead.
- **NOTE:** The [backpressure_detection]{.title-ref} option of
[ConnectionParameters]{.title-ref} and [URLParameters]{.title-ref}
property is REMOVED in favor of [Connection.Blocked]{.title-ref} and
[Connection.Unblocked]{.title-ref}. See
[Connection.add_on_connection_blocked_callback]{.title-ref}.
- **NOTE:** The legacy `basic_publish` method is removed, and
`publish` renamed to `basic_publish`
- **NOTE**: The signature of the following methods has changed from
Pika 0.13.0. In general, the callback parameter that indicates
completion of the method has been moved to the end of the parameter
list to be consistent with other parts of Pika\'s API and with other
libraries in general.

**IMPORTANT**: The signature of the following methods has changed from
Pika 0.13.0. In general, the callback parameter that indicates
completion of the method has been moved to the end of the parameter list
to be consistent with other parts of Pika\'s API and with other
libraries in general.

- `basic_cancel`
- `basic_consume`
- `basic_get`
- `basic_qos`
- `basic_recover`
- `confirm_delivery`
- `exchange_bind`
- `exchange_declare`
- `exchange_delete`
- `exchange_unbind`
- `flow`
- `queue_bind`
- `queue_declare`
- `queue_delete`
- `queue_purge`
- `queue_unbind`

**IMPORTANT**: When specifying TLS / SSL options, the `SSLOptions` class
must be used, and a `dict` is no longer supported.

0.13.1

[GitHub milestone](https://github.com/pika/pika/milestone/14)

0.13.0

[GitHub milestone](https://github.com/pika/pika/milestone/13)

0.12.0

[GitHub milestone](https://github.com/pika/pika/milestone/12)

This is an interim release prior to version [1.0.0]{.title-ref}. It
includes the following backported pull requests and commits from the
[master]{.title-ref} branch:

- [PR 901](https://github.com/pika/pika/pull/901)
- [PR 908](https://github.com/pika/pika/pull/908)
- [PR 910](https://github.com/pika/pika/pull/910)
- [PR 918](https://github.com/pika/pika/pull/918)
- [PR 920](https://github.com/pika/pika/pull/920)
- [PR 924](https://github.com/pika/pika/pull/924)
- [PR 937](https://github.com/pika/pika/pull/937)
- [PR 938](https://github.com/pika/pika/pull/938)
- [PR 933](https://github.com/pika/pika/pull/933)
- [PR 940](https://github.com/pika/pika/pull/940)
- [PR 932](https://github.com/pika/pika/pull/932)
- [PR 928](https://github.com/pika/pika/pull/928)
- [PR 934](https://github.com/pika/pika/pull/934)
- [PR 915](https://github.com/pika/pika/pull/915)
- [PR 946](https://github.com/pika/pika/pull/946)
- [PR 947](https://github.com/pika/pika/pull/947)
- [PR 952](https://github.com/pika/pika/pull/952)
- [PR 956](https://github.com/pika/pika/pull/956)
- [PR 966](https://github.com/pika/pika/pull/966)
- [PR 975](https://github.com/pika/pika/pull/975)
- [PR 978](https://github.com/pika/pika/pull/978)
- [PR 981](https://github.com/pika/pika/pull/981)
- [PR 994](https://github.com/pika/pika/pull/994)
- [PR 1007](https://github.com/pika/pika/pull/1007)
- [PR 1045](https://github.com/pika/pika/pull/1045) (manually
backported)
- [PR 1011](https://github.com/pika/pika/pull/1011)

Commits:

Travis CI fail fast - 3f0e739

New features:

`BlockingConnection.consume` now returns `(None, None, None)` when
inactivity timeout is reached
([PR](https://github.com/pika/pika/pull/901))

`BlockingConnection` now supports the `add_callback_threadsafe` method
which allows a function to be executed correctly on the IO loop thread.
The main use-case for this is as follows:

- Application sets up a thread for `BlockingConnection` and calls
`basic_consume` on it
- When a message is received, work is done on another thread
- When the work is done, the worker uses
`connection.add_callback_threadsafe` to call the `basic_ack` method
on the channel instance.

Please see `examples/basic_consumer_threaded.py` for an example. As
always, `SelectConnection` and a fully async consumer/publisher is the
preferred method of using Pika.

Heartbeats are now sent at an interval equal to 1/2 of the negotiated
idle connection timeout. RabbitMQ\'s default timeout value is 60
seconds, so heartbeats will be sent at a 30 second interval. In
addition, Pika\'s check for an idle connection will be done at an
interval equal to the timeout value plus 5 seconds to allow for delays.
This results in an interval of 65 seconds by default.

0.11.2

[GitHub milestone](https://github.com/pika/pika/milestone/11)

[0.11.2](https://github.com/pika/pika/compare/0.11.1...0.11.2)

- Remove [+]{.title-ref} character from platform releases string
([PR](https://github.com/pika/pika/pull/895))

0.11.1

[GitHub milestone](https://github.com/pika/pika/milestone/10)

[0.11.1](https://github.com/pika/pika/compare/0.11.0...0.11.1)

- Fix [BlockingConnection]{.title-ref} to ensure event loop exits
([PR](https://github.com/pika/pika/pull/887))
- Heartbeat timeouts will use the client value if specified
([PR](https://github.com/pika/pika/pull/874))
- Allow setting some common TCP options
([PR](https://github.com/pika/pika/pull/880))
- Errors when decoding Unicode are ignored
([PR](https://github.com/pika/pika/pull/890))
- Fix large number encoding
([PR](https://github.com/pika/pika/pull/888))

Page 2 of 5

© 2025 Safety CLI Cybersecurity Inc. All Rights Reserved.