Skip to content

Releases: camptocamp/docker-odoo-project

2.7.0

27 Jul 14:58
Compare
Choose a tag to compare

2.7.0 (2018-07-27)

This is the last release before 3.0.0, which will provide different flavors
if the image, without onbuild instructions, with onbuild and full.

Features and Improvements

  • Allow to set the odoo's unaccent option with the environment variable UNACCENT
    in order to use the PostgreSQL extension 'unaccent'
  • ODOO_REPORT_URL is now http://localhost:8069 by default

Bugfixes

  • Fix error with python3/pip (ImportError: cannot import name 'main')

Libraries

  • Upgrade python libs; either to the version in odoo's requirements.txt, either
    to a more recent version if there is no breaking change. It should fix a few
    potential security issues.

2.6.1

29 Mar 17:28
Compare
Choose a tag to compare
  • Fix permission issue when running 'runtests' if odoo-bin has no executable flag

2.6.0

29 Mar 14:10
Compare
Choose a tag to compare

Features and Improvements

  • Add Script to set report.url if provided.
  • The http_proxy environment variable will be honored by 'gpg' when reaching the
    key for the gosu key.
  • With the new version of anthem, CSV files can be loaded from a relative path
    (starting from /opt/odoo/data): camptocamp/anthem#36
  • The runtests script shows the coverage at the end

Build

  • Upgrade setuptools, otherwise the pip installs fail with
    NameError: name 'platform_system' is not defined
  • Disable pip cache directory to reduce image size

Libraries

  • Upgrade six to 1.10.0
  • Upgrade anthem to 0.11.0 in every odoo version
  • Upgrade marabunta to 0.8.0 in every odoo version
  • Install the phonenumbers library for odoo 11.0

2.5.1

12 Jan 09:17
Compare
Choose a tag to compare

Reduce size of the 11.0 image by cleaning and optimizing layers

2.5.0

12 Jan 09:17
Compare
Choose a tag to compare

Odoo11!

Features and Improvements

  • Add an Odoo 11.0 image version. Which required upgrading dependencies to
    Python 3 for this image.

Libraries

  • Upgrade pip to the development version, to prevent unnecessary upgrades of libs
  • Upgrade anthem to 0.11.0
  • Upgrade marabunta to 0.8.0

Build

  • Upgrade gosu to 1.10
  • Upgrade dockerize to 0.6.0 and run a checksum

2.4.0

20 Sep 11:33
Compare
Choose a tag to compare

Features and Improvements

  • A maintenance page is published on the same port than Odoo (8069) during the
    marabunta migration (need anthem >= 0.10.0 and marabunta >= 0.7.2)
  • Support installation of Odoo addons packaged as Python wheels

Bugfixes

  • The start-entrypoint.d/000_base_url script might fail when we don't run
    marabunta migration and the database does not exist, the script is now
    ignored in such case.

Libraries

  • Upgrade anthem to 0.10.0
  • Upgrade marabunta to 0.7.2, includes a maintenance page during the upgrade!
  • Add odoo-autodiscover>=2.0.0b1 to support Odoo addons packaged as wheels
  • Upgrade psycopg2 to 2.7.3.1 with several bugfixes notably "Fixed
    inconsistent state in externally closed connections" in
    http://initd.org/psycopg/articles/2017/07/22/psycopg-272-released/

2.3.0

05 Jul 08:05
Compare
Choose a tag to compare

Features and Improvements

  • Remove DOMAIN_NAME environment variable. Only ODOO_BASE_URL is now used.
  • Set a default value for ODOO_BASE_URL to http://localhost:8069.

Libraries

  • Add ofxparse as found in odoo's requirements
  • Upgrade psycopg2 to 2.7.1
  • Add pytest-cov for tests
  • PyChart is no longer installed from gna.org (down) but from pypi

2.2.0

18 May 15:37
Compare
Choose a tag to compare

Features and Improvements

  • Upgrade postgres-client to 9.6
  • Add before-migrate-entrypoint.d, same principle than the start-entrypoint.d
    but run before the migration

2.1.1

04 May 07:47
Compare
Choose a tag to compare

Bugfixes

  • Remove a remaining occurence of hardcoded 'db' host in the start-entrypoint
    that set the base URL.

2.1.0

28 Apr 13:17
Compare
Choose a tag to compare

Features and Improvements

  • Possibility to change the hostname for database with $DB_HOST (default is db)
  • Set the list_db option to False by default. This option can be
    unsafe and there is no reason to activate it as the image is designed to run
    on one database by default.
  • New option in configuration file replacing --load: server_wide_modules can
    be configured with the environment variable SERVER_WIDE_MODULES

Libraries