rrq 0.8.0__tar.gz → 0.8.1__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (61) hide show
  1. {rrq-0.8.0 → rrq-0.8.1}/PKG-INFO +8 -2
  2. {rrq-0.8.0 → rrq-0.8.1}/README.md +7 -1
  3. {rrq-0.8.0 → rrq-0.8.1}/pyproject.toml +1 -1
  4. {rrq-0.8.0 → rrq-0.8.1}/.coverage +0 -0
  5. {rrq-0.8.0 → rrq-0.8.1}/.github/workflows/ci.yml +0 -0
  6. {rrq-0.8.0 → rrq-0.8.1}/.gitignore +0 -0
  7. {rrq-0.8.0 → rrq-0.8.1}/AGENTS.md +0 -0
  8. {rrq-0.8.0 → rrq-0.8.1}/CLAUDE.md +0 -0
  9. {rrq-0.8.0 → rrq-0.8.1}/LICENSE +0 -0
  10. {rrq-0.8.0 → rrq-0.8.1}/MANIFEST.in +0 -0
  11. {rrq-0.8.0 → rrq-0.8.1}/docs/CLI_REFERENCE.md +0 -0
  12. {rrq-0.8.0 → rrq-0.8.1}/example/example_rrq_settings.py +0 -0
  13. {rrq-0.8.0 → rrq-0.8.1}/example/rrq_example.py +0 -0
  14. {rrq-0.8.0 → rrq-0.8.1}/rrq/__init__.py +0 -0
  15. {rrq-0.8.0 → rrq-0.8.1}/rrq/cli.py +0 -0
  16. {rrq-0.8.0 → rrq-0.8.1}/rrq/cli_commands/__init__.py +0 -0
  17. {rrq-0.8.0 → rrq-0.8.1}/rrq/cli_commands/base.py +0 -0
  18. {rrq-0.8.0 → rrq-0.8.1}/rrq/cli_commands/commands/__init__.py +0 -0
  19. {rrq-0.8.0 → rrq-0.8.1}/rrq/cli_commands/commands/debug.py +0 -0
  20. {rrq-0.8.0 → rrq-0.8.1}/rrq/cli_commands/commands/dlq.py +0 -0
  21. {rrq-0.8.0 → rrq-0.8.1}/rrq/cli_commands/commands/jobs.py +0 -0
  22. {rrq-0.8.0 → rrq-0.8.1}/rrq/cli_commands/commands/monitor.py +0 -0
  23. {rrq-0.8.0 → rrq-0.8.1}/rrq/cli_commands/commands/queues.py +0 -0
  24. {rrq-0.8.0 → rrq-0.8.1}/rrq/cli_commands/utils.py +0 -0
  25. {rrq-0.8.0 → rrq-0.8.1}/rrq/client.py +0 -0
  26. {rrq-0.8.0 → rrq-0.8.1}/rrq/constants.py +0 -0
  27. {rrq-0.8.0 → rrq-0.8.1}/rrq/cron.py +0 -0
  28. {rrq-0.8.0 → rrq-0.8.1}/rrq/exc.py +0 -0
  29. {rrq-0.8.0 → rrq-0.8.1}/rrq/exporters/__init__.py +0 -0
  30. {rrq-0.8.0 → rrq-0.8.1}/rrq/exporters/prometheus.py +0 -0
  31. {rrq-0.8.0 → rrq-0.8.1}/rrq/exporters/statsd.py +0 -0
  32. {rrq-0.8.0 → rrq-0.8.1}/rrq/hooks.py +0 -0
  33. {rrq-0.8.0 → rrq-0.8.1}/rrq/integrations/__init__.py +0 -0
  34. {rrq-0.8.0 → rrq-0.8.1}/rrq/integrations/ddtrace.py +0 -0
  35. {rrq-0.8.0 → rrq-0.8.1}/rrq/integrations/logfire.py +0 -0
  36. {rrq-0.8.0 → rrq-0.8.1}/rrq/integrations/otel.py +0 -0
  37. {rrq-0.8.0 → rrq-0.8.1}/rrq/job.py +0 -0
  38. {rrq-0.8.0 → rrq-0.8.1}/rrq/registry.py +0 -0
  39. {rrq-0.8.0 → rrq-0.8.1}/rrq/settings.py +0 -0
  40. {rrq-0.8.0 → rrq-0.8.1}/rrq/store.py +0 -0
  41. {rrq-0.8.0 → rrq-0.8.1}/rrq/telemetry.py +0 -0
  42. {rrq-0.8.0 → rrq-0.8.1}/rrq/worker.py +0 -0
  43. {rrq-0.8.0 → rrq-0.8.1}/tests/CLAUDE.md +0 -0
  44. {rrq-0.8.0 → rrq-0.8.1}/tests/__init__.py +0 -0
  45. {rrq-0.8.0 → rrq-0.8.1}/tests/cli_commands/__init__.py +0 -0
  46. {rrq-0.8.0 → rrq-0.8.1}/tests/cli_commands/conftest.py +0 -0
  47. {rrq-0.8.0 → rrq-0.8.1}/tests/cli_commands/test_debug_commands.py +0 -0
  48. {rrq-0.8.0 → rrq-0.8.1}/tests/cli_commands/test_dlq_commands.py +0 -0
  49. {rrq-0.8.0 → rrq-0.8.1}/tests/cli_commands/test_integration.py +0 -0
  50. {rrq-0.8.0 → rrq-0.8.1}/tests/cli_commands/test_job_commands.py +0 -0
  51. {rrq-0.8.0 → rrq-0.8.1}/tests/cli_commands/test_monitor_commands.py +0 -0
  52. {rrq-0.8.0 → rrq-0.8.1}/tests/cli_commands/test_monitor_dlq_integration.py +0 -0
  53. {rrq-0.8.0 → rrq-0.8.1}/tests/cli_commands/test_queue_commands.py +0 -0
  54. {rrq-0.8.0 → rrq-0.8.1}/tests/cli_commands/test_queue_dlq_integration.py +0 -0
  55. {rrq-0.8.0 → rrq-0.8.1}/tests/test_cli.py +0 -0
  56. {rrq-0.8.0 → rrq-0.8.1}/tests/test_client.py +0 -0
  57. {rrq-0.8.0 → rrq-0.8.1}/tests/test_cron.py +0 -0
  58. {rrq-0.8.0 → rrq-0.8.1}/tests/test_registry.py +0 -0
  59. {rrq-0.8.0 → rrq-0.8.1}/tests/test_store.py +0 -0
  60. {rrq-0.8.0 → rrq-0.8.1}/tests/test_worker.py +0 -0
  61. {rrq-0.8.0 → rrq-0.8.1}/uv.lock +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: rrq
