From 9354eab0e87797dde3e46b53d54226a374f17e5b Mon Sep 17 00:00:00 2001 From: Eric Antones Date: Mon, 22 Jun 2026 22:38:58 +0200 Subject: [PATCH] [OU-ADD] queue_job_context: Merged into queue_job queue_job_context (OCA/queue) exists in 14.0 but was removed in 15.0; its context-key feature is provided natively by the queue_job base module from 16.0 (queue_job._job_prepare_context_before_enqueue_keys). The 15.0 migration PR OCA/queue#725 was closed with the note "not needed in v16+". Upstream OpenUpgrade only records the merge in the 16.0 apriori, so upgrading from 14.0 to 15.0 leaves queue_job_context as an orphaned installed module in ir_module_module. Add the entry to 15.0 so it is merged into queue_job at the hop where it disappears. --- openupgrade_scripts/apriori.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/openupgrade_scripts/apriori.py b/openupgrade_scripts/apriori.py index 84d625356b4f..277c50074afd 100644 --- a/openupgrade_scripts/apriori.py +++ b/openupgrade_scripts/apriori.py @@ -98,6 +98,8 @@ "pos_sale_order_load": "pos_sale", # OCA/product-attribute "stock_account_product_cost_security": "product_cost_security", + # OCA/queue + "queue_job_context": "queue_job", # OCA/server-tools "base_jsonify": "jsonifier", # OCA/server-ux