balena-deploy-request 0.9.4-build-ab77-patch-4aade7d714251066b6490b10f213f94008aca000-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/package.json +2 -2
- package/src/index.js +4 -1
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-28T17:
|
|
38
|
+
"publishedAt": "2024-03-28T17:57:56.622Z"
|
|
39
39
|
}
|
|
40
40
|
}
|
package/src/index.js
CHANGED
|
@@ -109,10 +109,13 @@ const result = [
|
|
|
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'));
|