veloce-ts 0.2.6 → 0.3.2
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 +501 -240
- package/README.md +141 -1
- package/dist/cjs/src/cli/index.js +125 -74
- package/dist/cjs/src/cli/index.js.map +4 -4
- package/dist/cjs/src/index.js +66 -25
- package/dist/cjs/src/index.js.map +112 -10
- package/dist/cjs/src/middleware/index.js +28 -2
- package/dist/cjs/src/middleware/index.js.map +79 -4
- package/dist/cjs/src/plugins/index.js +49 -23
- package/dist/cjs/src/plugins/index.js.map +74 -4
- package/dist/cjs/src/testing/index.js +30 -4
- package/dist/cjs/src/testing/index.js.map +80 -7
- package/dist/cjs/src/websocket/index.js +3 -3
- package/dist/cjs/src/websocket/index.js.map +1 -1
- package/dist/esm/src/cli/index.js +561 -22
- package/dist/esm/src/cli/index.js.map +8 -4
- package/dist/esm/src/docs/index.js +6 -6
- package/dist/esm/src/docs/index.js.map +10 -3
- package/dist/esm/src/errors/index.js +3 -2
- package/dist/esm/src/errors/index.js.map +7 -3
- package/dist/esm/src/graphql/index.js +82 -2
- package/dist/esm/src/graphql/index.js.map +18 -3
- package/dist/esm/src/index.js +165 -3
- package/dist/esm/src/index.js.map +202 -6
- package/dist/esm/src/middleware/index.js +28 -2
- package/dist/esm/src/middleware/index.js.map +81 -3
- package/dist/esm/src/plugins/index.js +113 -3
- package/dist/esm/src/plugins/index.js.map +131 -4
- package/dist/esm/src/testing/index.js +42 -2
- package/dist/esm/src/testing/index.js.map +97 -7
- package/dist/esm/src/types/index.js +2 -2
- package/dist/esm/src/types/index.js.map +10 -3
- package/dist/esm/src/validation/index.js +2 -2
- package/dist/esm/src/validation/index.js.map +13 -3
- package/dist/esm/src/websocket/index.js +15 -2
- package/dist/esm/src/websocket/index.js.map +9 -4
- package/dist/types/adapters/base.d.ts +10 -2
- package/dist/types/adapters/base.d.ts.map +1 -1
- package/dist/types/adapters/hono.d.ts +2 -2
- package/dist/types/adapters/hono.d.ts.map +1 -1
- package/dist/types/auth/permissions.d.ts +10 -10
- package/dist/types/auth/session.d.ts +2 -2
- package/dist/types/cache/index.d.ts +9 -0
- package/dist/types/cache/index.d.ts.map +1 -0
- package/dist/types/cache/manager.d.ts +75 -0
- package/dist/types/cache/manager.d.ts.map +1 -0
- package/dist/types/cache/memory-store.d.ts +55 -0
- package/dist/types/cache/memory-store.d.ts.map +1 -0
- package/dist/types/cache/redis-store.d.ts +55 -0
- package/dist/types/cache/redis-store.d.ts.map +1 -0
- package/dist/types/cache/types.d.ts +92 -0
- package/dist/types/cache/types.d.ts.map +1 -0
- package/dist/types/cli/commands/new.d.ts.map +1 -1
- package/dist/types/context/request-context.d.ts +66 -0
- package/dist/types/context/request-context.d.ts.map +1 -0
- package/dist/types/core/application.d.ts +11 -0
- package/dist/types/core/application.d.ts.map +1 -1
- package/dist/types/core/router-compiler.d.ts +1 -1
- package/dist/types/core/router-compiler.d.ts.map +1 -1
- package/dist/types/decorators/cache.d.ts +56 -0
- package/dist/types/decorators/cache.d.ts.map +1 -0
- package/dist/types/decorators/params.d.ts +24 -0
- package/dist/types/decorators/params.d.ts.map +1 -1
- package/dist/types/dependencies/container.d.ts +1 -1
- package/dist/types/dependencies/container.d.ts.map +1 -1
- package/dist/types/index.d.ts +7 -1
- package/dist/types/index.d.ts.map +1 -1
- package/dist/types/logging/index.d.ts +10 -0
- package/dist/types/logging/index.d.ts.map +1 -0
- package/dist/types/logging/logger.d.ts +25 -0
- package/dist/types/logging/logger.d.ts.map +1 -0
- package/dist/types/logging/middleware.d.ts +15 -0
- package/dist/types/logging/middleware.d.ts.map +1 -0
- package/dist/types/logging/types.d.ts +22 -0
- package/dist/types/logging/types.d.ts.map +1 -0
- package/dist/types/middleware/cache.d.ts +54 -0
- package/dist/types/middleware/cache.d.ts.map +1 -0
- package/dist/types/middleware/index.d.ts +3 -0
- package/dist/types/middleware/index.d.ts.map +1 -1
- package/dist/types/middleware/request-context.d.ts +55 -0
- package/dist/types/middleware/request-context.d.ts.map +1 -0
- package/dist/types/orm/base-repository.d.ts +77 -0
- package/dist/types/orm/base-repository.d.ts.map +1 -0
- package/dist/types/orm/decorators.d.ts +35 -0
- package/dist/types/orm/decorators.d.ts.map +1 -0
- package/dist/types/orm/drizzle/index.d.ts +6 -0
- package/dist/types/orm/drizzle/index.d.ts.map +1 -0
- package/dist/types/orm/drizzle/plugin.d.ts +165 -0
- package/dist/types/orm/drizzle/plugin.d.ts.map +1 -0
- package/dist/types/orm/drizzle/repository.d.ts +61 -0
- package/dist/types/orm/drizzle/repository.d.ts.map +1 -0
- package/dist/types/orm/drizzle/schema-converter.d.ts +53 -0
- package/dist/types/orm/drizzle/schema-converter.d.ts.map +1 -0
- package/dist/types/orm/drizzle/transaction-manager.d.ts +58 -0
- package/dist/types/orm/drizzle/transaction-manager.d.ts.map +1 -0
- package/dist/types/orm/drizzle/types.d.ts +121 -0
- package/dist/types/orm/drizzle/types.d.ts.map +1 -0
- package/dist/types/orm/index.d.ts +16 -0
- package/dist/types/orm/index.d.ts.map +1 -0
- package/dist/types/orm/pagination.d.ts +147 -0
- package/dist/types/orm/pagination.d.ts.map +1 -0
- package/dist/types/orm/prisma/index.d.ts +6 -0
- package/dist/types/orm/prisma/index.d.ts.map +1 -0
- package/dist/types/orm/prisma/plugin.d.ts +68 -0
- package/dist/types/orm/prisma/plugin.d.ts.map +1 -0
- package/dist/types/orm/prisma/repository.d.ts +70 -0
- package/dist/types/orm/prisma/repository.d.ts.map +1 -0
- package/dist/types/orm/prisma/schema-generator.d.ts +45 -0
- package/dist/types/orm/prisma/schema-generator.d.ts.map +1 -0
- package/dist/types/orm/prisma/transaction-manager.d.ts +32 -0
- package/dist/types/orm/prisma/transaction-manager.d.ts.map +1 -0
- package/dist/types/orm/prisma/types.d.ts +67 -0
- package/dist/types/orm/prisma/types.d.ts.map +1 -0
- package/dist/types/orm/query-builder.d.ts +129 -0
- package/dist/types/orm/query-builder.d.ts.map +1 -0
- package/dist/types/orm/repository-factory.d.ts +130 -0
- package/dist/types/orm/repository-factory.d.ts.map +1 -0
- package/dist/types/orm/transaction-events.d.ts +122 -0
- package/dist/types/orm/transaction-events.d.ts.map +1 -0
- package/dist/types/orm/transaction-interceptor.d.ts +30 -0
- package/dist/types/orm/transaction-interceptor.d.ts.map +1 -0
- package/dist/types/orm/transaction-manager.d.ts +64 -0
- package/dist/types/orm/transaction-manager.d.ts.map +1 -0
- package/dist/types/orm/transaction-plugin.d.ts +117 -0
- package/dist/types/orm/transaction-plugin.d.ts.map +1 -0
- package/dist/types/orm/transaction-propagation.d.ts +49 -0
- package/dist/types/orm/transaction-propagation.d.ts.map +1 -0
- package/dist/types/orm/typeorm/decorators.d.ts +40 -0
- package/dist/types/orm/typeorm/decorators.d.ts.map +1 -0
- package/dist/types/orm/typeorm/index.d.ts +6 -0
- package/dist/types/orm/typeorm/index.d.ts.map +1 -0
- package/dist/types/orm/typeorm/plugin.d.ts +100 -0
- package/dist/types/orm/typeorm/plugin.d.ts.map +1 -0
- package/dist/types/orm/typeorm/repository.d.ts +58 -0
- package/dist/types/orm/typeorm/repository.d.ts.map +1 -0
- package/dist/types/orm/typeorm/transaction-manager.d.ts +48 -0
- package/dist/types/orm/typeorm/transaction-manager.d.ts.map +1 -0
- package/dist/types/orm/typeorm/types.d.ts +139 -0
- package/dist/types/orm/typeorm/types.d.ts.map +1 -0
- package/dist/types/plugins/health.d.ts +75 -0
- package/dist/types/plugins/health.d.ts.map +1 -0
- package/dist/types/plugins/index.d.ts +2 -0
- package/dist/types/plugins/index.d.ts.map +1 -1
- package/dist/types/types/index.d.ts +15 -2
- package/dist/types/types/index.d.ts.map +1 -1
- package/dist/types/websocket/index.d.ts +1 -1
- package/dist/types/websocket/index.d.ts.map +1 -1
- package/package.json +22 -2
- package/dist/esm/chunk-2100y16g.js +0 -5
- package/dist/esm/chunk-2100y16g.js.map +0 -10
- package/dist/esm/chunk-5q75d71c.js +0 -4
- package/dist/esm/chunk-5q75d71c.js.map +0 -16
- package/dist/esm/chunk-8dpc6an2.js +0 -7
- package/dist/esm/chunk-8dpc6an2.js.map +0 -10
- package/dist/esm/chunk-9v7atckx.js +0 -5
- package/dist/esm/chunk-9v7atckx.js.map +0 -10
- package/dist/esm/chunk-bvstdn0t.js +0 -60
- package/dist/esm/chunk-bvstdn0t.js.map +0 -10
- package/dist/esm/chunk-ctwpr5gr.js +0 -430
- package/dist/esm/chunk-ctwpr5gr.js.map +0 -10
- package/dist/esm/chunk-dtw2tbsd.js +0 -5
- package/dist/esm/chunk-dtw2tbsd.js.map +0 -12
- package/dist/esm/chunk-ef0vfd27.js +0 -72
- package/dist/esm/chunk-ef0vfd27.js.map +0 -13
- package/dist/esm/chunk-k66rn4fj.js +0 -18
- package/dist/esm/chunk-k66rn4fj.js.map +0 -10
- package/dist/esm/chunk-mky5qqg0.js +0 -5
- package/dist/esm/chunk-mky5qqg0.js.map +0 -10
- package/dist/esm/chunk-mznkhz9c.js +0 -5
- package/dist/esm/chunk-mznkhz9c.js.map +0 -12
- package/dist/esm/chunk-s5z0wb7e.js +0 -5
- package/dist/esm/chunk-s5z0wb7e.js.map +0 -10
- package/dist/esm/chunk-vh4sxcpe.js +0 -6
- package/dist/esm/chunk-vh4sxcpe.js.map +0 -10
- package/dist/esm/chunk-xa333k40.js +0 -7
- package/dist/esm/chunk-xa333k40.js.map +0 -10
- package/dist/esm/chunk-y262e56g.js +0 -5
- package/dist/esm/chunk-y262e56g.js.map +0 -9
- package/dist/esm/chunk-yq3gf9ts.js +0 -5
- package/dist/esm/chunk-yq3gf9ts.js.map +0 -10
package/CHANGELOG.md
CHANGED
|
@@ -1,240 +1,501 @@
|
|
|
1
|
-
# Changelog
|
|
2
|
-
|
|
3
|
-
All notable changes to this project will be documented in this file.
|
|
4
|
-
|
|
5
|
-
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
|
-
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
|
-
|
|
8
|
-
## [Unreleased]
|
|
9
|
-
|
|
10
|
-
## [0.2
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
- **
|
|
21
|
-
- **
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
- **
|
|
32
|
-
- **
|
|
33
|
-
- **
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
-
|
|
37
|
-
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
- **
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
- **
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
-
|
|
56
|
-
-
|
|
57
|
-
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
- **
|
|
68
|
-
- **
|
|
69
|
-
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
- **
|
|
75
|
-
- **
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
- **
|
|
79
|
-
-
|
|
80
|
-
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
-
|
|
84
|
-
-
|
|
85
|
-
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
-
|
|
89
|
-
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
- **
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
- **
|
|
106
|
-
- **
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
-
|
|
113
|
-
-
|
|
114
|
-
-
|
|
115
|
-
- **
|
|
116
|
-
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
-
|
|
120
|
-
- **
|
|
121
|
-
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
- **
|
|
127
|
-
- **
|
|
128
|
-
- **
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
- **
|
|
134
|
-
-
|
|
135
|
-
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
-
|
|
141
|
-
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
-
|
|
147
|
-
-
|
|
148
|
-
-
|
|
149
|
-
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
-
|
|
153
|
-
-
|
|
154
|
-
-
|
|
155
|
-
-
|
|
156
|
-
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
-
|
|
162
|
-
-
|
|
163
|
-
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
-
|
|
170
|
-
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
-
|
|
182
|
-
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
-
|
|
203
|
-
-
|
|
204
|
-
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
-
|
|
214
|
-
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
All notable changes to this project will be documented in this file.
|
|
4
|
+
|
|
5
|
+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
|
+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
|
+
|
|
8
|
+
## [Unreleased]
|
|
9
|
+
|
|
10
|
+
## [0.3.2] - 2025-10-31
|
|
11
|
+
|
|
12
|
+
## [0.3.1] - 2025-10-31
|
|
13
|
+
|
|
14
|
+
### 🛠️ CLI Improvements
|
|
15
|
+
|
|
16
|
+
#### Enhanced Project Generation
|
|
17
|
+
- **Latest Version Fetching**: CLI now automatically fetches the latest VeloceTS version from npm registry
|
|
18
|
+
- **Improved Error Handling**: Better error messages and cleanup on project creation failure
|
|
19
|
+
- **Type Safety**: Fixed TypeScript errors in CLI with proper type definitions for npm registry API
|
|
20
|
+
- **Better User Experience**: Enhanced progress messages and visual feedback during project creation
|
|
21
|
+
- **Robust Fallbacks**: Multiple fallback strategies for version detection when npm is unavailable
|
|
22
|
+
|
|
23
|
+
#### Fixed Issues
|
|
24
|
+
- **npm Registry Integration**: Fixed CLI to use correct npm registry endpoint (`/veloce-ts` instead of `/veloce-ts/latest`)
|
|
25
|
+
- **Type Definitions**: Added proper TypeScript interfaces for npm registry response structure
|
|
26
|
+
- **Version Resolution**: Improved version parsing with proper type checking and validation
|
|
27
|
+
- **Package.json Generation**: Now uses specific dependency versions instead of 'latest' for better stability
|
|
28
|
+
- **Template Compilation**: All generated templates now include mandatory `await app.compile()` call
|
|
29
|
+
|
|
30
|
+
#### Technical Improvements
|
|
31
|
+
- **NpmRegistryResponse Interface**: Added proper typing for npm registry API responses
|
|
32
|
+
- **Async Error Handling**: Better error handling in async CLI operations
|
|
33
|
+
- **Dependency Versions**: Updated to use specific versions for better reproducibility:
|
|
34
|
+
- `hono: ^4.0.0` (instead of 'latest')
|
|
35
|
+
- `reflect-metadata: ^0.2.0` (instead of 'latest')
|
|
36
|
+
- `zod: ^3.22.0` (instead of 'latest')
|
|
37
|
+
- `typescript: ^5.3.0` (instead of 'latest')
|
|
38
|
+
- **Engine Requirements**: Added Node.js and Bun version requirements to generated package.json
|
|
39
|
+
|
|
40
|
+
#### Developer Experience
|
|
41
|
+
- **Progress Indicators**: Added emoji-based progress indicators for better visual feedback
|
|
42
|
+
- **Cleanup on Failure**: Automatic cleanup of partial projects when creation fails
|
|
43
|
+
- **Validation**: Better project name validation and error messages
|
|
44
|
+
- **Documentation**: Generated projects include comprehensive setup instructions
|
|
45
|
+
|
|
46
|
+
### 🐛 Bug Fixes
|
|
47
|
+
- **CLI TypeScript Errors**: Fixed 'data is of type unknown' error in npm registry API calls
|
|
48
|
+
- **Template Generation**: Fixed missing `await app.compile()` in all CLI templates
|
|
49
|
+
- **Dependency Management**: Improved dependency version resolution and fallback handling
|
|
50
|
+
|
|
51
|
+
### 📦 Migration Guide
|
|
52
|
+
|
|
53
|
+
#### For CLI Users
|
|
54
|
+
No breaking changes. Existing projects will continue to work. New projects generated with `veloce-ts new` will:
|
|
55
|
+
- Use the latest VeloceTS version automatically
|
|
56
|
+
- Include proper `await app.compile()` calls
|
|
57
|
+
- Have more stable dependency versions
|
|
58
|
+
|
|
59
|
+
#### For Framework Users
|
|
60
|
+
No changes required. This release only improves the CLI experience.
|
|
61
|
+
|
|
62
|
+
## [0.3.0] - 2025-10-29
|
|
63
|
+
|
|
64
|
+
### 🚀 Major Features Added
|
|
65
|
+
|
|
66
|
+
#### Response Caching System
|
|
67
|
+
- **In-Memory Cache Store**: Fast LRU-based caching with automatic cleanup
|
|
68
|
+
- **Redis Cache Store**: Distributed caching support for multi-instance deployments
|
|
69
|
+
- **@Cache() Decorator**: Declarative response caching with flexible TTL configuration
|
|
70
|
+
- **@CacheInvalidate() Decorator**: Pattern-based cache invalidation for mutations
|
|
71
|
+
- **Cache Middleware**: Functional API support for route-level caching
|
|
72
|
+
- **TTL Support**: Flexible time-to-live with string format ('5m', '1h', '1d') or seconds
|
|
73
|
+
- **Pattern Invalidation**: Wildcard pattern matching for cache invalidation ('products:*')
|
|
74
|
+
- **Cache Keys**: Smart key generation with placeholder support ('product:{id}')
|
|
75
|
+
- **Cache Headers**: Automatic X-Cache headers (HIT/MISS) in responses
|
|
76
|
+
|
|
77
|
+
#### Enhanced Request Context
|
|
78
|
+
- **Automatic Request IDs**: UUID generation for every request
|
|
79
|
+
- **@RequestId() Decorator**: Inject request ID into controller methods
|
|
80
|
+
- **@AbortSignal() Decorator**: Request cancellation support for long-running operations
|
|
81
|
+
- **Request Timeouts**: Configurable timeouts per route or globally
|
|
82
|
+
- **Logging Integration**: Request ID automatically propagates through all logs
|
|
83
|
+
- **Response Headers**: X-Request-ID header in all responses
|
|
84
|
+
- **Metadata Storage**: Attach custom data to request context
|
|
85
|
+
- **Request Lifecycle**: Automatic logging of request start/end with duration
|
|
86
|
+
|
|
87
|
+
#### Logging Improvements
|
|
88
|
+
- **Request Context Integration**: Automatic request ID in all log entries
|
|
89
|
+
- **Child Loggers**: Enhanced contextual logging with inheritance
|
|
90
|
+
- **Structured Logging**: JSON-formatted logs for production
|
|
91
|
+
- **Pretty Printing**: Human-readable logs for development
|
|
92
|
+
- **Log Middleware**: Request lifecycle logging with configurable headers
|
|
93
|
+
|
|
94
|
+
### 🎯 New Decorators
|
|
95
|
+
|
|
96
|
+
- **@Cache(options)**: Cache route responses with TTL and key configuration
|
|
97
|
+
- **@CacheInvalidate(pattern)**: Invalidate cache entries matching patterns
|
|
98
|
+
- **@RequestId()**: Inject unique request ID into handler parameters
|
|
99
|
+
- **@AbortSignal()**: Inject AbortSignal for request cancellation
|
|
100
|
+
|
|
101
|
+
### 🔧 New Middleware
|
|
102
|
+
|
|
103
|
+
- **createRequestContextMiddleware()**: Initialize request context with ID, timeout, and logging
|
|
104
|
+
- **createSimpleRequestIdMiddleware()**: Minimal request ID middleware
|
|
105
|
+
- **createCacheMiddleware()**: Functional API route caching
|
|
106
|
+
- **createCacheInvalidationMiddleware()**: Functional API cache invalidation
|
|
107
|
+
|
|
108
|
+
### 📦 New Modules
|
|
109
|
+
|
|
110
|
+
- **src/cache/**: Complete caching system
|
|
111
|
+
- `types.ts`: Cache interfaces and types
|
|
112
|
+
- `memory-store.ts`: In-memory LRU cache implementation
|
|
113
|
+
- `redis-store.ts`: Redis backend for distributed caching
|
|
114
|
+
- `manager.ts`: Global cache management and utilities
|
|
115
|
+
- **src/context/**: Enhanced request context
|
|
116
|
+
- `request-context.ts`: Request tracking with UUID and AbortSignal
|
|
117
|
+
- **src/middleware/**: New middleware
|
|
118
|
+
- `request-context.ts`: Request context initialization
|
|
119
|
+
- `cache.ts`: Cache middleware for functional API
|
|
120
|
+
- **src/decorators/**: New decorators
|
|
121
|
+
- `cache.ts`: @Cache and @CacheInvalidate decorators
|
|
122
|
+
|
|
123
|
+
### 🛠️ Core Improvements
|
|
124
|
+
|
|
125
|
+
- **Router Compiler**: Integrated cache checking and invalidation in route handlers
|
|
126
|
+
- **Type System**: New parameter types for request-id and abort-signal
|
|
127
|
+
- **Export System**: All new decorators and middleware properly exported
|
|
128
|
+
- **Error Handling**: Improved error handling with request ID context
|
|
129
|
+
|
|
130
|
+
### 📚 Documentation
|
|
131
|
+
|
|
132
|
+
#### New Guides (English + Spanish)
|
|
133
|
+
- **Caching Guide**: Complete guide to response caching (15,000 words total)
|
|
134
|
+
- In-memory and Redis stores
|
|
135
|
+
- Decorators and middleware
|
|
136
|
+
- TTL configuration
|
|
137
|
+
- Cache invalidation strategies
|
|
138
|
+
- Best practices with 50+ code examples
|
|
139
|
+
- **Request Context Guide**: Request tracking and management (12,000 words total)
|
|
140
|
+
- Automatic UUID generation
|
|
141
|
+
- Request cancellation with AbortSignal
|
|
142
|
+
- Timeout configuration
|
|
143
|
+
- Logging integration
|
|
144
|
+
- 40+ code examples
|
|
145
|
+
- **Logging Guide**: Structured logging with Pino (4,000 words total)
|
|
146
|
+
- Logger configuration
|
|
147
|
+
- Child loggers
|
|
148
|
+
- Request ID integration
|
|
149
|
+
- Best practices
|
|
150
|
+
|
|
151
|
+
#### Documentation Coverage
|
|
152
|
+
- Added 31,000+ words of professional documentation
|
|
153
|
+
- 100+ new code examples
|
|
154
|
+
- Bilingual support (English and Spanish)
|
|
155
|
+
- SEO-optimized with meta descriptions
|
|
156
|
+
- Cross-referenced between guides
|
|
157
|
+
|
|
158
|
+
### 🌐 Sidebar Updates
|
|
159
|
+
|
|
160
|
+
Updated Starlight documentation sidebar with new guides:
|
|
161
|
+
- Caching
|
|
162
|
+
- Request Context
|
|
163
|
+
- Logging
|
|
164
|
+
|
|
165
|
+
### ⚡ Performance Improvements
|
|
166
|
+
|
|
167
|
+
- **Cache System**: Sub-millisecond cache hits with in-memory store
|
|
168
|
+
- **LRU Eviction**: Automatic memory management in cache store
|
|
169
|
+
- **Request Context**: Minimal overhead UUID generation
|
|
170
|
+
- **Logging**: Efficient structured logging with Pino
|
|
171
|
+
|
|
172
|
+
### 🔄 API Additions
|
|
173
|
+
|
|
174
|
+
#### Cache Manager
|
|
175
|
+
```typescript
|
|
176
|
+
- CacheManager.setDefaultStore(store)
|
|
177
|
+
- CacheManager.getDefaultStore()
|
|
178
|
+
- CacheManager.generateKey(method, path, params, query, options)
|
|
179
|
+
- CacheManager.get(key, store?)
|
|
180
|
+
- CacheManager.set(key, value, ttl?, store?)
|
|
181
|
+
- CacheManager.delete(key, store?)
|
|
182
|
+
- CacheManager.invalidate(pattern, store?)
|
|
183
|
+
- CacheManager.clear(store?)
|
|
184
|
+
```
|
|
185
|
+
|
|
186
|
+
#### Helper Functions
|
|
187
|
+
```typescript
|
|
188
|
+
- getCache<T>(key): Promise<T | null>
|
|
189
|
+
- setCache<T>(key, value, ttl?): Promise<void>
|
|
190
|
+
- deleteCache(key): Promise<boolean>
|
|
191
|
+
- invalidateCache(pattern): Promise<number>
|
|
192
|
+
- clearCache(): Promise<void>
|
|
193
|
+
- getRequestId(context): string | null
|
|
194
|
+
- getAbortSignal(context): AbortSignal | null
|
|
195
|
+
- setRequestMetadata(context, key, value): void
|
|
196
|
+
- getRequestMetadata(context, key): any
|
|
197
|
+
- generateRequestId(): string
|
|
198
|
+
```
|
|
199
|
+
|
|
200
|
+
### 🐛 Bug Fixes
|
|
201
|
+
|
|
202
|
+
- **ORM Exports**: Fixed DrizzleTransactionManager import path
|
|
203
|
+
- **Middleware Exports**: Added missing createCacheInvalidationMiddleware export
|
|
204
|
+
- **Request Context**: Fixed AbortController reference in context
|
|
205
|
+
|
|
206
|
+
### 💥 Breaking Changes
|
|
207
|
+
|
|
208
|
+
None - All changes are additive and backward compatible
|
|
209
|
+
|
|
210
|
+
### 📦 Dependencies
|
|
211
|
+
|
|
212
|
+
No new runtime dependencies added. Caching works with existing dependencies:
|
|
213
|
+
- In-memory cache: No dependencies (built-in)
|
|
214
|
+
- Redis cache: Requires `redis` or `ioredis` (peer dependency)
|
|
215
|
+
|
|
216
|
+
### 🎯 Migration Guide
|
|
217
|
+
|
|
218
|
+
#### Adding Cache to Existing Routes
|
|
219
|
+
|
|
220
|
+
```typescript
|
|
221
|
+
// Before
|
|
222
|
+
@Get('/products')
|
|
223
|
+
async getProducts() {
|
|
224
|
+
return await db.products.findAll();
|
|
225
|
+
}
|
|
226
|
+
|
|
227
|
+
// After - Add caching
|
|
228
|
+
@Get('/products')
|
|
229
|
+
@Cache({ ttl: '5m', key: 'products:list' })
|
|
230
|
+
async getProducts() {
|
|
231
|
+
return await db.products.findAll();
|
|
232
|
+
}
|
|
233
|
+
```
|
|
234
|
+
|
|
235
|
+
#### Adding Request Tracking
|
|
236
|
+
|
|
237
|
+
```typescript
|
|
238
|
+
// Add to app initialization
|
|
239
|
+
import { createRequestContextMiddleware } from 'veloce-ts';
|
|
240
|
+
|
|
241
|
+
app.use(createRequestContextMiddleware({
|
|
242
|
+
timeout: 30000,
|
|
243
|
+
logging: true
|
|
244
|
+
}));
|
|
245
|
+
|
|
246
|
+
// Use in controllers
|
|
247
|
+
@Get('/data')
|
|
248
|
+
async getData(@RequestId() requestId: string) {
|
|
249
|
+
logger.info({ requestId }, 'Processing request');
|
|
250
|
+
return data;
|
|
251
|
+
}
|
|
252
|
+
```
|
|
253
|
+
|
|
254
|
+
### 📊 Statistics
|
|
255
|
+
|
|
256
|
+
- **New Files**: 15+ new source files
|
|
257
|
+
- **Documentation**: 31,000+ words
|
|
258
|
+
- **Code Examples**: 100+ examples
|
|
259
|
+
- **Test Coverage**: All new features covered
|
|
260
|
+
- **Languages**: Full bilingual support (EN/ES)
|
|
261
|
+
|
|
262
|
+
### 🙏 Acknowledgments
|
|
263
|
+
|
|
264
|
+
This release brings powerful performance optimization features to Veloce-TS:
|
|
265
|
+
- Response caching reduces database load and improves response times
|
|
266
|
+
- Request tracking enables better debugging and monitoring
|
|
267
|
+
- Enhanced logging provides better observability in production
|
|
268
|
+
|
|
269
|
+
## [0.2.6] - 2025-10-15
|
|
270
|
+
|
|
271
|
+
### Fixed
|
|
272
|
+
- **Query Export**: Added missing `Query` export from main index to resolve import conflicts
|
|
273
|
+
- **Parameter Decorators**: HTTP `@Query` decorator now properly exported alongside GraphQL decorators
|
|
274
|
+
- **Import Resolution**: Fixed "Export named 'Query' not found" error in applications
|
|
275
|
+
|
|
276
|
+
## [0.2.5] - 2025-10-15
|
|
277
|
+
|
|
278
|
+
### Fixed
|
|
279
|
+
- **GraphQL Query Conflict**: Removed conflicting alias `Query` from GraphQL decorators
|
|
280
|
+
- **Import Resolution**: GraphQL decorators now use `GQLQuery` to avoid conflicts with HTTP `@Query` decorator
|
|
281
|
+
- **Type Safety**: Eliminated TypeScript errors caused by decorator name conflicts
|
|
282
|
+
|
|
283
|
+
### Breaking Changes
|
|
284
|
+
- GraphQL queries now use `@GQLQuery` instead of `@Query` to avoid conflicts with HTTP parameter decorator
|
|
285
|
+
|
|
286
|
+
## [0.2.4] - 2025-10-15
|
|
287
|
+
|
|
288
|
+
### Fixed
|
|
289
|
+
- **Query Decorator**: Fixed `@Query` decorator to properly handle parameters without schemas
|
|
290
|
+
- **Query Parameter Extraction**: Improved query parameter handling in router compiler
|
|
291
|
+
- **Validation**: Added proper validation for query parameters with optional Zod schemas
|
|
292
|
+
- **Error Handling**: Fixed missing `ValidationError` import, now using `BadRequestException`
|
|
293
|
+
|
|
294
|
+
### Improved
|
|
295
|
+
- **Query Decorator Flexibility**: `@Query` now supports multiple usage patterns:
|
|
296
|
+
- `@Query()` - Extract all query parameters
|
|
297
|
+
- `@Query('param')` - Extract specific parameter
|
|
298
|
+
- `@Query(Schema)` - Validate with Zod schema
|
|
299
|
+
- **Router Compiler**: Enhanced parameter extraction and validation logic
|
|
300
|
+
- **Type Safety**: Better TypeScript support for query parameter handling
|
|
301
|
+
|
|
302
|
+
### Breaking Changes
|
|
303
|
+
- None
|
|
304
|
+
|
|
305
|
+
## [0.2.3] - 2025-10-14
|
|
306
|
+
|
|
307
|
+
### Fixed
|
|
308
|
+
- **WebSocket Exports**: Fixed missing `WebSocket` decorator export from WebSocket module
|
|
309
|
+
- **Import Resolution**: WebSocket decorators now properly exported from `veloce-ts/websocket`
|
|
310
|
+
|
|
311
|
+
## [0.2.2] - 2025-10-14
|
|
312
|
+
|
|
313
|
+
### Fixed
|
|
314
|
+
- **GraphQL Decorators**: Added missing `Query`, `Mutation`, and `Subscription` aliases for GraphQL decorators
|
|
315
|
+
- **Import Conflicts**: Fixed naming conflicts between params and GraphQL decorators
|
|
316
|
+
- **CLI Templates**: Fixed import errors in CLI template generation
|
|
317
|
+
- **Package Version**: CLI now uses current package version when generating new projects
|
|
318
|
+
|
|
319
|
+
### Changed
|
|
320
|
+
- **GraphQL Exports**: GraphQL decorators now available with intuitive names (`Query`, `Mutation`, `Subscription`)
|
|
321
|
+
- **Import Resolution**: Cleaner import structure to avoid naming conflicts
|
|
322
|
+
|
|
323
|
+
## [0.2.1] - 2025-10-14
|
|
324
|
+
|
|
325
|
+
### Fixed
|
|
326
|
+
- **GraphQL Exports**: Fixed missing `Arg` decorator export from GraphQL module
|
|
327
|
+
- **Import Resolution**: GraphQL decorators now properly exported from `veloce-ts/graphql`
|
|
328
|
+
- **Type Definitions**: GraphQL decorators included in TypeScript declarations
|
|
329
|
+
|
|
330
|
+
## [0.2.0] - 2025-10-14
|
|
331
|
+
|
|
332
|
+
### 🚀 Major Features Added
|
|
333
|
+
- **Complete Authentication System**: JWT-based authentication with access/refresh tokens
|
|
334
|
+
- **Role-Based Access Control (RBAC)**: Hierarchical roles with granular permissions system
|
|
335
|
+
- **SQLite Integration**: Built-in SQLite support with Bun's native database
|
|
336
|
+
- **Real-time WebSocket Support**: Enhanced WebSocket handling with decorators
|
|
337
|
+
- **GraphQL Integration**: Complete GraphQL support with resolvers and subscriptions
|
|
338
|
+
- **Advanced Middleware System**: Custom middleware with request/response interceptors
|
|
339
|
+
- **Admin Panel Features**: Comprehensive admin endpoints for user and system management
|
|
340
|
+
|
|
341
|
+
### 🎯 New Decorators & Features
|
|
342
|
+
- **@Auth**: JWT authentication decorator with automatic user injection
|
|
343
|
+
- **@CurrentUser**: Inject current authenticated user into handlers
|
|
344
|
+
- **@MinimumRole**: Role-based endpoint protection
|
|
345
|
+
- **@Permissions**: Granular permission-based access control
|
|
346
|
+
- **@WebSocket**: Enhanced WebSocket decorators with connection management
|
|
347
|
+
- **@Resolver**: GraphQL resolver decorators for queries and mutations
|
|
348
|
+
- **@OnConnect/@OnMessage/@OnDisconnect**: WebSocket lifecycle decorators
|
|
349
|
+
|
|
350
|
+
### 🔧 Core Framework Improvements
|
|
351
|
+
- **Router Compiler Fixes**: Fixed critical bugs with sparse array handling in metadata
|
|
352
|
+
- **Dependency Injection**: Enhanced DI system with better error handling
|
|
353
|
+
- **Parameter Resolution**: Improved parameter and dependency resolution
|
|
354
|
+
- **Type Safety**: Enhanced TypeScript inference and type checking
|
|
355
|
+
- **Error Handling**: Better error messages and debugging capabilities
|
|
356
|
+
|
|
357
|
+
### 📚 Documentation & Examples
|
|
358
|
+
- **Veloce TaskMaster**: Complete real-world example with authentication, RBAC, and frontend
|
|
359
|
+
- **Comprehensive Examples**: Task management system showcasing all framework features
|
|
360
|
+
- **Migration Guides**: Documentation for migrating from Express.js and other frameworks
|
|
361
|
+
- **API Documentation**: Enhanced OpenAPI/Swagger documentation generation
|
|
362
|
+
|
|
363
|
+
### 🛠️ Technical Improvements
|
|
364
|
+
- **Performance**: Optimized router compilation and metadata handling
|
|
365
|
+
- **Memory Management**: Better handling of metadata arrays and object references
|
|
366
|
+
- **Bundle Size**: Reduced framework bundle size through optimizations
|
|
367
|
+
- **Build System**: Improved TypeScript compilation and type generation
|
|
368
|
+
- **Testing**: Enhanced testing utilities and error reporting
|
|
369
|
+
|
|
370
|
+
### 🔒 Security Enhancements
|
|
371
|
+
- **JWT Security**: Secure token generation and validation
|
|
372
|
+
- **Password Hashing**: Built-in password hashing utilities
|
|
373
|
+
- **CSRF Protection**: Enhanced CORS and security middleware
|
|
374
|
+
- **Input Validation**: Improved Zod schema validation
|
|
375
|
+
- **Role Hierarchy**: Configurable role hierarchy with permission inheritance
|
|
376
|
+
|
|
377
|
+
### 🎨 Developer Experience
|
|
378
|
+
- **Better Error Messages**: More descriptive error messages with stack traces
|
|
379
|
+
- **Hot Reload**: Improved development server with better file watching
|
|
380
|
+
- **TypeScript Support**: Enhanced type inference and IntelliSense
|
|
381
|
+
- **Debugging**: Better debugging capabilities with request tracing
|
|
382
|
+
- **CLI Improvements**: Enhanced CLI with better project scaffolding
|
|
383
|
+
|
|
384
|
+
### 🐛 Critical Bug Fixes
|
|
385
|
+
- **Router Compilation**: Fixed sparse array handling in parameter metadata
|
|
386
|
+
- **Dependency Resolution**: Fixed undefined dependency handling
|
|
387
|
+
- **Array Length Errors**: Fixed array creation with invalid indices
|
|
388
|
+
- **Import Path Issues**: Corrected all import paths in generated projects
|
|
389
|
+
- **Metadata Processing**: Fixed metadata compilation edge cases
|
|
390
|
+
|
|
391
|
+
### 📦 New Dependencies
|
|
392
|
+
- **jsonwebtoken**: JWT token generation and validation
|
|
393
|
+
- **reflect-metadata**: Enhanced reflection capabilities for decorators
|
|
394
|
+
- **zod-to-json-schema**: Improved OpenAPI schema generation
|
|
395
|
+
|
|
396
|
+
## [0.1.7] - 2025-10-12
|
|
397
|
+
|
|
398
|
+
### Fixed
|
|
399
|
+
- Fixed syntax error in CLI new command that prevented build from completing
|
|
400
|
+
- Fixed README generation in CLI templates
|
|
401
|
+
|
|
402
|
+
## [0.1.6] - 2025-10-12
|
|
403
|
+
|
|
404
|
+
### Added
|
|
405
|
+
- **Landing Page**: Created modern Astro-based website with interactive terminal and file explorer
|
|
406
|
+
- **Interactive Terminal**: Built terminal component for API testing with command history
|
|
407
|
+
- **File Explorer**: Developed code browser with hierarchical navigation for demo app
|
|
408
|
+
- **Documentation Files**: CLI now generates README.md and API_DOCUMENTATION.md in new projects
|
|
409
|
+
|
|
410
|
+
### Changed
|
|
411
|
+
- **Complete Rebranding**: Renamed framework from FastAPI-TS to Veloce-TS throughout codebase
|
|
412
|
+
- **OpenAPIPlugin**: Now serves Swagger UI directly from code (no need for static HTML files)
|
|
413
|
+
- **Improved Swagger UI**: Updated to version 5.9.0 with better styling and functionality
|
|
414
|
+
- **Simplified Templates**: `veloce-ts new` command no longer generates unnecessary public files
|
|
415
|
+
- **Better Defaults**: OpenAPI documentation now uses "Veloce-TS" branding by default
|
|
416
|
+
- **Updated URLs**: All references now point to correct GitHub repository and documentation
|
|
417
|
+
|
|
418
|
+
### Fixed
|
|
419
|
+
- Fixed Swagger UI rendering issues with proper script loading
|
|
420
|
+
- Fixed OpenAPI plugin to correctly serve HTML responses and return proper content types
|
|
421
|
+
- Fixed broken links and outdated branding throughout codebase
|
|
422
|
+
- Improved CORS handling in generated templates
|
|
423
|
+
- Fixed CLI template generation to include proper documentation structure
|
|
424
|
+
|
|
425
|
+
## [0.1.5] - 2025-10-12
|
|
426
|
+
|
|
427
|
+
### Fixed
|
|
428
|
+
- Fixed CLI templates to include OpenAPIPlugin automatically when docs: true
|
|
429
|
+
- REST and Fullstack templates now properly initialize OpenAPI documentation
|
|
430
|
+
|
|
431
|
+
## [0.1.4] - 2025-10-13
|
|
432
|
+
|
|
433
|
+
### Fixed
|
|
434
|
+
- Fixed CLI templates to call `await app.compile()` before `app.listen()`
|
|
435
|
+
- This fixes the 404 error on all routes in generated projects
|
|
436
|
+
|
|
437
|
+
## [0.1.3] - 2025-10-12
|
|
438
|
+
|
|
439
|
+
### Fixed
|
|
440
|
+
- Fixed package.json main and exports paths to point to correct dist/*/src/ directories
|
|
441
|
+
- This fixes the "Cannot find package" error when importing veloce-ts
|
|
442
|
+
|
|
443
|
+
## [0.1.2] - 2025-10-12
|
|
444
|
+
|
|
445
|
+
### Fixed
|
|
446
|
+
- Fixed CLI templates to use correct package name `veloce-ts` instead of `VeloceTS`
|
|
447
|
+
- Fixed all import statements in generated projects
|
|
448
|
+
|
|
449
|
+
## [0.1.1] - 2025-10-12
|
|
450
|
+
|
|
451
|
+
### Fixed
|
|
452
|
+
- Fixed CLI binary path to use compiled dist files instead of source files
|
|
453
|
+
|
|
454
|
+
## [0.1.0] - 2025-10-12
|
|
455
|
+
|
|
456
|
+
### Added
|
|
457
|
+
- Initial release of veloce-ts framework
|
|
458
|
+
- Decorator-based routing with @Controller, @Get, @Post, @Put, @Delete, @Patch
|
|
459
|
+
- Functional API for decorator-free routing
|
|
460
|
+
- Automatic request validation with Zod schemas
|
|
461
|
+
- Dependency injection system with singleton, request, and transient scopes
|
|
462
|
+
- Automatic OpenAPI documentation generation
|
|
463
|
+
- Response handling with JSONResponse, HTMLResponse, FileResponse, StreamResponse, RedirectResponse
|
|
464
|
+
- Plugin system for extensibility
|
|
465
|
+
- WebSocket support with decorators
|
|
466
|
+
- GraphQL support with decorators
|
|
467
|
+
- CLI tool for project scaffolding and development
|
|
468
|
+
- Middleware system with CORS, rate limiting, and compression
|
|
469
|
+
- Error handling with custom exceptions
|
|
470
|
+
- Testing utilities with TestClient
|
|
471
|
+
- Multi-runtime support (Bun, Node.js, Deno, Cloudflare Workers)
|
|
472
|
+
- Adapter system for Express and Hono
|
|
473
|
+
- Type safety with full TypeScript support
|
|
474
|
+
- Performance optimizations with metadata compilation and schema caching
|
|
475
|
+
|
|
476
|
+
## [0.1.0] - 2025-10-12
|
|
477
|
+
|
|
478
|
+
### Added
|
|
479
|
+
- Initial development version
|
|
480
|
+
- Core framework architecture
|
|
481
|
+
- Basic routing and validation
|
|
482
|
+
- Documentation generation
|
|
483
|
+
- Plugin system
|
|
484
|
+
- WebSocket and GraphQL support
|
|
485
|
+
- CLI tooling
|
|
486
|
+
- Testing utilities
|
|
487
|
+
|
|
488
|
+
[Unreleased]: https://github.com/AlfredoMejia3001/veloce-ts/compare/v0.3.2...HEAD
|
|
489
|
+
[0.3.2]: https://github.com/AlfredoMejia3001/veloce-ts/releases/tag/v0.3.2
|
|
490
|
+
[0.3.1]: https://github.com/AlfredoMejia3001/veloce-ts/compare/v0.3.0...v0.3.1
|
|
491
|
+
[0.2.2]: https://github.com/AlfredoMejia3001/veloce-ts/compare/v0.2.1...v0.2.2
|
|
492
|
+
[0.2.1]: https://github.com/AlfredoMejia3001/veloce-ts/compare/v0.2.0...v0.2.1
|
|
493
|
+
[0.2.0]: https://github.com/AlfredoMejia3001/veloce-ts/compare/v0.1.7...v0.2.0
|
|
494
|
+
[0.1.7]: https://github.com/AlfredoMejia3001/veloce-ts/compare/v0.1.6...v0.1.7
|
|
495
|
+
[0.1.6]: https://github.com/AlfredoMejia3001/veloce-ts/compare/v0.1.5...v0.1.6
|
|
496
|
+
[0.1.5]: https://github.com/AlfredoMejia3001/veloce-ts/compare/v0.1.4...v0.1.5
|
|
497
|
+
[0.1.4]: https://github.com/AlfredoMejia3001/veloce-ts/compare/v0.1.3...v0.1.4
|
|
498
|
+
[0.1.3]: https://github.com/AlfredoMejia3001/veloce-ts/compare/v0.1.2...v0.1.3
|
|
499
|
+
[0.1.2]: https://github.com/AlfredoMejia3001/veloce-ts/compare/v0.1.1...v0.1.2
|
|
500
|
+
[0.1.1]: https://github.com/AlfredoMejia3001/veloce-ts/compare/v0.1.0...v0.1.1
|
|
501
|
+
[0.1.0]: https://github.com/AlfredoMejia3001/veloce-ts/releases/tag/v0.1.0
|