balena-deploy-request 0.9.4-build-ab77-patch-428c10d57567788d78831c5cebd077aed2076763-1 → 0.9.4-build-ab77-patch-2abdea2660fb81eb04c1cab15fce500b4a2b3ca1-1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.versionbot/CHANGELOG.yml +1 -1
- package/CHANGELOG.md +1 -1
- package/package.json +2 -2
- package/src/index.js +5 -2
package/CHANGELOG.md
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "balena-deploy-request",
|
|
3
|
-
"version": "0.9.4-build-ab77-patch-
|
|
3
|
+
"version": "0.9.4-build-ab77-patch-2abdea2660fb81eb04c1cab15fce500b4a2b3ca1-1",
|
|
4
4
|
"description": "A simple script for generating deploy requests along with release notes",
|
|
5
5
|
"main": "src/index.js",
|
|
6
6
|
"bin": {
|
|
@@ -35,6 +35,6 @@
|
|
|
35
35
|
"prettier": "^3.0.0"
|
|
36
36
|
},
|
|
37
37
|
"versionist": {
|
|
38
|
-
"publishedAt": "2024-03-
|
|
38
|
+
"publishedAt": "2024-03-28T17:57:56.622Z"
|
|
39
39
|
}
|
|
40
40
|
}
|
package/src/index.js
CHANGED
|
@@ -104,15 +104,18 @@ for (const l of changelog) {
|
|
|
104
104
|
}
|
|
105
105
|
|
|
106
106
|
const result = [
|
|
107
|
-
`# ${toTitleCase(packageName)} release-notes ${date}`,
|
|
107
|
+
`# ${toTitleCase(packageName)} #release-notes ${date}`,
|
|
108
108
|
'',
|
|
109
109
|
`The ${moduleName} has been updated from ${oldVersion} to ${newVersion}`,
|
|
110
110
|
'',
|
|
111
111
|
'Notable changes',
|
|
112
|
-
'*
|
|
112
|
+
'* [only keep the important and rephrase]',
|
|
113
113
|
...notableChanges,
|
|
114
114
|
'',
|
|
115
|
+
'<details><summary>Expand changelog</summary>',
|
|
116
|
+
'',
|
|
115
117
|
...changelog,
|
|
118
|
+
'</details>',
|
|
116
119
|
];
|
|
117
120
|
|
|
118
121
|
console.log(result.join('\n'));
|