pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/net/py-celery



Module Name:    pkgsrc
Committed By:   adam
Date:           Wed Jun 12 17:02:05 UTC 2024

Modified Files:
        pkgsrc/net/py-celery: Makefile PLIST distinfo

Log Message:
py-celery: updated to 5.4.0

5.4.0
=====

Celery v5.4.0 and v5.3.x have consistently focused on enhancing the overall QA, both internally and externally.
This effort led to the new pytest-celery v1.0.0 release, developed concurrently with v5.3.0 & v5.4.0.

This release introduces two significant QA enhancements:

- **Smoke Tests**: A new layer of automatic tests has been added to Celery's standard CI. These tests are designed to handle production scenarios and complex conditions efficiently. While new 
contributions will not be halted due to the lack of smoke tests, we will request smoke tests for advanced changes where appropriate.
- `Standalone Bug Report Script <https://docs.celeryq.dev/projects/pytest-celery/en/latest/userguide/celery-bug-report.html>`_: The new pytest-celery plugin now allows for encapsulating a complete 
Celery dockerized setup within a single pytest script. Incorporating these into new bug reports will enable us to reproduce reported bugs deterministically, potentially speeding up the resolution 
process.

Contrary to the positive developments above, there have been numerous reports about issues with the Redis broker malfunctioning
upon restarts and disconnections. Our initial attempts to resolve this were not successful
With our enhanced QA capabilities, we are now prepared to address the core issue with Redis (as a broker) again.

The rest of the changes for this release are grouped below, with the changes from the latest release candidate listed at the end.

Changes
-------
- Add a Task class specialised for Django
- Add Google Cloud Storage (GCS) backend
- Added documentation to the smoke tests infra
- Added a checklist item for using pytest-celery in a bug report
- Bugfix: Missing id on chain
- Bugfix: Worker not consuming tasks after Redis broker restart
- Catch UnicodeDecodeError when opening corrupt beat-schedule.db
- chore(ci): Enhance CI with `workflow_dispatch` for targeted debugging and testing
- Doc: Enhance "Testing with Celery" section
- Docfix: pip install celery[sqs] -> pip install "celery[sqs]"
- Enable efficient `chord` when using dynamicdb as backend store
- feat(daemon): allows daemonization options to be fetched from app settings
- Fix DeprecationWarning: datetime.datetime.utcnow()
- Fix recursive result parents on group in middle of chain
- Fix typos and grammar
- Fixed version documentation tag from 8553 in configuration.rst
- Hotfix: Smoke tests didn't allow customizing the worker's command arguments, now it does
- Make custom remote control commands available in CLI
- Print safe_say() to stdout for non-error flows
- Support moto 5.0
- Update contributing guide to use ssh upstream url
- Update optimizing.rst
- Updated concurrency docs page.


To generate a diff of this commit:
cvs rdiff -u -r1.25 -r1.26 pkgsrc/net/py-celery/Makefile
cvs rdiff -u -r1.8 -r1.9 pkgsrc/net/py-celery/PLIST
cvs rdiff -u -r1.18 -r1.19 pkgsrc/net/py-celery/distinfo

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/net/py-celery/Makefile
diff -u pkgsrc/net/py-celery/Makefile:1.25 pkgsrc/net/py-celery/Makefile:1.26
--- pkgsrc/net/py-celery/Makefile:1.25  Fri Feb  9 06:06:40 2024
+++ pkgsrc/net/py-celery/Makefile       Wed Jun 12 17:02:05 2024
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.25 2024/02/09 06:06:40 adam Exp $
+# $NetBSD: Makefile,v 1.26 2024/06/12 17:02:05 adam Exp $
 
-DISTNAME=      celery-5.3.6
+DISTNAME=      celery-5.4.0
 PKGNAME=       ${PYPKGPREFIX}-${DISTNAME}
 CATEGORIES=    net python
 MASTER_SITES=  ${MASTER_SITE_PYPI:=c/celery/}

