Skip to content

Commit 3363fa6

Browse files
committed
chore: release v14.0.38
1 parent 953b7dd commit 3363fa6

File tree

8 files changed

+35
-23
lines changed

8 files changed

+35
-23
lines changed

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,18 @@
11
# Changelog
22

3+
## [14.0.38](https://github.com/ax-llm/ax/compare/14.0.36...14.0.37) (2025-11-05)
4+
5+
### Features
6+
7+
* **api:** enhance function parameter handling and schema validation across multiple AI integrations ([e593e75](https://github.com/ax-llm/ax/commit/e593e7521ec231f2e9841babe8cb4dfb13bd2512))
8+
* **caching:** implement caching functionality in AxGen and AxFlow for improved performance ([18158d9](https://github.com/ax-llm/ax/commit/18158d9ba17f749e98a7814072743911131b84a1))
9+
* **flow:** add description and toFunction methods for enhanced flow metadata ([54dfaca](https://github.com/ax-llm/ax/commit/54dfacac6f609016f2306a02f76d28cfd726028a))
10+
11+
### Bug Fixes
12+
13+
* Hardcode error class names to prevent minification issues ([#421](https://github.com/ax-llm/ax/issues/421)) ([5267340](https://github.com/ax-llm/ax/commit/5267340459564a576b6f1c9fddff785588e78af5))
14+
## [14.0.37](https://github.com/ax-llm/ax/compare/14.0.36...14.0.37) (2025-10-22)
15+
316
## [14.0.37](https://github.com/ax-llm/ax/compare/14.0.35...14.0.36) (2025-10-22)
417
## [14.0.36](https://github.com/ax-llm/ax/compare/14.0.35...14.0.36) (2025-10-22)
518

package-lock.json

Lines changed: 12 additions & 13 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,5 +74,5 @@
7474
],
7575
"author": "Vikram <https://twitter.com/dosco>",
7676
"private": "true",
77-
"version": "14.0.37"
77+
"version": "14.0.38"
7878
}

src/aisdk/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@ax-llm/ax-ai-sdk-provider",
3-
"version": "14.0.37",
3+
"version": "14.0.38",
44
"type": "module",
55
"description": "Ax AI SDK Provider for the Vercel AI SDK",
66
"repository": {
@@ -32,7 +32,7 @@
3232
},
3333
"dependencies": {
3434
"@ai-sdk/provider-utils": "^3.0.10",
35-
"@ax-llm/ax": "14.0.37",
35+
"@ax-llm/ax": "14.0.38",
3636
"ai": "^5.0.50",
3737
"zod": "^3.23.8"
3838
},

src/aws-bedrock/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@ax-llm/ax-ai-aws-bedrock",
3-
"version": "14.0.34",
3+
"version": "14.0.35",
44
"type": "module",
55
"description": "AWS Bedrock Provider for AX - supports Claude, GPT OSS, and Titan Embed models",
66
"repository": {
@@ -38,7 +38,7 @@
3838
},
3939
"dependencies": {
4040
"@aws-sdk/client-bedrock-runtime": "^3.709.0",
41-
"@ax-llm/ax": "14.0.37"
41+
"@ax-llm/ax": "14.0.38"
4242
},
4343
"peerDependencies": {
4444
"@ax-llm/ax": "14.0.31"

src/ax/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@ax-llm/ax",
3-
"version": "14.0.37",
3+
"version": "14.0.38",
44
"type": "module",
55
"description": "The best library to work with LLMs",
66
"repository": {

src/examples/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@
2121
"tsx": "node --env-file=.env --import=tsx"
2222
},
2323
"dependencies": {
24-
"@ax-llm/ax": "14.0.37",
25-
"@ax-llm/ax-tools": "14.0.37",
24+
"@ax-llm/ax": "14.0.38",
25+
"@ax-llm/ax-tools": "14.0.38",
2626
"@opentelemetry/auto-instrumentations-node": "^0.60.1",
2727
"@opentelemetry/exporter-metrics-otlp-http": "^0.203.0",
2828
"@opentelemetry/exporter-prometheus": "^0.202.0",

src/tools/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@ax-llm/ax-tools",
3-
"version": "14.0.37",
3+
"version": "14.0.38",
44
"type": "module",
55
"description": "Ax tools package",
66
"repository": {
@@ -32,7 +32,7 @@
3232
"postbuild": "node ../../scripts/postbuild.js"
3333
},
3434
"dependencies": {
35-
"@ax-llm/ax": "14.0.37"
35+
"@ax-llm/ax": "14.0.38"
3636
},
3737
"files": [
3838
"**/*"

0 commit comments

Comments
 (0)