baseguard 1.0.3 โ 1.0.5
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/.baseguardrc.example.json +63 -63
- package/.eslintrc.json +24 -24
- package/.prettierrc +7 -7
- package/CHANGELOG.md +195 -195
- package/DEPLOYMENT.md +624 -624
- package/DEPLOYMENT_CHECKLIST.md +239 -239
- package/DEPLOYMENT_SUMMARY_v1.0.2.md +202 -202
- package/QUICK_START.md +134 -134
- package/README.md +488 -488
- package/RELEASE_NOTES_v1.0.2.md +434 -434
- package/bin/base.js +627 -627
- package/dist/ai/fix-manager.d.ts.map +1 -1
- package/dist/ai/fix-manager.js +1 -1
- package/dist/ai/fix-manager.js.map +1 -1
- package/dist/ai/gemini-analyzer.d.ts.map +1 -1
- package/dist/ai/gemini-analyzer.js +29 -35
- package/dist/ai/gemini-analyzer.js.map +1 -1
- package/dist/ai/gemini-code-fixer.d.ts.map +1 -1
- package/dist/ai/gemini-code-fixer.js +58 -58
- package/dist/ai/gemini-code-fixer.js.map +1 -1
- package/dist/ai/jules-implementer.d.ts +3 -0
- package/dist/ai/jules-implementer.d.ts.map +1 -1
- package/dist/ai/jules-implementer.js +63 -32
- package/dist/ai/jules-implementer.js.map +1 -1
- package/dist/ai/unified-code-fixer.js.map +1 -1
- package/dist/commands/check.d.ts.map +1 -1
- package/dist/commands/check.js +1 -1
- package/dist/commands/check.js.map +1 -1
- package/dist/commands/config.js +2 -1
- package/dist/commands/config.js.map +1 -1
- package/dist/commands/fix.d.ts.map +1 -1
- package/dist/commands/fix.js +48 -15
- package/dist/commands/fix.js.map +1 -1
- package/dist/core/api-key-manager.js +2 -2
- package/dist/core/api-key-manager.js.map +1 -1
- package/dist/core/baseguard.d.ts +1 -0
- package/dist/core/baseguard.d.ts.map +1 -1
- package/dist/core/baseguard.js +13 -10
- package/dist/core/baseguard.js.map +1 -1
- package/dist/core/baseline-checker.d.ts.map +1 -1
- package/dist/core/baseline-checker.js +8 -5
- package/dist/core/baseline-checker.js.map +1 -1
- package/dist/core/configuration-recovery.d.ts.map +1 -1
- package/dist/core/configuration-recovery.js +1 -1
- package/dist/core/configuration-recovery.js.map +1 -1
- package/dist/core/debug-logger.d.ts.map +1 -1
- package/dist/core/debug-logger.js +1 -1
- package/dist/core/debug-logger.js.map +1 -1
- package/dist/core/error-handler.d.ts.map +1 -1
- package/dist/core/error-handler.js +2 -1
- package/dist/core/error-handler.js.map +1 -1
- package/dist/core/gitignore-manager.js +5 -5
- package/dist/core/graceful-degradation-manager.d.ts.map +1 -1
- package/dist/core/graceful-degradation-manager.js +16 -16
- package/dist/core/graceful-degradation-manager.js.map +1 -1
- package/dist/core/lazy-loader.d.ts.map +1 -1
- package/dist/core/lazy-loader.js +9 -2
- package/dist/core/lazy-loader.js.map +1 -1
- package/dist/core/memory-manager.d.ts +0 -3
- package/dist/core/memory-manager.d.ts.map +1 -1
- package/dist/core/memory-manager.js.map +1 -1
- package/dist/core/parser-worker.d.ts +2 -0
- package/dist/core/parser-worker.d.ts.map +1 -0
- package/dist/core/parser-worker.js +19 -0
- package/dist/core/parser-worker.js.map +1 -0
- package/dist/core/startup-optimizer.d.ts.map +1 -1
- package/dist/core/startup-optimizer.js +4 -8
- package/dist/core/startup-optimizer.js.map +1 -1
- package/dist/core/system-error-handler.d.ts.map +1 -1
- package/dist/core/system-error-handler.js.map +1 -1
- package/dist/git/automation-engine.d.ts.map +1 -1
- package/dist/git/automation-engine.js +5 -4
- package/dist/git/automation-engine.js.map +1 -1
- package/dist/git/github-manager.d.ts.map +1 -1
- package/dist/git/github-manager.js.map +1 -1
- package/dist/git/hook-manager.js +5 -5
- package/dist/git/hook-manager.js.map +1 -1
- package/dist/parsers/parser-manager.d.ts.map +1 -1
- package/dist/parsers/parser-manager.js +1 -1
- package/dist/parsers/parser-manager.js.map +1 -1
- package/dist/parsers/svelte-parser.js +1 -1
- package/dist/parsers/svelte-parser.js.map +1 -1
- package/dist/parsers/vanilla-parser.d.ts.map +1 -1
- package/dist/parsers/vanilla-parser.js.map +1 -1
- package/dist/parsers/vue-parser.d.ts.map +1 -1
- package/dist/parsers/vue-parser.js.map +1 -1
- package/dist/ui/components.d.ts +1 -1
- package/dist/ui/components.d.ts.map +1 -1
- package/dist/ui/components.js +11 -11
- package/dist/ui/components.js.map +1 -1
- package/dist/ui/terminal-header.js +14 -14
- package/package.json +105 -105
- package/src/ai/__tests__/gemini-analyzer.test.ts +180 -180
- package/src/ai/agentkit-orchestrator.ts +533 -533
- package/src/ai/fix-manager.ts +362 -362
- package/src/ai/gemini-analyzer.ts +665 -671
- package/src/ai/gemini-code-fixer.ts +539 -540
- package/src/ai/index.ts +3 -3
- package/src/ai/jules-implementer.ts +504 -460
- package/src/ai/unified-code-fixer.ts +347 -347
- package/src/commands/automation.ts +343 -343
- package/src/commands/check.ts +298 -299
- package/src/commands/config.ts +584 -583
- package/src/commands/fix.ts +269 -238
- package/src/commands/index.ts +6 -6
- package/src/commands/init.ts +155 -155
- package/src/commands/status.ts +306 -306
- package/src/core/api-key-manager.ts +298 -298
- package/src/core/baseguard.ts +757 -756
- package/src/core/baseline-checker.ts +566 -563
- package/src/core/cache-manager.ts +271 -271
- package/src/core/configuration-recovery.ts +672 -673
- package/src/core/configuration.ts +595 -595
- package/src/core/debug-logger.ts +590 -590
- package/src/core/directory-filter.ts +420 -420
- package/src/core/error-handler.ts +518 -517
- package/src/core/file-processor.ts +337 -337
- package/src/core/gitignore-manager.ts +168 -168
- package/src/core/graceful-degradation-manager.ts +596 -596
- package/src/core/index.ts +16 -16
- package/src/core/lazy-loader.ts +317 -307
- package/src/core/memory-manager.ts +290 -295
- package/src/core/parser-worker.ts +33 -0
- package/src/core/startup-optimizer.ts +246 -255
- package/src/core/system-error-handler.ts +755 -756
- package/src/git/automation-engine.ts +361 -361
- package/src/git/github-manager.ts +190 -192
- package/src/git/hook-manager.ts +210 -210
- package/src/git/index.ts +3 -3
- package/src/index.ts +7 -7
- package/src/parsers/feature-validator.ts +558 -558
- package/src/parsers/index.ts +7 -7
- package/src/parsers/parser-manager.ts +418 -419
- package/src/parsers/parser.ts +25 -25
- package/src/parsers/react-parser-optimized.ts +160 -160
- package/src/parsers/react-parser.ts +358 -358
- package/src/parsers/svelte-parser.ts +510 -510
- package/src/parsers/vanilla-parser.ts +685 -686
- package/src/parsers/vue-parser.ts +476 -478
- package/src/types/index.ts +95 -95
- package/src/ui/components.ts +567 -567
- package/src/ui/help.ts +192 -192
- package/src/ui/index.ts +3 -3
- package/src/ui/prompts.ts +680 -680
- package/src/ui/terminal-header.ts +58 -58
- package/test-build.js +40 -40
- package/test-config-commands.js +55 -55
- package/test-header-simple.js +32 -32
- package/test-terminal-header.js +11 -11
- package/test-ui.js +28 -28
- package/tests/e2e/baseguard.e2e.test.ts +515 -515
- package/tests/e2e/cross-platform.e2e.test.ts +419 -419
- package/tests/e2e/git-integration.e2e.test.ts +486 -486
- package/tests/fixtures/react-project/package.json +13 -13
- package/tests/fixtures/react-project/src/App.css +75 -75
- package/tests/fixtures/react-project/src/App.tsx +76 -76
- package/tests/fixtures/svelte-project/package.json +10 -10
- package/tests/fixtures/svelte-project/src/App.svelte +368 -368
- package/tests/fixtures/vanilla-project/index.html +75 -75
- package/tests/fixtures/vanilla-project/script.js +330 -330
- package/tests/fixtures/vanilla-project/styles.css +358 -358
- package/tests/fixtures/vue-project/package.json +11 -11
- package/tests/fixtures/vue-project/src/App.vue +215 -215
- package/tmp-smoke/.baseguard/backups/config-2026-02-19T12-04-11-067Z-auto.json +30 -0
- package/tmp-smoke/src/bad.css +3 -0
- package/tsconfig.json +34 -34
- package/vitest.config.ts +11 -11
- package/dist/terminal-header.d.ts +0 -12
- package/dist/terminal-header.js +0 -45
package/RELEASE_NOTES_v1.0.2.md
CHANGED
|
@@ -1,434 +1,434 @@
|
|
|
1
|
-
# BaseGuard v1.0.2 - Release Notes
|
|
2
|
-
|
|
3
|
-
## ๐ Production-Ready Release
|
|
4
|
-
|
|
5
|
-
BaseGuard v1.0.2 now offers more advanced features, including comprehensive dual AI coding agent support, advanced error recovery, and performance optimizations.
|
|
6
|
-
|
|
7
|
-
## ๐ What's New
|
|
8
|
-
|
|
9
|
-
### Dual AI Coding Agent System
|
|
10
|
-
|
|
11
|
-
**Choose Your Agent:**
|
|
12
|
-
- **Gemini 2.5 Pro** - Works with any files (local, uncommitted, GitHub)
|
|
13
|
-
- **Jules** - Autonomous GitHub repository fixing
|
|
14
|
-
|
|
15
|
-
**Key Features:**
|
|
16
|
-
- Intelligent agent selection with automatic fallback
|
|
17
|
-
- User-configurable primary/fallback agents
|
|
18
|
-
- Context-aware recommendations
|
|
19
|
-
- Seamless switching between agents
|
|
20
|
-
|
|
21
|
-
### Comprehensive Error Recovery
|
|
22
|
-
|
|
23
|
-
**SystemErrorHandler:**
|
|
24
|
-
- 12+ automatic recovery strategies
|
|
25
|
-
- Intelligent error classification
|
|
26
|
-
- Actionable suggestions for users
|
|
27
|
-
- Comprehensive logging and diagnostics
|
|
28
|
-
|
|
29
|
-
**GracefulDegradationManager:**
|
|
30
|
-
- 4 operational modes (Full, AI Limited, Offline, Minimal)
|
|
31
|
-
- Automatic mode switching based on service availability
|
|
32
|
-
- Offline baseline checking without network
|
|
33
|
-
- Graceful handling of API failures
|
|
34
|
-
|
|
35
|
-
### Advanced Performance Optimizations
|
|
36
|
-
|
|
37
|
-
**Startup Performance:**
|
|
38
|
-
- 60% faster initial load through lazy loading
|
|
39
|
-
- Background dependency preloading
|
|
40
|
-
- Efficient memory management
|
|
41
|
-
|
|
42
|
-
**File Processing:**
|
|
43
|
-
- Concurrent processing with worker threads
|
|
44
|
-
- Streaming for large files
|
|
45
|
-
- Intelligent caching with LRU strategy
|
|
46
|
-
- Incremental scanning (only changed files)
|
|
47
|
-
|
|
48
|
-
## ๐ Complete Feature Set
|
|
49
|
-
|
|
50
|
-
### Core Capabilities
|
|
51
|
-
|
|
52
|
-
โ
**Universal Framework Support**
|
|
53
|
-
- React/JSX with Babel parsing
|
|
54
|
-
- Vue with SFC compiler
|
|
55
|
-
- Svelte with component parsing
|
|
56
|
-
- Vanilla JS/CSS/HTML
|
|
57
|
-
|
|
58
|
-
โ
**Official Baseline Data**
|
|
59
|
-
- Web-features package integration
|
|
60
|
-
- Accurate compatibility checking
|
|
61
|
-
- Support for Baseline Widely/Newly
|
|
62
|
-
|
|
63
|
-
โ
**Intelligent Code Fixing**
|
|
64
|
-
- Progressive enhancement strategies
|
|
65
|
-
- Polyfill recommendations
|
|
66
|
-
- Feature detection patterns
|
|
67
|
-
- Graceful degradation approaches
|
|
68
|
-
|
|
69
|
-
โ
**Git Integration**
|
|
70
|
-
- Pre-commit/pre-push hooks
|
|
71
|
-
- Automatic violation detection
|
|
72
|
-
- Commit blocking
|
|
73
|
-
- Optional auto-fixing
|
|
74
|
-
|
|
75
|
-
### CLI Commands
|
|
76
|
-
|
|
77
|
-
**Core Commands:**
|
|
78
|
-
```bash
|
|
79
|
-
base init # Initialize project
|
|
80
|
-
base check # Check compatibility
|
|
81
|
-
base fix # Fix with AI
|
|
82
|
-
base status # System health
|
|
83
|
-
base diagnostics # Troubleshooting
|
|
84
|
-
```
|
|
85
|
-
|
|
86
|
-
**Configuration:**
|
|
87
|
-
```bash
|
|
88
|
-
base config show # View configuration
|
|
89
|
-
base config set-keys # Configure API keys
|
|
90
|
-
base config coding-agent # Manage agents
|
|
91
|
-
base config targets # Browser targets
|
|
92
|
-
base config recover # Fix configuration
|
|
93
|
-
```
|
|
94
|
-
|
|
95
|
-
**Automation:**
|
|
96
|
-
```bash
|
|
97
|
-
base automation enable # Enable git hooks
|
|
98
|
-
base automation disable # Disable automation
|
|
99
|
-
base automation status # Check automation
|
|
100
|
-
base automation configure # Interactive setup
|
|
101
|
-
```
|
|
102
|
-
|
|
103
|
-
## ๐ง Setup Guide
|
|
104
|
-
|
|
105
|
-
### 1. Install BaseGuard
|
|
106
|
-
|
|
107
|
-
```bash
|
|
108
|
-
npm install -g baseguard
|
|
109
|
-
```
|
|
110
|
-
|
|
111
|
-
### 2. Initialize in Your Project
|
|
112
|
-
|
|
113
|
-
```bash
|
|
114
|
-
cd your-project
|
|
115
|
-
base init
|
|
116
|
-
```
|
|
117
|
-
|
|
118
|
-
### 3. Configure AI Services
|
|
119
|
-
|
|
120
|
-
**Option A: Gemini 2.5 Pro (Recommended)**
|
|
121
|
-
|
|
122
|
-
1. Get API key from [Google AI Studio](https://aistudio.google.com)
|
|
123
|
-
2. Run `base config set-keys`
|
|
124
|
-
3. Enter your Gemini API key
|
|
125
|
-
4. Set as primary: `base config coding-agent --agent gemini`
|
|
126
|
-
|
|
127
|
-
**Option B: Jules (GitHub Repos)**
|
|
128
|
-
|
|
129
|
-
1. Get API key from [Jules Dashboard](https://jules.google.com)
|
|
130
|
-
2. Connect your GitHub account
|
|
131
|
-
3. Run `base config set-keys`
|
|
132
|
-
4. Enter your Jules API key
|
|
133
|
-
5. Set as primary: `base config coding-agent --agent jules`
|
|
134
|
-
|
|
135
|
-
**Option C: Both (Recommended)**
|
|
136
|
-
|
|
137
|
-
Configure both agents for maximum flexibility. BaseGuard will automatically choose the best one based on context.
|
|
138
|
-
|
|
139
|
-
### 4. Start Using
|
|
140
|
-
|
|
141
|
-
```bash
|
|
142
|
-
# Check for issues
|
|
143
|
-
base check
|
|
144
|
-
|
|
145
|
-
# Fix with AI
|
|
146
|
-
base fix
|
|
147
|
-
|
|
148
|
-
# Enable automation
|
|
149
|
-
base automation enable
|
|
150
|
-
```
|
|
151
|
-
|
|
152
|
-
## ๐ฏ Browser Compatibility Targets
|
|
153
|
-
|
|
154
|
-
### Preset Configurations
|
|
155
|
-
|
|
156
|
-
**Baseline Widely (Recommended):**
|
|
157
|
-
- Features supported for 30+ months across all major browsers
|
|
158
|
-
- Maximum compatibility
|
|
159
|
-
|
|
160
|
-
**Baseline Newly:**
|
|
161
|
-
- Recently available Baseline features
|
|
162
|
-
- Cutting-edge support
|
|
163
|
-
|
|
164
|
-
**Last 2 Years:**
|
|
165
|
-
- Browser versions from the last 2 years
|
|
166
|
-
- Modern feature support
|
|
167
|
-
|
|
168
|
-
### Custom Targets
|
|
169
|
-
|
|
170
|
-
```bash
|
|
171
|
-
base add "chrome 100" # Chrome 100+
|
|
172
|
-
base add "firefox 90" # Firefox 90+
|
|
173
|
-
base add "safari 15" # Safari 15+
|
|
174
|
-
base add "chrome baseline" # Baseline support
|
|
175
|
-
```
|
|
176
|
-
|
|
177
|
-
## ๐ What BaseGuard Checks
|
|
178
|
-
|
|
179
|
-
### Web Platform Features
|
|
180
|
-
|
|
181
|
-
**CSS:**
|
|
182
|
-
- Properties (Grid, Flexbox, Custom Properties)
|
|
183
|
-
- Selectors (`:has()`, `:is()`, `:where()`)
|
|
184
|
-
- At-rules (`@supports`, `@container`)
|
|
185
|
-
|
|
186
|
-
**JavaScript:**
|
|
187
|
-
- Modern APIs (Fetch, Promises, async/await)
|
|
188
|
-
- ES6+ features (arrow functions, destructuring)
|
|
189
|
-
- Web APIs (Canvas, WebGL, WebRTC, WebAssembly)
|
|
190
|
-
|
|
191
|
-
**HTML:**
|
|
192
|
-
- Modern elements (`<dialog>`, `<details>`)
|
|
193
|
-
- Attributes (`loading="lazy"`, `decoding="async"`)
|
|
194
|
-
|
|
195
|
-
### Framework Support
|
|
196
|
-
|
|
197
|
-
**React/JSX:**
|
|
198
|
-
- Ignores React-specific syntax
|
|
199
|
-
- Focuses on web platform usage
|
|
200
|
-
- Analyzes JSX and TSX files
|
|
201
|
-
|
|
202
|
-
**Vue:**
|
|
203
|
-
- Analyzes `<script>` and `<style>` blocks
|
|
204
|
-
- Ignores Vue directives
|
|
205
|
-
- Extracts web platform features
|
|
206
|
-
|
|
207
|
-
**Svelte:**
|
|
208
|
-
- Parses component files
|
|
209
|
-
- Ignores Svelte-specific syntax
|
|
210
|
-
- Focuses on web APIs
|
|
211
|
-
|
|
212
|
-
## ๐จ Troubleshooting
|
|
213
|
-
|
|
214
|
-
### Common Issues
|
|
215
|
-
|
|
216
|
-
**"No files found to check"**
|
|
217
|
-
```bash
|
|
218
|
-
base check --files "**/*.{js,ts,jsx,tsx}"
|
|
219
|
-
```
|
|
220
|
-
|
|
221
|
-
**"Configuration not found"**
|
|
222
|
-
```bash
|
|
223
|
-
base init
|
|
224
|
-
# or
|
|
225
|
-
base config recover
|
|
226
|
-
```
|
|
227
|
-
|
|
228
|
-
**"API key invalid"**
|
|
229
|
-
```bash
|
|
230
|
-
base config set-keys
|
|
231
|
-
```
|
|
232
|
-
|
|
233
|
-
**"Git hooks not working"**
|
|
234
|
-
```bash
|
|
235
|
-
base automation disable
|
|
236
|
-
base automation enable
|
|
237
|
-
```
|
|
238
|
-
|
|
239
|
-
### Getting Help
|
|
240
|
-
|
|
241
|
-
```bash
|
|
242
|
-
base status --verbose # System health
|
|
243
|
-
base diagnostics # Comprehensive diagnostics
|
|
244
|
-
base check --debug # Debug mode
|
|
245
|
-
base help [command] # Command help
|
|
246
|
-
```
|
|
247
|
-
|
|
248
|
-
## ๐ Performance Benchmarks
|
|
249
|
-
|
|
250
|
-
### Startup Time
|
|
251
|
-
- **Before:** ~3.5 seconds
|
|
252
|
-
- **After:** ~1.4 seconds
|
|
253
|
-
- **Improvement:** 60% faster
|
|
254
|
-
|
|
255
|
-
### Large Codebase (1000+ files)
|
|
256
|
-
- **Concurrent processing:** 4-8 workers
|
|
257
|
-
- **Memory usage:** Optimized with streaming
|
|
258
|
-
- **Cache hit rate:** ~85% on subsequent runs
|
|
259
|
-
|
|
260
|
-
### Network Operations
|
|
261
|
-
- **Offline mode:** Full baseline checking
|
|
262
|
-
- **API retry:** Exponential backoff
|
|
263
|
-
- **Cache validity:** 5 minutes
|
|
264
|
-
|
|
265
|
-
## ๐ Security
|
|
266
|
-
|
|
267
|
-
### API Key Management
|
|
268
|
-
- Secure storage in `.baseguardrc.json`
|
|
269
|
-
- Automatic `.gitignore` management
|
|
270
|
-
- Format validation
|
|
271
|
-
- Connection testing
|
|
272
|
-
|
|
273
|
-
### Configuration Security
|
|
274
|
-
- Automatic backup before changes
|
|
275
|
-
- Corruption detection and recovery
|
|
276
|
-
- Validation on load
|
|
277
|
-
- Secure defaults
|
|
278
|
-
|
|
279
|
-
## ๐งช Testing
|
|
280
|
-
|
|
281
|
-
### Test Coverage
|
|
282
|
-
- โ
Unit tests for all core modules
|
|
283
|
-
- โ
End-to-end tests for CLI commands
|
|
284
|
-
- โ
Cross-platform compatibility tests
|
|
285
|
-
- โ
Error recovery scenario tests
|
|
286
|
-
- โ
Performance benchmark tests
|
|
287
|
-
|
|
288
|
-
### Quality Assurance
|
|
289
|
-
- TypeScript strict mode
|
|
290
|
-
- Comprehensive error handling
|
|
291
|
-
- Extensive inline documentation
|
|
292
|
-
- Code review and validation
|
|
293
|
-
|
|
294
|
-
## ๐ฆ Dependencies
|
|
295
|
-
|
|
296
|
-
### Core Dependencies
|
|
297
|
-
- `web-features` - Official Baseline data
|
|
298
|
-
- `@babel/parser` - JavaScript/JSX parsing
|
|
299
|
-
- `@vue/compiler-sfc` - Vue component parsing
|
|
300
|
-
- `svelte/compiler` - Svelte component parsing
|
|
301
|
-
- `postcss` - CSS parsing
|
|
302
|
-
|
|
303
|
-
### CLI Dependencies
|
|
304
|
-
- `commander` - CLI framework
|
|
305
|
-
- `chalk` - Terminal colors
|
|
306
|
-
- `ora` - Spinners
|
|
307
|
-
- `inquirer` - Interactive prompts
|
|
308
|
-
- `cli-table3` - Table formatting
|
|
309
|
-
|
|
310
|
-
### Git Integration
|
|
311
|
-
- `husky` - Git hooks
|
|
312
|
-
- `simple-git` - Git operations
|
|
313
|
-
|
|
314
|
-
## ๐ Migration from v1.0.1
|
|
315
|
-
|
|
316
|
-
### Configuration Changes
|
|
317
|
-
|
|
318
|
-
The configuration format has been updated to include coding agent settings:
|
|
319
|
-
|
|
320
|
-
```json
|
|
321
|
-
{
|
|
322
|
-
"version": "1.0.2",
|
|
323
|
-
"codingAgent": {
|
|
324
|
-
"primary": "gemini",
|
|
325
|
-
"fallback": "gemini"
|
|
326
|
-
}
|
|
327
|
-
}
|
|
328
|
-
```
|
|
329
|
-
|
|
330
|
-
**Migration is automatic** - BaseGuard will update your configuration on first run.
|
|
331
|
-
|
|
332
|
-
### Command Changes
|
|
333
|
-
|
|
334
|
-
**New Commands:**
|
|
335
|
-
- `base diagnostics` - System diagnostics
|
|
336
|
-
- `base config coding-agent` - Agent management
|
|
337
|
-
- `base config recover` - Configuration recovery
|
|
338
|
-
|
|
339
|
-
**Enhanced Commands:**
|
|
340
|
-
- `base status` - Now shows agent status
|
|
341
|
-
- `base fix` - Improved agent selection
|
|
342
|
-
- `base config show` - More detailed output
|
|
343
|
-
|
|
344
|
-
## ๐ Documentation
|
|
345
|
-
|
|
346
|
-
### Complete Documentation
|
|
347
|
-
- โ
Comprehensive README with setup guide
|
|
348
|
-
- โ
Detailed command reference
|
|
349
|
-
- โ
Troubleshooting guide
|
|
350
|
-
- โ
API documentation
|
|
351
|
-
- โ
Performance optimization guide
|
|
352
|
-
|
|
353
|
-
### Getting Started Resources
|
|
354
|
-
- [README.md](README.md) - Complete guide
|
|
355
|
-
- [CHANGELOG.md](CHANGELOG.md) - Version history
|
|
356
|
-
- [DEPLOYMENT.md](DEPLOYMENT.md) - Deployment guide
|
|
357
|
-
|
|
358
|
-
## ๐ฏ Next Steps
|
|
359
|
-
|
|
360
|
-
### After Installation
|
|
361
|
-
|
|
362
|
-
1. **Initialize your project:**
|
|
363
|
-
```bash
|
|
364
|
-
base init
|
|
365
|
-
```
|
|
366
|
-
|
|
367
|
-
2. **Configure API keys:**
|
|
368
|
-
```bash
|
|
369
|
-
base config set-keys
|
|
370
|
-
```
|
|
371
|
-
|
|
372
|
-
3. **Check your code:**
|
|
373
|
-
```bash
|
|
374
|
-
base check
|
|
375
|
-
```
|
|
376
|
-
|
|
377
|
-
4. **Fix issues:**
|
|
378
|
-
```bash
|
|
379
|
-
base fix
|
|
380
|
-
```
|
|
381
|
-
|
|
382
|
-
5. **Enable automation:**
|
|
383
|
-
```bash
|
|
384
|
-
base automation enable
|
|
385
|
-
```
|
|
386
|
-
|
|
387
|
-
### Best Practices
|
|
388
|
-
|
|
389
|
-
- Configure both Gemini and Jules for maximum flexibility
|
|
390
|
-
- Use `baseline-widely` preset for maximum compatibility
|
|
391
|
-
- Enable git hooks for continuous checking
|
|
392
|
-
- Run `base check` before commits
|
|
393
|
-
- Review AI-generated fixes before applying
|
|
394
|
-
|
|
395
|
-
## ๐ค Contributing
|
|
396
|
-
|
|
397
|
-
We welcome contributions! Please see our [GitHub repository](https://github.com/ebuka1017/baseguard) for:
|
|
398
|
-
- Issue reporting
|
|
399
|
-
- Feature requests
|
|
400
|
-
- Pull requests
|
|
401
|
-
- Documentation improvements
|
|
402
|
-
|
|
403
|
-
## ๐ License
|
|
404
|
-
|
|
405
|
-
MIT License - see [LICENSE](LICENSE) file for details.
|
|
406
|
-
|
|
407
|
-
---
|
|
408
|
-
|
|
409
|
-
## ๐ Acknowledgments
|
|
410
|
-
|
|
411
|
-
- **Google AI Studio** - Gemini 2.5 Pro API
|
|
412
|
-
- **Jules Team** - Autonomous coding agent
|
|
413
|
-
- **Web Features Team** - Official Baseline data
|
|
414
|
-
- **Open Source Community** - Dependencies and tools
|
|
415
|
-
|
|
416
|
-
---
|
|
417
|
-
|
|
418
|
-
**Made with โค๏ธ by the BaseGuard Team**
|
|
419
|
-
|
|
420
|
-
*Never ship incompatible code again!* ๐ก๏ธ
|
|
421
|
-
|
|
422
|
-
---
|
|
423
|
-
|
|
424
|
-
## Support
|
|
425
|
-
|
|
426
|
-
- **Documentation:** [GitHub Repository](https://github.com/ebuka1017/baseguard)
|
|
427
|
-
- **Issues:** [Report bugs](https://github.com/ebuka1017/baseguard/issues)
|
|
428
|
-
- **Discussions:** [Community forum](https://github.com/ebuka1017/baseguard/discussions)
|
|
429
|
-
|
|
430
|
-
---
|
|
431
|
-
|
|
432
|
-
**Version:** 1.0.2
|
|
433
|
-
**Release Date:** December 19, 2024
|
|
434
|
-
**Status:** Production Ready โ
|
|
1
|
+
# BaseGuard v1.0.2 - Release Notes
|
|
2
|
+
|
|
3
|
+
## ๐ Production-Ready Release
|
|
4
|
+
|
|
5
|
+
BaseGuard v1.0.2 now offers more advanced features, including comprehensive dual AI coding agent support, advanced error recovery, and performance optimizations.
|
|
6
|
+
|
|
7
|
+
## ๐ What's New
|
|
8
|
+
|
|
9
|
+
### Dual AI Coding Agent System
|
|
10
|
+
|
|
11
|
+
**Choose Your Agent:**
|
|
12
|
+
- **Gemini 2.5 Pro** - Works with any files (local, uncommitted, GitHub)
|
|
13
|
+
- **Jules** - Autonomous GitHub repository fixing
|
|
14
|
+
|
|
15
|
+
**Key Features:**
|
|
16
|
+
- Intelligent agent selection with automatic fallback
|
|
17
|
+
- User-configurable primary/fallback agents
|
|
18
|
+
- Context-aware recommendations
|
|
19
|
+
- Seamless switching between agents
|
|
20
|
+
|
|
21
|
+
### Comprehensive Error Recovery
|
|
22
|
+
|
|
23
|
+
**SystemErrorHandler:**
|
|
24
|
+
- 12+ automatic recovery strategies
|
|
25
|
+
- Intelligent error classification
|
|
26
|
+
- Actionable suggestions for users
|
|
27
|
+
- Comprehensive logging and diagnostics
|
|
28
|
+
|
|
29
|
+
**GracefulDegradationManager:**
|
|
30
|
+
- 4 operational modes (Full, AI Limited, Offline, Minimal)
|
|
31
|
+
- Automatic mode switching based on service availability
|
|
32
|
+
- Offline baseline checking without network
|
|
33
|
+
- Graceful handling of API failures
|
|
34
|
+
|
|
35
|
+
### Advanced Performance Optimizations
|
|
36
|
+
|
|
37
|
+
**Startup Performance:**
|
|
38
|
+
- 60% faster initial load through lazy loading
|
|
39
|
+
- Background dependency preloading
|
|
40
|
+
- Efficient memory management
|
|
41
|
+
|
|
42
|
+
**File Processing:**
|
|
43
|
+
- Concurrent processing with worker threads
|
|
44
|
+
- Streaming for large files
|
|
45
|
+
- Intelligent caching with LRU strategy
|
|
46
|
+
- Incremental scanning (only changed files)
|
|
47
|
+
|
|
48
|
+
## ๐ Complete Feature Set
|
|
49
|
+
|
|
50
|
+
### Core Capabilities
|
|
51
|
+
|
|
52
|
+
โ
**Universal Framework Support**
|
|
53
|
+
- React/JSX with Babel parsing
|
|
54
|
+
- Vue with SFC compiler
|
|
55
|
+
- Svelte with component parsing
|
|
56
|
+
- Vanilla JS/CSS/HTML
|
|
57
|
+
|
|
58
|
+
โ
**Official Baseline Data**
|
|
59
|
+
- Web-features package integration
|
|
60
|
+
- Accurate compatibility checking
|
|
61
|
+
- Support for Baseline Widely/Newly
|
|
62
|
+
|
|
63
|
+
โ
**Intelligent Code Fixing**
|
|
64
|
+
- Progressive enhancement strategies
|
|
65
|
+
- Polyfill recommendations
|
|
66
|
+
- Feature detection patterns
|
|
67
|
+
- Graceful degradation approaches
|
|
68
|
+
|
|
69
|
+
โ
**Git Integration**
|
|
70
|
+
- Pre-commit/pre-push hooks
|
|
71
|
+
- Automatic violation detection
|
|
72
|
+
- Commit blocking
|
|
73
|
+
- Optional auto-fixing
|
|
74
|
+
|
|
75
|
+
### CLI Commands
|
|
76
|
+
|
|
77
|
+
**Core Commands:**
|
|
78
|
+
```bash
|
|
79
|
+
base init # Initialize project
|
|
80
|
+
base check # Check compatibility
|
|
81
|
+
base fix # Fix with AI
|
|
82
|
+
base status # System health
|
|
83
|
+
base diagnostics # Troubleshooting
|
|
84
|
+
```
|
|
85
|
+
|
|
86
|
+
**Configuration:**
|
|
87
|
+
```bash
|
|
88
|
+
base config show # View configuration
|
|
89
|
+
base config set-keys # Configure API keys
|
|
90
|
+
base config coding-agent # Manage agents
|
|
91
|
+
base config targets # Browser targets
|
|
92
|
+
base config recover # Fix configuration
|
|
93
|
+
```
|
|
94
|
+
|
|
95
|
+
**Automation:**
|
|
96
|
+
```bash
|
|
97
|
+
base automation enable # Enable git hooks
|
|
98
|
+
base automation disable # Disable automation
|
|
99
|
+
base automation status # Check automation
|
|
100
|
+
base automation configure # Interactive setup
|
|
101
|
+
```
|
|
102
|
+
|
|
103
|
+
## ๐ง Setup Guide
|
|
104
|
+
|
|
105
|
+
### 1. Install BaseGuard
|
|
106
|
+
|
|
107
|
+
```bash
|
|
108
|
+
npm install -g baseguard
|
|
109
|
+
```
|
|
110
|
+
|
|
111
|
+
### 2. Initialize in Your Project
|
|
112
|
+
|
|
113
|
+
```bash
|
|
114
|
+
cd your-project
|
|
115
|
+
base init
|
|
116
|
+
```
|
|
117
|
+
|
|
118
|
+
### 3. Configure AI Services
|
|
119
|
+
|
|
120
|
+
**Option A: Gemini 2.5 Pro (Recommended)**
|
|
121
|
+
|
|
122
|
+
1. Get API key from [Google AI Studio](https://aistudio.google.com)
|
|
123
|
+
2. Run `base config set-keys`
|
|
124
|
+
3. Enter your Gemini API key
|
|
125
|
+
4. Set as primary: `base config coding-agent --agent gemini`
|
|
126
|
+
|
|
127
|
+
**Option B: Jules (GitHub Repos)**
|
|
128
|
+
|
|
129
|
+
1. Get API key from [Jules Dashboard](https://jules.google.com)
|
|
130
|
+
2. Connect your GitHub account
|
|
131
|
+
3. Run `base config set-keys`
|
|
132
|
+
4. Enter your Jules API key
|
|
133
|
+
5. Set as primary: `base config coding-agent --agent jules`
|
|
134
|
+
|
|
135
|
+
**Option C: Both (Recommended)**
|
|
136
|
+
|
|
137
|
+
Configure both agents for maximum flexibility. BaseGuard will automatically choose the best one based on context.
|
|
138
|
+
|
|
139
|
+
### 4. Start Using
|
|
140
|
+
|
|
141
|
+
```bash
|
|
142
|
+
# Check for issues
|
|
143
|
+
base check
|
|
144
|
+
|
|
145
|
+
# Fix with AI
|
|
146
|
+
base fix
|
|
147
|
+
|
|
148
|
+
# Enable automation
|
|
149
|
+
base automation enable
|
|
150
|
+
```
|
|
151
|
+
|
|
152
|
+
## ๐ฏ Browser Compatibility Targets
|
|
153
|
+
|
|
154
|
+
### Preset Configurations
|
|
155
|
+
|
|
156
|
+
**Baseline Widely (Recommended):**
|
|
157
|
+
- Features supported for 30+ months across all major browsers
|
|
158
|
+
- Maximum compatibility
|
|
159
|
+
|
|
160
|
+
**Baseline Newly:**
|
|
161
|
+
- Recently available Baseline features
|
|
162
|
+
- Cutting-edge support
|
|
163
|
+
|
|
164
|
+
**Last 2 Years:**
|
|
165
|
+
- Browser versions from the last 2 years
|
|
166
|
+
- Modern feature support
|
|
167
|
+
|
|
168
|
+
### Custom Targets
|
|
169
|
+
|
|
170
|
+
```bash
|
|
171
|
+
base add "chrome 100" # Chrome 100+
|
|
172
|
+
base add "firefox 90" # Firefox 90+
|
|
173
|
+
base add "safari 15" # Safari 15+
|
|
174
|
+
base add "chrome baseline" # Baseline support
|
|
175
|
+
```
|
|
176
|
+
|
|
177
|
+
## ๐ What BaseGuard Checks
|
|
178
|
+
|
|
179
|
+
### Web Platform Features
|
|
180
|
+
|
|
181
|
+
**CSS:**
|
|
182
|
+
- Properties (Grid, Flexbox, Custom Properties)
|
|
183
|
+
- Selectors (`:has()`, `:is()`, `:where()`)
|
|
184
|
+
- At-rules (`@supports`, `@container`)
|
|
185
|
+
|
|
186
|
+
**JavaScript:**
|
|
187
|
+
- Modern APIs (Fetch, Promises, async/await)
|
|
188
|
+
- ES6+ features (arrow functions, destructuring)
|
|
189
|
+
- Web APIs (Canvas, WebGL, WebRTC, WebAssembly)
|
|
190
|
+
|
|
191
|
+
**HTML:**
|
|
192
|
+
- Modern elements (`<dialog>`, `<details>`)
|
|
193
|
+
- Attributes (`loading="lazy"`, `decoding="async"`)
|
|
194
|
+
|
|
195
|
+
### Framework Support
|
|
196
|
+
|
|
197
|
+
**React/JSX:**
|
|
198
|
+
- Ignores React-specific syntax
|
|
199
|
+
- Focuses on web platform usage
|
|
200
|
+
- Analyzes JSX and TSX files
|
|
201
|
+
|
|
202
|
+
**Vue:**
|
|
203
|
+
- Analyzes `<script>` and `<style>` blocks
|
|
204
|
+
- Ignores Vue directives
|
|
205
|
+
- Extracts web platform features
|
|
206
|
+
|
|
207
|
+
**Svelte:**
|
|
208
|
+
- Parses component files
|
|
209
|
+
- Ignores Svelte-specific syntax
|
|
210
|
+
- Focuses on web APIs
|
|
211
|
+
|
|
212
|
+
## ๐จ Troubleshooting
|
|
213
|
+
|
|
214
|
+
### Common Issues
|
|
215
|
+
|
|
216
|
+
**"No files found to check"**
|
|
217
|
+
```bash
|
|
218
|
+
base check --files "**/*.{js,ts,jsx,tsx}"
|
|
219
|
+
```
|
|
220
|
+
|
|
221
|
+
**"Configuration not found"**
|
|
222
|
+
```bash
|
|
223
|
+
base init
|
|
224
|
+
# or
|
|
225
|
+
base config recover
|
|
226
|
+
```
|
|
227
|
+
|
|
228
|
+
**"API key invalid"**
|
|
229
|
+
```bash
|
|
230
|
+
base config set-keys
|
|
231
|
+
```
|
|
232
|
+
|
|
233
|
+
**"Git hooks not working"**
|
|
234
|
+
```bash
|
|
235
|
+
base automation disable
|
|
236
|
+
base automation enable
|
|
237
|
+
```
|
|
238
|
+
|
|
239
|
+
### Getting Help
|
|
240
|
+
|
|
241
|
+
```bash
|
|
242
|
+
base status --verbose # System health
|
|
243
|
+
base diagnostics # Comprehensive diagnostics
|
|
244
|
+
base check --debug # Debug mode
|
|
245
|
+
base help [command] # Command help
|
|
246
|
+
```
|
|
247
|
+
|
|
248
|
+
## ๐ Performance Benchmarks
|
|
249
|
+
|
|
250
|
+
### Startup Time
|
|
251
|
+
- **Before:** ~3.5 seconds
|
|
252
|
+
- **After:** ~1.4 seconds
|
|
253
|
+
- **Improvement:** 60% faster
|
|
254
|
+
|
|
255
|
+
### Large Codebase (1000+ files)
|
|
256
|
+
- **Concurrent processing:** 4-8 workers
|
|
257
|
+
- **Memory usage:** Optimized with streaming
|
|
258
|
+
- **Cache hit rate:** ~85% on subsequent runs
|
|
259
|
+
|
|
260
|
+
### Network Operations
|
|
261
|
+
- **Offline mode:** Full baseline checking
|
|
262
|
+
- **API retry:** Exponential backoff
|
|
263
|
+
- **Cache validity:** 5 minutes
|
|
264
|
+
|
|
265
|
+
## ๐ Security
|
|
266
|
+
|
|
267
|
+
### API Key Management
|
|
268
|
+
- Secure storage in `.baseguardrc.json`
|
|
269
|
+
- Automatic `.gitignore` management
|
|
270
|
+
- Format validation
|
|
271
|
+
- Connection testing
|
|
272
|
+
|
|
273
|
+
### Configuration Security
|
|
274
|
+
- Automatic backup before changes
|
|
275
|
+
- Corruption detection and recovery
|
|
276
|
+
- Validation on load
|
|
277
|
+
- Secure defaults
|
|
278
|
+
|
|
279
|
+
## ๐งช Testing
|
|
280
|
+
|
|
281
|
+
### Test Coverage
|
|
282
|
+
- โ
Unit tests for all core modules
|
|
283
|
+
- โ
End-to-end tests for CLI commands
|
|
284
|
+
- โ
Cross-platform compatibility tests
|
|
285
|
+
- โ
Error recovery scenario tests
|
|
286
|
+
- โ
Performance benchmark tests
|
|
287
|
+
|
|
288
|
+
### Quality Assurance
|
|
289
|
+
- TypeScript strict mode
|
|
290
|
+
- Comprehensive error handling
|
|
291
|
+
- Extensive inline documentation
|
|
292
|
+
- Code review and validation
|
|
293
|
+
|
|
294
|
+
## ๐ฆ Dependencies
|
|
295
|
+
|
|
296
|
+
### Core Dependencies
|
|
297
|
+
- `web-features` - Official Baseline data
|
|
298
|
+
- `@babel/parser` - JavaScript/JSX parsing
|
|
299
|
+
- `@vue/compiler-sfc` - Vue component parsing
|
|
300
|
+
- `svelte/compiler` - Svelte component parsing
|
|
301
|
+
- `postcss` - CSS parsing
|
|
302
|
+
|
|
303
|
+
### CLI Dependencies
|
|
304
|
+
- `commander` - CLI framework
|
|
305
|
+
- `chalk` - Terminal colors
|
|
306
|
+
- `ora` - Spinners
|
|
307
|
+
- `inquirer` - Interactive prompts
|
|
308
|
+
- `cli-table3` - Table formatting
|
|
309
|
+
|
|
310
|
+
### Git Integration
|
|
311
|
+
- `husky` - Git hooks
|
|
312
|
+
- `simple-git` - Git operations
|
|
313
|
+
|
|
314
|
+
## ๐ Migration from v1.0.1
|
|
315
|
+
|
|
316
|
+
### Configuration Changes
|
|
317
|
+
|
|
318
|
+
The configuration format has been updated to include coding agent settings:
|
|
319
|
+
|
|
320
|
+
```json
|
|
321
|
+
{
|
|
322
|
+
"version": "1.0.2",
|
|
323
|
+
"codingAgent": {
|
|
324
|
+
"primary": "gemini",
|
|
325
|
+
"fallback": "gemini"
|
|
326
|
+
}
|
|
327
|
+
}
|
|
328
|
+
```
|
|
329
|
+
|
|
330
|
+
**Migration is automatic** - BaseGuard will update your configuration on first run.
|
|
331
|
+
|
|
332
|
+
### Command Changes
|
|
333
|
+
|
|
334
|
+
**New Commands:**
|
|
335
|
+
- `base diagnostics` - System diagnostics
|
|
336
|
+
- `base config coding-agent` - Agent management
|
|
337
|
+
- `base config recover` - Configuration recovery
|
|
338
|
+
|
|
339
|
+
**Enhanced Commands:**
|
|
340
|
+
- `base status` - Now shows agent status
|
|
341
|
+
- `base fix` - Improved agent selection
|
|
342
|
+
- `base config show` - More detailed output
|
|
343
|
+
|
|
344
|
+
## ๐ Documentation
|
|
345
|
+
|
|
346
|
+
### Complete Documentation
|
|
347
|
+
- โ
Comprehensive README with setup guide
|
|
348
|
+
- โ
Detailed command reference
|
|
349
|
+
- โ
Troubleshooting guide
|
|
350
|
+
- โ
API documentation
|
|
351
|
+
- โ
Performance optimization guide
|
|
352
|
+
|
|
353
|
+
### Getting Started Resources
|
|
354
|
+
- [README.md](README.md) - Complete guide
|
|
355
|
+
- [CHANGELOG.md](CHANGELOG.md) - Version history
|
|
356
|
+
- [DEPLOYMENT.md](DEPLOYMENT.md) - Deployment guide
|
|
357
|
+
|
|
358
|
+
## ๐ฏ Next Steps
|
|
359
|
+
|
|
360
|
+
### After Installation
|
|
361
|
+
|
|
362
|
+
1. **Initialize your project:**
|
|
363
|
+
```bash
|
|
364
|
+
base init
|
|
365
|
+
```
|
|
366
|
+
|
|
367
|
+
2. **Configure API keys:**
|
|
368
|
+
```bash
|
|
369
|
+
base config set-keys
|
|
370
|
+
```
|
|
371
|
+
|
|
372
|
+
3. **Check your code:**
|
|
373
|
+
```bash
|
|
374
|
+
base check
|
|
375
|
+
```
|
|
376
|
+
|
|
377
|
+
4. **Fix issues:**
|
|
378
|
+
```bash
|
|
379
|
+
base fix
|
|
380
|
+
```
|
|
381
|
+
|
|
382
|
+
5. **Enable automation:**
|
|
383
|
+
```bash
|
|
384
|
+
base automation enable
|
|
385
|
+
```
|
|
386
|
+
|
|
387
|
+
### Best Practices
|
|
388
|
+
|
|
389
|
+
- Configure both Gemini and Jules for maximum flexibility
|
|
390
|
+
- Use `baseline-widely` preset for maximum compatibility
|
|
391
|
+
- Enable git hooks for continuous checking
|
|
392
|
+
- Run `base check` before commits
|
|
393
|
+
- Review AI-generated fixes before applying
|
|
394
|
+
|
|
395
|
+
## ๐ค Contributing
|
|
396
|
+
|
|
397
|
+
We welcome contributions! Please see our [GitHub repository](https://github.com/ebuka1017/baseguard) for:
|
|
398
|
+
- Issue reporting
|
|
399
|
+
- Feature requests
|
|
400
|
+
- Pull requests
|
|
401
|
+
- Documentation improvements
|
|
402
|
+
|
|
403
|
+
## ๐ License
|
|
404
|
+
|
|
405
|
+
MIT License - see [LICENSE](LICENSE) file for details.
|
|
406
|
+
|
|
407
|
+
---
|
|
408
|
+
|
|
409
|
+
## ๐ Acknowledgments
|
|
410
|
+
|
|
411
|
+
- **Google AI Studio** - Gemini 2.5 Pro API
|
|
412
|
+
- **Jules Team** - Autonomous coding agent
|
|
413
|
+
- **Web Features Team** - Official Baseline data
|
|
414
|
+
- **Open Source Community** - Dependencies and tools
|
|
415
|
+
|
|
416
|
+
---
|
|
417
|
+
|
|
418
|
+
**Made with โค๏ธ by the BaseGuard Team**
|
|
419
|
+
|
|
420
|
+
*Never ship incompatible code again!* ๐ก๏ธ
|
|
421
|
+
|
|
422
|
+
---
|
|
423
|
+
|
|
424
|
+
## Support
|
|
425
|
+
|
|
426
|
+
- **Documentation:** [GitHub Repository](https://github.com/ebuka1017/baseguard)
|
|
427
|
+
- **Issues:** [Report bugs](https://github.com/ebuka1017/baseguard/issues)
|
|
428
|
+
- **Discussions:** [Community forum](https://github.com/ebuka1017/baseguard/discussions)
|
|
429
|
+
|
|
430
|
+
---
|
|
431
|
+
|
|
432
|
+
**Version:** 1.0.2
|
|
433
|
+
**Release Date:** December 19, 2024
|
|
434
|
+
**Status:** Production Ready โ
|