Note:

If you want to create a new page for developers, you should create it on the Moodle Developer Resource site.

Release notes template: Difference between revisions

From MoodleDocs
(changing headings to ones used in recent release notes)
m (→‎Tips: Clarify the purpose of the git command)
Line 39: Line 39:


  $ git log --oneline --pretty="format:" --name-only v3.5.0..v3.6.0-beta | grep upgrade.txt | sort | uniq | while read path; do echo "* [https://git.in.moodle.com/moodle/moodle/blob/v3.6.0-beta/$path $path]"; done
  $ git log --oneline --pretty="format:" --name-only v3.5.0..v3.6.0-beta | grep upgrade.txt | sort | uniq | while read path; do echo "* [https://git.in.moodle.com/moodle/moodle/blob/v3.6.0-beta/$path $path]"; done
See e.g. [[Moodle 3.6 release notes#Component APIs upgrades]] for how it was used in the past.


[[:es:Plantilla para las notas de versiones|Plantilla en Español]]
[[:es:Plantilla para las notas de versiones|Plantilla en Español]]

Revision as of 11:50, 25 October 2019

Copy and paste this wiki code into the new release notes page and replace all the missing bits. Releases > Release notes template

Release date: Not yet released

Here is the full list of fixed issues in X.X.X.

Major features

Items to be added soon...

Other highlights

Items to be added soon...

For developers

Items to be added soon...

Security issues

A number of security related issues were resolved. Details of these issues will be released after a period of approximately one week to allow system administrators to safely update to the latest version.

See also

Tips

The following git command can be used to find all upgrade.txt files that were modified since the last release, so that links to them can be provided in the release notes - typically in the For developers section.

$ git log --oneline --pretty="format:" --name-only v3.5.0..v3.6.0-beta | grep upgrade.txt | sort | uniq | while read path; do echo "* $path"; done

See e.g. Moodle 3.6 release notes#Component APIs upgrades for how it was used in the past.

Plantilla en Español