github-archiver 1.1.2 → 1.1.4

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 +32 -0
  2. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -1,5 +1,37 @@
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.4
4
+
5
+ ### Patch Changes
6
+
7
+ - [`038d5d8`](https://github.com/mynameistito/github-archiver/commit/038d5d8aeeb3aec72eda9cba1d3f11d91cf6298f) Thanks [@mynameistito](https://github.com/mynameistito)! - Prevent git tag creation failure when tag already exists
8
+
9
+ - Add conditional check before creating version tags
10
+ - Skip tag creation if it already exists to avoid workflow errors
11
+ - Prevents "fatal: tag already exists" error in CI/CD pipeline
12
+ - Improves error handling and idempotency of release workflow
13
+
14
+ - [`55c6264`](https://github.com/mynameistito/github-archiver/commit/55c6264fd859b1d95ff697a31d627bd9ca135161) Thanks [@mynameistito](https://github.com/mynameistito)! - Fix CHANGELOG parsing for GitHub Release body extraction
15
+
16
+ - Replace complex regex patterns with simple line-by-line parsing
17
+ - Handle all changelog header formats (with/without links, dates, brackets)
18
+ - Ensure release notes are properly populated in GitHub Release descriptions
19
+ - More reliable and maintainable changelog extraction logic
20
+ - Gracefully handles missing versions with fallback message
21
+
22
+ ## 1.1.3
23
+
24
+ ### Patch Changes
25
+
26
+ - [`a7d1b2e`](https://github.com/mynameistito/github-archiver/commit/a7d1b2e77c754ccf4302f4db6c28c39d9e47cb34) Thanks [@mynameistito](https://github.com/mynameistito)! - Create GitHub Release with changeset description on new tag
27
+
28
+ - Add automated GitHub Release creation for each version tag
29
+ - Extract release notes from CHANGELOG.md and include in release body
30
+ - Display full changeset description with commits, contributors, and changes
31
+ - Handle multiple changelog header formats (with and without markdown links)
32
+ - Gracefully handle existing releases without breaking workflow
33
+ - Improve release visibility and accessibility on GitHub
34
+
3
35
  ## 1.1.2
4
36
 
5
37
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "github-archiver",
3
- "version": "1.1.2",
3
+ "version": "1.1.4",
4
4
  "description": "Archive GitHub repositories via CLI",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",