Skip to content

Latest commit

 

History

History
50 lines (41 loc) · 1.95 KB

ODOO.md

File metadata and controls

50 lines (41 loc) · 1.95 KB

Odoo Supporting Guide

Based on Odoo Supported Versions, Joorney will follow the same list of supported versions.

⮕ 3 last major versions including intermediary versions

For certain reasons, Joorney dependant or Odoo dependant, it's still possible that some version will be unsupported before Odoo deprecation.

Add a new version

  1. Update the code
  2. Test the extension
    • Test the new version
    • Test all feature basics
  3. Adapt the code (if needed)
  4. Use your common sense for check/test/use
  5. Check Contributing

Update for a version

  1. Update the code
    • Write your modification
    • Add a comment before your code, or at any place when Odoo version is used.
      • Format: [ODOO] pre-operator? version post-operator?
      • Operator: pre(<, >), post(+)
      • Version: X.X (no saas- prefix)
  2. Test the extension
    • Test the relevant versions
    • Test the other versions
    • Test all feature impacted by your code
  3. Use your common sense for check/test/use
  4. Check Contributing

Remove a deprecated version

  1. Search for comment [ODOO]
  2. Identify the one related to the deprecated version
    • Including intermediary
  3. Update the code
    • Remove code part used before the deprecation
  4. Test the extension
    • Test the relevant versions
    • Test the other versions
    • Test all feature impacted by your code
  5. Use your common sense for check/test/use
  6. Check Contributing