umap/docs/release.md

57 lines
1.8 KiB
Markdown
Raw Normal View History

# Releases
## How to make a release
2023-08-25 08:46:26 -05:00
2024-01-08 05:51:11 -06:00
1. Run tests:
- `make test`
- `make testjs`
2023-08-25 08:46:26 -05:00
1. I18N
- `make messages` look for new strings within the code
- `make tx_push` to publish new strings [to transifex](https://app.transifex.com/openstreetmap/umap/dashboard/)
- translators at work
- `make tx_pull` to retrieve new translations from transifex
- `make compilemessages` to create regular `.mo` + `umap/static/umap/locale/*.js`
2023-09-23 14:58:37 -05:00
- commit new translations `git commit -am "i18n"`
2023-08-25 08:46:26 -05:00
2. Bump version: `make patch|minor`
3. `git commit -am "1.X.Y"`
4. `git tag 1.X.Y`
5. `git push && git push --tag`
6. Go to [Github release page](https://github.com/umap-project/umap/releases/new) and Generate release notes + paste it in `docs/changelog.md` + finish Github process for a new release
2023-09-23 14:58:37 -05:00
7. Commit the changelog `git commit -am "changelog"`
2023-09-22 13:58:33 -05:00
8. `make build`
9. `make publish`
10. `make docker`
2023-08-25 08:46:26 -05:00
### Deploying instances
2023-08-25 08:46:26 -05:00
#### OSMfr
2023-08-25 08:46:26 -05:00
2024-01-08 08:59:17 -06:00
The process is manual for now, Yohan has one Makefile on his computer.
2023-08-25 08:46:26 -05:00
#### ANCT
2023-08-25 08:46:26 -05:00
2023-08-25 08:58:41 -05:00
Update the [Dockerfile](https://gitlab.com/incubateur-territoires/startups/donnees-et-territoires/umap-dsfr-moncomptepro/-/blob/main/Dockerfile?ref_type=heads) with correct version and put a tag `YYYY.MM.DD` in order to deploy it to production.
## When to make a release
We aim to support [Baseline](https://developer.mozilla.org/en-US/blog/baseline-evolution-on-mdn/) “Widely available” (implemented in major browsers within the last 30 months).
### Major (2.Y.Z)
* when we bump Django to a major version
* when we change how we store data (both in database and filesystem)
### Minor (X.3.Z)
* when we add new features
* when we improve an existing feature
* when we improve the usability
* when we change templates
If it's not a major nor a patch, it's a minor.
### Patch (X.Y.12)
* when there are bugfixes