Skip to content
Open
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
2 changes: 1 addition & 1 deletion queue_job/__manifest__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

{
"name": "Job Queue",
"version": "19.0.2.1.0",
"version": "19.0.2.0.4",
"author": "Camptocamp,ACSONE SA/NV,Odoo Community Association (OCA)",
"website": "https://github.com/OCA/queue",
"license": "LGPL-3",
Expand Down
9 changes: 9 additions & 0 deletions queue_job/readme/HISTORY.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@

## 19.0.2.0.4 (2026-08-28)

- [FIX] Remove reference to base.user_admin (removed in Odoo 17+)
causing -u queue_job to fail on Odoo 17/18/19.
The xmlid base.user_admin was removed in Odoo 17; users should be
added to the group via backoffice instead.
Backport from verbum_core fork (neoand/verbum#commit pending).

## Next

- \[ADD\] Run jobrunner as a worker process instead of a thread in the
Expand Down
2 changes: 1 addition & 1 deletion queue_job/security/security.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<field name="privilege_id" ref="privilege_queue_job" />
<field
name="user_ids"
eval="[Command.link(ref('base.user_root')), Command.link(ref('base.user_admin'))]"
eval="[Command.link(ref('base.user_root'))]"
/>
</record>
</data>
Expand Down
Loading