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.
@@ -7,7 +7,7 @@
7
7
  author: Anton Belodedenko
8
8
  version: 0.9.4
9
9
  title: ""
10
- date: 2024-03-19T22:07:07.736Z
10
+ date: 2024-03-28T17:57:56.562Z
11
11
  - commits:
12
12
  - subject: Update dependency lint-staged to v15
13
13
  hash: 5e2813daf0db446a20dc1d2b9a1d0726f8e24593
package/CHANGELOG.md CHANGED
@@ -5,7 +5,7 @@ automatically by Versionist. DO NOT EDIT THIS FILE MANUALLY!
5
5
  This project adheres to [Semantic Versioning](http://semver.org/).
6
6
 
7
7
  # v0.9.4
8
- ## (2024-03-19)
8
+ ## (2024-03-28)
9
9
 
10
10
  * we do our own deploys now [Anton Belodedenko]
11
11
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "balena-deploy-request",
3
- "version": "0.9.4-build-ab77-patch-428c10d57567788d78831c5cebd077aed2076763-1",
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-19T22:07:07.799Z"
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
- '* <only keep the important and rephrase>',
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'));