@programinglive/commiter 1.2.4 โ 1.2.6
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/README.md +7 -7
- package/docs/release-notes/RELEASE_NOTES.md +17 -0
- package/index.js +7 -0
- package/package.json +1 -1
- package/web/index.html +14 -13
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.2.6](https://github.com/programinglive/commiter/compare/v1.2.5...v1.2.6) (2025-11-30)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### ๐ Bug Fixes
|
|
9
|
+
|
|
10
|
+
* tests only run during release, not on commit ([15600a0](https://github.com/programinglive/commiter/commit/15600a0a558ea9fd38a77afd2c11f5e954d87c51))
|
|
11
|
+
|
|
12
|
+
### [1.2.5](https://github.com/programinglive/commiter/compare/v1.2.4...v1.2.5) (2025-11-29)
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
### ๐งน Chores
|
|
16
|
+
|
|
17
|
+
* **release:** v1.2.4 ๐ ([23e546a](https://github.com/programinglive/commiter/commit/23e546a070ef4ddc403f7d3a89750c501ec84f08))
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
### โ
Tests
|
|
21
|
+
|
|
22
|
+
* add integration tests to verify web updates are only for commiter ([8b2b1ad](https://github.com/programinglive/commiter/commit/8b2b1ad045f088db03d9ccfea4dad54cb5278926))
|
|
23
|
+
|
|
5
24
|
### [1.2.4](https://github.com/programinglive/commiter/compare/v1.2.3...v1.2.4) (2025-11-27)
|
|
6
25
|
|
|
7
26
|
|
package/README.md
CHANGED
|
@@ -126,12 +126,12 @@ npm run release
|
|
|
126
126
|
|
|
127
127
|
## What Happens During Release?
|
|
128
128
|
|
|
129
|
-
1. ๐งช Detects your package manager and runs the `test` script automatically
|
|
130
|
-
2. ๐ Analyzes commits since last release
|
|
131
|
-
3. ๐ข Bumps version in `package.json`
|
|
132
|
-
4. ๐ Updates `CHANGELOG.md` with icons
|
|
133
|
-
5. ๐ท๏ธ Creates a git tag
|
|
134
|
-
6. ๐พ Commits changes with format: `chore(release): v1.2.3 ๐`
|
|
129
|
+
1. ๐งช **Runs tests** - Detects your package manager and runs the `test` script automatically (tests only run during release, not on commit)
|
|
130
|
+
2. ๐ **Analyzes commits** - Examines commits since last release
|
|
131
|
+
3. ๐ข **Bumps version** - Updates version in `package.json`
|
|
132
|
+
4. ๐ **Updates changelog** - Generates `CHANGELOG.md` with icons
|
|
133
|
+
5. ๐ท๏ธ **Creates tag** - Creates a git tag for the release
|
|
134
|
+
6. ๐พ **Commits release** - Commits changes with format: `chore(release): v1.2.3 ๐`
|
|
135
135
|
|
|
136
136
|
## Push Your Release
|
|
137
137
|
|
|
@@ -146,7 +146,7 @@ git push --follow-tags origin main
|
|
|
146
146
|
The following hooks are automatically enforced:
|
|
147
147
|
|
|
148
148
|
- **commit-msg**: Validates commit message format using commitlint
|
|
149
|
-
- **pre-commit**:
|
|
149
|
+
- **pre-commit**: Empty hook (tests are run only during release, not on commit)
|
|
150
150
|
|
|
151
151
|
## Configuration Files
|
|
152
152
|
|
|
@@ -4,6 +4,8 @@ This document summarizes every published version of `@programinglive/commiter`.
|
|
|
4
4
|
|
|
5
5
|
| Version | Date | Highlights |
|
|
6
6
|
|---------|------|------------|
|
|
7
|
+
| 1.2.6 | 2025-11-30 | tests only run during release, not on commit (15600a0) |
|
|
8
|
+
| 1.2.5 | 2025-11-29 | **release:** v1.2.4 ๐ (23e546a) |
|
|
7
9
|
| 1.2.4 | 2025-11-27 | **release:** 1.2.3 (9d12f7e) |
|
|
8
10
|
| 1.2.3 | 2025-11-27 | automate website releases timeline updates from release notes (5abf788) |
|
|
9
11
|
| 1.2.2 | 2025-11-27 | update homepage url (556b173) |
|
|
@@ -50,6 +52,21 @@ This document summarizes every published version of `@programinglive/commiter`.
|
|
|
50
52
|
|
|
51
53
|
|
|
52
54
|
|
|
55
|
+
|
|
56
|
+
|
|
57
|
+
## 1.2.6 โ ๐ Bug Fixes
|
|
58
|
+
|
|
59
|
+
Released on **2025-11-30**.
|
|
60
|
+
|
|
61
|
+
- tests only run during release, not on commit (15600a0)
|
|
62
|
+
|
|
63
|
+
## 1.2.5 โ ๐งน Chores
|
|
64
|
+
|
|
65
|
+
Released on **2025-11-29**.
|
|
66
|
+
|
|
67
|
+
- **release:** v1.2.4 ๐ (23e546a)
|
|
68
|
+
- add integration tests to verify web updates are only for commiter (8b2b1ad)
|
|
69
|
+
|
|
53
70
|
## 1.2.4 โ ๐งน Chores
|
|
54
71
|
|
|
55
72
|
Released on **2025-11-27**.
|
package/index.js
CHANGED
|
@@ -153,6 +153,13 @@ npx --no -- commitlint --edit "$1"
|
|
|
153
153
|
fs.writeFileSync(path.join(huskyDir, 'commit-msg'), commitMsgHook);
|
|
154
154
|
fs.chmodSync(path.join(huskyDir, 'commit-msg'), 0o755);
|
|
155
155
|
|
|
156
|
+
// Create pre-commit hook (tests run only during release)
|
|
157
|
+
const preCommitHook = `#!/usr/bin/env sh
|
|
158
|
+
# Pre-commit hook - tests are run only during release
|
|
159
|
+
`;
|
|
160
|
+
fs.writeFileSync(path.join(huskyDir, 'pre-commit'), preCommitHook);
|
|
161
|
+
fs.chmodSync(path.join(huskyDir, 'pre-commit'), 0o755);
|
|
162
|
+
|
|
156
163
|
// Update .gitignore
|
|
157
164
|
const gitignorePath = path.join(process.cwd(), '.gitignore');
|
|
158
165
|
let gitignoreContent = '';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@programinglive/commiter",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.6",
|
|
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/web/index.html
CHANGED
|
@@ -66,7 +66,7 @@
|
|
|
66
66
|
<div class="hero-content">
|
|
67
67
|
<div class="hero-badge">
|
|
68
68
|
<span class="badge-dot"></span>
|
|
69
|
-
<span>v1.2.
|
|
69
|
+
<span>v1.2.6 - Latest Release</span>
|
|
70
70
|
</div>
|
|
71
71
|
<h1 class="hero-title">
|
|
72
72
|
Ship Releases with <span class="gradient-text">Confidence</span>
|
|
@@ -90,7 +90,7 @@
|
|
|
90
90
|
</div>
|
|
91
91
|
<div class="hero-stats">
|
|
92
92
|
<div class="stat-item">
|
|
93
|
-
<div class="stat-value">1.2.
|
|
93
|
+
<div class="stat-value">1.2.6</div>
|
|
94
94
|
<div class="stat-label">Latest Version</div>
|
|
95
95
|
</div>
|
|
96
96
|
<div class="stat-item">
|
|
@@ -385,6 +385,18 @@
|
|
|
385
385
|
<!-- RELEASES_TIMELINE:START -->
|
|
386
386
|
<div class="release-item">
|
|
387
387
|
<div class="release-badge">Latest</div>
|
|
388
|
+
<div class="release-version">v1.2.6</div>
|
|
389
|
+
<div class="release-date">November 30, 2025</div>
|
|
390
|
+
<div class="release-type">๐ Bug Fixes</div>
|
|
391
|
+
<p class="release-description">tests only run during release, not on commit (15600a0)</p>
|
|
392
|
+
</div>
|
|
393
|
+
<div class="release-item">
|
|
394
|
+
<div class="release-version">v1.2.5</div>
|
|
395
|
+
<div class="release-date">November 29, 2025</div>
|
|
396
|
+
<div class="release-type">๐งน Chores</div>
|
|
397
|
+
<p class="release-description">release: v1.2.4 ๐ (23e546a)</p>
|
|
398
|
+
</div>
|
|
399
|
+
<div class="release-item">
|
|
388
400
|
<div class="release-version">v1.2.4</div>
|
|
389
401
|
<div class="release-date">November 27, 2025</div>
|
|
390
402
|
<div class="release-type">๐งน Chores</div>
|
|
@@ -402,17 +414,6 @@
|
|
|
402
414
|
<div class="release-type">๐งน Chores</div>
|
|
403
415
|
<p class="release-description">update homepage url (556b173)</p>
|
|
404
416
|
</div>
|
|
405
|
-
<div class="release-item">
|
|
406
|
-
<div class="release-version">v1.2.1</div>
|
|
407
|
-
<div class="release-date">November 26, 2025</div>
|
|
408
|
-
<div class="release-type">๐ Bug Fixes</div>
|
|
409
|
-
<p class="release-description">release: improve website version update reliability (18f5ace)</p>
|
|
410
|
-
</div>
|
|
411
|
-
<div class="release-item">
|
|
412
|
-
<div class="release-version">v1.2.0</div>
|
|
413
|
-
<div class="release-date">November 26, 2025</div>
|
|
414
|
-
<p class="release-description">See CHANGELOG for details.</p>
|
|
415
|
-
</div>
|
|
416
417
|
<!-- RELEASES_TIMELINE:END -->
|
|
417
418
|
</div>
|
|
418
419
|
<div class="releases-cta">
|