@defai.digital/automatosx 5.3.7 → 5.4.0
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 -5
- package/README.md +17 -1
- package/dist/index.js +902 -1067
- package/package.json +32 -7
- package/dist/index.js.map +0 -1
- package/dist/version.json +0 -6
- package/version.json +0 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,9 +1,23 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
-
All notable changes to
|
|
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
|
-
|
|
6
|
-
|
|
5
|
+
## [5.4.0](https://github.com/defai-digital/automatosx/compare/v5.3.7...v5.4.0) (2025-10-15)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
* implement P0 improvements - automated release, provenance, and package optimization ([442ac50](https://github.com/defai-digital/automatosx/commit/442ac5044b5cc653ee0d7039efe0e32207d6a6c1))
|
|
11
|
+
* **release:** enhance pre-release workflow with beta/rc detection ([699b149](https://github.com/defai-digital/automatosx/commit/699b1493fe3c62e4b30c2e6e7a7290c0a052e3a7))
|
|
12
|
+
* **release:** implement P1 release process enhancements ([835d4e0](https://github.com/defai-digital/automatosx/commit/835d4e0880177919162d97563b7b6ed98e19f72a))
|
|
13
|
+
* **release:** setup conventional commits with automated changelog generation ([848f24c](https://github.com/defai-digital/automatosx/commit/848f24c4434f2853993ec99681da11fa50c0b858))
|
|
14
|
+
* **test:** add smoke tests for package verification ([5a8e5b4](https://github.com/defai-digital/automatosx/commit/5a8e5b462797beb553f4fd799441e2ea50350770))
|
|
15
|
+
* **test:** add smoke tests for package verification ([bceee8d](https://github.com/defai-digital/automatosx/commit/bceee8d24c078b79729fd13283246ea68d9f58ae))
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
### Code Refactoring
|
|
19
|
+
|
|
20
|
+
* **version:** simplify version management using package.json as single source of truth ([0d334ae](https://github.com/defai-digital/automatosx/commit/0d334ae4e0953ea44ed7704d383e47e0b56cb74c))
|
|
7
21
|
|
|
8
22
|
## [5.3.7] - 2025-10-15
|
|
9
23
|
|
|
@@ -637,7 +651,7 @@ None (infrastructure-only release)
|
|
|
637
651
|
#### Added
|
|
638
652
|
|
|
639
653
|
- **Version Synchronization Tool** (`tools/sync-all-versions.js`):
|
|
640
|
-
- Comprehensive version sync across all project files (package.json,
|
|
654
|
+
- Comprehensive version sync across all project files (package.json, README.md, CLAUDE.md)
|
|
641
655
|
- Automatic month/year formatting (e.g., "October 2025")
|
|
642
656
|
- CHANGELOG.md verification with warnings if entry missing
|
|
643
657
|
- Colorful console output with clear next-step guidance
|
|
@@ -743,7 +757,7 @@ None (infrastructure-only release)
|
|
|
743
757
|
#### Added
|
|
744
758
|
|
|
745
759
|
- **Version Synchronization Tool** (`tools/sync-all-versions.js`):
|
|
746
|
-
- Comprehensive version sync across all project files (package.json,
|
|
760
|
+
- Comprehensive version sync across all project files (package.json, README.md, CLAUDE.md)
|
|
747
761
|
- Automatic month/year formatting (e.g., "October 2025")
|
|
748
762
|
- CHANGELOG.md verification with warnings if entry missing
|
|
749
763
|
- Colorful console output with clear next-step guidance
|
package/README.md
CHANGED
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
[](https://www.microsoft.com/windows)
|
|
13
13
|
[](https://ubuntu.com)
|
|
14
14
|
|
|
15
|
-
**Status**: ✅ Production Ready · v5.
|
|
15
|
+
**Status**: ✅ Production Ready · v5.4.0 · October 2025
|
|
16
16
|
|
|
17
17
|
Looking for answers? See the [FAQ](FAQ.md).
|
|
18
18
|
|
|
@@ -803,6 +803,22 @@ Memory Cost: $0 (no API calls)
|
|
|
803
803
|
|
|
804
804
|
---
|
|
805
805
|
|
|
806
|
+
## 🔒 Security
|
|
807
|
+
|
|
808
|
+
AutomatosX packages are published with [npm provenance](https://docs.npmjs.com/generating-provenance-statements), providing supply chain security and verifying package authenticity.
|
|
809
|
+
|
|
810
|
+
You can verify the provenance of any version:
|
|
811
|
+
|
|
812
|
+
```bash
|
|
813
|
+
npm view @defai.digital/automatosx@latest --json | jq .dist
|
|
814
|
+
```
|
|
815
|
+
|
|
816
|
+
Look for the `attestations` field which confirms the package was built in GitHub Actions.
|
|
817
|
+
|
|
818
|
+
For more information, see our [Security Policy](SECURITY.md).
|
|
819
|
+
|
|
820
|
+
---
|
|
821
|
+
|
|
806
822
|
## 🚧 Coming Soon
|
|
807
823
|
|
|
808
824
|
- Enhanced Claude Code integration
|