[UPD] changelog release v1.3.0
This commit is contained in:
parent
578e5741d6
commit
9fc8839fdd
1 changed files with 73 additions and 28 deletions
101
CHANGELOG.md
101
CHANGELOG.md
|
|
@ -2,11 +2,52 @@
|
||||||
|
|
||||||
All notable changes to this project will be documented in this file.
|
All notable changes to this project will be documented in this file.
|
||||||
|
|
||||||
The format is based on [Keep a Changelog](https://keepachangelog.com).
|
The format is based on [Keep a Changelog](https://keepachangelog.com). This project adheres
|
||||||
This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||||
|
|
||||||
## [Unreleased]
|
## [Unreleased]
|
||||||
|
|
||||||
|
## [1.3.0] - 2022-01-25
|
||||||
|
|
||||||
|
**Migration note**
|
||||||
|
|
||||||
|
With new version of poetry, a bug occurs in the update. The solution is to delete the directory to let it
|
||||||
|
recreate. `rm -rf ~/.poetry`
|
||||||
|
|
||||||
|
### Added
|
||||||
|
|
||||||
|
- Code generator supports view : activity, calendar, diagram, form, graph, kanban, pivot, search, timeline and tree
|
||||||
|
- Code generator supports portal view field and form creation
|
||||||
|
- Code generator generates generic snippets for demo_portal
|
||||||
|
- Code generator generates code_generator with code_generator_code_generator
|
||||||
|
- Code generator tests mariadb migrator
|
||||||
|
- Code generator supports javascript interpretation for snippet
|
||||||
|
- Code generator supports inheritance
|
||||||
|
- Code generator new project to create the suite of generation code
|
||||||
|
- Script to test the generation of module `code_generator`
|
||||||
|
- Make test_full_fast to run all test in parallel
|
||||||
|
- Module `web_timeline` and `web_diagram_position` in base image.
|
||||||
|
- Module `odoo-formio` from novacode-nl
|
||||||
|
- Module `design_themes` from Odoo
|
||||||
|
- Format python header with isort
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
|
||||||
|
- Update to Python==3.7.12
|
||||||
|
- Update to poetry==1.1.12
|
||||||
|
- Update pip dependency with security update
|
||||||
|
- Pillow==9.0.0
|
||||||
|
- lxml==4.7.1
|
||||||
|
- babel==2.9.1
|
||||||
|
- pyyaml==6.0
|
||||||
|
- reportlab==3.6.5
|
||||||
|
- Web diagram module has all color of the rainbow in option
|
||||||
|
- Refactor and simplify code of code_generator, better support of code reader
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
|
||||||
|
- Downgrade Werkzeug==0.11.15, only this version is supported by Odoo 12.0. This fixes some http request behind a proxy.
|
||||||
|
|
||||||
## [1.2.1] - 2021-09-28
|
## [1.2.1] - 2021-09-28
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
|
@ -16,12 +57,12 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
|
||||||
### Changed
|
### Changed
|
||||||
|
|
||||||
- Update pip dependency with security update
|
- Update pip dependency with security update
|
||||||
- Jinja2==2.11.3
|
- Jinja2==2.11.3
|
||||||
- lxml==4.6.3
|
- lxml==4.6.3
|
||||||
- cryptography==3.4.8
|
- cryptography==3.4.8
|
||||||
- psutil==5.6.6
|
- psutil==5.6.6
|
||||||
- Pillow==8.3.2
|
- Pillow==8.3.2
|
||||||
- Werkzeug==0.15.3
|
- Werkzeug==0.15.3
|
||||||
- Script separate generate_config.sh from install_locally.sh
|
- Script separate generate_config.sh from install_locally.sh
|
||||||
- Improve developer documentation
|
- Improve developer documentation
|
||||||
- More Docker script
|
- More Docker script
|
||||||
|
|
@ -40,22 +81,23 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
|
||||||
**Migration note**
|
**Migration note**
|
||||||
|
|
||||||
Because addons repository has change, config file need to be updated.
|
Because addons repository has change, config file need to be updated.
|
||||||
|
|
||||||
- When upgrading to version 1.2.0:
|
- When upgrading to version 1.2.0:
|
||||||
- From docker
|
- From docker
|
||||||
- Clone project if only download docker-compose
|
- Clone project if only download docker-compose
|
||||||
- `git init`
|
- `git init`
|
||||||
- `git remote add origin https://github.com/erplibre/erplibre`
|
- `git remote add origin https://github.com/erplibre/erplibre`
|
||||||
- `git fetch`
|
- `git fetch`
|
||||||
- `mv ./docker-compose.yml /tmp/temp_docker-compose.yml`
|
- `mv ./docker-compose.yml /tmp/temp_docker-compose.yml`
|
||||||
- `git checkout master`
|
- `git checkout master`
|
||||||
- `mv /tmp/temp_docker-compose.yml ./docker-compose.yml`
|
- `mv /tmp/temp_docker-compose.yml ./docker-compose.yml`
|
||||||
- Update `./docker-compose.yml` depending of difference with git.
|
- Update `./docker-compose.yml` depending of difference with git.
|
||||||
- Run script `make docker_exec_erplibre_gen_config`
|
- Run script `make docker_exec_erplibre_gen_config`
|
||||||
- Restart the docker `make docker_restart_daemon`
|
- Restart the docker `make docker_restart_daemon`
|
||||||
- From vanilla
|
- From vanilla
|
||||||
- Run script `make install_dev`
|
- Run script `make install_dev`
|
||||||
- Restart your daemon
|
- Restart your daemon
|
||||||
- Regenerate master password manually
|
- Regenerate master password manually
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
|
||||||
|
|
@ -67,9 +109,9 @@ Because addons repository has change, config file need to be updated.
|
||||||
- Improve git repo usage, filter repo by use case
|
- Improve git repo usage, filter repo by use case
|
||||||
- ERPLibre theme website of TechnoLibre
|
- ERPLibre theme website of TechnoLibre
|
||||||
- ERPLibre website snippet
|
- ERPLibre website snippet
|
||||||
- Basic HTML snippets
|
- Basic HTML snippets
|
||||||
- Snippet card
|
- Snippet card
|
||||||
- Snippet timelines
|
- Snippet timelines
|
||||||
- Module contract_digitized_signature with contract_portal
|
- Module contract_digitized_signature with contract_portal
|
||||||
- Module disable auto_backup
|
- Module disable auto_backup
|
||||||
- Odoo cli db command to manipulate restoration db
|
- Odoo cli db command to manipulate restoration db
|
||||||
|
|
@ -97,7 +139,8 @@ Because addons repository has change, config file need to be updated.
|
||||||
- Format all Python code with black
|
- Format all Python code with black
|
||||||
- Module auto_backup with sftp host key
|
- Module auto_backup with sftp host key
|
||||||
- Module muk_website_branding use ERPLibre branding
|
- Module muk_website_branding use ERPLibre branding
|
||||||
- Update docs with vscode support, custom document layout, custom email template and trick to use params to share variable
|
- Update docs with vscode support, custom document layout, custom email template and trick to use params to share
|
||||||
|
variable
|
||||||
|
|
||||||
#### Docker
|
#### Docker
|
||||||
|
|
||||||
|
|
@ -211,7 +254,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.
|
- Support only python3.6 and python3.7, python3.8 causes error in runtime.
|
||||||
|
|
||||||
[Unreleased]: https://github.com/ERPLibre/ERPLibre/compare/v1.2.1...HEAD
|
[Unreleased]: https://github.com/ERPLibre/ERPLibre/compare/v1.3.0...HEAD
|
||||||
|
|
||||||
|
[1.3.0]: https://github.com/ERPLibre/ERPLibre/compare/v1.2.1...v1.3.0
|
||||||
|
|
||||||
[1.2.1]: https://github.com/ERPLibre/ERPLibre/compare/v1.2.0...v1.2.1
|
[1.2.1]: https://github.com/ERPLibre/ERPLibre/compare/v1.2.0...v1.2.1
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue