@edcalderon/versioning 1.4.0 → 1.4.1
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/README.md +34 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,7 +1,41 @@
|
|
|
1
1
|
# @edcalderon/versioning
|
|
2
2
|
|
|
3
|
+
[](https://www.npmjs.com/package/@edcalderon/versioning)
|
|
4
|
+
[](https://www.npmjs.com/package/@edcalderon/versioning)
|
|
5
|
+
[](https://github.com/edcalderon/my-second-brain/tree/main/packages/versioning)
|
|
6
|
+
|
|
3
7
|
A comprehensive versioning and changelog management tool designed for monorepos and single repositories. It provides automated version bumping, changelog generation using conventional commits, and version synchronization across multiple packages.
|
|
4
8
|
|
|
9
|
+
---
|
|
10
|
+
|
|
11
|
+
## 📋 Latest Changes (v1.4.1)
|
|
12
|
+
|
|
13
|
+
**Patch Fixes & Updates:**
|
|
14
|
+
- 🐛 Fix pnpm audit vulnerabilities with override configuration
|
|
15
|
+
- 🔧 Improve error handling in StatusManager
|
|
16
|
+
- 📝 Add comprehensive documentation with badges
|
|
17
|
+
- 🔗 Add direct GitHub repository links in docs
|
|
18
|
+
- 📊 Enhanced status command formatting and error messages
|
|
19
|
+
|
|
20
|
+
**From v1.4.0:**
|
|
21
|
+
- ✨ New `versioning status` (aliased as `info`) command for health reporting
|
|
22
|
+
- 📈 Sync status across all apps and packages with detailed reporting
|
|
23
|
+
- 🎯 Support `--json` and `--dot` (Graphviz) output formats
|
|
24
|
+
- 🔍 Environment health checks (Node.js, pnpm, Git)
|
|
25
|
+
- 🎬 Last release info with suggested next version
|
|
26
|
+
|
|
27
|
+
**Quick Test:**
|
|
28
|
+
```bash
|
|
29
|
+
npm install -g @edcalderon/versioning@latest
|
|
30
|
+
versioning status
|
|
31
|
+
versioning status --json
|
|
32
|
+
versioning status --dot | dot -Tsvg > deps.svg
|
|
33
|
+
```
|
|
34
|
+
|
|
35
|
+
For full version history, see [CHANGELOG.md](./CHANGELOG.md) and [GitHub releases](https://github.com/edcalderon/my-second-brain/releases)
|
|
36
|
+
|
|
37
|
+
---
|
|
38
|
+
|
|
5
39
|
## Features
|
|
6
40
|
|
|
7
41
|
- 🚀 Automated version bumping (patch, minor, major, prerelease)
|