Blame python-fedora-messaging.changes

31e8db
-------------------------------------------------------------------
fbf0ec
Mon Mar  4 14:50:05 UTC 2024 - Daniel Garcia <daniel.garcia@suse.com>
fbf0ec
fbf0ec
- use pyproject_wheel to build
fbf0ec
- skip broken tests with python 3.12
fbf0ec
- Update to 3.4.1:
fbf0ec
  * This is just a minor bugfix release to fix CI.
fbf0ec
- 3.4.0:
fbf0ec
  * Mirror the message priority in the headers (eba336b)
fbf0ec
- 3.3.0:
fbf0ec
  * Add support for asyncio-based callbacks in the consumer. As a
fbf0ec
    consequence, the Twisted reactor used by the CLI is now asyncio.
fbf0ec
    (#282)
fbf0ec
fbf0ec
-------------------------------------------------------------------
5c54cc
Thu Dec 15 09:16:19 UTC 2022 - Daniel Garcia <daniel.garcia@suse.com>
5c54cc
5c54cc
- Remove python_module macro definition
5c54cc
- More specific python_sitelib in %files
5c54cc
- Remove not needed python-six requirement
5c54cc
- Add update alternatives requirement
5c54cc
5c54cc
-------------------------------------------------------------------
d7d3f3
Fri Oct 28 17:02:11 UTC 2022 - Yogalakshmi Arunachalam <yarunachalam@suse.com>
d7d3f3
d7d3f3
- Update to version 3.2.0 
d7d3f3
  Features
d7d3f3
  * Add a priority property to messages, and a default priority in the configuration (#275)
d7d3f3
  * Add a message schema attribute and some documentation to help deprecate and upgrade message schemas (#227)
d7d3f3
  Other Changes
d7d3f3
  * Use tomllib from the standard library on Python 3.11 and above, fallback to tomli otherwise. (PR#274)
d7d3f3
d7d3f3
-------------------------------------------------------------------
567c18
Wed Oct 12 03:16:41 UTC 2022 - Yogalakshmi Arunachalam <yarunachalam@suse.com>
567c18
567c18
- Update to version 3.1.0 
567c18
  * Add the app_name and agent_name properties to message schemas (#272)
567c18
  * Added "groups" property to message schemas. This property can be used if an event affects a list of groups. (#252)
567c18
567c18
-------------------------------------------------------------------
001374
Wed Aug  3 03:12:42 UTC 2022 - Steve Kowalik <steven.kowalik@suse.com>
001374
001374
- Update to 3.0.2:
001374
  * Add packit configuration.
001374
  * Correct sync list, add issue repo and version info
001374
- Remove unneeded BuildRequires on mock. 
001374
001374
-------------------------------------------------------------------
54a014
Tue May  3 11:05:27 UTC 2022 - pgajdos@suse.com
54a014
54a014
- add upstream bug url
54a014
54a014
-------------------------------------------------------------------
fe151c
Mon May  2 16:46:52 UTC 2022 - pgajdos@suse.com
fe151c
fe151c
- version update
fe151c
  3.0.0 (2021-12-14)
fe151c
  ==================
fe151c
  API Changes
fe151c
  -----------
fe151c
  * Queues created by the CLI are now non-durable, auto-deleted and exclusive, as
fe151c
    server-named queues are.
fe151c
    (`PR#239 <https://github.com/fedora-infra/fedora-messaging/pull/239>`_)
fe151c
  * It is no longer necessary to declare a queue in the configuration file: a
fe151c
    server-named queue will be created. Configured bindings which do not specify
fe151c
    a queue name will be applied to the server-named queue.
fe151c
    (`PR#239 <https://github.com/fedora-infra/fedora-messaging/pull/239>`_)
fe151c
  * Drop support for Python 2
fe151c
    (`PR#246 <https://github.com/fedora-infra/fedora-messaging/pull/246>`_)
fe151c
  * Drop the Twisted classes that had been flagged as deprecated.
fe151c
    Drop the deprecated ``Message._body`` property.
fe151c
    Refactor the consuming code into the ``Consumer`` class.
fe151c
    (`PR#249 <https://github.com/fedora-infra/fedora-messaging/pull/249>`_)
fe151c
  Features
fe151c
  --------
fe151c
  * Support anonymous (server-named) queues.
fe151c
    (`PR#239 <https://github.com/fedora-infra/fedora-messaging/pull/239>`_)
fe151c
  * Support Python 3.10
fe151c
    (`PR#250 <https://github.com/fedora-infra/fedora-messaging/pull/250>`_)
fe151c
  * Raise ``PublishForbidden`` exception immediately if publishing to `virtual host
fe151c
    <https://www.rabbitmq.com/access-control.html>`_ is denied rather than waiting until timeout occurs.
fe151c
    (`#203 <https://github.com/fedora-infra/fedora-messaging/issues/203>`_)
fe151c
  Bug Fixes
fe151c
  ---------
fe151c
  * Fixed validation exception of queue field on serialized schemas.
fe151c
    (`#240 <https://github.com/fedora-infra/fedora-messaging/issues/240>`_)
fe151c
  2.1.0 (2021-05-12)
fe151c
  ==================
fe151c
  Features
fe151c
  --------
fe151c
  * Improve the testing module to check message topics and bodies separately,
fe151c
    and to use the rewritten assert that pytest provides
fe151c
    (`PR#230 <https://github.com/fedora-infra/fedora-messaging/pull/230>`_)
fe151c
  * Handle `topic authorization <https://www.rabbitmq.com/access-control.html#topic-authorisation>`_
fe151c
    by raising a ``PublishForbidden`` exception instead of being stuck in a retry loop
fe151c
    (`PR#235 <https://github.com/fedora-infra/fedora-messaging/pull/235>`_)
fe151c
  * Test on Python 3.8 and 3.9
fe151c
    (`PR#237 <https://github.com/fedora-infra/fedora-messaging/pull/237>`_)
fe151c
  Bug Fixes
fe151c
  ---------
fe151c
  * Require setuptools, as ``pkg_resources`` is used
fe151c
    (`PR#233 <https://github.com/fedora-infra/fedora-messaging/pull/233>`_)
fe151c
  2.0.2 (2020-08-04)
fe151c
  ==================
fe151c
  Bug Fixes
fe151c
  ---------
fe151c
  * Set the QoS on the channel that is created for the consumer
fe151c
    (`#223 <https://github.com/fedora-infra/fedora-messaging/issues/223>`_)
fe151c
  2.0.1 (2020-01-02)
fe151c
  ==================
fe151c
  Bug Fixes
fe151c
  ---------
fe151c
  * Fix handling of new connections after a publish timeout
fe151c
    (`#212 <https://github.com/fedora-infra/fedora-messaging/issues/212>`_)
fe151c
- deleted patches
fe151c
  - pr_232.patch (upstreamed)
fe151c
fe151c
-------------------------------------------------------------------
4a91cf
Sat Mar 27 03:03:01 UTC 2021 - John Vandenberg <jayvdb@gmail.com>
4a91cf
4a91cf
- Add pr_232.patch from upstream
4a91cf
4a91cf
-------------------------------------------------------------------
31e8db
Tue Nov 17 11:59:41 UTC 2020 - John Vandenberg <jayvdb@gmail.com>
31e8db
31e8db
- Update to v2.0.2
31e8db
31e8db
-------------------------------------------------------------------
31e8db
Fri Dec 27 11:45:26 AM UTC 2019 - John Vandenberg <jayvdb@gmail.com>
31e8db
31e8db
- Initial spec for v2.0.0