balena-deploy-request 0.9.4-build-ab77-patch-4aade7d714251066b6490b10f213f94008aca000-1 → 0.9.5-build-renovate-major-16-lint-staged-ef475eebd0f15ab3bcefd53f0887b380e428c230-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 +13 -1
- package/CHANGELOG.md +6 -1
- package/package.json +3 -3
- package/src/index.js +4 -1
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
- commits:
|
|
2
|
+
- subject: Update dependency lint-staged to v16
|
|
3
|
+
hash: ef475eebd0f15ab3bcefd53f0887b380e428c230
|
|
4
|
+
body: |
|
|
5
|
+
Update lint-staged from 15.5.2 to 16.0.0
|
|
6
|
+
footer:
|
|
7
|
+
Change-type: patch
|
|
8
|
+
change-type: patch
|
|
9
|
+
author: balena-renovate[bot]
|
|
10
|
+
version: 0.9.5
|
|
11
|
+
title: ""
|
|
12
|
+
date: 2025-05-13T17:50:25.992Z
|
|
1
13
|
- commits:
|
|
2
14
|
- subject: we do our own deploys now
|
|
3
15
|
hash: 428c10d57567788d78831c5cebd077aed2076763
|
|
@@ -7,7 +19,7 @@
|
|
|
7
19
|
author: Anton Belodedenko
|
|
8
20
|
version: 0.9.4
|
|
9
21
|
title: ""
|
|
10
|
-
date: 2024-
|
|
22
|
+
date: 2024-04-16T13:22:51.767Z
|
|
11
23
|
- commits:
|
|
12
24
|
- subject: Update dependency lint-staged to v15
|
|
13
25
|
hash: 5e2813daf0db446a20dc1d2b9a1d0726f8e24593
|
package/CHANGELOG.md
CHANGED
|
@@ -4,8 +4,13 @@ All notable changes to this project will be documented in this file
|
|
|
4
4
|
automatically by Versionist. DO NOT EDIT THIS FILE MANUALLY!
|
|
5
5
|
This project adheres to [Semantic Versioning](http://semver.org/).
|
|
6
6
|
|
|
7
|
+
# v0.9.5
|
|
8
|
+
## (2025-05-13)
|
|
9
|
+
|
|
10
|
+
* Update dependency lint-staged to v16 [balena-renovate[bot]]
|
|
11
|
+
|
|
7
12
|
# v0.9.4
|
|
8
|
-
## (2024-
|
|
13
|
+
## (2024-04-16)
|
|
9
14
|
|
|
10
15
|
* we do our own deploys now [Anton Belodedenko]
|
|
11
16
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "balena-deploy-request",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.5-build-renovate-major-16-lint-staged-ef475eebd0f15ab3bcefd53f0887b380e428c230-1",
|
|
4
4
|
"description": "A simple script for generating deploy requests along with release notes",
|
|
5
5
|
"main": "src/index.js",
|
|
6
6
|
"bin": {
|
|
@@ -31,10 +31,10 @@
|
|
|
31
31
|
"homepage": "https://github.com/balena-io-modules/balena-deploy-request#readme",
|
|
32
32
|
"devDependencies": {
|
|
33
33
|
"husky": "^9.0.0",
|
|
34
|
-
"lint-staged": "^
|
|
34
|
+
"lint-staged": "^16.0.0",
|
|
35
35
|
"prettier": "^3.0.0"
|
|
36
36
|
},
|
|
37
37
|
"versionist": {
|
|
38
|
-
"publishedAt": "
|
|
38
|
+
"publishedAt": "2025-05-13T17:50:26.073Z"
|
|
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'));
|