From 30c2953151e02611ae87d01a711e2cc730d672ea Mon Sep 17 00:00:00 2001
From: Milan Topuzov
Date: Wed, 1 Oct 2025 22:03:48 +0200
Subject: [PATCH 1/3] [DON'T MERGE] test-requirements.txt (temp refs to base PR
840)
- Use temporary references so CI/runboat picks queue_job from PR 840\n- Remove after base PR merges
---
queue_job_cron_jobrunner/README.rst | 10 +++++-----
queue_job_cron_jobrunner/__manifest__.py | 4 ++--
queue_job_cron_jobrunner/static/description/index.html | 6 +++---
test-requirements.txt | 2 ++
4 files changed, 12 insertions(+), 10 deletions(-)
create mode 100644 test-requirements.txt
diff --git a/queue_job_cron_jobrunner/README.rst b/queue_job_cron_jobrunner/README.rst
index 8615285dec..0b41ea48d7 100644
--- a/queue_job_cron_jobrunner/README.rst
+++ b/queue_job_cron_jobrunner/README.rst
@@ -21,13 +21,13 @@ Queue Job Cron Jobrunner
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
:alt: License: AGPL-3
.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fqueue-lightgray.png?logo=github
- :target: https://github.com/OCA/queue/tree/18.0/queue_job_cron_jobrunner
+ :target: https://github.com/OCA/queue/tree/19.0/queue_job_cron_jobrunner
:alt: OCA/queue
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
- :target: https://translation.odoo-community.org/projects/queue-18-0/queue-18-0-queue_job_cron_jobrunner
+ :target: https://translation.odoo-community.org/projects/queue-19-0/queue-19-0-queue_job_cron_jobrunner
:alt: Translate me on Weblate
.. |badge5| image:: https://img.shields.io/badge/runboat-Try%20me-875A7B.png
- :target: https://runboat.odoo-community.org/builds?repo=OCA/queue&target_branch=18.0
+ :target: https://runboat.odoo-community.org/builds?repo=OCA/queue&target_branch=19.0
:alt: Try me on Runboat
|badge1| |badge2| |badge3| |badge4| |badge5|
@@ -102,7 +102,7 @@ Bug Tracker
Bugs are tracked on `GitHub Issues `_.
In case of trouble, please check there if your issue has already been reported.
If you spotted it first, help us to smash it by providing a detailed and welcomed
-`feedback `_.
+`feedback `_.
Do not contact contributors directly about support or help with technical issues.
@@ -142,6 +142,6 @@ Current `maintainer `__:
|maintainer-ivantodorovich|
-This module is part of the `OCA/queue `_ project on GitHub.
+This module is part of the `OCA/queue `_ project on GitHub.
You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.
diff --git a/queue_job_cron_jobrunner/__manifest__.py b/queue_job_cron_jobrunner/__manifest__.py
index c61918262d..dad4881789 100644
--- a/queue_job_cron_jobrunner/__manifest__.py
+++ b/queue_job_cron_jobrunner/__manifest__.py
@@ -1,7 +1,7 @@
{
"name": "Queue Job Cron Jobrunner",
"summary": "Run jobs without a dedicated JobRunner",
- "version": "18.0.1.0.1",
+ "version": "19.0.1.0.0",
"development_status": "Alpha",
"author": "Camptocamp SA, Odoo Community Association (OCA)",
"maintainers": ["ivantodorovich"],
@@ -13,5 +13,5 @@
"data/ir_cron.xml",
"views/ir_cron.xml",
],
- "installable": False,
+ "installable": True,
}
diff --git a/queue_job_cron_jobrunner/static/description/index.html b/queue_job_cron_jobrunner/static/description/index.html
index 9efaba8690..44a07ec12e 100644
--- a/queue_job_cron_jobrunner/static/description/index.html
+++ b/queue_job_cron_jobrunner/static/description/index.html
@@ -374,7 +374,7 @@ Queue Job Cron Jobrunner
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! source digest: sha256:3c8052bb9647ac1c2222b7bbe43133884ab314534ef09686a3aef58e6b38f712
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -->
-

+

This module implements a simple queue.job runner using ir.cron
triggers.
It’s meant to be used on environments where the regular job runner can’t
@@ -446,7 +446,7 @@
Bugs are tracked on GitHub Issues.
In case of trouble, please check there if your issue has already been reported.
If you spotted it first, help us to smash it by providing a detailed and welcomed
-feedback.
+feedback.
Do not contact contributors directly about support or help with technical issues.
diff --git a/test-requirements.txt b/test-requirements.txt
new file mode 100644
index 0000000000..dca911c655
--- /dev/null
+++ b/test-requirements.txt
@@ -0,0 +1,2 @@
+odoo-addon-queue_job @ git+https://github.com/OCA/queue.git@refs/pull/840/head#subdirectory=queue_job
+odoo-addon-test_queue_job @ git+https://github.com/OCA/queue.git@refs/pull/840/head#subdirectory=test_queue_job
From 011251827c34caf3f5dfd02a54f5552e89074f35 Mon Sep 17 00:00:00 2001
From: Milan Topuzov
Date: Wed, 1 Oct 2025 22:03:55 +0200
Subject: [PATCH 2/3] [pre-commit] update excluded addons
(queue_job_cron_jobrunner now included)
---
.pre-commit-config.yaml | 1 -
1 file changed, 1 deletion(-)
diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml
index 3d0fa1036b..b6e7d39b96 100644
--- a/.pre-commit-config.yaml
+++ b/.pre-commit-config.yaml
@@ -5,7 +5,6 @@ exclude: |
^queue_job/|
^queue_job_batch/|
^queue_job_cron/|
- ^queue_job_cron_jobrunner/|
^queue_job_subscribe/|
^test_queue_job/|
^test_queue_job_batch/|
From f54b4393befa9e54848ce859d9564b6f7fc8561e Mon Sep 17 00:00:00 2001
From: Milan Topuzov
Date: Wed, 1 Oct 2025 22:04:16 +0200
Subject: [PATCH 3/3] pre-commit: autofixes (drop requirements.txt)
---
requirements.txt | 2 --
1 file changed, 2 deletions(-)
delete mode 100644 requirements.txt
diff --git a/requirements.txt b/requirements.txt
deleted file mode 100644
index b4d39fb9e0..0000000000
--- a/requirements.txt
+++ /dev/null
@@ -1,2 +0,0 @@
-# generated from manifests external_dependencies
-requests