[UPD] changelog with migration note
- release note propose to update image_db
This commit is contained in:
parent
11e07fddf3
commit
7d704b7910
3 changed files with 31 additions and 0 deletions
24
CHANGELOG.md
24
CHANGELOG.md
|
|
@ -7,6 +7,18 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
|
||||||
|
|
||||||
## [Unreleased]
|
## [Unreleased]
|
||||||
|
|
||||||
|
**Migration note**
|
||||||
|
|
||||||
|
Because addons repository has change, config file need to be updated.
|
||||||
|
- When upgrading to version 1.2.0:
|
||||||
|
- From docker
|
||||||
|
- Run script `make docker_exec_erplibre_gen_config`
|
||||||
|
- Restart the docker `make docker_restart_daemon`
|
||||||
|
- From vanilla
|
||||||
|
- Run script `make install_dev`
|
||||||
|
- Restart your daemon
|
||||||
|
- Regenerate master password manually
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
|
||||||
- Adapt script to give an execution status
|
- Adapt script to give an execution status
|
||||||
|
|
@ -15,6 +27,15 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
|
||||||
- Script to check git diff and ignore date
|
- Script to check git diff and ignore date
|
||||||
- Repo with ERPLibre image
|
- Repo with ERPLibre image
|
||||||
- Improve git repo usage, filter repo by use case
|
- Improve git repo usage, filter repo by use case
|
||||||
|
- ERPLibre theme website of TechnoLibre
|
||||||
|
- ERPLibre website snippet
|
||||||
|
- Basic HTML snippets
|
||||||
|
- Snippet card
|
||||||
|
- Snippet timelines
|
||||||
|
- Module contract_digitized_signature with contract_portal
|
||||||
|
- Module disable auto_backup
|
||||||
|
- Odoo cli db command to manipulate restoration db
|
||||||
|
- Odoo cli i18n command to generate i18n pot files
|
||||||
|
|
||||||
#### Makefile
|
#### Makefile
|
||||||
|
|
||||||
|
|
@ -36,6 +57,9 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
|
||||||
|
|
||||||
- Update Python dependency with Poetry
|
- Update Python dependency with Poetry
|
||||||
- Format all Python code with black
|
- Format all Python code with black
|
||||||
|
- Module auto_backup with sftp host key
|
||||||
|
- 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
|
||||||
|
|
||||||
#### Docker
|
#### Docker
|
||||||
|
|
||||||
|
|
|
||||||
3
Makefile
3
Makefile
|
|
@ -295,6 +295,9 @@ docker_run_daemon:
|
||||||
docker_stop:
|
docker_stop:
|
||||||
docker-compose down
|
docker-compose down
|
||||||
|
|
||||||
|
.PHONY: docker_restart_daemon
|
||||||
|
docker_restart_daemon: docker_stop docker_run_daemon
|
||||||
|
|
||||||
.PHONY: docker_show_logs_live
|
.PHONY: docker_show_logs_live
|
||||||
docker_show_logs_live:
|
docker_show_logs_live:
|
||||||
docker-compose logs -f
|
docker-compose logs -f
|
||||||
|
|
|
||||||
|
|
@ -18,6 +18,10 @@ And update all from dev to merge into prod.
|
||||||
./script/install_locally_dev.sh
|
./script/install_locally_dev.sh
|
||||||
```
|
```
|
||||||
|
|
||||||
|
## Update image_db
|
||||||
|
|
||||||
|
Change all default image to improve speed when restoring database. Recreate it manually. Check directory `./image_db`.
|
||||||
|
|
||||||
## Generate new prod and release
|
## Generate new prod and release
|
||||||
|
|
||||||
Generate production manifest and freeze all repos versions.
|
Generate production manifest and freeze all repos versions.
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue