balena-deploy-request 0.9.2-build-renovate-major-husky-a3230188793becc39969f81d1faf05acf764c30a-1 → 0.9.2-build-ab77-patch-a3278574f9d8a7ce135026c8e6afa0f1f4b957af-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.
@@ -1,15 +1,13 @@
1
1
  - commits:
2
- - subject: Update dependency husky to v9
3
- hash: a3230188793becc39969f81d1faf05acf764c30a
4
- body: |
5
- Update husky from 2.7.0 to 9.0.1
2
+ - subject: we do our own deploys now
3
+ hash: a3278574f9d8a7ce135026c8e6afa0f1f4b957af
4
+ body: ""
6
5
  footer:
7
- Change-type: patch
8
6
  change-type: patch
9
- author: Self-hosted Renovate Bot
7
+ author: Anton Belodedenko
10
8
  version: 0.9.2
11
9
  title: ""
12
- date: 2024-03-19T20:39:17.067Z
10
+ date: 2024-03-19T20:40:26.492Z
13
11
  - commits:
14
12
  - subject: Update dependency prettier to v3
15
13
  hash: 7f7def9c5eab1602b586c17cadf85df75bbeff71
package/CHANGELOG.md CHANGED
@@ -7,7 +7,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
7
7
  # v0.9.2
8
8
  ## (2024-03-19)
9
9
 
10
- * Update dependency husky to v9 [Self-hosted Renovate Bot]
10
+ * we do our own deploys now [Anton Belodedenko]
11
11
 
12
12
  # v0.9.1
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.2-build-renovate-major-husky-a3230188793becc39969f81d1faf05acf764c30a-1",
3
+ "version": "0.9.2-build-ab77-patch-a3278574f9d8a7ce135026c8e6afa0f1f4b957af-1",
4
4
  "description": "A simple script for generating deploy requests along with release notes",
5
5
  "main": "src/index.js",
6
6
  "bin": {
@@ -30,11 +30,11 @@
30
30
  },
31
31
  "homepage": "https://github.com/balena-io-modules/balena-deploy-request#readme",
32
32
  "devDependencies": {
33
- "husky": "^9.0.0",
33
+ "husky": "^2.2.0",
34
34
  "lint-staged": "^8.1.6",
35
35
  "prettier": "^3.0.0"
36
36
  },
37
37
  "versionist": {
38
- "publishedAt": "2024-03-19T20:39:17.120Z"
38
+ "publishedAt": "2024-03-19T20:40:26.547Z"
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'));