Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mozilla/release-notes
Release notes and system requirements for our various Firefoxen
https://github.com/mozilla/release-notes
bedrock mozilla nucleus release-notes
Last synced: 3 months ago
JSON representation
Release notes and system requirements for our various Firefoxen
- Host: GitHub
- URL: https://github.com/mozilla/release-notes
- Owner: mozilla
- License: mpl-2.0
- Created: 2017-08-11T19:07:37.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2024-10-29T13:01:17.000Z (3 months ago)
- Last Synced: 2024-10-29T14:55:11.573Z (3 months ago)
- Topics: bedrock, mozilla, nucleus, release-notes
- Language: Python
- Size: 7.62 MB
- Stars: 18
- Watchers: 19
- Forks: 15
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# Mozilla Release Notes
Release notes and system requirements for Mozilla products in JSON format.
## Usage
To update the data in this repo you can run a simple script which will pull the data from an instance of [Nucleus][]
and populate the JSON files in the `releases` folder. After following one of the update procedures below you can commit
and push the changes to the JSON files if you need to manually update the release notes data on the website.### Docker
This is the recommended way to do it since it requires no steps other than having [Docker][] installed. Simply run the following commands:
```bash
./update_docker.sh
```This will build the docker image and run it to update the local JSON files.
### Local Python
You'll need Python 3.11 or above and [virtualenv][] to run the following steps.
```bash
virtualenv -p python3 venv
source venv/bin/activate
pip install -r requirements.txt
./update_releases.py
```[Nucleus]: https://nucleus.mozilla.org
[Docker]: https://www.docker.com/community-edition
[virtualenv]: https://virtualenv.pypa.io/en/stable/## License
Mozilla Public License v2. See [LICENSE](LICENSE) file for details.