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.
- {rrq-0.8.0 → rrq-0.8.1}/PKG-INFO +8 -2
- {rrq-0.8.0 → rrq-0.8.1}/README.md +7 -1
- {rrq-0.8.0 → rrq-0.8.1}/pyproject.toml +1 -1
- {rrq-0.8.0 → rrq-0.8.1}/.coverage +0 -0
- {rrq-0.8.0 → rrq-0.8.1}/.github/workflows/ci.yml +0 -0
- {rrq-0.8.0 → rrq-0.8.1}/.gitignore +0 -0
- {rrq-0.8.0 → rrq-0.8.1}/AGENTS.md +0 -0
- {rrq-0.8.0 → rrq-0.8.1}/CLAUDE.md +0 -0
- {rrq-0.8.0 → rrq-0.8.1}/LICENSE +0 -0
- {rrq-0.8.0 → rrq-0.8.1}/MANIFEST.in +0 -0
- {rrq-0.8.0 → rrq-0.8.1}/docs/CLI_REFERENCE.md +0 -0
- {rrq-0.8.0 → rrq-0.8.1}/example/example_rrq_settings.py +0 -0
- {rrq-0.8.0 → rrq-0.8.1}/example/rrq_example.py +0 -0
- {rrq-0.8.0 → rrq-0.8.1}/rrq/__init__.py +0 -0
- {rrq-0.8.0 → rrq-0.8.1}/rrq/cli.py +0 -0
- {rrq-0.8.0 → rrq-0.8.1}/rrq/cli_commands/__init__.py +0 -0
- {rrq-0.8.0 → rrq-0.8.1}/rrq/cli_commands/base.py +0 -0
- {rrq-0.8.0 → rrq-0.8.1}/rrq/cli_commands/commands/__init__.py +0 -0
- {rrq-0.8.0 → rrq-0.8.1}/rrq/cli_commands/commands/debug.py +0 -0
- {rrq-0.8.0 → rrq-0.8.1}/rrq/cli_commands/commands/dlq.py +0 -0
- {rrq-0.8.0 → rrq-0.8.1}/rrq/cli_commands/commands/jobs.py +0 -0
- {rrq-0.8.0 → rrq-0.8.1}/rrq/cli_commands/commands/monitor.py +0 -0
- {rrq-0.8.0 → rrq-0.8.1}/rrq/cli_commands/commands/queues.py +0 -0
- {rrq-0.8.0 → rrq-0.8.1}/rrq/cli_commands/utils.py +0 -0
- {rrq-0.8.0 → rrq-0.8.1}/rrq/client.py +0 -0
- {rrq-0.8.0 → rrq-0.8.1}/rrq/constants.py +0 -0
- {rrq-0.8.0 → rrq-0.8.1}/rrq/cron.py +0 -0
- {rrq-0.8.0 → rrq-0.8.1}/rrq/exc.py +0 -0
- {rrq-0.8.0 → rrq-0.8.1}/rrq/exporters/__init__.py +0 -0
- {rrq-0.8.0 → rrq-0.8.1}/rrq/exporters/prometheus.py +0 -0
- {rrq-0.8.0 → rrq-0.8.1}/rrq/exporters/statsd.py +0 -0
- {rrq-0.8.0 → rrq-0.8.1}/rrq/hooks.py +0 -0
- {rrq-0.8.0 → rrq-0.8.1}/rrq/integrations/__init__.py +0 -0
- {rrq-0.8.0 → rrq-0.8.1}/rrq/integrations/ddtrace.py +0 -0
- {rrq-0.8.0 → rrq-0.8.1}/rrq/integrations/logfire.py +0 -0
- {rrq-0.8.0 → rrq-0.8.1}/rrq/integrations/otel.py +0 -0
- {rrq-0.8.0 → rrq-0.8.1}/rrq/job.py +0 -0
- {rrq-0.8.0 → rrq-0.8.1}/rrq/registry.py +0 -0
- {rrq-0.8.0 → rrq-0.8.1}/rrq/settings.py +0 -0
- {rrq-0.8.0 → rrq-0.8.1}/rrq/store.py +0 -0
- {rrq-0.8.0 → rrq-0.8.1}/rrq/telemetry.py +0 -0
- {rrq-0.8.0 → rrq-0.8.1}/rrq/worker.py +0 -0
- {rrq-0.8.0 → rrq-0.8.1}/tests/CLAUDE.md +0 -0
- {rrq-0.8.0 → rrq-0.8.1}/tests/__init__.py +0 -0
- {rrq-0.8.0 → rrq-0.8.1}/tests/cli_commands/__init__.py +0 -0
- {rrq-0.8.0 → rrq-0.8.1}/tests/cli_commands/conftest.py +0 -0
- {rrq-0.8.0 → rrq-0.8.1}/tests/cli_commands/test_debug_commands.py +0 -0
- {rrq-0.8.0 → rrq-0.8.1}/tests/cli_commands/test_dlq_commands.py +0 -0
- {rrq-0.8.0 → rrq-0.8.1}/tests/cli_commands/test_integration.py +0 -0
- {rrq-0.8.0 → rrq-0.8.1}/tests/cli_commands/test_job_commands.py +0 -0
- {rrq-0.8.0 → rrq-0.8.1}/tests/cli_commands/test_monitor_commands.py +0 -0
- {rrq-0.8.0 → rrq-0.8.1}/tests/cli_commands/test_monitor_dlq_integration.py +0 -0
- {rrq-0.8.0 → rrq-0.8.1}/tests/cli_commands/test_queue_commands.py +0 -0
- {rrq-0.8.0 → rrq-0.8.1}/tests/cli_commands/test_queue_dlq_integration.py +0 -0
- {rrq-0.8.0 → rrq-0.8.1}/tests/test_cli.py +0 -0
- {rrq-0.8.0 → rrq-0.8.1}/tests/test_client.py +0 -0
- {rrq-0.8.0 → rrq-0.8.1}/tests/test_cron.py +0 -0
- {rrq-0.8.0 → rrq-0.8.1}/tests/test_registry.py +0 -0
- {rrq-0.8.0 → rrq-0.8.1}/tests/test_store.py +0 -0
- {rrq-0.8.0 → rrq-0.8.1}/tests/test_worker.py +0 -0
- {rrq-0.8.0 → rrq-0.8.1}/uv.lock +0 -0
{rrq-0.8.0 → rrq-0.8.1}/PKG-INFO
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: rrq
|
|
3
|
-
Version: 0.8.
|
|
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.
|
|
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.
|
|
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.
|
|
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
|
{rrq-0.8.0 → rrq-0.8.1}/LICENSE
RENAMED
|
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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{rrq-0.8.0 → rrq-0.8.1}/uv.lock
RENAMED
|
File without changes
|