balena-deploy-request 0.9.3 → 0.9.4-build-ab77-patch-428c10d57567788d78831c5cebd077aed2076763-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 +11 -1
- package/CHANGELOG.md +5 -0
- package/package.json +2 -2
- package/src/index.js +0 -9
|
@@ -1,3 +1,13 @@
|
|
|
1
|
+
- commits:
|
|
2
|
+
- subject: we do our own deploys now
|
|
3
|
+
hash: 428c10d57567788d78831c5cebd077aed2076763
|
|
4
|
+
body: ""
|
|
5
|
+
footer:
|
|
6
|
+
change-type: patch
|
|
7
|
+
author: Anton Belodedenko
|
|
8
|
+
version: 0.9.4
|
|
9
|
+
title: ""
|
|
10
|
+
date: 2024-03-19T22:07:07.736Z
|
|
1
11
|
- commits:
|
|
2
12
|
- subject: Update dependency lint-staged to v15
|
|
3
13
|
hash: 5e2813daf0db446a20dc1d2b9a1d0726f8e24593
|
|
@@ -9,7 +19,7 @@
|
|
|
9
19
|
author: Self-hosted Renovate Bot
|
|
10
20
|
version: 0.9.3
|
|
11
21
|
title: ""
|
|
12
|
-
date: 2024-03-19T21:
|
|
22
|
+
date: 2024-03-19T21:47:05.612Z
|
|
13
23
|
- commits:
|
|
14
24
|
- subject: Update dependency husky to v9
|
|
15
25
|
hash: a3230188793becc39969f81d1faf05acf764c30a
|
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,11 @@ 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.4
|
|
8
|
+
## (2024-03-19)
|
|
9
|
+
|
|
10
|
+
* we do our own deploys now [Anton Belodedenko]
|
|
11
|
+
|
|
7
12
|
# v0.9.3
|
|
8
13
|
## (2024-03-19)
|
|
9
14
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "balena-deploy-request",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.4-build-ab77-patch-428c10d57567788d78831c5cebd077aed2076763-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-19T22:07:07.799Z"
|
|
39
39
|
}
|
|
40
40
|
}
|
package/src/index.js
CHANGED
|
@@ -104,13 +104,6 @@ for (const l of changelog) {
|
|
|
104
104
|
}
|
|
105
105
|
|
|
106
106
|
const result = [
|
|
107
|
-
'================================ Deploy request ================================',
|
|
108
|
-
'',
|
|
109
|
-
`#devops please deploy #${packageName} ${newVersion} to production`,
|
|
110
|
-
'@@devops',
|
|
111
|
-
'',
|
|
112
|
-
'================================ Release notes =================================',
|
|
113
|
-
'```',
|
|
114
107
|
`# ${toTitleCase(packageName)} release-notes ${date}`,
|
|
115
108
|
'',
|
|
116
109
|
`The ${moduleName} has been updated from ${oldVersion} to ${newVersion}`,
|
|
@@ -120,8 +113,6 @@ const result = [
|
|
|
120
113
|
...notableChanges,
|
|
121
114
|
'',
|
|
122
115
|
...changelog,
|
|
123
|
-
'```',
|
|
124
|
-
'================================================================================',
|
|
125
116
|
];
|
|
126
117
|
|
|
127
118
|
console.log(result.join('\n'));
|