Index: pkgsrc/net/py-celery/PLIST
diff -u pkgsrc/net/py-celery/PLIST:1.8 pkgsrc/net/py-celery/PLIST:1.9
--- pkgsrc/net/py-celery/PLIST:1.8      Fri Feb  9 06:06:40 2024
+++ pkgsrc/net/py-celery/PLIST  Wed Jun 12 17:02:05 2024
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.8 2024/02/09 06:06:40 adam Exp $
+@comment $NetBSD: PLIST,v 1.9 2024/06/12 17:02:05 adam Exp $
 bin/celery-${PYVERSSUFFIX}
 ${PYSITELIB}/${WHEEL_INFODIR}/LICENSE
 ${PYSITELIB}/${WHEEL_INFODIR}/METADATA
@@ -126,6 +126,9 @@ ${PYSITELIB}/celery/backends/elasticsear
 ${PYSITELIB}/celery/backends/filesystem.py
 ${PYSITELIB}/celery/backends/filesystem.pyc
 ${PYSITELIB}/celery/backends/filesystem.pyo
+${PYSITELIB}/celery/backends/gcs.py
+${PYSITELIB}/celery/backends/gcs.pyc
+${PYSITELIB}/celery/backends/gcs.pyo
 ${PYSITELIB}/celery/backends/mongodb.py
 ${PYSITELIB}/celery/backends/mongodb.pyc
 ${PYSITELIB}/celery/backends/mongodb.pyo
@@ -231,6 +234,12 @@ ${PYSITELIB}/celery/contrib/__init__.pyo
 ${PYSITELIB}/celery/contrib/abortable.py
 ${PYSITELIB}/celery/contrib/abortable.pyc
 ${PYSITELIB}/celery/contrib/abortable.pyo
+${PYSITELIB}/celery/contrib/django/__init__.py
+${PYSITELIB}/celery/contrib/django/__init__.pyc
+${PYSITELIB}/celery/contrib/django/__init__.pyo
+${PYSITELIB}/celery/contrib/django/task.py
+${PYSITELIB}/celery/contrib/django/task.pyc
+${PYSITELIB}/celery/contrib/django/task.pyo
 ${PYSITELIB}/celery/contrib/migrate.py
 ${PYSITELIB}/celery/contrib/migrate.pyc
 ${PYSITELIB}/celery/contrib/migrate.pyo

Index: pkgsrc/net/py-celery/distinfo
diff -u pkgsrc/net/py-celery/distinfo:1.18 pkgsrc/net/py-celery/distinfo:1.19
--- pkgsrc/net/py-celery/distinfo:1.18  Fri Feb  9 06:06:40 2024
+++ pkgsrc/net/py-celery/distinfo       Wed Jun 12 17:02:05 2024
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.18 2024/02/09 06:06:40 adam Exp $
+$NetBSD: distinfo,v 1.19 2024/06/12 17:02:05 adam Exp $
 
-BLAKE2s (celery-5.3.6.tar.gz) = 363d46cd79f90b3c3b2fb92f1475c9a967bfd91686d6d56a06529dbb599d963f
-SHA512 (celery-5.3.6.tar.gz) = 169fa01c72f4d4932a255f4e7a547d1cc24f6899540414950c37e487163127bd3681b9ad741e9b1375c8a0b2b566b7467448e4523c77b34d29b3873007fb6885
-Size (celery-5.3.6.tar.gz) = 1544498 bytes
+BLAKE2s (celery-5.4.0.tar.gz) = b4a2548f0b6da3c6c2392fb6ace91bd1d77b9cd6dbf58a61eaa271036ea5ae4d
+SHA512 (celery-5.4.0.tar.gz) = e59b62878f7da0af79be13df816e899c948f71f1063643baaabc1244dd44fd3114a5b3d724c010307ca8091c6b4343a4322213bc6154b843b79893b8f772476c
+Size (celery-5.4.0.tar.gz) = 1575692 bytes



Home | Main Index | Thread Index | Old Index