blob: fa6a26f98cd070873caf7d6d5792e10c5e89a856 [file] [log] [blame]
Chris Kay025c87f2021-11-09 20:05:38 +00001/*
2 * Copyright (c) 2021, Arm Limited. All rights reserved.
3 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 */
6
7/* eslint-env es6 */
8
9"use strict";
10
Chris Kay82117d72021-12-01 16:34:55 +000011const fs = require("fs");
12const yaml = require("js-yaml");
Chris Kay025c87f2021-11-09 20:05:38 +000013
14/*
Chris Kay82117d72021-12-01 16:34:55 +000015 * The types and scopes accepted by both Commitlint and Commitizen are defined by the changelog
16 * configuration file - `changelog.yaml` - as they decide which section of the changelog commits
17 * with a given type and scope are placed in.
Chris Kay025c87f2021-11-09 20:05:38 +000018 */
Chris Kay025c87f2021-11-09 20:05:38 +000019
Chris Kay82117d72021-12-01 16:34:55 +000020let changelog;
Chris Kay025c87f2021-11-09 20:05:38 +000021
Chris Kay82117d72021-12-01 16:34:55 +000022try {
23 const contents = fs.readFileSync("changelog.yaml", "utf8");
24
25 changelog = yaml.load(contents);
26} catch (err) {
27 console.log(err);
28
29 throw err;
30}
31
32/*
33 * The next couple of functions are just used to transform the changelog YAML configuration
34 * structure into one accepted by the Conventional Changelog adapter (conventional-changelog-tf-a).
35 */
36
37function getTypes(sections) {
38 return sections.map(section => {
39 return {
40 "type": section.type,
41 "section": section.hidden ? undefined : section.title,
42 "hidden": section.hidden || false,
43 };
44 })
45}
46
47function getSections(subsections) {
48 return subsections.flatMap(subsection => {
49 const scope = subsection.scope ? [ subsection.scope ] : [];
50
51 return {
52 "title": subsection.title,
53 "sections": getSections(subsection.subsections || []),
54 "scopes": scope.concat(subsection.deprecated || []),
55 };
56 })
57};
58
59const types = getTypes(changelog.sections);
60const sections = getSections(changelog.subsections);
Chris Kay025c87f2021-11-09 20:05:38 +000061
62module.exports = {
63 "header": "# Change Log & Release Notes\n\nThis document contains a summary of the new features, changes, fixes and known\nissues in each release of Trusted Firmware-A.\n",
64 "preset": {
65 "name": "tf-a",
66 "commitUrlFormat": "https://review.trustedfirmware.org/plugins/gitiles/TF-A/trusted-firmware-a/+/{{hash}}",
Chris Kay78748c92021-12-01 17:47:51 +000067 "compareUrlFormat": "https://review.trustedfirmware.org/plugins/gitiles/TF-A/trusted-firmware-a/+/refs/tags/{{previousTag}}..refs/tags/{{currentTag}}",
Chris Kay025c87f2021-11-09 20:05:38 +000068 "userUrlFormat": "https://github.com/{{user}}",
69
70 "types": types,
Chris Kay82117d72021-12-01 16:34:55 +000071 "sections": sections,
Chris Kay025c87f2021-11-09 20:05:38 +000072 },
73 "bumpFiles": [
74 {
75 "filename": "Makefile",
76 "updater": {
77 "readVersion": function (contents) {
78 const major = contents.match(/^VERSION_MAJOR\s*:=\s*(\d+?)$/m)[1];
79 const minor = contents.match(/^VERSION_MINOR\s*:=\s*(\d+?)$/m)[1];
80
81 return `${major}.${minor}.0`;
82 },
83
84 "writeVersion": function (contents, version) {
85 const major = version.split(".")[0];
86 const minor = version.split(".")[1];
87
88 contents = contents.replace(/^(VERSION_MAJOR\s*:=\s*)(\d+?)$/m, `$1${major}`);
89 contents = contents.replace(/^(VERSION_MINOR\s*:=\s*)(\d+?)$/m, `$1${minor}`);
90
91 return contents;
92 }
93 }
94 }
95 ]
96};