snow-flow 1.3.6 → 1.3.7
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/dist/version.js +34 -1
- package/package.json +1 -1
package/dist/version.js
CHANGED
|
@@ -7,12 +7,45 @@ exports.VERSION_INFO = exports.VERSION = void 0;
|
|
|
7
7
|
exports.getVersionString = getVersionString;
|
|
8
8
|
exports.getLatestFeatures = getLatestFeatures;
|
|
9
9
|
exports.isLatestVersion = isLatestVersion;
|
|
10
|
-
exports.VERSION = '1.3.
|
|
10
|
+
exports.VERSION = '1.3.7';
|
|
11
11
|
exports.VERSION_INFO = {
|
|
12
12
|
version: exports.VERSION,
|
|
13
13
|
name: 'Snow-Flow',
|
|
14
14
|
description: 'ServiceNow Queen Agent - Hive-Mind Intelligence for ServiceNow Development',
|
|
15
15
|
features: {
|
|
16
|
+
'1.3.7': [
|
|
17
|
+
'🚀 RELEASE VERSION: Combined all fixes from 1.3.2-1.3.6 into stable release',
|
|
18
|
+
'✅ ZOD VALIDATION: Completely fixed all configuration schema issues',
|
|
19
|
+
'🧠 HIERARCHICAL MEMORY: ServiceNow-specific memory patterns for agent coordination',
|
|
20
|
+
'📦 PRODUCTION READY: All version numbers aligned and ready for npm publish'
|
|
21
|
+
],
|
|
22
|
+
'1.3.6': [
|
|
23
|
+
'🐛 ZOD FIX: Fixed nested object validation errors in configuration schema',
|
|
24
|
+
'🔧 NESTED DEFAULTS: Added .default({}) to all nested objects in ConfigSchema',
|
|
25
|
+
'✅ STARTUP FIX: Package now starts correctly without Zod validation errors',
|
|
26
|
+
'💾 BACKWARDS COMPATIBLE: All configuration objects have proper default values'
|
|
27
|
+
],
|
|
28
|
+
'1.3.5': [
|
|
29
|
+
'🧠 HIERARCHICAL MEMORY: Enhanced memory system with ServiceNow-specific patterns',
|
|
30
|
+
'🤖 AGENT CAPABILITIES: 15+ specialized ServiceNow agent types defined',
|
|
31
|
+
'📊 PATTERN LEARNING: Success/failure pattern recognition for continuous improvement',
|
|
32
|
+
'🔗 RELATIONSHIP TRACKING: Graph-like connections between artifacts'
|
|
33
|
+
],
|
|
34
|
+
'1.3.4': [
|
|
35
|
+
'🐛 ZOD FIX ATTEMPT 2: Added .default({}) to all top-level objects',
|
|
36
|
+
'🔧 CONFIG SCHEMA: Fixed "Required" errors for all config properties',
|
|
37
|
+
'⚠️ PARTIAL FIX: Resolved top-level validation but nested objects still failed'
|
|
38
|
+
],
|
|
39
|
+
'1.3.3': [
|
|
40
|
+
'🐛 ZOD FIX ATTEMPT 1: Fixed parseInt() returning NaN for undefined env vars',
|
|
41
|
+
'🔧 DYNAMIC DEFAULTS: Removed dynamic parseInt() from schema defaults',
|
|
42
|
+
'✅ NAN CHECKS: Added validation in loadFromEnvironment() method',
|
|
43
|
+
'⚠️ PARTIAL FIX: Resolved NaN errors but uncovered nested object issues'
|
|
44
|
+
],
|
|
45
|
+
'1.3.2': [
|
|
46
|
+
'🚨 BUG INTRODUCED: Zod validation errors preventing package startup',
|
|
47
|
+
'❌ ISSUE: parseInt() with undefined env vars causing NaN in defaults'
|
|
48
|
+
],
|
|
16
49
|
'1.3.1': [
|
|
17
50
|
'🚨 HOTFIX: Fixed "memory MCP tool is not available" error',
|
|
18
51
|
'🔧 CONFIG BUG FIX: BaseMCPServer now properly stores config parameter',
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "snow-flow",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.7",
|
|
4
4
|
"description": "ServiceNow Queen Agent - Hive-Mind Intelligence for ServiceNow Development inspired by claude-flow. Transform complex workflows into elegant one-command orchestration.",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"type": "commonjs",
|