Skip to content

Commit d2df625

Browse files
committed
chore: release v14.0.39
1 parent e901fdc commit d2df625

File tree

8 files changed

+38
-21
lines changed

8 files changed

+38
-21
lines changed

CHANGELOG.md

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

3+
## [14.0.39](https://github.com/ax-llm/ax/compare/14.0.37...14.0.38) (2025-11-05)
4+
5+
### Bug Fixes
6+
7+
* **api:** improve handling of empty function parameters in Anthropic, Cohere, and Google Gemini APIs ([e901fdc](https://github.com/ax-llm/ax/commit/e901fdc675951b67aca7c923885f757d8a152c7a))
8+
## [14.0.38](https://github.com/ax-llm/ax/compare/14.0.37...14.0.38) (2025-11-05)
9+
10+
### Features
11+
12+
* **api:** enhance function parameter handling and schema validation across multiple AI integrations ([e593e75](https://github.com/ax-llm/ax/commit/e593e7521ec231f2e9841babe8cb4dfb13bd2512))
13+
* **caching:** implement caching functionality in AxGen and AxFlow for improved performance ([18158d9](https://github.com/ax-llm/ax/commit/18158d9ba17f749e98a7814072743911131b84a1))
14+
* **flow:** add description and toFunction methods for enhanced flow metadata ([54dfaca](https://github.com/ax-llm/ax/commit/54dfacac6f609016f2306a02f76d28cfd726028a))
15+
16+
### Bug Fixes
17+
18+
* 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))
19+
320
## [14.0.38](https://github.com/ax-llm/ax/compare/14.0.36...14.0.37) (2025-11-05)
421

522
### Features

package-lock.json

Lines changed: 11 additions & 11 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.38"
77+
"version": "14.0.39"
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.38",
3+
"version": "14.0.39",
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.38",
35+
"@ax-llm/ax": "14.0.39",
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.35",
3+
"version": "14.0.36",
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.38"
41+
"@ax-llm/ax": "14.0.39"
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.38",
3+
"version": "14.0.39",
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.38",
25-
"@ax-llm/ax-tools": "14.0.38",
24+
"@ax-llm/ax": "14.0.39",
25+
"@ax-llm/ax-tools": "14.0.39",
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.38",
3+
"version": "14.0.39",
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.38"
35+
"@ax-llm/ax": "14.0.39"
3636
},
3737
"files": [
3838
"**/*"

0 commit comments

Comments
 (0)