@programinglive/commiter 1.1.3 → 1.1.5
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/CHANGELOG.md +19 -0
- package/docs/release-notes/RELEASE_NOTES.md +17 -0
- package/package.json +1 -1
- package/scripts/release.js +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,25 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
|
4
4
|
|
|
5
|
+
### [1.1.5](https://github.com/programinglive/commiter/compare/v1.1.4...v1.1.5) (2025-11-05)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### ✨ Features
|
|
9
|
+
|
|
10
|
+
* include release notes in release commit via amendment ([3f2afa8](https://github.com/programinglive/commiter/commit/3f2afa8bd0bd264d047df06ae791384e74dc827e))
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### 📝 Documentation
|
|
14
|
+
|
|
15
|
+
* update release notes for v1.1.5 ([cb3dbe6](https://github.com/programinglive/commiter/commit/cb3dbe62a85a174bfb074e3d2526a005fc83d0d7))
|
|
16
|
+
|
|
17
|
+
### [1.1.4](https://github.com/programinglive/commiter/compare/v1.1.3...v1.1.4) (2025-11-05)
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
### 🐛 Bug Fixes
|
|
21
|
+
|
|
22
|
+
* simplify release notes staging to avoid git ref conflicts ([d4077aa](https://github.com/programinglive/commiter/commit/d4077aa1544e07cb64d089a440cf9461da42c413))
|
|
23
|
+
|
|
5
24
|
### [1.1.3](https://github.com/programinglive/commiter/compare/v1.1.2...v1.1.3) (2025-11-05)
|
|
6
25
|
|
|
7
26
|
### [1.1.2](https://github.com/programinglive/commiter/compare/v1.1.1...v1.1.2) (2025-11-05)
|
|
@@ -4,6 +4,8 @@ This document summarizes every published version of `@programinglive/commiter`.
|
|
|
4
4
|
|
|
5
5
|
| Version | Date | Highlights |
|
|
6
6
|
|---------|------|------------|
|
|
7
|
+
| 1.1.5 | 2025-11-05 | include release notes in release commit via amendment (3f2afa8) |
|
|
8
|
+
| 1.1.4 | 2025-11-05 | simplify release notes staging to avoid git ref conflicts (d4077aa) |
|
|
7
9
|
| 1.1.3 | 2025-11-05 | See CHANGELOG for details. |
|
|
8
10
|
| 1.1.2 | 2025-11-05 | auto-update release notes during release (99d1043) |
|
|
9
11
|
| 1.1.1 | 2025-11-05 | 🐛 Bug Fix – removed the fs.F_OK deprecation warning from release runs. |
|
|
@@ -24,6 +26,21 @@ This document summarizes every published version of `@programinglive/commiter`.
|
|
|
24
26
|
|
|
25
27
|
|
|
26
28
|
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
## 1.1.5 – ✨ Features
|
|
32
|
+
|
|
33
|
+
Released on **2025-11-05**.
|
|
34
|
+
|
|
35
|
+
- include release notes in release commit via amendment (3f2afa8)
|
|
36
|
+
- update release notes for v1.1.5 (cb3dbe6)
|
|
37
|
+
|
|
38
|
+
## 1.1.4 – 🐛 Bug Fixes
|
|
39
|
+
|
|
40
|
+
Released on **2025-11-05**.
|
|
41
|
+
|
|
42
|
+
- simplify release notes staging to avoid git ref conflicts (d4077aa)
|
|
43
|
+
|
|
27
44
|
## 1.1.3
|
|
28
45
|
|
|
29
46
|
Released on **2025-11-05**.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@programinglive/commiter",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.5",
|
|
4
4
|
"description": "Commiter keeps repositories release-ready by enforcing conventional commits, generating icon-rich changelog entries, and orchestrating semantic version bumps without manual toil. It bootstraps Husky hooks, commitlint rules, and release scripts that inspect history, detect framework-specific test commands, run them automatically, tag git releases, coordinate npm publishing, surface release metrics, enforce project-specific checks, and give maintainers observability across distributed teams. Plus!",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"bin": {
|
package/scripts/release.js
CHANGED
|
@@ -225,7 +225,7 @@ function runRelease({
|
|
|
225
225
|
}
|
|
226
226
|
|
|
227
227
|
const gitTagResult = gitTag(tagName, tagMessage);
|
|
228
|
-
if (!gitTagResult || typeof gitTagResult.status
|
|
228
|
+
if (!gitTagResult || typeof gitTagResult.status === 'number' && gitTagResult.status !== 0) {
|
|
229
229
|
console.warn(`⚠️ Failed to retag ${tagName}. Please update the tag manually before pushing.`);
|
|
230
230
|
}
|
|
231
231
|
}
|