veloce-ts 0.3.2 → 0.3.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 +14 -1
  2. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -7,6 +7,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [0.3.3] - 2025-10-31
11
+
12
+ ### 🐛 Critical Bug Fixes
13
+ - **JSON Response Serialization**: Fixed critical bug where JSON responses were not being serialized correctly
14
+ - **CLI Version Resolution**: Confirmed CLI correctly fetches and uses latest npm version (0.3.2)
15
+ - **Application Compilation**: Fixed missing `await app.compile()` call in generated templates
16
+
17
+ ### 🔧 CLI Improvements
18
+ - **Version Fetching**: CLI now correctly fetches latest version from npm registry
19
+ - **Template Generation**: All templates now include proper `await app.compile()` call
20
+ - **Error Handling**: Improved error handling in CLI operations
21
+
10
22
  ## [0.3.2] - 2025-10-31
11
23
 
12
24
  ## [0.3.1] - 2025-10-31
@@ -485,7 +497,8 @@ This release brings powerful performance optimization features to Veloce-TS:
485
497
  - CLI tooling
486
498
  - Testing utilities
487
499
 
488
- [Unreleased]: https://github.com/AlfredoMejia3001/veloce-ts/compare/v0.3.2...HEAD
500
+ [Unreleased]: https://github.com/AlfredoMejia3001/veloce-ts/compare/v0.3.3...HEAD
501
+ [0.3.3]: https://github.com/AlfredoMejia3001/veloce-ts/releases/tag/v0.3.3
489
502
  [0.3.2]: https://github.com/AlfredoMejia3001/veloce-ts/releases/tag/v0.3.2
490
503
  [0.3.1]: https://github.com/AlfredoMejia3001/veloce-ts/compare/v0.3.0...v0.3.1
491
504
  [0.2.2]: https://github.com/AlfredoMejia3001/veloce-ts/compare/v0.2.1...v0.2.2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "veloce-ts",
3
- "version": "0.3.2",
3
+ "version": "0.3.3",
4
4
  "description": "A modern, fast web framework for TypeScript with authentication, RBAC, GraphQL, WebSockets, and response caching",
5
5
  "type": "module",
6
6
  "main": "./dist/cjs/src/index.js",