mozilla/release-notes


Release notes and system requirements for our various Firefoxen

Download


Step 1. Add the JitPack repository to your build file

Add it in your root settings.gradle at the end of repositories:

	dependencyResolutionManagement {
		repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
		repositories {
			mavenCentral()
			maven { url 'https://jitpack.io' }
		}
	}

Add it in your settings.gradle.kts at the end of repositories:

	dependencyResolutionManagement {
		repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
		repositories {
			mavenCentral()
			maven { url = uri("https://jitpack.io") }
		}
	}

Add to pom.xml

	<repositories>
		<repository>
		    <id>jitpack.io</id>
		    <url>https://jitpack.io</url>
		</repository>
	</repositories>

Add it in your build.sbt at the end of resolvers:

 
    resolvers += "jitpack" at "https://jitpack.io"
        
    

Add it in your project.clj at the end of repositories:

 
    :repositories [["jitpack" "https://jitpack.io"]]
        
    

Step 2. Add the dependency

	dependencies {
		implementation 'com.github.mozilla:RELEASE-NOTES:-SNAPSHOT'
	}
	dependencies {
		implementation("com.github.mozilla:RELEASE-NOTES:-SNAPSHOT")
	}
	<dependency>
	    <groupId>com.github.mozilla</groupId>
	    <artifactId>RELEASE-NOTES</artifactId>
	    <version>-SNAPSHOT</version>
	</dependency>

                            
    libraryDependencies += "com.github.mozilla" % "RELEASE-NOTES" % "-SNAPSHOT"
        
        

                            
    :dependencies [[com.github.mozilla/RELEASE-NOTES "-SNAPSHOT"]]
        
        

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:

./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.

virtualenv -p python3 venv
source venv/bin/activate
pip install -r requirements.txt
./update_releases.py

License

Mozilla Public License v2. See LICENSE file for details.