Compare commits

..

2 Commits

Author SHA1 Message Date
Vinicius Brasil
854c67d21c docs: snapshot and changelog for v1.14.8a2 (#6230)
Some checks are pending
CodeQL Advanced / Analyze (actions) (push) Waiting to run
CodeQL Advanced / Analyze (python) (push) Waiting to run
Check Documentation Broken Links / Check broken links (push) Waiting to run
Vulnerability Scan / pip-audit (push) Waiting to run
2026-06-18 16:42:17 -07:00
Vinicius Brasil
f48a6389f1 feat: bump versions to 1.14.8a2 (#6229) 2026-06-18 16:37:27 -07:00
8 changed files with 89 additions and 5 deletions

View File

@@ -4,6 +4,27 @@ description: "تحديثات المنتج والتحسينات وإصلاحات
icon: "clock"
mode: "wide"
---
<Update label="18 يونيو 2026">
## v1.14.8a2
[عرض الإصدار على GitHub](https://github.com/crewAIInc/crewAI/releases/tag/1.14.8a2)
## ما الذي تغير
### الميزات
- إضافة إجراء عميل واحد إلى تعريفات التدفق
- التحقق من تعبيرات CEL للتدفق عند تحميل التعريف
### الوثائق
- إضافة دليل تكامل Datadog مع لوحة عمليات قابلة للاستيراد
- تحديث اللقطة وسجل التغييرات للإصدار v1.14.8a1
## المساهمون
@joaomdmoura, @lucasgomide, @vinibrsl
</Update>
<Update label="18 يونيو 2026">
## v1.14.8a1

View File

@@ -4,6 +4,27 @@ description: "Product updates, improvements, and bug fixes for CrewAI"
icon: "clock"
mode: "wide"
---
<Update label="Jun 18, 2026">
## v1.14.8a2
[View release on GitHub](https://github.com/crewAIInc/crewAI/releases/tag/1.14.8a2)
## What's Changed
### Features
- Add single agent action to Flow definitions
- Validate flow CEL expressions at definition load time
### Documentation
- Add Datadog integration guide with importable operations dashboard
- Update snapshot and changelog for v1.14.8a1
## Contributors
@joaomdmoura, @lucasgomide, @vinibrsl
</Update>
<Update label="Jun 18, 2026">
## v1.14.8a1

View File

@@ -4,6 +4,27 @@ description: "CrewAI의 제품 업데이트, 개선 사항 및 버그 수정"
icon: "clock"
mode: "wide"
---
<Update label="2026년 6월 18일">
## v1.14.8a2
[GitHub 릴리스 보기](https://github.com/crewAIInc/crewAI/releases/tag/1.14.8a2)
## 변경 사항
### 기능
- Flow 정의에 단일 에이전트 작업 추가
- 정의 로드 시 흐름 CEL 표현식 검증
### 문서
- 가져올 수 있는 운영 대시보드와 함께 Datadog 통합 가이드 추가
- v1.14.8a1의 스냅샷 및 변경 로그 업데이트
## 기여자
@joaomdmoura, @lucasgomide, @vinibrsl
</Update>
<Update label="2026년 6월 18일">
## v1.14.8a1

View File

@@ -4,6 +4,27 @@ description: "Atualizações de produto, melhorias e correções do CrewAI"
icon: "clock"
mode: "wide"
---
<Update label="18 jun 2026">
## v1.14.8a2
[Ver release no GitHub](https://github.com/crewAIInc/crewAI/releases/tag/1.14.8a2)
## O que Mudou
### Funcionalidades
- Adicionar ação de agente único às definições de Fluxo
- Validar expressões CEL de fluxo no momento do carregamento da definição
### Documentação
- Adicionar guia de integração do Datadog com painel de operações importável
- Atualizar snapshot e changelog para v1.14.8a1
## Contributors
@joaomdmoura, @lucasgomide, @vinibrsl
</Update>
<Update label="18 jun 2026">
## v1.14.8a1

View File

@@ -89,7 +89,7 @@ description = "{name} using crewAI"
authors = [{{ name = "Your Name", email = "you@example.com" }}]
requires-python = ">=3.10,<3.14"
dependencies = [
"crewai[tools]==1.14.8a2"
"crewai[tools]==1.14.8a1"
]
[build-system]

View File

@@ -43,7 +43,7 @@ CrewAI CLI is installed without the `crewai` package required to run crews.
Install the full CrewAI prerelease package:
uv tool install --force --prerelease=allow 'crewai[tools]==1.14.8a2'
uv tool install --force --prerelease=allow 'crewai[tools]==1.14.8a1'
The quotes are required in zsh so `crewai[tools]` is not treated as a glob.
"""

View File

@@ -717,8 +717,8 @@ def test_json_create_provider_preselects_default_model(tmp_path, monkeypatch):
pyproject = tomli.loads((tmp_path / "json_crew" / "pyproject.toml").read_text())
dependency = pyproject["project"]["dependencies"][0]
assert dependency == "crewai[tools]==1.14.8a2"
assert Version("1.14.8a2") in Requirement(dependency).specifier
assert dependency == "crewai[tools]==1.14.8a1"
assert Version("1.14.8a1") in Requirement(dependency).specifier
assert pyproject["tool"]["hatch"]["build"]["targets"]["wheel"][
"only-include"
] == ["agents", "crew.jsonc", "tools", "knowledge", "skills"]

View File

@@ -26,7 +26,7 @@ def test_missing_crewai_package_shows_full_install_hint(monkeypatch):
message = exc_info.value.message
assert "CrewAI CLI is installed without the `crewai` package" in message
assert (
"uv tool install --force --prerelease=allow 'crewai[tools]==1.14.8a2'"
"uv tool install --force --prerelease=allow 'crewai[tools]==1.14.8a1'"
in message
)
assert "quotes are required in zsh" in message