@juspay/neurolink 11.25.0 → 11.25.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +3 -3
  2. package/package.json +2 -2
package/CHANGELOG.md CHANGED
@@ -1,8 +1,8 @@
1
- ## [11.25.0](https://github.com/juspay/neurolink/compare/v11.24.2...v11.25.0) (2026-08-24)
1
+ ## [11.25.2](https://github.com/juspay/neurolink/compare/v11.25.1...v11.25.2) (2026-08-24)
2
2
 
3
- ### Features
3
+ ### Performance Improvements
4
4
 
5
- - **(stream):** make the maxSteps no-output fallback opt-outable ([b70d05d](https://github.com/juspay/neurolink/commit/b70d05d7fde246ca9217f8e5bef0842a7bfe3efd))
5
+ - **(ci):** stop repeating work in the hooks and shard the slow CI job ([d3f2048](https://github.com/juspay/neurolink/commit/d3f2048fffa871f851819fe5ed901635c76c41af)), closes [#1532](https://github.com/juspay/neurolink/issues/1532)
6
6
 
7
7
  ## [11.2.3](https://github.com/juspay/neurolink/compare/v11.2.2...v11.2.3) (2026-08-19)
8
8
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@juspay/neurolink",
3
- "version": "11.25.0",
3
+ "version": "11.25.2",
4
4
  "packageManager": "pnpm@10.15.1",
5
5
  "description": "TypeScript AI SDK with 24+ LLM providers behind one consistent API. MCP-native (connect any MCP server), voice TTS/STT/realtime, RAG, agents, memory, context compaction. OpenAI · Anthropic · Gemini · Bedrock · Azure · Ollama · DeepSeek · NVIDIA NIM and more.",
6
6
  "author": {
@@ -198,7 +198,7 @@
198
198
  "validate:commit": "tsx scripts/commit-validation.ts",
199
199
  "quality:metrics": "tsx scripts/quality-metrics.ts",
200
200
  "quality:report": "pnpm run quality:metrics && echo 'Quality metrics saved to quality-metrics.json'",
201
- "pre-push": "pnpm run check:deps && pnpm run build && pnpm run test:providers-mocked && pnpm run test:provider-structure && pnpm run test:model-manifests",
201
+ "pre-push": "pnpm run check:deps && pnpm run build && pnpm run test:provider-structure && pnpm run test:model-manifests",
202
202
  "check:all": "pnpm run lint && pnpm run format --check && pnpm run validate && pnpm run validate:commit",
203
203
  "test:file-formats": "pnpm exec tsx test/continuous-test-suite-file-formats.ts",
204
204
  "test:multimodal": "pnpm run test:file-formats && pnpm run test:multimodal:sdk",