diff --git a/docs/en/changelog.mdx b/docs/en/changelog.mdx index ed194bebc..ce3bc1271 100644 --- a/docs/en/changelog.mdx +++ b/docs/en/changelog.mdx @@ -4,6 +4,516 @@ description: "Product updates, improvements, and bug fixes for CrewAI" icon: "clock" mode: "wide" --- + + ## v1.8.0 + + [View release on GitHub](https://github.com/crewAIInc/crewAI/releases/tag/1.8.0) + + ## What's Changed + + ### Features + - Add native async chain for a2a + - Add a2a update mechanisms (poll/stream/push) with handlers and config + - Introduce global flow configuration for human-in-the-loop feedback + - Add streaming tool call events and fix provider ID tracking + - Introduce production-ready Flows and Crews architecture + - Add HITL for Flows + - Improve EventListener and TraceCollectionListener for enhanced event handling + + ### Bug Fixes + - Handle missing a2a dependency as optional + - Correct error fetching for WorkOS login polling + - Fix wrong trigger name in sample documentation + + ### Documentation + - Update webhook-streaming documentation + - Adjust AOP to AMP documentation language + + ### Contributors + @Vidit-Ostwal, @greysonlalonde, @heitorado, @joaomdmoura, @lorenzejay, @lucasgomide, @mplachta + + + + + ## v1.7.2 + + [View release on GitHub](https://github.com/crewAIInc/crewAI/releases/tag/1.7.2) + + ## What's Changed + + ### Bug Fixes + - Resolve connection issues + + ### Documentation + - Update api-reference/status docs page + + ### Contributors + @greysonlalonde, @heitorado, @lorenzejay, @lucasgomide + + + + + ## v1.7.1 + + [View release on GitHub](https://github.com/crewAIInc/crewAI/releases/tag/1.7.1) + + ## What's Changed + + ### Improvements + - Add `--no-commit` flag to bump command + - Use JSON schema for tool argument serialization + + ### Bug Fixes + - Fix error message display from response when tool repository login fails + - Fix graceful termination of future when executing a task asynchronously + - Fix task ordering by adding index + - Fix platform compatibility checks for Windows signals + - Fix RPM controller timer to prevent process hang + - Fix token usage recording and validate response model on stream + + ### Documentation + - Add translated documentation for async + - Add documentation for AOP Deploy API + - Add documentation for the agent handler connector + - Add documentation on native async + + ### Contributors + @Llamrei, @dragosmc, @gilfeig, @greysonlalonde, @heitorado, @lorenzejay, @mattatcha, @vinibrsl + + + + + ## v1.7.0 + + [View release on GitHub](https://github.com/crewAIInc/crewAI/releases/tag/1.7.0) + + ## What's Changed + + ### Features + - Add async flow kickoff + - Add async crew support + - Add async task support + - Add async knowledge support + - Add async memory support + - Add async support for tools and agent executor; improve typing and docs + - Implement a2a extensions API and async agent card caching; fix task propagation & streaming + - Add native async tool support + - Add async llm support + - Create sys event types and handler + + ### Bug Fixes + - Fix issue to ensure nonetypes are not passed to otel + - Fix deadlock in token store file operations + - Fix to ensure otel span is closed + - Use HuggingFaceEmbeddingFunction for embeddings, update keys and add tests + - Fix to ensure supports_tools is true for all supported anthropic models + - Ensure hooks work with lite agents flows + + ### Contributors + @greysonlalonde, @lorenzejay + + + + + ## v1.6.1 + + [View release on GitHub](https://github.com/crewAIInc/crewAI/releases/tag/1.6.1) + + ## What's Changed + + ### Bug Fixes + - Fix ChatCompletionsClient call to ensure proper functionality + - Ensure async methods are executable for annotations + - Fix parameters in RagTool.add, add typing, and tests + - Remove invalid parameter from SSE client + - Erase 'oauth2_extra' setting on 'crewai config reset' command + + ### Refactoring + - Enhance model validation and provider inference in LLM class + + ### Contributors + @Vidit-Ostwal, @greysonlalonde, @heitorado, @lorenzejay + + + + + ## v1.6.0 + + [View release on GitHub](https://github.com/crewAIInc/crewAI/releases/tag/1.6.0) + + ## What's Changed + + ### Features + - Add streaming result support to flows and crews + - Add gemini-3-pro-preview + - Support CLI login with Entra ID + - Add Merge Agent Handler tool + - Enhance flow event state management + + ### Bug Fixes + - Ensure custom rag store persist path is set if passed + - Ensure fuzzy returns are more strict and show type warning + - Re-add openai response_format parameter and add test + - Fix rag tool embeddings configuration + - Ensure flow execution start panel is not shown on plot + + ### Documentation + - Update references from AMP to AOP in documentation + - Update AMP to AOP + + ### Contributors + @Vidit-Ostwal, @gilfeig, @greysonlalonde, @heitorado, @joaomdmoura, @lorenzejay, @markmcd + + + + + ## v0.203.2 + + [View release on GitHub](https://github.com/crewAIInc/crewAI/releases/tag/0.203.2) + + ## What's Changed + + - Hotfix version bump from 0.203.1 to 0.203.2 + + + + + ## v1.5.0 + + [View release on GitHub](https://github.com/crewAIInc/crewAI/releases/tag/1.5.0) + + ## What's Changed + + ### Features + - Add a2a trust remote completion status flag + - Fetch and store more data about Okta authorization server + - Implement before and after LLM call hooks in CrewAgentExecutor + - Expose messages to TaskOutput and LiteAgentOutputs + - Enhance schema description of QdrantVectorSearchTool + + ### Bug Fixes + - Ensure tracing instrumentation flags are correctly applied + - Fix custom tool documentation links and add Mintlify broken links action + + ### Documentation + - Enhance task guardrail documentation with LLM-based validation support + + ### Contributors + @danielfsbarreto, @greysonlalonde, @heitorado, @lorenzejay, @theCyberTech + + + + + ## v1.4.1 + + [View release on GitHub](https://github.com/crewAIInc/crewAI/releases/tag/1.4.1) + + ## What's Changed + + ### Bug Fixes + - Fix handling of agent max iterations + - Resolve routing issues for LLM model syntax to respected providers + + ### Contributors + @greysonlalonde + + + + + ## v1.4.0 + + [View release on GitHub](https://github.com/crewAIInc/crewAI/releases/tag/1.4.0) + + ## What's Changed + + ### Features + - Add support for non-AST plot routes + - Implement first-class support for MCP + - Add Pydantic validation dunder to BaseInterceptor + - Add support for LLM message interceptor hooks + - Cache i18n prompts for efficient use + - Enhance QdrantVectorSearchTool + + ### Bug Fixes + - Fix issues with keeping stopwords updated + - Resolve unpickleable values in flow state + - Ensure lite agents course-correct on validation errors + - Fix callback argument hashing to ensure caching works + - Allow adding RAG source content from valid URLs + - Make plot node selection smoother + - Fix duplicating document IDs for knowledge + + ### Refactoring + - Improve MCP tool execution handling with concurrent futures + - Simplify flow handling, typing, and logging; update UI and tests + - Refactor stop word management to a property + + ### Documentation + - Migrate embedder to embedding_model and require vectordb across tool docs; add provider examples (en/ko/pt-BR) + + ### Contributors + @danielfsbarreto, @greysonlalonde, @lorenzejay, @lucasgomide, @tonykipkemboi + + + + + ## v1.3.0 + + [View release on GitHub](https://github.com/crewAIInc/crewAI/releases/tag/1.3.0) + + ## What's Changed + + ### Features + - Refactor flow handling, typing, and logging + - Enhance QdrantVectorSearchTool + + ### Bug Fixes + - Fix Firecrawl tools and add tests + - Refactor use_stop_words to property and add check for stop words + + ### Documentation + - Migrate embedder to embedding_model and require vectordb across tool docs + - Add provider examples in English, Korean, and Portuguese + + ### Refactoring + - Improve flow handling and UI updates + + ### Contributors + @danielfsbarreto, @greysonlalonde, @lorenzejay, @lucasgomide, @tonykipkemboi + + + + + ## v1.2.1 + + [View release on GitHub](https://github.com/crewAIInc/crewAI/releases/tag/1.2.1) + + ## What's Changed + + ### Features + - Add support for Datadog integration + - Support apps and mcps in liteagent + + ### Documentation + - Describe mandatory environment variable for calling Platform tools for each integration + - Add Datadog integration documentation + + ### Contributors + @barieom, @lorenzejay, @lucasgomide, @sabrenner + + + + + ## v1.2.0 + + [View release on GitHub](https://github.com/crewAIInc/crewAI/releases/tag/1.2.0) + + ## What's Changed + + ### Bug Fixes + - Update default LLM model and improve error logging in LLM utilities + - Change flow visualization directory and method inspection + + ### Dropping Unused + - Remove aisuite + + ### Contributors + @greysonlalonde, @lorenzejay + + + + + ## v1.1.0 + + [View release on GitHub](https://github.com/crewAIInc/crewAI/releases/tag/1.1.0) + + ## What's Changed + + ### Features + - Enhance InternalInstructor to support multiple LLM providers + - Implement mypy plugin base + - Improve QdrantVectorSearchTool + + ### Bug Fixes + - Correct broken integration documentation links + - Fix double trace call and add types + - Pin template versions to latest + + ### Documentation + - Update LLM integration details and examples + + ### Refactoring + - Improve CrewBase typing + + ### Contributors + @cwarre33, @danielfsbarreto, @greysonlalonde, @lorenzejay + + + + + ## v1.0.0 + + [View release on GitHub](https://github.com/crewAIInc/crewAI/releases/tag/1.0.0) + + ## What's Changed + + ### Features + - Bump versions to 1.0.0 + - Enhance knowledge and guardrail event handling in Agent class + - Inject tool repository credentials in crewai run command + + ### Bug Fixes + - Preserve nested condition structure in Flow decorators + - Add standard print parameters to Printer.print method + - Fix errors when there is no input() available + - Add a leeway of 10s when decoding JWT + - Revert bad cron schedule + - Correct cron schedule to run every 5 days at specific dates + - Use system PATH for Docker binary instead of hardcoded path + - Add CodeQL configuration to properly exclude template directories + + ### Documentation + - Update security policy for vulnerability reporting + - Add guide for capturing telemetry logs in CrewAI AMP + - Add missing /resume files + - Clarify webhook URL parameter in HITL workflows + + ### Contributors + @Vidit-Ostwal, @greysonlalonde, @heitorado, @joaomdmoura, @lorenzejay, @lucasgomide, @mplachta, @theCyberTech + + + + + ## v1.0.0b3 (Pre-release) + + [View release on GitHub](https://github.com/crewAIInc/crewAI/releases/tag/1.0.0b3) + + ## What's Changed + + ### Features + - Enhance task guardrail functionality and validation + - Improve support for importing native SDK + - Add Azure native tests + - Enhance BedrockCompletion class with advanced features + - Enhance GeminiCompletion class with client parameter support + - Enhance AnthropicCompletion class with additional client parameters + + ### Bug Fixes + - Preserve nested condition structure in Flow decorators + - Add standard print parameters to Printer.print method + - Remove stdout prints and improve test determinism + + ### Refactoring + - Convert project module to metaclass with full typing + + ### Contributors + @greysonlalonde, @lorenzejay + + + + + ## v1.0.0b2 (Pre-release) + + [View release on GitHub](https://github.com/crewAIInc/crewAI/releases/tag/1.0.0b2) + + ## What's Changed + + ### Features + - Enhance OpenAICompletion class with additional client parameters + - Improve event bus thread safety and async support + - Inject tool repository credentials in crewai run command + + ### Bug Fixes + - Fix issue where it errors out if there is no input() available + - Add a leeway of 10s when decoding JWT + - Fix copying and adding NOT_SPECIFIED check in task.py + + ### Documentation + - Ensure CREWAI_PLATFORM_INTEGRATION_TOKEN is mentioned in documentation + - Update triggers documentation + + ### Contributors + @Vidit-Ostwal, @greysonlalonde, @heitorado, @joaomdmoura, @lorenzejay, @lucasgomide + + + + + ## v1.0.0b1 (Pre-release) + + [View release on GitHub](https://github.com/crewAIInc/crewAI/releases/tag/1.0.0b1) + + ## What's Changed + + ### Features + - Enhance OpenAICompletion class with additional client parameters + - Improve event bus thread safety and async support + - Implement Bedrock LLM integration + + ### Bug Fixes + - Fix issue with missing input() availability + - Resolve JWT decoding error by adding a leeway of 10 seconds + - Inject tool repository credentials in crewai run command + - Fix copy and add NOT_SPECIFIED check in task.py + + ### Documentation + - Ensure CREWAI_PLATFORM_INTEGRATION_TOKEN is mentioned in documentation + - Update triggers documentation + + ### Contributors + @Vidit-Ostwal, @greysonlalonde, @heitorado, @joaomdmoura, @lorenzejay, @lucasgomide + + + + + ## v0.203.1 + + [View release on GitHub](https://github.com/crewAIInc/crewAI/releases/tag/0.203.1) + + ## What's Changed + + ### Core Improvements & Fixes + - Fixed injection of tool repository credentials into the `crewai run` command + - Added a 10-second leeway when decoding JWTs to reduce token validation errors + - Corrected (then reverted) cron schedule fix intended to run jobs every 5 days at specific dates + + ### Documentation & Guides + - Updated security policy to clarify the process for vulnerability reporting + + + + + ## v1.0.0a4 (Pre-release) + + [View release on GitHub](https://github.com/crewAIInc/crewAI/releases/tag/1.0.0a4) + + ## What's Changed + + ### Features + - Enhance knowledge and guardrail event handling in Agent class + - Introduce trigger listing and execution commands for local development + - Update documentation with new approach to consume Platform Actions + - Add guide for capturing telemetry logs in CrewAI AMP + + ### Bug Fixes + - Revert bad cron schedule + - Correct cron schedule to run every 5 days at specific dates + - Remove duplicate line and add explicit environment variable + - Resolve linting errors across the codebase + - Replace print statements with logger in agent and memory handling + - Use system PATH for Docker binary instead of hardcoded path + - Allow failed PyPI publish + - Match tag and release title, ignore devtools build for PyPI + + ### Documentation + - Update security policy for vulnerability reporting + - Add missing /resume files + - Clarify webhook URL parameter in HITL workflows + + ### Contributors + @Vidit-Ostwal, @greysonlalonde, @lorenzejay, @lucasgomide, @theCyberTech + + + ## v1.0.0a1 diff --git a/docs/ko/changelog.mdx b/docs/ko/changelog.mdx index 699469797..62cf61b12 100644 --- a/docs/ko/changelog.mdx +++ b/docs/ko/changelog.mdx @@ -4,6 +4,545 @@ description: "CrewAI의 제품 업데이트, 개선 사항 및 버그 수정" icon: "clock" mode: "wide" --- + + ## v1.8.0 + + [GitHub 릴리스 보기](https://github.com/crewAIInc/crewAI/releases/tag/1.8.0) + + ## 변경 사항 + + ### 기능 + - a2a를 위한 네이티브 비동기 체인 추가 + - 핸들러 및 설정과 함께 a2a 업데이트 메커니즘(poll/stream/push) 추가 + - 휴먼 인 더 루프 피드백을 위한 전역 흐름 설정 도입 + - 스트리밍 도구 호출 이벤트 추가 및 프로바이더 ID 추적 수정 + - 프로덕션 준비된 Flows 및 Crews 아키텍처 도입 + - Flows를 위한 HITL 추가 + - 향상된 이벤트 처리를 위한 EventListener 및 TraceCollectionListener 개선 + + ### 버그 수정 + - 누락된 a2a 종속성을 선택적으로 처리 + - WorkOS 로그인 폴링을 위한 오류 가져오기 수정 + - 샘플 문서의 잘못된 트리거 이름 수정 + + ### 문서 + - 웹훅 스트리밍 문서 업데이트 + - AOP에서 AMP로 문서 언어 조정 + + ### 기여자 + @Vidit-Ostwal, @greysonlalonde, @heitorado, @joaomdmoura, @lorenzejay, @lucasgomide, @mplachta + + + + + ## v1.7.2 + + [GitHub 릴리스 보기](https://github.com/crewAIInc/crewAI/releases/tag/1.7.2) + + ## 변경 사항 + + ### 버그 수정 + - 연결 문제 해결 + + ### 문서 + - api-reference/status 문서 페이지 업데이트 + + ### 기여자 + @greysonlalonde, @heitorado, @lorenzejay, @lucasgomide + + + + + ## v1.7.1 + + [GitHub 릴리스 보기](https://github.com/crewAIInc/crewAI/releases/tag/1.7.1) + + ## 변경 사항 + + ### 개선 사항 + - bump 명령에 `--no-commit` 플래그 추가 + - 도구 인수 직렬화에 JSON 스키마 사용 + + ### 버그 수정 + - 도구 저장소 로그인 실패 시 응답에서 오류 메시지 표시 수정 + - 비동기 작업 실행 시 future의 정상적인 종료 수정 + - 인덱스를 추가하여 작업 순서 수정 + - Windows 신호에 대한 플랫폼 호환성 검사 수정 + - 프로세스 중단을 방지하기 위한 RPM 컨트롤러 타이머 수정 + - 토큰 사용량 기록 수정 및 스트림에서 응답 모델 검증 + + ### 문서 + - 비동기에 대한 번역된 문서 추가 + - AOP Deploy API 문서 추가 + - 에이전트 핸들러 커넥터 문서 추가 + - 네이티브 비동기 문서 추가 + + ### 기여자 + @Llamrei, @dragosmc, @gilfeig, @greysonlalonde, @heitorado, @lorenzejay, @mattatcha, @vinibrsl + + + + + ## v1.7.0 + + [GitHub 릴리스 보기](https://github.com/crewAIInc/crewAI/releases/tag/1.7.0) + + ## 변경 사항 + + ### 기능 + - 비동기 흐름 킥오프 추가 + - 비동기 크루 지원 추가 + - 비동기 작업 지원 추가 + - 비동기 지식 지원 추가 + - 비동기 메모리 지원 추가 + - 도구 및 에이전트 실행기에 대한 비동기 지원 추가; 타입 및 문서 개선 + - a2a 확장 API 및 비동기 에이전트 카드 캐싱 구현; 작업 전파 및 스트리밍 수정 + - 네이티브 비동기 도구 지원 추가 + - 비동기 llm 지원 추가 + - sys 이벤트 유형 및 핸들러 생성 + + ### 버그 수정 + - nonetypes가 otel에 전달되지 않도록 보장하는 문제 수정 + - 토큰 저장소 파일 작업의 교착 상태 수정 + - otel span이 닫히도록 보장하는 수정 + - 임베딩에 HuggingFaceEmbeddingFunction 사용, 키 업데이트 및 테스트 추가 + - 모든 지원되는 anthropic 모델에 대해 supports_tools가 true인지 확인 + - 라이트 에이전트 흐름에서 훅이 작동하도록 보장 + + ### 기여자 + @greysonlalonde, @lorenzejay + + + + + ## v1.6.1 + + [GitHub 릴리스 보기](https://github.com/crewAIInc/crewAI/releases/tag/1.6.1) + + ## 변경 사항 + + ### 버그 수정 + - ChatCompletionsClient 호출이 제대로 작동하도록 수정 + - 어노테이션에 대해 비동기 메서드가 실행 가능하도록 보장 + - RagTool.add의 매개변수 수정, 타입 및 테스트 추가 + - SSE 클라이언트에서 잘못된 매개변수 제거 + - 'crewai config reset' 명령에서 'oauth2_extra' 설정 삭제 + + ### 리팩토링 + - LLM 클래스에서 모델 검증 및 프로바이더 추론 향상 + + ### 기여자 + @Vidit-Ostwal, @greysonlalonde, @heitorado, @lorenzejay + + + + + ## v1.6.0 + + [GitHub 릴리스 보기](https://github.com/crewAIInc/crewAI/releases/tag/1.6.0) + + ## 변경 사항 + + ### 기능 + - 흐름 및 크루에 스트리밍 결과 지원 추가 + - gemini-3-pro-preview 추가 + - Entra ID를 사용한 CLI 로그인 지원 + - Merge Agent Handler 도구 추가 + - 흐름 이벤트 상태 관리 향상 + + ### 버그 수정 + - 사용자 지정 rag 저장소 지속 경로가 전달된 경우 설정되도록 보장 + - 퍼지 반환이 더 엄격하고 타입 경고를 표시하도록 보장 + - openai response_format 매개변수 다시 추가 및 테스트 추가 + - rag 도구 임베딩 설정 수정 + - 플롯에서 흐름 실행 시작 패널이 표시되지 않도록 보장 + + ### 문서 + - 문서에서 AMP에서 AOP로 참조 업데이트 + - AMP에서 AOP로 업데이트 + + ### 기여자 + @Vidit-Ostwal, @gilfeig, @greysonlalonde, @heitorado, @joaomdmoura, @lorenzejay, @markmcd + + + + + ## v0.203.2 + + [GitHub 릴리스 보기](https://github.com/crewAIInc/crewAI/releases/tag/0.203.2) + + ## 변경 사항 + + - 0.203.1에서 0.203.2로 핫픽스 버전 범프 + + + + + ## v1.5.0 + + [GitHub 릴리스 보기](https://github.com/crewAIInc/crewAI/releases/tag/1.5.0) + + ## 변경 사항 + + ### 기능 + - a2a 신뢰 원격 완료 상태 플래그 추가 + - Okta 인증 서버에 대한 더 많은 데이터 가져오기 및 저장 + - CrewAgentExecutor에서 LLM 호출 전후 훅 구현 + - TaskOutput 및 LiteAgentOutputs에 메시지 노출 + - QdrantVectorSearchTool의 스키마 설명 향상 + + ### 버그 수정 + - 추적 인스트루멘테이션 플래그가 올바르게 적용되도록 보장 + - 사용자 정의 도구 문서 링크 수정 및 Mintlify 깨진 링크 작업 추가 + + ### 문서 + - LLM 기반 검증 지원으로 작업 가드레일 문서 향상 + + ### 기여자 + @danielfsbarreto, @greysonlalonde, @heitorado, @lorenzejay, @theCyberTech + + + + + ## v1.4.1 + + [GitHub 릴리스 보기](https://github.com/crewAIInc/crewAI/releases/tag/1.4.1) + + ## 변경 사항 + + ### 버그 수정 + - 에이전트 최대 반복 처리 수정 + - LLM 모델 구문에 대한 라우팅 문제를 해당 프로바이더로 해결 + + ### 기여자 + @greysonlalonde + + + + + ## v1.4.0 + + [GitHub 릴리스 보기](https://github.com/crewAIInc/crewAI/releases/tag/1.4.0) + + ## 변경 사항 + + ### 기능 + - 비AST 플롯 경로 지원 추가 + - MCP에 대한 일급 지원 구현 + - BaseInterceptor에 Pydantic 검증 던더 추가 + - LLM 메시지 인터셉터 훅 지원 추가 + - 효율적인 사용을 위한 i18n 프롬프트 캐싱 + - QdrantVectorSearchTool 향상 + + ### 버그 수정 + - stopwords 업데이트 유지 관련 문제 수정 + - 흐름 상태에서 피클할 수 없는 값 해결 + - 라이트 에이전트가 검증 오류 시 수정되도록 보장 + - 캐싱이 작동하도록 콜백 인수 해싱 수정 + - 유효한 URL에서 RAG 소스 콘텐츠 추가 허용 + - 플롯 노드 선택을 더 부드럽게 만듦 + - 지식에 대한 중복 문서 ID 수정 + + ### 리팩토링 + - concurrent futures로 MCP 도구 실행 처리 개선 + - 흐름 처리, 타입 및 로깅 단순화; UI 및 테스트 업데이트 + - 중지 단어 관리를 속성으로 리팩토링 + + ### 문서 + - embedder를 embedding_model로 마이그레이션하고 도구 문서 전체에 vectordb 필요; 프로바이더 예제 추가 (en/ko/pt-BR) + + ### 기여자 + @danielfsbarreto, @greysonlalonde, @lorenzejay, @lucasgomide, @tonykipkemboi + + + + + ## v1.3.0 + + [GitHub 릴리스 보기](https://github.com/crewAIInc/crewAI/releases/tag/1.3.0) + + ## 변경 사항 + + ### 기능 + - 흐름 처리, 타입 및 로깅 리팩토링 + - QdrantVectorSearchTool 향상 + + ### 버그 수정 + - Firecrawl 도구 수정 및 테스트 추가 + - use_stop_words를 속성으로 리팩토링하고 중지 단어 확인 추가 + + ### 문서 + - embedder를 embedding_model로 마이그레이션하고 도구 문서 전체에 vectordb 필요 + - 영어, 한국어 및 포르투갈어로 프로바이더 예제 추가 + + ### 리팩토링 + - 흐름 처리 및 UI 업데이트 개선 + + ### 기여자 + @danielfsbarreto, @greysonlalonde, @lorenzejay, @lucasgomide, @tonykipkemboi + + + + + ## v1.2.1 + + [GitHub 릴리스 보기](https://github.com/crewAIInc/crewAI/releases/tag/1.2.1) + + ## 변경 사항 + + ### 기능 + - Datadog 통합 지원 추가 + - liteagent에서 apps 및 mcps 지원 + + ### 문서 + - 각 통합에 대해 Platform 도구를 호출하기 위한 필수 환경 변수 설명 + - Datadog 통합 문서 추가 + + ### 기여자 + @barieom, @lorenzejay, @lucasgomide, @sabrenner + + + + + ## v1.2.0 + + [GitHub 릴리스 보기](https://github.com/crewAIInc/crewAI/releases/tag/1.2.0) + + ## 변경 사항 + + ### 버그 수정 + - 기본 LLM 모델 업데이트 및 LLM 유틸리티의 오류 로깅 개선 + - 흐름 시각화 디렉토리 및 메서드 검사 변경 + + ### 사용되지 않는 항목 삭제 + - aisuite 제거 + + ### 기여자 + @greysonlalonde, @lorenzejay + + + + + ## v1.1.0 + + [GitHub 릴리스 보기](https://github.com/crewAIInc/crewAI/releases/tag/1.1.0) + + ## 변경 사항 + + ### 기능 + - InternalInstructor를 향상하여 여러 LLM 프로바이더 지원 + - mypy 플러그인 기반 구현 + - QdrantVectorSearchTool 개선 + + ### 버그 수정 + - 깨진 통합 문서 링크 수정 + - 이중 추적 호출 수정 및 타입 추가 + - 템플릿 버전을 최신으로 고정 + + ### 문서 + - LLM 통합 세부 정보 및 예제 업데이트 + + ### 리팩토링 + - CrewBase 타이핑 개선 + + ### 기여자 + @cwarre33, @danielfsbarreto, @greysonlalonde, @lorenzejay + + + + + ## v1.0.0 + + [GitHub 릴리스 보기](https://github.com/crewAIInc/crewAI/releases/tag/1.0.0) + + ## 변경 사항 + + ### 기능 + - 버전을 1.0.0으로 범프 + - Agent 클래스에서 지식 및 가드레일 이벤트 처리 향상 + - crewai run 명령에 도구 저장소 자격 증명 주입 + + ### 버그 수정 + - Flow 데코레이터에서 중첩된 조건 구조 유지 + - Printer.print 메서드에 표준 인쇄 매개변수 추가 + - input()을 사용할 수 없을 때 오류 수정 + - JWT 디코딩 시 10초 여유 추가 + - 잘못된 cron 일정 되돌리기 + - 특정 날짜에 5일마다 실행되도록 cron 일정 수정 + - 하드코딩된 경로 대신 Docker 바이너리에 시스템 PATH 사용 + - 템플릿 디렉토리를 올바르게 제외하기 위한 CodeQL 구성 추가 + + ### 문서 + - 취약점 보고를 위한 보안 정책 업데이트 + - CrewAI AMP에서 텔레메트리 로그 캡처 가이드 추가 + - 누락된 /resume 파일 추가 + - HITL 워크플로에서 웹훅 URL 매개변수 명확화 + + ### 기여자 + @Vidit-Ostwal, @greysonlalonde, @heitorado, @joaomdmoura, @lorenzejay, @lucasgomide, @mplachta, @theCyberTech + + + + + ## v1.0.0b3 (프리릴리스) + + [GitHub 릴리스 보기](https://github.com/crewAIInc/crewAI/releases/tag/1.0.0b3) + + ## 변경 사항 + + ### 기능 + - 작업 가드레일 기능 및 검증 향상 + - 네이티브 SDK 가져오기 지원 개선 + - Azure 네이티브 테스트 추가 + - 고급 기능으로 BedrockCompletion 클래스 향상 + - 클라이언트 매개변수 지원으로 GeminiCompletion 클래스 향상 + - 추가 클라이언트 매개변수로 AnthropicCompletion 클래스 향상 + + ### 버그 수정 + - Flow 데코레이터에서 중첩된 조건 구조 유지 + - Printer.print 메서드에 표준 인쇄 매개변수 추가 + - stdout 인쇄 제거 및 테스트 결정론 개선 + + ### 리팩토링 + - 전체 타이핑을 포함한 메타클래스로 프로젝트 모듈 변환 + + ### 기여자 + @greysonlalonde, @lorenzejay + + + + + ## v1.0.0b2 (프리릴리스) + + [GitHub 릴리스 보기](https://github.com/crewAIInc/crewAI/releases/tag/1.0.0b2) + + ## 변경 사항 + + ### 기능 + - 추가 클라이언트 매개변수로 OpenAICompletion 클래스 향상 + - 이벤트 버스 스레드 안전성 및 비동기 지원 개선 + - crewai run 명령에 도구 저장소 자격 증명 주입 + + ### 버그 수정 + - input()을 사용할 수 없을 때 오류가 발생하는 문제 수정 + - JWT 디코딩 시 10초 여유 추가 + - task.py에서 복사 및 NOT_SPECIFIED 확인 수정 + + ### 문서 + - 문서에서 CREWAI_PLATFORM_INTEGRATION_TOKEN이 언급되도록 보장 + - 트리거 문서 업데이트 + + ### 기여자 + @Vidit-Ostwal, @greysonlalonde, @heitorado, @joaomdmoura, @lorenzejay, @lucasgomide + + + + + ## v1.0.0b1 (프리릴리스) + + [GitHub 릴리스 보기](https://github.com/crewAIInc/crewAI/releases/tag/1.0.0b1) + + ## 변경 사항 + + ### 기능 + - 추가 클라이언트 매개변수로 OpenAICompletion 클래스 향상 + - 이벤트 버스 스레드 안전성 및 비동기 지원 개선 + - Bedrock LLM 통합 구현 + + ### 버그 수정 + - 누락된 input() 가용성 문제 수정 + - 10초 여유를 추가하여 JWT 디코딩 오류 해결 + - crewai run 명령에 도구 저장소 자격 증명 주입 + - task.py에서 복사 및 NOT_SPECIFIED 확인 수정 + + ### 문서 + - 문서에서 CREWAI_PLATFORM_INTEGRATION_TOKEN이 언급되도록 보장 + - 트리거 문서 업데이트 + + ### 기여자 + @Vidit-Ostwal, @greysonlalonde, @heitorado, @joaomdmoura, @lorenzejay, @lucasgomide + + + + + ## v0.203.1 + + [GitHub 릴리스 보기](https://github.com/crewAIInc/crewAI/releases/tag/0.203.1) + + ## 변경 사항 + + ### 핵심 개선 및 수정 + - `crewai run` 명령에 도구 저장소 자격 증명 주입 수정 + - 토큰 검증 오류를 줄이기 위해 JWT 디코딩 시 10초 여유 추가 + - 특정 날짜에 5일마다 작업을 실행하도록 의도된 cron 일정 수정(이후 되돌림) + + ### 문서 및 가이드 + - 취약점 보고 프로세스를 명확히 하기 위해 보안 정책 업데이트 + + + + + ## v1.0.0a4 (프리릴리스) + + [GitHub 릴리스 보기](https://github.com/crewAIInc/crewAI/releases/tag/1.0.0a4) + + ## 변경 사항 + + ### 기능 + - Agent 클래스에서 지식 및 가드레일 이벤트 처리 향상 + - 로컬 개발을 위한 트리거 목록 및 실행 명령 도입 + - Platform Actions을 소비하는 새로운 접근 방식으로 문서 업데이트 + - CrewAI AMP에서 텔레메트리 로그 캡처 가이드 추가 + + ### 버그 수정 + - 잘못된 cron 일정 되돌리기 + - 특정 날짜에 5일마다 실행되도록 cron 일정 수정 + - 중복 행 제거 및 명시적 환경 변수 추가 + + ### 기여자 + @greysonlalonde, @heitorado, @joaomdmoura, @lorenzejay, @lucasgomide, @mplachta, @theCyberTech + + + + + ## v1.0.0a3 (프리릴리스) + + [GitHub 릴리스 보기](https://github.com/crewAIInc/crewAI/releases/tag/1.0.0a3) + + ## 변경 사항 + + ### 기능 + - 플랫폼 작업에 대한 에이전트 지원 추가 + - 코드 실행기 도구에 인터프리터 인수 추가 + - 플랫폼 앱 실행에 대한 직접 지원 + + ### 문서 + - 플랫폼 작업 문서 추가 + - MCP 문서에 stdio 및 sse 전송 유형 추가 + - AWS 모델 목록 업데이트 + + ### 기여자 + @greysonlalonde, @heitorado, @lorenzejay, @lucasgomide + + + + + ## v1.0.0a2 (프리릴리스) + + [GitHub 릴리스 보기](https://github.com/crewAIInc/crewAI/releases/tag/1.0.0a2) + + ## 변경 사항 + + ### 핵심 개선 및 수정 + - 모노레포를 위한 CI 업데이트 + - 기본 Anthropic 모델을 claude-sonnet-4-20250514로 업데이트 + - 모델 업데이트에 대한 테스트 수정 + + ### 기여자 + @greysonlalonde, @lorenzejay + + + ## v1.0.0a1 diff --git a/docs/pt-BR/changelog.mdx b/docs/pt-BR/changelog.mdx index 6ff5961be..ae1e3a7a4 100644 --- a/docs/pt-BR/changelog.mdx +++ b/docs/pt-BR/changelog.mdx @@ -4,6 +4,545 @@ description: "Atualizações de produto, melhorias e correções do CrewAI" icon: "clock" mode: "wide" --- + + ## v1.8.0 + + [Ver release no GitHub](https://github.com/crewAIInc/crewAI/releases/tag/1.8.0) + + ## O que Mudou + + ### Funcionalidades + - Adicionar cadeia async nativa para a2a + - Adicionar mecanismos de atualização a2a (poll/stream/push) com handlers e config + - Introduzir configuração global de fluxo para feedback human-in-the-loop + - Adicionar eventos de chamada de ferramenta em streaming e corrigir rastreamento de ID do provedor + - Introduzir arquitetura de Flows e Crews pronta para produção + - Adicionar HITL para Flows + - Melhorar EventListener e TraceCollectionListener para melhor tratamento de eventos + + ### Correções de Bugs + - Tratar dependência a2a ausente como opcional + - Corrigir busca de erro para polling de login WorkOS + - Corrigir nome de trigger errado na documentação de exemplo + + ### Documentação + - Atualizar documentação de webhook-streaming + - Ajustar linguagem da documentação de AOP para AMP + + ### Contribuidores + @Vidit-Ostwal, @greysonlalonde, @heitorado, @joaomdmoura, @lorenzejay, @lucasgomide, @mplachta + + + + + ## v1.7.2 + + [Ver release no GitHub](https://github.com/crewAIInc/crewAI/releases/tag/1.7.2) + + ## O que Mudou + + ### Correções de Bugs + - Resolver problemas de conexão + + ### Documentação + - Atualizar página de documentação api-reference/status + + ### Contribuidores + @greysonlalonde, @heitorado, @lorenzejay, @lucasgomide + + + + + ## v1.7.1 + + [Ver release no GitHub](https://github.com/crewAIInc/crewAI/releases/tag/1.7.1) + + ## O que Mudou + + ### Melhorias + - Adicionar flag `--no-commit` ao comando bump + - Usar schema JSON para serialização de argumentos de ferramenta + + ### Correções de Bugs + - Corrigir exibição de mensagem de erro da resposta quando login do repositório de ferramentas falha + - Corrigir terminação graciosa de future ao executar tarefa assincronamente + - Corrigir ordenação de tarefas adicionando índice + - Corrigir verificações de compatibilidade de plataforma para sinais Windows + - Corrigir timer do controlador RPM para evitar travamento do processo + - Corrigir registro de uso de tokens e validar modelo de resposta em stream + + ### Documentação + - Adicionar documentação traduzida para async + - Adicionar documentação para API Deploy AOP + - Adicionar documentação para o conector agent handler + - Adicionar documentação sobre async nativo + + ### Contribuidores + @Llamrei, @dragosmc, @gilfeig, @greysonlalonde, @heitorado, @lorenzejay, @mattatcha, @vinibrsl + + + + + ## v1.7.0 + + [Ver release no GitHub](https://github.com/crewAIInc/crewAI/releases/tag/1.7.0) + + ## O que Mudou + + ### Funcionalidades + - Adicionar kickoff de fluxo async + - Adicionar suporte a crew async + - Adicionar suporte a tarefa async + - Adicionar suporte a conhecimento async + - Adicionar suporte a memória async + - Adicionar suporte async para ferramentas e executor de agente; melhorar tipagem e docs + - Implementar API de extensões a2a e cache de cartão de agente async; corrigir propagação de tarefas e streaming + - Adicionar suporte a ferramenta async nativa + - Adicionar suporte a llm async + - Criar tipos de eventos sys e handler + + ### Correções de Bugs + - Corrigir problema para garantir que nonetypes não sejam passados para otel + - Corrigir deadlock em operações de arquivo do armazenamento de tokens + - Corrigir para garantir que span otel seja fechado + - Usar HuggingFaceEmbeddingFunction para embeddings, atualizar chaves e adicionar testes + - Corrigir para garantir que supports_tools seja true para todos os modelos anthropic suportados + - Garantir que hooks funcionem com fluxos de lite agents + + ### Contribuidores + @greysonlalonde, @lorenzejay + + + + + ## v1.6.1 + + [Ver release no GitHub](https://github.com/crewAIInc/crewAI/releases/tag/1.6.1) + + ## O que Mudou + + ### Correções de Bugs + - Corrigir chamada ChatCompletionsClient para garantir funcionamento adequado + - Garantir que métodos async sejam executáveis para anotações + - Corrigir parâmetros em RagTool.add, adicionar tipagem e testes + - Remover parâmetro inválido do cliente SSE + - Apagar configuração 'oauth2_extra' no comando 'crewai config reset' + + ### Refatoração + - Aprimorar validação de modelo e inferência de provedor na classe LLM + + ### Contribuidores + @Vidit-Ostwal, @greysonlalonde, @heitorado, @lorenzejay + + + + + ## v1.6.0 + + [Ver release no GitHub](https://github.com/crewAIInc/crewAI/releases/tag/1.6.0) + + ## O que Mudou + + ### Funcionalidades + - Adicionar suporte a resultado de streaming para fluxos e crews + - Adicionar gemini-3-pro-preview + - Suportar login CLI com Entra ID + - Adicionar ferramenta Merge Agent Handler + - Aprimorar gerenciamento de estado de eventos de fluxo + + ### Correções de Bugs + - Garantir que caminho de persistência de armazenamento rag personalizado seja definido se passado + - Garantir que retornos fuzzy sejam mais estritos e mostrem aviso de tipo + - Re-adicionar parâmetro response_format do openai e adicionar teste + - Corrigir configuração de embeddings da ferramenta rag + - Garantir que painel de início de execução de fluxo não seja mostrado no plot + + ### Documentação + - Atualizar referências de AMP para AOP na documentação + - Atualizar AMP para AOP + + ### Contribuidores + @Vidit-Ostwal, @gilfeig, @greysonlalonde, @heitorado, @joaomdmoura, @lorenzejay, @markmcd + + + + + ## v0.203.2 + + [Ver release no GitHub](https://github.com/crewAIInc/crewAI/releases/tag/0.203.2) + + ## O que Mudou + + - Bump de versão hotfix de 0.203.1 para 0.203.2 + + + + + ## v1.5.0 + + [Ver release no GitHub](https://github.com/crewAIInc/crewAI/releases/tag/1.5.0) + + ## O que Mudou + + ### Funcionalidades + - Adicionar flag de status de conclusão remota de confiança a2a + - Buscar e armazenar mais dados sobre servidor de autorização Okta + - Implementar hooks antes e depois de chamadas LLM no CrewAgentExecutor + - Expor mensagens para TaskOutput e LiteAgentOutputs + - Aprimorar descrição de schema do QdrantVectorSearchTool + + ### Correções de Bugs + - Garantir que flags de instrumentação de rastreamento sejam aplicadas corretamente + - Corrigir links de documentação de ferramentas personalizadas e adicionar ação de links quebrados do Mintlify + + ### Documentação + - Aprimorar documentação de guardrail de tarefa com suporte a validação baseada em LLM + + ### Contribuidores + @danielfsbarreto, @greysonlalonde, @heitorado, @lorenzejay, @theCyberTech + + + + + ## v1.4.1 + + [Ver release no GitHub](https://github.com/crewAIInc/crewAI/releases/tag/1.4.1) + + ## O que Mudou + + ### Correções de Bugs + - Corrigir tratamento de iterações máximas do agente + - Resolver problemas de roteamento para sintaxe de modelo LLM para provedores respeitados + + ### Contribuidores + @greysonlalonde + + + + + ## v1.4.0 + + [Ver release no GitHub](https://github.com/crewAIInc/crewAI/releases/tag/1.4.0) + + ## O que Mudou + + ### Funcionalidades + - Adicionar suporte para rotas de plot não-AST + - Implementar suporte de primeira classe para MCP + - Adicionar dunder de validação Pydantic ao BaseInterceptor + - Adicionar suporte para hooks de interceptor de mensagem LLM + - Cache de prompts i18n para uso eficiente + - Aprimorar QdrantVectorSearchTool + + ### Correções de Bugs + - Corrigir problemas para manter stopwords atualizadas + - Resolver valores não pickleable no estado de fluxo + - Garantir que lite agents corrijam curso em erros de validação + - Corrigir hash de argumento de callback para garantir que cache funcione + - Permitir adicionar conteúdo de fonte RAG de URLs válidas + - Tornar seleção de nó de plot mais suave + - Corrigir IDs de documento duplicados para conhecimento + + ### Refatoração + - Melhorar tratamento de execução de ferramenta MCP com concurrent futures + - Simplificar tratamento de fluxo, tipagem e logging; atualizar UI e testes + - Refatorar gerenciamento de stop word para propriedade + + ### Documentação + - Migrar embedder para embedding_model e exigir vectordb em documentação de ferramentas; adicionar exemplos de provedor (en/ko/pt-BR) + + ### Contribuidores + @danielfsbarreto, @greysonlalonde, @lorenzejay, @lucasgomide, @tonykipkemboi + + + + + ## v1.3.0 + + [Ver release no GitHub](https://github.com/crewAIInc/crewAI/releases/tag/1.3.0) + + ## O que Mudou + + ### Funcionalidades + - Refatorar tratamento de fluxo, tipagem e logging + - Aprimorar QdrantVectorSearchTool + + ### Correções de Bugs + - Corrigir ferramentas Firecrawl e adicionar testes + - Refatorar use_stop_words para propriedade e adicionar verificação para stop words + + ### Documentação + - Migrar embedder para embedding_model e exigir vectordb em documentação de ferramentas + - Adicionar exemplos de provedor em Inglês, Coreano e Português + + ### Refatoração + - Melhorar tratamento de fluxo e atualizações de UI + + ### Contribuidores + @danielfsbarreto, @greysonlalonde, @lorenzejay, @lucasgomide, @tonykipkemboi + + + + + ## v1.2.1 + + [Ver release no GitHub](https://github.com/crewAIInc/crewAI/releases/tag/1.2.1) + + ## O que Mudou + + ### Funcionalidades + - Adicionar suporte para integração Datadog + - Suportar apps e mcps em liteagent + + ### Documentação + - Descrever variável de ambiente obrigatória para chamar ferramentas Platform para cada integração + - Adicionar documentação de integração Datadog + + ### Contribuidores + @barieom, @lorenzejay, @lucasgomide, @sabrenner + + + + + ## v1.2.0 + + [Ver release no GitHub](https://github.com/crewAIInc/crewAI/releases/tag/1.2.0) + + ## O que Mudou + + ### Correções de Bugs + - Atualizar modelo LLM padrão e melhorar logging de erros em utilitários LLM + - Alterar diretório de visualização de fluxo e inspeção de método + + ### Removendo Não Utilizados + - Remover aisuite + + ### Contribuidores + @greysonlalonde, @lorenzejay + + + + + ## v1.1.0 + + [Ver release no GitHub](https://github.com/crewAIInc/crewAI/releases/tag/1.1.0) + + ## O que Mudou + + ### Funcionalidades + - Aprimorar InternalInstructor para suportar múltiplos provedores LLM + - Implementar base de plugin mypy + - Melhorar QdrantVectorSearchTool + + ### Correções de Bugs + - Corrigir links de documentação de integração quebrados + - Corrigir chamada de trace dupla e adicionar tipos + - Fixar versões de template para mais recente + + ### Documentação + - Atualizar detalhes e exemplos de integração LLM + + ### Refatoração + - Melhorar tipagem do CrewBase + + ### Contribuidores + @cwarre33, @danielfsbarreto, @greysonlalonde, @lorenzejay + + + + + ## v1.0.0 + + [Ver release no GitHub](https://github.com/crewAIInc/crewAI/releases/tag/1.0.0) + + ## O que Mudou + + ### Funcionalidades + - Bump de versões para 1.0.0 + - Aprimorar tratamento de eventos de conhecimento e guardrail na classe Agent + - Injetar credenciais do repositório de ferramentas no comando crewai run + + ### Correções de Bugs + - Preservar estrutura de condição aninhada em decoradores Flow + - Adicionar parâmetros de print padrão ao método Printer.print + - Corrigir erros quando não há input() disponível + - Adicionar margem de 10s ao decodificar JWT + - Reverter agenda cron ruim + - Corrigir agenda cron para executar a cada 5 dias em datas específicas + - Usar PATH do sistema para binário Docker em vez de caminho hardcoded + - Adicionar configuração CodeQL para excluir corretamente diretórios de template + + ### Documentação + - Atualizar política de segurança para relatório de vulnerabilidade + - Adicionar guia para capturar logs de telemetria no CrewAI AMP + - Adicionar arquivos /resume ausentes + - Esclarecer parâmetro de URL de webhook em workflows HITL + + ### Contribuidores + @Vidit-Ostwal, @greysonlalonde, @heitorado, @joaomdmoura, @lorenzejay, @lucasgomide, @mplachta, @theCyberTech + + + + + ## v1.0.0b3 (Pré-lançamento) + + [Ver release no GitHub](https://github.com/crewAIInc/crewAI/releases/tag/1.0.0b3) + + ## O que Mudou + + ### Funcionalidades + - Aprimorar funcionalidade e validação de guardrail de tarefa + - Melhorar suporte para importar SDK nativo + - Adicionar testes nativos Azure + - Aprimorar classe BedrockCompletion com funcionalidades avançadas + - Aprimorar classe GeminiCompletion com suporte a parâmetro de cliente + - Aprimorar classe AnthropicCompletion com parâmetros de cliente adicionais + + ### Correções de Bugs + - Preservar estrutura de condição aninhada em decoradores Flow + - Adicionar parâmetros de print padrão ao método Printer.print + - Remover prints stdout e melhorar determinismo de teste + + ### Refatoração + - Converter módulo de projeto para metaclasse com tipagem completa + + ### Contribuidores + @greysonlalonde, @lorenzejay + + + + + ## v1.0.0b2 (Pré-lançamento) + + [Ver release no GitHub](https://github.com/crewAIInc/crewAI/releases/tag/1.0.0b2) + + ## O que Mudou + + ### Funcionalidades + - Aprimorar classe OpenAICompletion com parâmetros de cliente adicionais + - Melhorar segurança de thread do event bus e suporte async + - Injetar credenciais do repositório de ferramentas no comando crewai run + + ### Correções de Bugs + - Corrigir problema onde ocorre erro se não houver input() disponível + - Adicionar margem de 10s ao decodificar JWT + - Corrigir cópia e adicionar verificação NOT_SPECIFIED em task.py + + ### Documentação + - Garantir que CREWAI_PLATFORM_INTEGRATION_TOKEN seja mencionado na documentação + - Atualizar documentação de triggers + + ### Contribuidores + @Vidit-Ostwal, @greysonlalonde, @heitorado, @joaomdmoura, @lorenzejay, @lucasgomide + + + + + ## v1.0.0b1 (Pré-lançamento) + + [Ver release no GitHub](https://github.com/crewAIInc/crewAI/releases/tag/1.0.0b1) + + ## O que Mudou + + ### Funcionalidades + - Aprimorar classe OpenAICompletion com parâmetros de cliente adicionais + - Melhorar segurança de thread do event bus e suporte async + - Implementar integração Bedrock LLM + + ### Correções de Bugs + - Corrigir problema com disponibilidade de input() ausente + - Resolver erro de decodificação JWT adicionando margem de 10 segundos + - Injetar credenciais do repositório de ferramentas no comando crewai run + - Corrigir cópia e adicionar verificação NOT_SPECIFIED em task.py + + ### Documentação + - Garantir que CREWAI_PLATFORM_INTEGRATION_TOKEN seja mencionado na documentação + - Atualizar documentação de triggers + + ### Contribuidores + @Vidit-Ostwal, @greysonlalonde, @heitorado, @joaomdmoura, @lorenzejay, @lucasgomide + + + + + ## v0.203.1 + + [Ver release no GitHub](https://github.com/crewAIInc/crewAI/releases/tag/0.203.1) + + ## O que Mudou + + ### Melhorias e Correções do Núcleo + - Corrigida injeção de credenciais do repositório de ferramentas no comando `crewai run` + - Adicionada margem de 10 segundos ao decodificar JWTs para reduzir erros de validação de token + - Corrigida (depois revertida) correção de agenda cron destinada a executar jobs a cada 5 dias em datas específicas + + ### Documentação e Guias + - Atualizada política de segurança para esclarecer o processo de relatório de vulnerabilidade + + + + + ## v1.0.0a4 (Pré-lançamento) + + [Ver release no GitHub](https://github.com/crewAIInc/crewAI/releases/tag/1.0.0a4) + + ## O que Mudou + + ### Funcionalidades + - Aprimorar tratamento de eventos de conhecimento e guardrail na classe Agent + - Introduzir comandos de listagem e execução de trigger para desenvolvimento local + - Atualizar documentação com nova abordagem para consumir Platform Actions + - Adicionar guia para capturar logs de telemetria no CrewAI AMP + + ### Correções de Bugs + - Reverter agenda cron ruim + - Corrigir agenda cron para executar a cada 5 dias em datas específicas + - Remover linha duplicada e adicionar variável de ambiente explícita + + ### Contribuidores + @greysonlalonde, @heitorado, @joaomdmoura, @lorenzejay, @lucasgomide, @mplachta, @theCyberTech + + + + + ## v1.0.0a3 (Pré-lançamento) + + [Ver release no GitHub](https://github.com/crewAIInc/crewAI/releases/tag/1.0.0a3) + + ## O que Mudou + + ### Funcionalidades + - Adicionar suporte a agente para ações de plataforma + - Adicionar argumento de interpretador para ferramenta de execução de código + - Suporte direto para execução de apps de plataforma + + ### Documentação + - Adicionar documentação de ações de plataforma + - Adicionar tipos de transporte stdio e sse à documentação MCP + - Atualizar lista de modelos AWS + + ### Contribuidores + @greysonlalonde, @heitorado, @lorenzejay, @lucasgomide + + + + + ## v1.0.0a2 (Pré-lançamento) + + [Ver release no GitHub](https://github.com/crewAIInc/crewAI/releases/tag/1.0.0a2) + + ## O que Mudou + + ### Melhorias e Correções do Núcleo + - Atualizações de CI para monorepo + - Atualizar modelo Anthropic padrão para claude-sonnet-4-20250514 + - Corrigir testes para atualização de modelo + + ### Contribuidores + @greysonlalonde, @lorenzejay + + + ## v1.0.0a1