github-archiver 1.1.1 → 1.1.3

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 -4
  2. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -1,6 +1,30 @@
1
- ## [1.0.8](https://github.com/mynameistito/github-archiver/compare/v1.0.7...v1.0.8) (2026-01-11)
1
+ ## [1.1.1](https://github.com/mynameistito/github-archiver/compare/v1.1.0...v1.1.1) (2026-01-12)
2
+
3
+ ## 1.1.3
4
+
5
+ ### Patch Changes
6
+
7
+ - [`a7d1b2e`](https://github.com/mynameistito/github-archiver/commit/a7d1b2e77c754ccf4302f4db6c28c39d9e47cb34) Thanks [@mynameistito](https://github.com/mynameistito)! - Create GitHub Release with changeset description on new tag
8
+
9
+ - Add automated GitHub Release creation for each version tag
10
+ - Extract release notes from CHANGELOG.md and include in release body
11
+ - Display full changeset description with commits, contributors, and changes
12
+ - Handle multiple changelog header formats (with and without markdown links)
13
+ - Gracefully handle existing releases without breaking workflow
14
+ - Improve release visibility and accessibility on GitHub
2
15
 
3
- ## 1.1.1
16
+ ## 1.1.2
17
+
18
+ ### Patch Changes
19
+
20
+ - [`7df5b1a`](https://github.com/mynameistito/github-archiver/commit/7df5b1a094c56380648da0c82d69dddbbf776468) Thanks [@mynameistito](https://github.com/mynameistito)! - Add explicit git tagging to release workflow and synchronize changelog
21
+
22
+ - Implement automatic version tag creation (v{version}) after successful npm publish
23
+ - Create and update 'latest' tag pointing to the most recent release
24
+ - Push both version and latest tags to remote for git history synchronization
25
+ - Ensure git tags are immediately available in the repository
26
+ - Update CHANGELOG with proper semantic versioning headers and GitHub compare links
27
+ - Improves consistency between git tags, npm releases, and GitHub releases
4
28
 
5
29
  ### Patch Changes
6
30
 
@@ -14,7 +38,7 @@
14
38
  - All 34 tests pass with 94.39% line coverage
15
39
  - No breaking changes - all Node.js APIs work seamlessly through Bun's Node.js compatibility layer
16
40
 
17
- ## 1.1.0
41
+ ## [1.1.0](https://github.com/mynameistito/github-archiver/compare/v1.0.9...v1.1.0) (2026-01-12)
18
42
 
19
43
  ### Minor Changes
20
44
 
@@ -33,7 +57,7 @@
33
57
  - Refactor summary box formatting with dynamic padding that accounts for emoji character widths
34
58
  - Ensure all numeric values in summary box are properly right-aligned
35
59
 
36
- ## 1.0.9
60
+ ## [1.0.9](https://github.com/mynameistito/github-archiver/compare/v1.0.8...v1.0.9) (2026-01-12)
37
61
 
38
62
  ### Patch Changes
39
63
 
@@ -46,6 +70,8 @@
46
70
  - Update Node requirement to 22+ (aligns with actual dependencies)
47
71
  - Update CI/CD workflows to use bun exclusively
48
72
 
73
+ ## [1.0.8](https://github.com/mynameistito/github-archiver/compare/v1.0.7...v1.0.8) (2026-01-11)
74
+
49
75
  ## [1.0.7](https://github.com/mynameistito/github-archiver/compare/v1.0.6...v1.0.7) (2026-01-11)
50
76
 
51
77
  ### Bug Fixes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "github-archiver",
3
- "version": "1.1.1",
3
+ "version": "1.1.3",
4
4
  "description": "Archive GitHub repositories via CLI",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",