odoo/o-spreadsheet#8187
Created by fw-bot
Merged
at 9608f80ad36fd8b6c0d5bb1f5ad517d8fe37b607
Statuses:
- label
- odoo:19.0-17.0-fix-release-rar-511004-fw
- head
- 0de6d004b26ba998129a7920c5369ff9e8a292c3
- merged
- 4 days ago by BI, Rémi Rahir (rar)
| odoo/o-spreadsheet | |
|---|---|
| 17.0 | #8176 |
| 18.0 | #8179 |
| saas-18.2 | #8181 |
| saas-18.3 | #8184 |
| saas-18.4 | #8186 |
| 19.0 | #8187 |
| saas-19.1 | #8188 |
| saas-19.2 | #8190 |
| master | #8191 |
[FIX] config: fix release flow
Apparentlyn relying on a JSON output was not a good idea and might have been dropepd by github recently (over the last months). This PR fixes the flow by outputting the variables independently without relying on a JSON pack/unpack which is ultimately more efficient.
Description:
description of this task, what is implemented and why it is implemented that way.
Task: TASK_ID
review checklist
- [ ] feature is organized in plugin, or UI components
- [ ] support of duplicate sheet (deep copy)
- [ ] in model/core: ranges are Range object, and can be adapted (adaptRanges)
- [ ] in model/UI: ranges are strings (to show the user)
- [ ] undo-able commands (uses this.history.update)
- [ ] multiuser-able commands (has inverse commands and transformations where needed)
- [ ] new/updated/removed commands are documented
- [ ] exportable in excel
- [ ] translations (_t("qmsdf %s", abc))
- [ ] unit tested
- [ ] clean commented code
- [ ] track breaking changes
- [ ] doc is rebuild (npm run doc)
- [ ] status is correct in Odoo
Forward-Port-Of: #8176