-
Notifications
You must be signed in to change notification settings - Fork 2.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add 0.30 release notes #7300
Add 0.30 release notes #7300
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
PR Summary
This PR introduces significant changes for the Twenty CRM 0.30.0 release, focusing on Redis integration and performance improvements.
- Introduced Redis for caching and message queuing in
packages/twenty-docker/.env.example
anddocker-compose.yml
- Updated default message queue type to BullMQ and cache storage to Redis in
packages/twenty-server/src/engine/core-modules/environment/environment-variables.ts
- Added upgrade instructions for v0.24.0 to v0.30.0 in
packages/twenty-website/src/content/developers/self-hosting/upgrade-guide.mdx
, including Redis configuration steps - Updated version numbers to 0.30.0 in package.json files for front-end, server, and website components
- Modified environment variables documentation in
packages/twenty-website/src/content/developers/self-hosting/self-hosting-var.mdx
to reflect new Redis and message queue configurations
8 file(s) reviewed, 2 comment(s)
Edit PR Review Bot Settings
MESSAGE_QUEUE_TYPE: ${MESSAGE_QUEUE_TYPE} | ||
CACHE_STORAGE_TYPE: redis |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
logic: CACHE_STORAGE_TYPE is hardcoded to 'redis' for server, but uses env var for worker. Ensure this is intentional.
|
||
``` | ||
yarn database:migrate:prod | ||
yarn command:prod upgrade-0.24 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
logic: This command should be upgrade-0.30
to match the version being upgraded to
In this PR: - update your environment variables to default `CACHE_STORAGE_TYPE` to `redis` and `MESSAGE_QUEUE_TYPE` to `bull-mq` - add redis container to our default docker-compose - add `REDIS_HOST` and `REDIS_PORT` to docker-compose yaml - add upgrade instructions
In this PR:
CACHE_STORAGE_TYPE
toredis
andMESSAGE_QUEUE_TYPE
tobull-mq
REDIS_HOST
andREDIS_PORT
to docker-compose yaml