3
- Version: 0.8.0
3
+ Version: 0.8.1
4
4
  Summary: RRQ is a Python library for creating reliable job queues using Redis and asyncio
5
5
  Project-URL: Homepage, https://github.com/getresq/rrq
6
6
  Project-URL: Bug Tracker, https://github.com/getresq/rrq/issues
@@ -34,7 +34,13 @@ Description-Content-Type: text/markdown
34
34
 
35
35
  RRQ is a Python library for creating reliable job queues using Redis and `asyncio`, inspired by [ARQ (Async Redis Queue)](https://github.com/samuelcolvin/arq). It focuses on providing at-least-once job processing semantics with features like automatic retries, job timeouts, dead-letter queues, and graceful worker shutdown.
36
36
 
37
- ## 🆕 What's New in v0.7.1
37
+ ## 🆕 What's New in v0.8.1
38
+
39
+ - **Distributed Tracing**: One-line integrations for Datadog, OpenTelemetry, and Logfire
40
+ - **Trace Context Propagation**: Automatic trace context from producer to worker
41
+ - **Prometheus & StatsD Exporters**: New metrics exporters for monitoring
42
+
43
+ ## What's New in v0.7
38
44
 
39
45
  - **Comprehensive CLI Tools**: 15+ new commands for monitoring, debugging, and management
40
46
  - **Real-time Monitoring Dashboard**: Interactive dashboard with `rrq monitor`
@@ -2,7 +2,13 @@
2
2
 
3
3
  RRQ is a Python library for creating reliable job queues using Redis and `asyncio`, inspired by [ARQ (Async Redis Queue)](https://github.com/samuelcolvin/arq). It focuses on providing at-least-once job processing semantics with features like automatic retries, job timeouts, dead-letter queues, and graceful worker shutdown.
4
4
 
5
- ## 🆕 What's New in v0.7.1
5
+ ## 🆕 What's New in v0.8.1
6
+
7
+ - **Distributed Tracing**: One-line integrations for Datadog, OpenTelemetry, and Logfire
8
+ - **Trace Context Propagation**: Automatic trace context from producer to worker
9
+ - **Prometheus & StatsD Exporters**: New metrics exporters for monitoring
10
+
11
+ ## What's New in v0.7
6
12
 
7
13
  - **Comprehensive CLI Tools**: 15+ new commands for monitoring, debugging, and management
8
14
  - **Real-time Monitoring Dashboard**: Interactive dashboard with `rrq monitor`
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
4
4
 
5
5
  [project]
6
6
  name = "rrq"
7
- version = "0.8.0"
7
+ version = "0.8.1"
8
8
  authors = [{ name = "Mazdak Rezvani", email = "mazdak@me.com" }]
9
9
  description = "RRQ is a Python library for creating reliable job queues using Redis and asyncio"
10
10
  readme = "README.md"
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes