Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Syncing from upstream OCA/server-tools (17.0) #1432

Merged
merged 136 commits into from
Jan 22, 2024
Merged

Commits on Jan 2, 2024

  1. Add jsonifier (skeleton)

    simahawk authored and nguyenminhchien committed Jan 2, 2024
    Configuration menu
    Copy the full SHA
    a997125 View commit details
    Browse the repository at this point in the history
  2. [ADD] icon.png

    OCA-git-bot authored and nguyenminhchien committed Jan 2, 2024
    Configuration menu
    Copy the full SHA
    aff1784 View commit details
    Browse the repository at this point in the history
  3. Replace base_jsonify w/ jsonifier

    Rationale:
    
    1. the name reflects better what it does
       as this is not _just_ a base module
    
    2. solves publication issue on odoo apps store
       due to an old module registered w/ the same name
       that even if un-published blocks publishing the module
       for all versions.
       This in turn, blocks the publication of ALL modules
       that depend on base_jsonify.
    simahawk authored and nguyenminhchien committed Jan 2, 2024
    Configuration menu
    Copy the full SHA
    4175d5c View commit details
    Browse the repository at this point in the history
  4. [UPD] Update jsonifier.pot

    oca-ci authored and nguyenminhchien committed Jan 2, 2024
    Configuration menu
    Copy the full SHA
    df7a89a View commit details
    Browse the repository at this point in the history
  5. [UPD] README.rst

    OCA-git-bot authored and nguyenminhchien committed Jan 2, 2024
    Configuration menu
    Copy the full SHA
    a2cb25c View commit details
    Browse the repository at this point in the history
  6. jsonifier: fix date handling

    We should always keep UTC and let the consumer deal w/ it.
    This change is backward compatible but allows to turn off
    the old behavior w/ the ctx flag `jsonifier__date_user_tz=False`.
    simahawk authored and nguyenminhchien committed Jan 2, 2024
    Configuration menu
    Copy the full SHA
    be27d5d View commit details
    Browse the repository at this point in the history
  7. jsonifier 14.0.1.0.1

    OCA-git-bot authored and nguyenminhchien committed Jan 2, 2024
    Configuration menu
    Copy the full SHA
    e702814 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    fc4bcb3 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    4605af5 View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    3852262 View commit details
    Browse the repository at this point in the history
  11. [UPD] Update jsonifier.pot

    oca-ci authored and nguyenminhchien committed Jan 2, 2024
    Configuration menu
    Copy the full SHA
    4c7aec1 View commit details
    Browse the repository at this point in the history
  12. [UPD] README.rst

    OCA-git-bot authored and nguyenminhchien committed Jan 2, 2024
    Configuration menu
    Copy the full SHA
    892be7c View commit details
    Browse the repository at this point in the history
  13. Update translation files

    Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
    
    Translation: server-tools-16.0/server-tools-16.0-jsonifier
    Translate-URL: https://translation.odoo-community.org/projects/server-tools-16-0/server-tools-16-0-jsonifier/
    weblate authored and nguyenminhchien committed Jan 2, 2024
    Configuration menu
    Copy the full SHA
    41b5ac8 View commit details
    Browse the repository at this point in the history
  14. [UPD] Update jsonifier.pot

    oca-ci authored and nguyenminhchien committed Jan 2, 2024
    Configuration menu
    Copy the full SHA
    7b2ce3e View commit details
    Browse the repository at this point in the history
  15. Update translation files

    Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
    
    Translation: server-tools-16.0/server-tools-16.0-jsonifier
    Translate-URL: https://translation.odoo-community.org/projects/server-tools-16-0/server-tools-16-0-jsonifier/
    weblate authored and nguyenminhchien committed Jan 2, 2024
    Configuration menu
    Copy the full SHA
    739f68b View commit details
    Browse the repository at this point in the history
  16. [UPD] README.rst

    OCA-git-bot authored and nguyenminhchien committed Jan 2, 2024
    Configuration menu
    Copy the full SHA
    c888c09 View commit details
    Browse the repository at this point in the history
  17. Configuration menu
    Copy the full SHA
    1e94f1a View commit details
    Browse the repository at this point in the history
  18. Translated using Weblate (Spanish)

    Currently translated at 100.0% (39 of 39 strings)
    
    Translation: server-tools-16.0/server-tools-16.0-jsonifier
    Translate-URL: https://translation.odoo-community.org/projects/server-tools-16-0/server-tools-16-0-jsonifier/es/
    Ivorra78 authored and nguyenminhchien committed Jan 2, 2024
    Configuration menu
    Copy the full SHA
    295cfe9 View commit details
    Browse the repository at this point in the history
  19. Configuration menu
    Copy the full SHA
    2f9f372 View commit details
    Browse the repository at this point in the history

