@juspay/neurolink 9.26.0 → 9.26.1
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 +6 -0
- package/package.json +18 -17
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,9 @@
|
|
|
1
|
+
## [9.26.1](https://github.com/juspay/neurolink/compare/v9.26.0...v9.26.1) (2026-03-16)
|
|
2
|
+
|
|
3
|
+
### Bug Fixes
|
|
4
|
+
|
|
5
|
+
- **(tests):** remove redundant vitest test cases, keep only continuous test suites ([625ecd6](https://github.com/juspay/neurolink/commit/625ecd684ec47919d3b79a8c1e907f8cb114a991))
|
|
6
|
+
|
|
1
7
|
## [9.26.0](https://github.com/juspay/neurolink/compare/v9.25.2...v9.26.0) (2026-03-16)
|
|
2
8
|
|
|
3
9
|
### Features
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@juspay/neurolink",
|
|
3
|
-
"version": "9.26.
|
|
3
|
+
"version": "9.26.1",
|
|
4
4
|
"description": "Universal AI Development Platform with working MCP integration, multi-provider support, and professional CLI. Built-in tools operational, 58+ external MCP servers discoverable. Connect to filesystem, GitHub, database operations, and more. Build, test, and deploy AI applications with 13 providers: OpenAI, Anthropic, Google AI, AWS Bedrock, Azure, Hugging Face, Ollama, and Mistral AI.",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Juspay Technologies",
|
|
@@ -59,22 +59,23 @@
|
|
|
59
59
|
"// Shell Script Conversion": "",
|
|
60
60
|
"convert:shell-scripts": "tsx tools/automation/shellConverter.ts",
|
|
61
61
|
"convert:specific": "tsx tools/automation/shellConverter.ts --specific",
|
|
62
|
-
"// Testing (
|
|
63
|
-
"test": "
|
|
64
|
-
"test:
|
|
65
|
-
"test:
|
|
66
|
-
"test:
|
|
67
|
-
"test:
|
|
68
|
-
"test:
|
|
69
|
-
"test:
|
|
70
|
-
"test:
|
|
71
|
-
"test:
|
|
72
|
-
"test:
|
|
73
|
-
"test:
|
|
62
|
+
"// Testing (Continuous Test Suites)": "",
|
|
63
|
+
"test": "npx tsx test/continuous-test-suite.ts",
|
|
64
|
+
"test:context": "npx tsx test/continuous-test-suite-context.ts",
|
|
65
|
+
"test:evaluation": "npx tsx test/continuous-test-suite-evaluation.ts",
|
|
66
|
+
"test:mcp": "npx tsx test/continuous-test-suite-mcp-http.ts",
|
|
67
|
+
"test:media": "npx tsx test/continuous-test-suite-media-gen.ts",
|
|
68
|
+
"test:memory": "npx tsx test/continuous-test-suite-memory.ts",
|
|
69
|
+
"test:observability": "npx tsx test/continuous-test-suite-observability.ts",
|
|
70
|
+
"test:ppt": "npx tsx test/continuous-test-suite-ppt.ts",
|
|
71
|
+
"test:providers": "npx tsx test/continuous-test-suite-providers.ts",
|
|
72
|
+
"test:rag": "npx tsx test/continuous-test-suite-rag.ts",
|
|
73
|
+
"test:servers": "npx tsx test/continuous-test-suite-servers.ts",
|
|
74
|
+
"test:tracing": "npx tsx test/continuous-test-suite-tracing.ts",
|
|
75
|
+
"test:tts": "npx tsx test/continuous-test-suite-tts.ts",
|
|
76
|
+
"test:workflow": "npx tsx test/continuous-test-suite-workflow.ts",
|
|
77
|
+
"test:ci": "pnpm run test",
|
|
74
78
|
"test:performance": "tsx tools/testing/performanceMonitor.ts",
|
|
75
|
-
"// Legacy Testing Support (during transition)": "",
|
|
76
|
-
"test:legacy": "npx tsx test/continuous-test-suite.ts",
|
|
77
|
-
"test:comparison": "pnpm run test && pnpm run test:legacy",
|
|
78
79
|
"// Content Generation (Cross-platform JS)": "",
|
|
79
80
|
"content:videos": "tsx tools/converted-scripts/generateAllVideos.ts",
|
|
80
81
|
"content:cleanup": "tsx tools/converted-scripts/cleanupHashNamedVideos.ts",
|
|
@@ -116,7 +117,7 @@
|
|
|
116
117
|
"quality:metrics": "tsx scripts/quality-metrics.ts",
|
|
117
118
|
"quality:report": "pnpm run quality:metrics && echo 'Quality metrics saved to quality-metrics.json'",
|
|
118
119
|
"pre-commit": "lint-staged",
|
|
119
|
-
"pre-push": "pnpm run validate:commit && pnpm run validate:env && pnpm run validate && pnpm run test",
|
|
120
|
+
"pre-push": "pnpm run validate:commit && pnpm run validate:env && pnpm run validate && pnpm run test:ci",
|
|
120
121
|
"check:all": "pnpm run lint && pnpm run format --check && pnpm run validate && pnpm run validate:commit"
|
|
121
122
|
},
|
|
122
123
|
"files": [
|