mirror of
https://github.com/crewAIInc/crewAI.git
synced 2026-07-01 21:28:10 +00:00
* feat: update pyproject.toml to specify wheel targets Added a new section to the pyproject.toml file to include only specific files in the wheel build, enhancing the packaging process. Updated tests to verify the inclusion of these targets. * feat: add memory save event handling to activity log Implemented event handlers for MemorySaveStartedEvent, MemorySaveCompletedEvent, and MemorySaveFailedEvent in the crew_run_tui module. This allows the application to log memory save operations, capturing their status and details in the activity log. Added corresponding tests to verify the correct logging behavior for successful and failed memory saves. * feat: enhance memory save event handling in activity log Added functionality to suppress nested memory save events and updated the handling of MemorySaveStartedEvent, MemorySaveCompletedEvent, and MemorySaveFailedEvent to improve logging accuracy. Introduced new tests to verify the correct behavior of memory save events, including scenarios for nested events and completion updates for timed-out entries. * Fix memory save activity log handling * Normalize alpha package versions * Update scaffolded crew dependency * feat: add button to copy setup instructions for CrewAI coding agents Introduced a button in the documentation that allows users to easily copy setup instructions for CrewAI coding agents. The instructions include installation steps, environment setup, and best practices for using the CrewAI CLI. This enhancement aims to streamline the onboarding process for new users. * Improve missing CrewAI install guidance * fix: address pr review feedback * fix: avoid mismatched memory save rows * fix: wait for queued memory save events * fix: avoid matching memory saves on missing ids * chore: normalize prerelease version to 1.14.8a1
crewai-devtools
CLI for versioning and releasing crewAI packages.
Setup
Installed automatically via the workspace (uv sync). Requires:
- GitHub CLI (
gh) — authenticated OPENAI_API_KEYenv var — for release note generation and translationENTERPRISE_REPOenv var — GitHub repo for enterprise releasesENTERPRISE_VERSION_DIRSenv var — comma-separated directories to bump in the enterprise repoENTERPRISE_CREWAI_DEP_PATHenv var — path to the pyproject.toml with thecrewai[tools]pin in the enterprise repoENTERPRISE_WORKFLOW_PATHSenv var — comma-separated workflow file paths in the enterprise repo whosecrewai[extras]==<version>pins should be rewritten on each release (e.g..github/workflows/tests.yml)ENTERPRISE_EXTRA_PACKAGESenv var — comma-separated packages to also pin in enterprise pyproject files, in addition tocrewai/crewai[extras]
Commands
devtools release <version>
Full end-to-end release. Bumps versions, creates PRs, tags, publishes a GitHub release, and releases the enterprise repo.
devtools release 1.10.3
devtools release 1.10.3a1 # pre-release
devtools release 1.10.3 --no-edit # skip editing release notes
devtools release 1.10.3 --dry-run # preview without changes
devtools release 1.10.3 --skip-enterprise # skip enterprise release phase
Flow:
- Bumps
__version__and dependency pins across alllib/packages - Runs
uv sync - Creates version bump PR against main, polls until merged
- Generates release notes (OpenAI) from commits since last release
- Updates Edge changelogs (
docs/edge/{en,pt-BR,ko,ar}/changelog.mdx) - Freezes
docs/edge/intodocs/v<version>/, registers the version indocs.json, and points the canonical/<lang>/:slug*redirects at the new default - Opens a
[docs-freeze]PR against main, polls until merged - Tags main and creates GitHub release
- Triggers PyPI publish workflow
- Clones enterprise repo, bumps versions and
crewai[tools]dep, runsuv sync - Creates enterprise bump PR, polls until merged
- Tags and creates GitHub release on enterprise repo
The
docs-snapshotsCI guard rejects writes underdocs/v*/and deletions/renames indocs/images/unless the PR title starts with[docs-freeze]. The release CLI sets that prefix automatically; manual edits to a frozen snapshot need the same prefix to land.Pre-releases (e.g.
1.10.1b1) skip the snapshot step — they ride Edge — and the docs PR title omits the[docs-freeze]prefix.
devtools bump <version>
Bump versions only (phase 1 of release).
devtools bump 1.10.3
devtools bump 1.10.3 --no-push # don't push or create PR
devtools bump 1.10.3 --no-commit # only update files
devtools bump 1.10.3 --dry-run
devtools tag
Tag and release only (phase 2 of release). Run after the bump PR is merged.
devtools tag
devtools tag --no-edit
devtools tag --dry-run