Skip to content

Commit 7e75e64

Browse files
committed
chore: update CHANGELOGs and publish alpha versions
1 parent ac1f212 commit 7e75e64

File tree

12 files changed

+94
-29
lines changed

12 files changed

+94
-29
lines changed

package-lock.json

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

packages/botonic-core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@botonic/core",
3-
"version": "0.37.0",
3+
"version": "0.37.1-alpha.0",
44
"license": "MIT",
55
"description": "Build Chatbots using React",
66
"main": "./lib/cjs/index.js",

packages/botonic-plugin-ai-agents/CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ All notable changes to Botonic will be documented in this file.
1010
Click to see more.
1111
</summary>
1212

13-
## [0.37.x] - 2025-mm-dd
13+
## [0.37.2] - 2025-08-13
1414

1515
### Added
1616

@@ -19,6 +19,8 @@ All notable changes to Botonic will be documented in this file.
1919

2020
### Changed
2121

22+
- [PR-3088](https://github.com/hubtype/botonic/pull/3088): Use types from @botonic/core.
23+
2224
### Fixed
2325

2426
</details>

packages/botonic-plugin-ai-agents/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@botonic/plugin-ai-agents",
3-
"version": "0.37.1",
3+
"version": "0.37.2-alpha.0",
44
"main": "./lib/cjs/index.js",
55
"module": "./lib/esm/index.js",
66
"description": "Use AI Agents to generate your contents",
@@ -13,7 +13,7 @@
1313
"lint_core": "../../node_modules/.bin/eslint_d --cache --quiet 'src/**/*.ts*'"
1414
},
1515
"dependencies": {
16-
"@botonic/core": "^0.37.0",
16+
"@botonic/core": "0.37.1-alpha.0",
1717
"@openai/agents": "^0.0.10",
1818
"axios": "^1.10.0",
1919
"openai": "^5.8.3",

packages/botonic-plugin-flow-builder/CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,14 @@ All notable changes to Botonic will be documented in this file.
1010
Click to see more.
1111
</summary>
1212

13-
## [0.37.x] - 2025-mm-dd
13+
## [0.37.2] - 2025-08-13
1414

1515
### Added
1616

1717
### Changed
1818

19+
- [PR-3084](https://github.com/hubtype/botonic/pull/3084): Allow to use input guardrails in ai agent node.
20+
1921
### Fixed
2022

2123
</details>

packages/botonic-plugin-flow-builder/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@botonic/plugin-flow-builder",
3-
"version": "0.37.1",
3+
"version": "0.37.2-alpha.0",
44
"main": "./lib/cjs/index.js",
55
"module": "./lib/esm/index.js",
66
"description": "Use Flow Builder to show your contents",
@@ -14,7 +14,7 @@
1414
"lint_core": "../../node_modules/.bin/eslint_d --cache --quiet 'src/**/*.ts*'"
1515
},
1616
"dependencies": {
17-
"@botonic/react": "^0.37.1",
17+
"@botonic/react": "0.37.2-alpha.0",
1818
"axios": "^1.10.0",
1919
"uuid": "^10.0.0"
2020
},

packages/botonic-plugin-flow-builder/src/action/ai-agent.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,11 @@ export async function getContentsByAiAgent({
2727

2828
const activeInputGuardrailRules: GuardrailRule[] =
2929
aiAgentContent.inputGuardrailRules
30-
.filter(rule => rule.is_active)
31-
.map(rule => ({
30+
?.filter(rule => rule.is_active)
31+
?.map(rule => ({
3232
name: rule.name,
3333
description: rule.description,
34-
}))
34+
})) || []
3535

3636
const aiAgentResponse = await flowBuilderPlugin.getAiAgentResponse?.(
3737
request,

packages/botonic-plugin-hubtype-analytics/CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,14 @@ All notable changes to Botonic will be documented in this file.
1010
Click to see more.
1111
</summary>
1212

13-
## [0.37.x] - 2025-mm-dd
13+
## [0.37.1] - 2025-08-13
1414

1515
### Added
1616

1717
### Changed
1818

19+
- [PR-3087](https://github.com/hubtype/botonic/pull/3087): Use types from @botonic/core.
20+
1921
### Fixed
2022

2123
</details>

packages/botonic-plugin-hubtype-analytics/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@botonic/plugin-hubtype-analytics",
3-
"version": "0.37.0",
3+
"version": "0.37.1-alpha.0",
44
"description": "Plugin for tracking in the Hubtype backend to see the results in the Hubtype Dashbord",
55
"main": "./lib/cjs/index.js",
66
"module": "./lib/esm/index.js",
@@ -14,7 +14,7 @@
1414
},
1515
"dependencies": {
1616
"@babel/runtime": "^7.26.0",
17-
"@botonic/core": "^0.37.0",
17+
"@botonic/core": "0.37.1-alpha.0",
1818
"axios": "^1.10.0"
1919
},
2020
"devDependencies": {

packages/botonic-plugin-knowledge-bases/CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,14 @@ All notable changes to Botonic will be documented in this file.
1010
Click to see more.
1111
</summary>
1212

13-
## [0.31.x] - 2025-mm-dd
13+
## [0.37.1] - 2025-08-13
1414

1515
### Added
1616

1717
### Changed
1818

19+
- [PR-3088](https://github.com/hubtype/botonic/pull/3088): Use types from @botonic/core.
20+
1921
### Fixed
2022

2123
</details>

0 commit comments

Comments
 (0)