Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prepare for release: v1.1.3 #419

Merged
merged 2 commits into from
Sep 20, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 25 additions & 1 deletion Changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,35 @@
Change history
================

.. _version-1.1.3:

1.1.3
=====
:release-date: 20 September, 2024
:release-by: Tomer Nosrati

What's Changed
==============

Fixed issues when using Redis as a backend.

- Build(deps): Bump boto3 from 1.35.14 to 1.35.18 (#409)
- Build(deps): Bump botocore from 1.35.18 to 1.35.19 (#408)
- Build(deps): Bump setuptools from 74.1.2 to 75.0.0 (#407)
- Fixed Redis error in the smoke tests: "Possible SECURITY ATTACK detected" (#413)
- Fix Redis memory overcommit warning in the CI (#414)
- Build(deps): Bump setuptools from 75.0.0 to 75.1.0 (#411)
- Relaxed flaky tests mechanism (#415)
- Bumping Dependencies (inc. pyproject.toml) (#416)
- Fixed IndexError when accessing the container port info (#417)
- Resolved race condition during Redis backend teardown (#418)
- Prepare for release: v1.1.3 (#419)

.. _version-1.1.2:

1.1.2
=====
:release-date: 14 August, 2024
:release-date: 14 September, 2024
:release-by: Tomer Nosrati

What's Changed
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

|build-status| |coverage| |license| |semgrep| |pyversion| |pyimp| |ocbackerbadge| |ocsponsorbadge| |poetry|

:Version: 1.1.2
:Version: 1.1.3
:Web: https://pytest-celery.readthedocs.io/en/latest/
:Download: https://pypi.org/project/pytest-celery/
:Source: https://github.com/celery/pytest-celery/
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ description = "Pytest plugin for Celery"
homepage = "https://github.com/celery/pytest-celery"
license = "BSD"
name = "pytest-celery"
version = "1.1.2"
version = "1.1.3"
readme = "README.rst"
keywords = ["pytest", "celery"]

Expand Down
2 changes: 1 addition & 1 deletion src/pytest_celery/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# flake8: noqa


__version__ = "1.1.2"
__version__ = "1.1.3"
__author__ = "Tomer Nosrati"
__contact__ = "tomer.nosrati@gmail.com"
__homepage__ = "https://pytest-celery.readthedocs.io/"
Expand Down