github-archiver 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.
Files changed (2) hide show
  1. package/CHANGELOG.md +30 -0
  2. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -1,5 +1,35 @@
1
1
  ## [1.1.1](https://github.com/mynameistito/github-archiver/compare/v1.1.0...v1.1.1) (2026-01-12)
2
2
 
3
+ ## 1.1.5
4
+
5
+ ### Patch Changes
6
+
7
+ - [`587569d`](https://github.com/mynameistito/github-archiver/commit/587569d6cf918c3396e58a9b3cf5d6efba9e149a) Thanks [@mynameistito](https://github.com/mynameistito)! - Fix changelog header detection in GitHub Release body extraction
8
+
9
+ - Distinguish between level 2 headers (## ) and level 3 headers (### ) in changelog
10
+ - Prevent '### Patch Changes' from being mistaken as version header boundary
11
+ - Ensure full changeset content is extracted and displayed in release body
12
+ - Fixes empty release description issue caused by incorrect header matching
13
+
14
+ ## 1.1.4
15
+
16
+ ### Patch Changes
17
+
18
+ - [`038d5d8`](https://github.com/mynameistito/github-archiver/commit/038d5d8aeeb3aec72eda9cba1d3f11d91cf6298f) Thanks [@mynameistito](https://github.com/mynameistito)! - Prevent git tag creation failure when tag already exists
19
+
20
+ - Add conditional check before creating version tags
21
+ - Skip tag creation if it already exists to avoid workflow errors
22
+ - Prevents "fatal: tag already exists" error in CI/CD pipeline
23
+ - Improves error handling and idempotency of release workflow
24
+
25
+ - [`55c6264`](https://github.com/mynameistito/github-archiver/commit/55c6264fd859b1d95ff697a31d627bd9ca135161) Thanks [@mynameistito](https://github.com/mynameistito)! - Fix CHANGELOG parsing for GitHub Release body extraction
26
+
27
+ - Replace complex regex patterns with simple line-by-line parsing
28
+ - Handle all changelog header formats (with/without links, dates, brackets)
29
+ - Ensure release notes are properly populated in GitHub Release descriptions
30
+ - More reliable and maintainable changelog extraction logic
31
+ - Gracefully handles missing versions with fallback message
32
+
3
33
  ## 1.1.3
4
34
 
5
35
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "github-archiver",
3
- "version": "1.1.3",
3
+ "version": "1.1.5",
4
4
  "description": "Archive GitHub repositories via CLI",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",