diff --git a/CHANGELOG.md b/CHANGELOG.md index db87f5a..f4848f4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,8 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## [Unreleased] +## [1.5.0] - 2023-07-07 + **Migration note** Because new update of Python and Poetry, recreate virtual environment. @@ -34,16 +36,26 @@ Do a backup of your database and update all module : - Makefile can generate image DB in parallel with `image_db_create_all_parallel` - Makefile can run all code_generator with `run_parallel_cg` and `run_parallel_cg_template` - Script to generate Pycharm configuration and exclude directory +- Support docker alpha+beta +- Limit memory execution when install in develop +- Template nginx configuration +- Script code count statistic +- Script show OCA evolution module statistic +- Windows development support, check documentation installation +- New project (code generator to create module) support params configuration +- Module sync_external_model to synchronise Odoo models with module ## Changed -- Odoo 12.0 update from 22-07-2020 to 10-10-2022 +- Odoo 12.0 update from 22-07-2020 to 01-01-2023 - Update pip dependency with security update - Pillow==9.3.0 - - gitpython==3.1.29 - psycopg2==2.9.5 + - Werkzeug==0.16.1 + - check diff of file pyproject.toml for all information - Update to Python==3.7.16 - Update poetry==1.3.1 +- Update multilingual-markdown==1.0.3 - Update imagedb with all Odoo update - Repo documentation-user from Odoo change to documentation - Repo odooaktiv/QuotationRevision is deleted @@ -51,10 +63,16 @@ Do a backup of your database and update all module : - Rename module project_task_subtask_time_range => project_time_budget - Rename module project_task_time_range => project_time_range - Refactor script emplacement, create directory in ./script/ per subject +- Use command parallel in Makefile +- Update sphinx version +- Improve script location ### Fixed - Debian 11 installation script +- Test result +- OSX installation (not finish to support) +- Poetry update support '~=' ### Removed @@ -68,6 +86,8 @@ Do a backup of your database and update all module : - Module helpdesk_mailing_list - Module helpdesk_join_team - Module project_time_management +- Support of vatnumber, too old +- Deprecated python dependency like pycrypto ## [1.4.0] - 2022-10-05 @@ -383,7 +403,9 @@ Because addons repository has change, config file need to be updated. - Support only python3.6 and python3.7, python3.8 causes error in runtime. -[Unreleased]: https://github.com/ERPLibre/ERPLibre/compare/v1.4.0...HEAD +[Unreleased]: https://github.com/ERPLibre/ERPLibre/compare/v1.5.0...HEAD + +[1.5.0]: https://github.com/ERPLibre/ERPLibre/compare/v1.4.0...v1.5.0 [1.4.0]: https://github.com/ERPLibre/ERPLibre/compare/v1.3.0...v1.4.0 diff --git a/README.md b/README.md index 83a6df4..fdd79e4 100644 --- a/README.md +++ b/README.md @@ -30,7 +30,7 @@ First, install dependencies to run docker, check script `./script/install/instal The docker volume is bound to the directory name, therefore create a unique directory name and run: ```bash -wget https://raw.githubusercontent.com/ERPLibre/ERPLibre/v1.4.0/docker-compose.yml +wget https://raw.githubusercontent.com/ERPLibre/ERPLibre/v1.5.0/docker-compose.yml docker-compose up -d ``` diff --git a/default.xml b/default.xml index ab7872b..19dba3f 100644 --- a/default.xml +++ b/default.xml @@ -26,140 +26,140 @@ - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - + + + - - - - + + + + - - + + - - - - - - - - + + + + + + + + - - - - - - - - - - - + + + + + + + + + + + - + - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + - - + + - - + + diff --git a/doc/RELEASE.md b/doc/RELEASE.md index 7407d56..13f6892 100644 --- a/doc/RELEASE.md +++ b/doc/RELEASE.md @@ -85,7 +85,7 @@ To generate database images in directory `./image_db`, run: ```bash make db_clean_cache make config_gen_all -make image_db_create_all +make image_db_create_all_parallel ``` To test it, you need to clean caches and install it: diff --git a/docker-compose.yml b/docker-compose.yml index d6fbf2b..04c40f2 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -1,7 +1,7 @@ version: "3.3" services: ERPLibre: - image: technolibre/erplibre:1.4.0 + image: technolibre/erplibre:1.5.0 ports: - 8069:8069 - 8071:8071 diff --git a/docker/Dockerfile.prod.pkg b/docker/Dockerfile.prod.pkg index 468b921..8c2c33c 100644 --- a/docker/Dockerfile.prod.pkg +++ b/docker/Dockerfile.prod.pkg @@ -1,4 +1,4 @@ -FROM technolibre/erplibre-base:1.4.0 +FROM technolibre/erplibre-base:1.5.0 ENV REPO_MANIFEST_URL https://github.com/ERPLibre/ERPLibre ARG WORKING_BRANCH diff --git a/env_var.sh b/env_var.sh index 8fb9428..a23bfa6 100755 --- a/env_var.sh +++ b/env_var.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash -ERPLIBRE_VERSION="1.4.0" +ERPLIBRE_VERSION="1.5.0" EL_USER="erplibre" EL_HOME="/${EL_USER}" diff --git a/pyproject.toml b/pyproject.toml index 5e5bc0e..3994319 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -12,7 +12,7 @@ target-version = [ "py37",] [tool.poetry] name = "ERPLibre" -version = "1.4.0" +version = "1.5.0" description = "Easy way to configure Odoo community" license = "AGPL-3.0-or-later" authors = [ "Mathieu Benoit ",]