bc-telemetry-buddy-mcp 2.1.0 → 2.1.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 CHANGED
@@ -7,6 +7,39 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [2.1.2] - 2025-11-22
11
+
12
+ ### Fixed
13
+
14
+ - **Bundled Server Startup**: Fixed bundled server.js being executed twice causing startup failures
15
+ - Removed auto-execution code (`require.main === module` check) from server.ts
16
+ - Server now only starts when explicitly called via `startServer()` function
17
+ - Prevents CLI error messages when launched from VSCode extension
18
+ - Resolves issue where bundled server would exit with code 1 in VSCode
19
+
20
+ ## [2.1.1] - 2025-11-22
21
+
22
+ ### Added
23
+
24
+ - **Automatic Update Notifications**: MCP server checks for updates on startup
25
+ - Queries npm registry for latest version asynchronously
26
+ - Logs prominent warning banner when updates are available
27
+ - Shows current version → latest version
28
+ - Provides update instructions (npm install and VSCode command)
29
+ - Non-blocking with 5-second timeout to avoid delaying startup
30
+ - Silently fails on network errors (won't break offline usage)
31
+
32
+ ### Fixed
33
+
34
+ - **Graceful Config Loading**: Server now handles missing config files gracefully
35
+ - `loadConfigFromFile()` returns `null` instead of throwing when no config is found
36
+ - Server falls back to environment variables when no config file exists
37
+ - Removed problematic catch block that caused infinite loop on startup
38
+ - Server shows clear configuration warnings in logs but continues running
39
+ - **CI Build**: Fixed GitHub Actions build error
40
+ - Added version generation script to `build:server` npm script
41
+ - Both server and CLI builds now generate version file before bundling
42
+
10
43
  ## [2.1.0] - 2025-11-21
11
44
 
12
45
  ### Added