Commits on Jan 9, 2024

  1. Configuration menu
    Copy the full SHA
    440481f View commit details
    Browse the repository at this point in the history

Commits on Jan 10, 2024

  1. [ADD] Database cleanup module

    Stefan Rijnhart authored and augusto-weiss committed Jan 10, 2024
    Configuration menu
    Copy the full SHA
    34c4531 View commit details
    Browse the repository at this point in the history
  2. remove relations when purging models

    avoid ''NoneType' object has no attribute 'exists'' error when purging models
    fix my change [email protected], wrong lines replaced...
    guewen authored and augusto-weiss committed Jan 10, 2024
    Configuration menu
    Copy the full SHA
    9290ad7 View commit details
    Browse the repository at this point in the history
  3. [FIX] Don't remove uid field from wkf_instance, which is written in

        raw SQL query (but never read afterwards). Workaround for
        lp:1277899
    
    [FIX] Preserve dangling workflow table which is in use
    
    [RFR] Group models per table when detecting columns to purge
          to prevent problems with models sharing the same table
    
    [ADD] Allow purging of dangling data entries
    
    [FIX] Data purging now working
    
    [IMP] Docstrings
    
    [FIX] Label
    [FIX] Catch attempt to unlink field from nonexisting model
    
    [RFR] Flake8
    Stefan Rijnhart authored and augusto-weiss committed Jan 10, 2024
    Configuration menu
    Copy the full SHA
    d409be3 View commit details
    Browse the repository at this point in the history
  4. [CHG] Migration to 8.0

    [CHG] database_cleanup: move description to README.rst
    anthony-muschang authored and augusto-weiss committed Jan 10, 2024
    Configuration menu
    Copy the full SHA
    ecf4723 View commit details
    Browse the repository at this point in the history
  5. [IMP] hide unnecessary buttons in wizard

    [IMP] order wizard lines by name
    
    [IMP] deal with modules whose models can't be loaded
    
    [IMP] double quotes for docstring
    
    [FIX] use exists query instead of huge in list
    
    [IMP] hide unnecessary buttons in wizard II
    
    [IMP] readability
    
    [FIX] cope with purging nonexisting models
    hbrunn authored and augusto-weiss committed Jan 10, 2024
    Configuration menu
    Copy the full SHA
    031dbf2 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    c5fd4d2 View commit details
    Browse the repository at this point in the history
  7. [ADD] allow to clean up menus

    hbrunn authored and augusto-weiss committed Jan 10, 2024
    Configuration menu
    Copy the full SHA
    f996fe8 View commit details
    Browse the repository at this point in the history
  8. [IMP] allow to select lines to purge in a tree view

    [IMP] adaptto upstream changes
    hbrunn authored and augusto-weiss committed Jan 10, 2024
    Configuration menu
    Copy the full SHA
    dc24959 View commit details
    Browse the repository at this point in the history
  9. [ADD] migrate database_cleanup

    [ADD] test purging modules
    
    [ADD] test purging tables
    hbrunn authored and augusto-weiss committed Jan 10, 2024
    Configuration menu
    Copy the full SHA
    f6003fe View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    0f1237c View commit details
    Browse the repository at this point in the history
  11. [FIX] purge uninstalled uninstallable modules instead of deleting

    [FIX] database_cleanup reloads the registry
    
    which has weird side effects during testing. Take care
    database_cleanup's tests don't mess up the following tests
    hbrunn authored and augusto-weiss committed Jan 10, 2024
    Configuration menu
    Copy the full SHA
    43699a1 View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    87d92ff View commit details
    Browse the repository at this point in the history
  13. Configuration menu
    Copy the full SHA
    e7decb5 View commit details
    Browse the repository at this point in the history
  14. Configuration menu
    Copy the full SHA
    9a3d22a View commit details
    Browse the repository at this point in the history
  15. Configuration menu
    Copy the full SHA
    3b764a1 View commit details
    Browse the repository at this point in the history
  16. fixes #587

    florian-dacosta authored and augusto-weiss committed Jan 10, 2024
    Configuration menu
    Copy the full SHA
    d7e1f5b View commit details
    Browse the repository at this point in the history
  17. Configuration menu
    Copy the full SHA
    da992a1 View commit details
    Browse the repository at this point in the history
  18. [9.0][FIX] database_cleanup: Isolate build (#719)

    * [FIX] database_cleanup: Isolate build
    * Isolate `database_cleanup` into its own build in Travis file to fix #689
    
    * [FIX] database_cleanup: Remove KeyError assertion
    * Remove KeyError assertion in tests due to PR in comment being merged
    lasley authored and augusto-weiss committed Jan 10, 2024
    Configuration menu
    Copy the full SHA
    67d18cc View commit details
    Browse the repository at this point in the history
  19. [ADD] allow creating missing indexes and purging properties (#736)

    * [ADD] allow creating missing indexes
    
    * [FIX] tests; installation
    
    * [ADD] allow purging properties
    
    * [ADD] missing file
    
    * [ADD] test purging properties
    
    * [ADD] missing parent_id for menu entry
    
    * [FIX] don't delete too many and wrong properties
    hbrunn authored and augusto-weiss committed Jan 10, 2024
    Configuration menu
    Copy the full SHA
    935bcd4 View commit details
    Browse the repository at this point in the history
  20. [MIG] database_cleanup: Migration to version 10.0

    Using new base model inheritance.
    eantones authored and augusto-weiss committed Jan 10, 2024
    Configuration menu
    Copy the full SHA
    9998f90 View commit details
    Browse the repository at this point in the history
  21. [FIX] really uninstall modules and avoid a crash on cached data

    [FIX] don't try to uninstall uninstalled modules
    
    [DEL] weird code
    
    [FIX] actually cleanup where we can
    hbrunn authored and augusto-weiss committed Jan 10, 2024
    Configuration menu
    Copy the full SHA
    2f83886 View commit details
    Browse the repository at this point in the history
  22. Configuration menu
    Copy the full SHA
    35b727f View commit details
    Browse the repository at this point in the history
  23. Configuration menu
    Copy the full SHA
    0a78ebe View commit details
    Browse the repository at this point in the history
  24. database_cleanup_fix_runbot_links

    fanha99 authored and augusto-weiss committed Jan 10, 2024
    Configuration menu
    Copy the full SHA
    377ad79 View commit details
    Browse the repository at this point in the history
  25. Global pylint cleanup

    simahawk authored and augusto-weiss committed Jan 10, 2024
    Configuration menu
    Copy the full SHA
    dcd6d72 View commit details
    Browse the repository at this point in the history
  26. Configuration menu
    Copy the full SHA
    0926c08 View commit details
    Browse the repository at this point in the history
  27. Configuration menu
    Copy the full SHA
    2c7ac60 View commit details
    Browse the repository at this point in the history
  28. Configuration menu
    Copy the full SHA
    6378eae View commit details
    Browse the repository at this point in the history
  29. [MIG] database_cleanup: migration to 12.0

    Update version number
    Use correct import
    Update .pot to match new syntax
    Adapt icon to fontawesome
    Add models description
    Rename field external id to new syntax <model>__<field>
    mart-e authored and augusto-weiss committed Jan 10, 2024
    Configuration menu
    Copy the full SHA
    021c7b1 View commit details
    Browse the repository at this point in the history
  30. [FIX] database_cleanup: exclude password fields

    cf discussion on #1408
    mart-e authored and augusto-weiss committed Jan 10, 2024
    Configuration menu
    Copy the full SHA
    77a9abd View commit details
    Browse the repository at this point in the history
  31. [I18N] database_cleanup: reflect changes to en.po

    To match the new database_cleanup.pot
    mart-e authored and augusto-weiss committed Jan 10, 2024
    Configuration menu
    Copy the full SHA
    1af449e View commit details
    Browse the repository at this point in the history
  32. [FIX] database_cleanup: filter on many2many fields

    Following odoo/odoo@54238c88e85d6e a Many2many may have no relation
    This avoids having a None record in the list (which is problematic with the
    NOT IN clause)
    https://wiki.postgresql.org/wiki/Don't_Do_This#Don.27t_use_NOT_IN
    mart-e authored and augusto-weiss committed Jan 10, 2024
    Configuration menu
    Copy the full SHA
    b2ab7d2 View commit details
    Browse the repository at this point in the history
  33. [FIX] database_cleanup: ignore to_buy modules

    Since 12.0, some virtual modules are created as an incentive to buy enterprise
    Hide installation warning
    mart-e authored and augusto-weiss committed Jan 10, 2024
    Configuration menu
    Copy the full SHA
    841704c View commit details
    Browse the repository at this point in the history
  34. Configuration menu
    Copy the full SHA
    2e28171 View commit details
    Browse the repository at this point in the history
  35. Update translation files

    Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
    
    Translation: server-tools-12.0/server-tools-12.0-database_cleanup
    Translate-URL: https://translation.odoo-community.org/projects/server-tools-12-0/server-tools-12-0-database_cleanup/
    oca-transbot authored and augusto-weiss committed Jan 10, 2024
    Configuration menu
    Copy the full SHA
    e2686b7 View commit details
    Browse the repository at this point in the history
  36. Configuration menu
    Copy the full SHA
    04938bf View commit details
    Browse the repository at this point in the history
  37. Configuration menu
    Copy the full SHA
    728457e View commit details
    Browse the repository at this point in the history
  38. database_cleanup 12.0.1.0.1

    OCA-git-bot authored and augusto-weiss committed Jan 10, 2024
    Configuration menu
    Copy the full SHA
    2f1672c View commit details
    Browse the repository at this point in the history
  39. Update translation files

    Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
    
    Translation: server-tools-12.0/server-tools-12.0-database_cleanup
    Translate-URL: https://translation.odoo-community.org/projects/server-tools-12-0/server-tools-12-0-database_cleanup/
    oca-transbot authored and augusto-weiss committed Jan 10, 2024
    Configuration menu
    Copy the full SHA
    a1faefc View commit details
    Browse the repository at this point in the history
  40. Translated using Weblate (Portuguese (Brazil))

    Currently translated at 100.0% (74 of 74 strings)
    
    Translation: server-tools-12.0/server-tools-12.0-database_cleanup
    Translate-URL: https://translation.odoo-community.org/projects/server-tools-12-0/server-tools-12-0-database_cleanup/pt_BR/
    Rodrigo Macedo authored and augusto-weiss committed Jan 10, 2024
    Configuration menu
    Copy the full SHA
    562ac2d View commit details
    Browse the repository at this point in the history
  41. Translated using Weblate (Chinese (Simplified))

    Currently translated at 51.4% (38 of 74 strings)
    
    Translation: server-tools-12.0/server-tools-12.0-database_cleanup
    Translate-URL: https://translation.odoo-community.org/projects/server-tools-12-0/server-tools-12-0-database_cleanup/zh_CN/
    liweijie0812 authored and augusto-weiss committed Jan 10, 2024
    Configuration menu
    Copy the full SHA
    1ff67b3 View commit details
    Browse the repository at this point in the history
  42. Translated using Weblate (Chinese (Simplified))

    Currently translated at 100.0% (74 of 74 strings)
    
    Translation: server-tools-12.0/server-tools-12.0-database_cleanup
    Translate-URL: https://translation.odoo-community.org/projects/server-tools-12-0/server-tools-12-0-database_cleanup/zh_CN/
    liweijie0812 authored and augusto-weiss committed Jan 10, 2024
    Configuration menu
    Copy the full SHA
    f658e66 View commit details
    Browse the repository at this point in the history
  43. Configuration menu
    Copy the full SHA
    ea9e1c0 View commit details
    Browse the repository at this point in the history
  44. Configuration menu
    Copy the full SHA
    960c266 View commit details
    Browse the repository at this point in the history
  45. Configuration menu
    Copy the full SHA
    20815e6 View commit details
    Browse the repository at this point in the history
  46. [UPD] Update database_cleanup.pot

    oca-ci authored and augusto-weiss committed Jan 10, 2024
    Configuration menu
    Copy the full SHA
    6854ed5 View commit details
    Browse the repository at this point in the history
  47. [UPD] README.rst

    OCA-git-bot authored and augusto-weiss committed Jan 10, 2024
    Configuration menu
    Copy the full SHA
    1636876 View commit details
    Browse the repository at this point in the history
  48. Translated using Weblate (Spanish (Argentina))

    Currently translated at 100.0% (74 of 74 strings)
    
    Translation: server-tools-14.0/server-tools-14.0-database_cleanup
    Translate-URL: https://translation.odoo-community.org/projects/server-tools-14-0/server-tools-14-0-database_cleanup/es_AR/
    ibuioli authored and augusto-weiss committed Jan 10, 2024
    Configuration menu
    Copy the full SHA
    1572ba4 View commit details
    Browse the repository at this point in the history
  49. Translated using Weblate (Italian)

    Currently translated at 20.2% (15 of 74 strings)
    
    Translation: server-tools-14.0/server-tools-14.0-database_cleanup
    Translate-URL: https://translation.odoo-community.org/projects/server-tools-14-0/server-tools-14-0-database_cleanup/it/
    francesco-ooops authored and augusto-weiss committed Jan 10, 2024
    Configuration menu
    Copy the full SHA
    ab7c7a5 View commit details
    Browse the repository at this point in the history
  50. Configuration menu
    Copy the full SHA
    8a4f4b2 View commit details
    Browse the repository at this point in the history
  51. Configuration menu
    Copy the full SHA
    13fc2ab View commit details
    Browse the repository at this point in the history
  52. Configuration menu
    Copy the full SHA
    b06d4e2 View commit details
    Browse the repository at this point in the history
  53. [FIX] database_cleanup: TransactionCase already does rollback

    No need to rollback here as TransactionCase does a safe rollback.
    miikanissi authored and augusto-weiss committed Jan 10, 2024
    Configuration menu
    Copy the full SHA
    be2a6e9 View commit details
    Browse the repository at this point in the history
  54. [IMP] database_cleanup: Unlink with new cursor

    Needed for purging payment providers which recompute module_state
    miikanissi authored and augusto-weiss committed Jan 10, 2024
    Configuration menu
    Copy the full SHA
    00db558 View commit details
    Browse the repository at this point in the history
  55. Configuration menu
    Copy the full SHA
    eb610e7 View commit details
    Browse the repository at this point in the history
  56. Configuration menu
    Copy the full SHA
    bc184e7 View commit details
    Browse the repository at this point in the history
  57. [UPD] Update database_cleanup.pot

    oca-ci authored and augusto-weiss committed Jan 10, 2024
    Configuration menu
    Copy the full SHA
    f48808a View commit details
    Browse the repository at this point in the history
  58. [BOT] post-merge updates

    OCA-git-bot authored and augusto-weiss committed Jan 10, 2024
    Configuration menu
    Copy the full SHA
    806928d View commit details
    Browse the repository at this point in the history
  59. Update translation files

    Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
    
    Translation: server-tools-16.0/server-tools-16.0-database_cleanup
    Translate-URL: https://translation.odoo-community.org/projects/server-tools-16-0/server-tools-16-0-database_cleanup/
    weblate authored and augusto-weiss committed Jan 10, 2024
    Configuration menu
    Copy the full SHA
    ea64d0c View commit details
    Browse the repository at this point in the history
  60. Translated using Weblate (Spanish)

    Currently translated at 100.0% (76 of 76 strings)
    
    Translation: server-tools-16.0/server-tools-16.0-database_cleanup
    Translate-URL: https://translation.odoo-community.org/projects/server-tools-16-0/server-tools-16-0-database_cleanup/es/
    Ivorra78 authored and augusto-weiss committed Jan 10, 2024
    Configuration menu
    Copy the full SHA
    25c9f9e View commit details
    Browse the repository at this point in the history
  61. Translated using Weblate (Italian)

    Currently translated at 98.6% (75 of 76 strings)
    
    Translation: server-tools-16.0/server-tools-16.0-database_cleanup
    Translate-URL: https://translation.odoo-community.org/projects/server-tools-16-0/server-tools-16-0-database_cleanup/it/
    mymage authored and augusto-weiss committed Jan 10, 2024
    Configuration menu
    Copy the full SHA
    903f7d4 View commit details
    Browse the repository at this point in the history
  62. Translated using Weblate (Italian)

    Currently translated at 100.0% (76 of 76 strings)
    
    Translation: server-tools-16.0/server-tools-16.0-database_cleanup
    Translate-URL: https://translation.odoo-community.org/projects/server-tools-16-0/server-tools-16-0-database_cleanup/it/
    mymage authored and augusto-weiss committed Jan 10, 2024
    Configuration menu
    Copy the full SHA
    18557d7 View commit details
    Browse the repository at this point in the history
  63. Configuration menu
    Copy the full SHA
    d60ef91 View commit details
    Browse the repository at this point in the history

Commits on Jan 11, 2024

  1. [10.0] add new module to manage technical user on company

    [CHG] add name to wml tag to make override easier
    
    [FIX] remove domain on active field
    Cédric Pigeon authored and john-herholz-dt committed Jan 11, 2024
    Configuration menu
    Copy the full SHA
    c5ad371 View commit details
    Browse the repository at this point in the history
  2. OCA Transbot updated translations from Transifex

    OCA Transbot updated translations from Transifex
    oca-transbot authored and john-herholz-dt committed Jan 11, 2024
    Configuration menu
    Copy the full SHA
    71b23e8 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    d93b7ca View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    34bf361 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    5a14563 View commit details
    Browse the repository at this point in the history
  6. Global pylint cleanup

    simahawk authored and john-herholz-dt committed Jan 11, 2024
    Configuration menu
    Copy the full SHA
    9121f56 View commit details
    Browse the repository at this point in the history
  7. [ADD] icon.png

    OCA-git-bot authored and john-herholz-dt committed Jan 11, 2024
    Configuration menu
    Copy the full SHA
    fd9b801 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    f71d302 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    4340a4f View commit details
    Browse the repository at this point in the history
  10. [UPD] README.rst

    OCA-git-bot authored and john-herholz-dt committed Jan 11, 2024
    Configuration menu
    Copy the full SHA
    17d948b View commit details
    Browse the repository at this point in the history
  11. Update translation files

    Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
    
    Translation: server-tools-12.0/server-tools-12.0-base_technical_user
    Translate-URL: https://translation.odoo-community.org/projects/server-tools-12-0/server-tools-12-0-base_technical_user/
    oca-transbot authored and john-herholz-dt committed Jan 11, 2024
    Configuration menu
    Copy the full SHA
    589a4ab View commit details
    Browse the repository at this point in the history
  12. [UPD] README.rst

    OCA-git-bot authored and john-herholz-dt committed Jan 11, 2024
    Configuration menu
    Copy the full SHA
    d7ddb99 View commit details
    Browse the repository at this point in the history
  13. Translated using Weblate (Portuguese)

    Currently translated at 100.0% (5 of 5 strings)
    
    Translation: server-tools-12.0/server-tools-12.0-base_technical_user
    Translate-URL: https://translation.odoo-community.org/projects/server-tools-12-0/server-tools-12-0-base_technical_user/pt/
    pedrocs-exo authored and john-herholz-dt committed Jan 11, 2024
    Configuration menu
    Copy the full SHA
    d76fa02 View commit details
    Browse the repository at this point in the history
  14. Configuration menu
    Copy the full SHA
    cf64d8c View commit details
    Browse the repository at this point in the history
  15. Translated using Weblate (Chinese (Simplified))

    Currently translated at 100.0% (5 of 5 strings)
    
    Translation: server-tools-12.0/server-tools-12.0-base_technical_user
    Translate-URL: https://translation.odoo-community.org/projects/server-tools-12-0/server-tools-12-0-base_technical_user/zh_CN/
    liweijie0812 authored and john-herholz-dt committed Jan 11, 2024
    Configuration menu
    Copy the full SHA
    60a3575 View commit details
    Browse the repository at this point in the history
  16. Configuration menu
    Copy the full SHA
    8f8849a View commit details
    Browse the repository at this point in the history
  17. Configuration menu
    Copy the full SHA
    4364bda View commit details
    Browse the repository at this point in the history
  18. Configuration menu
    Copy the full SHA
    eb30a8c View commit details
    Browse the repository at this point in the history
  19. Configuration menu
    Copy the full SHA
    b9dfc09 View commit details
    Browse the repository at this point in the history
  20. [UPD] README.rst

    OCA-git-bot authored and john-herholz-dt committed Jan 11, 2024
    Configuration menu
    Copy the full SHA
    f6c702e View commit details
    Browse the repository at this point in the history
  21. Update translation files

    Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
    
    Translation: server-tools-13.0/server-tools-13.0-base_technical_user
    Translate-URL: https://translation.odoo-community.org/projects/server-tools-13-0/server-tools-13-0-base_technical_user/
    oca-transbot authored and john-herholz-dt committed Jan 11, 2024
    Configuration menu
    Copy the full SHA
    857cbc8 View commit details
    Browse the repository at this point in the history
  22. [IMP] base_technical_user: black, isort, prettier

    Pierrick Brun authored and john-herholz-dt committed Jan 11, 2024
    Configuration menu
    Copy the full SHA
    2e6b5eb View commit details
    Browse the repository at this point in the history
  23. [MIG] base_technical_user: Migration to 14.0

    Pierrick Brun authored and john-herholz-dt committed Jan 11, 2024
    Configuration menu
    Copy the full SHA
    732145f View commit details
    Browse the repository at this point in the history
  24. Configuration menu
    Copy the full SHA
    31cec41 View commit details
    Browse the repository at this point in the history
  25. [UPD] README.rst

    OCA-git-bot authored and john-herholz-dt committed Jan 11, 2024
    Configuration menu
    Copy the full SHA
    d20a953 View commit details
    Browse the repository at this point in the history
  26. Translated using Weblate (Portuguese)

    Currently translated at 85.7% (6 of 7 strings)
    
    Translation: server-tools-14.0/server-tools-14.0-base_technical_user
    Translate-URL: https://translation.odoo-community.org/projects/server-tools-14-0/server-tools-14-0-base_technical_user/pt/
    pedrocs-exo authored and john-herholz-dt committed Jan 11, 2024
    Configuration menu
    Copy the full SHA
    680f5cf View commit details
    Browse the repository at this point in the history
  27. Configuration menu
    Copy the full SHA
    cbdd7bb View commit details
    Browse the repository at this point in the history
  28. Update translation files

    Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
    
    Translation: server-tools-14.0/server-tools-14.0-base_technical_user
    Translate-URL: https://translation.odoo-community.org/projects/server-tools-14-0/server-tools-14-0-base_technical_user/
    oca-transbot authored and john-herholz-dt committed Jan 11, 2024
    Configuration menu
    Copy the full SHA
    900c0c9 View commit details
    Browse the repository at this point in the history
  29. Translated using Weblate (French)

    Currently translated at 54.5% (6 of 11 strings)
    
    Translation: server-tools-14.0/server-tools-14.0-base_technical_user
    Translate-URL: https://translation.odoo-community.org/projects/server-tools-14-0/server-tools-14-0-base_technical_user/fr/
    Yvesldff authored and john-herholz-dt committed Jan 11, 2024
    Configuration menu
    Copy the full SHA
    82f71d7 View commit details
    Browse the repository at this point in the history
  30. Configuration menu
    Copy the full SHA
    c7c6300 View commit details
    Browse the repository at this point in the history
  31. [UPD] Update base_technical_user.pot

    oca-ci authored and john-herholz-dt committed Jan 11, 2024
    Configuration menu
    Copy the full SHA
    689086b View commit details
    Browse the repository at this point in the history
  32. [UPD] README.rst

    OCA-git-bot authored and john-herholz-dt committed Jan 11, 2024
    Configuration menu
    Copy the full SHA
    63a874d View commit details
    Browse the repository at this point in the history
  33. Configuration menu
    Copy the full SHA
    3681178 View commit details
    Browse the repository at this point in the history
  34. [UPD] Update base_technical_user.pot

    oca-ci authored and john-herholz-dt committed Jan 11, 2024
    Configuration menu
    Copy the full SHA
    089cb9c View commit details
    Browse the repository at this point in the history
  35. [UPD] README.rst

    OCA-git-bot authored and john-herholz-dt committed Jan 11, 2024
    Configuration menu
    Copy the full SHA
    bd8c886 View commit details
    Browse the repository at this point in the history
  36. Update translation files

    Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
    
    Translation: server-tools-16.0/server-tools-16.0-base_technical_user
    Translate-URL: https://translation.odoo-community.org/projects/server-tools-16-0/server-tools-16-0-base_technical_user/
    weblate authored and john-herholz-dt committed Jan 11, 2024
    Configuration menu
    Copy the full SHA
    826c3d3 View commit details
    Browse the repository at this point in the history
  37. [UPD] Update base_technical_user.pot

    oca-ci authored and john-herholz-dt committed Jan 11, 2024
    Configuration menu
    Copy the full SHA
    d7f3508 View commit details
    Browse the repository at this point in the history
  38. Update translation files

    Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
    
    Translation: server-tools-16.0/server-tools-16.0-base_technical_user
    Translate-URL: https://translation.odoo-community.org/projects/server-tools-16-0/server-tools-16-0-base_technical_user/
    weblate authored and john-herholz-dt committed Jan 11, 2024
    Configuration menu
    Copy the full SHA
    9552658 View commit details
    Browse the repository at this point in the history
  39. Translated using Weblate (Spanish)

    Currently translated at 100.0% (8 of 8 strings)
    
    Translation: server-tools-16.0/server-tools-16.0-base_technical_user
    Translate-URL: https://translation.odoo-community.org/projects/server-tools-16-0/server-tools-16-0-base_technical_user/es/
    kikopeiro authored and john-herholz-dt committed Jan 11, 2024
    Configuration menu
    Copy the full SHA
    a5f3e0a View commit details
    Browse the repository at this point in the history
  40. [UPD] README.rst

    OCA-git-bot authored and john-herholz-dt committed Jan 11, 2024
    Configuration menu
    Copy the full SHA
    176339a View commit details
    Browse the repository at this point in the history
  41. Translated using Weblate (Italian)

    Currently translated at 100.0% (8 of 8 strings)
    
    Translation: server-tools-16.0/server-tools-16.0-base_technical_user
    Translate-URL: https://translation.odoo-community.org/projects/server-tools-16-0/server-tools-16-0-base_technical_user/it/
    mymage authored and john-herholz-dt committed Jan 11, 2024
    Configuration menu
    Copy the full SHA
    2493468 View commit details
    Browse the repository at this point in the history
  42. Configuration menu
    Copy the full SHA
    1e9f382 View commit details
    Browse the repository at this point in the history
  43. Configuration menu
    Copy the full SHA
    915f10d View commit details
    Browse the repository at this point in the history

Commits on Jan 16, 2024

  1. Configuration menu
    Copy the full SHA
    fbb5dc1 View commit details
    Browse the repository at this point in the history

Commits on Jan 17, 2024

  1. Merge PR #2804 into 17.0

    Signed-off-by gurneyalex
    OCA-git-bot committed Jan 17, 2024
    Configuration menu
    Copy the full SHA
    062f960 View commit details
    Browse the repository at this point in the history
  2. [UPD] Update database_cleanup.pot

    oca-ci committed Jan 17, 2024
    Configuration menu
    Copy the full SHA
    ea23017 View commit details
    Browse the repository at this point in the history
  3. [BOT] post-merge updates

    OCA-git-bot committed Jan 17, 2024
    Configuration menu
    Copy the full SHA
    ea31a25 View commit details
    Browse the repository at this point in the history
  4. Merge PR #2805 into 17.0

    Signed-off-by gurneyalex
    OCA-git-bot committed Jan 17, 2024
    Configuration menu
    Copy the full SHA
    1691e52 View commit details
    Browse the repository at this point in the history
  5. [UPD] Update base_technical_user.pot

    oca-ci committed Jan 17, 2024
    Configuration menu
    Copy the full SHA
    79b4ca2 View commit details
    Browse the repository at this point in the history
  6. [BOT] post-merge updates

    OCA-git-bot committed Jan 17, 2024
    Configuration menu
    Copy the full SHA
    5185fab View commit details
    Browse the repository at this point in the history
  7. Merge PR #2801 into 17.0

    Signed-off-by gurneyalex
    OCA-git-bot committed Jan 17, 2024
    Configuration menu
    Copy the full SHA
    567ca9e View commit details
    Browse the repository at this point in the history
  8. [UPD] Update jsonifier.pot

    oca-ci committed Jan 17, 2024
    Configuration menu
    Copy the full SHA
    e052ef3 View commit details
    Browse the repository at this point in the history
  9. [BOT] post-merge updates

    OCA-git-bot committed Jan 17, 2024
    Configuration menu
    Copy the full SHA
    91832b5 View commit details
    Browse the repository at this point in the history