balena-deploy-request 0.9.3-build-ab77-patch-79d0356ff0f5a4719b0641352535f2070b2fea36-1 → 0.9.3

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.
@@ -1,13 +1,15 @@
1
1
  - commits:
2
- - subject: we do our own deploys now
3
- hash: 79d0356ff0f5a4719b0641352535f2070b2fea36
4
- body: ""
2
+ - subject: Update dependency lint-staged to v15
3
+ hash: 5e2813daf0db446a20dc1d2b9a1d0726f8e24593
4
+ body: |
5
+ Update lint-staged from 8.2.1 to 15.2.2
5
6
  footer:
7
+ Change-type: patch
6
8
  change-type: patch
7
- author: Anton Belodedenko
9
+ author: Self-hosted Renovate Bot
8
10
  version: 0.9.3
9
11
  title: ""
10
- date: 2024-03-19T21:14:33.547Z
12
+ date: 2024-03-19T21:44:37.283Z
11
13
  - commits:
12
14
  - subject: Update dependency husky to v9
13
15
  hash: a3230188793becc39969f81d1faf05acf764c30a
package/CHANGELOG.md CHANGED
@@ -7,7 +7,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
7
7
  # v0.9.3
8
8
  ## (2024-03-19)
9
9
 
10
- * we do our own deploys now [Anton Belodedenko]
10
+ * Update dependency lint-staged to v15 [Self-hosted Renovate Bot]
11
11
 
12
12
  # v0.9.2
13
13
  ## (2024-03-19)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "balena-deploy-request",
3
- "version": "0.9.3-build-ab77-patch-79d0356ff0f5a4719b0641352535f2070b2fea36-1",
3
+ "version": "0.9.3",
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": "^8.1.6",
34
+ "lint-staged": "^15.0.0",
35
35
  "prettier": "^3.0.0"
36
36
  },
37
37
  "versionist": {
38
- "publishedAt": "2024-03-19T21:14:33.603Z"
38
+ "publishedAt": "2024-03-19T21:44:37.348Z"
39
39
  }
40
40
  }
package/src/index.js CHANGED
@@ -104,6 +104,13 @@ 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
+ '```',
107
114
  `# ${toTitleCase(packageName)} release-notes ${date}`,
108
115
  '',
109
116
  `The ${moduleName} has been updated from ${oldVersion} to ${newVersion}`,
@@ -113,6 +120,8 @@ const result = [
113
120
  ...notableChanges,
114
121
  '',
115
122
  ...changelog,
123
+ '```',
124
+ '================================================================================',
116
125
  ];
117
126
 
118
127
  console.log(result.join('\n'));