Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

## 2023-11-04
* Upgrade to MongoDB v7.0
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

For MongoDB, at this moment StackStorm officially supports and is tested with MongoDB v4.4.

And so we do end-to-end testing (on a real VMs, see st2ci st2cd st2cicd) with that DB version.

It means, the MongoDB version is consistent across all the installation methods and in the docs.

There are plans to upgrade MongoDB to v5 or v6 for the upcoming v3.9.0 release, see:


With that, keep MongoDB 4.4 unchanged for this PR, bumping Redis and MongoDB to the latest versions is good 👍
You can open another PR that'll only change MongoDB to v6, as that will be helpful to be merged in the future when preparing the v3.9.0 release.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@armab
Remove MongoDB update.

* Upgrade to RabbitMQ v3.12
* Upgrade to Redis v7.2

## 2023-10-28
* Refactor st2test, install BATS via `apt install`
* Remove unneeded file st2test-tools.sh
Expand Down
6 changes: 3 additions & 3 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -237,21 +237,21 @@ services:
- ./scripts/st2chatops-startup.sh:/st2chatops-startup.sh
# external services
mongo:
image: mongo:4.4
image: mongo:7.0
restart: on-failure
networks:
- private
volumes:
- stackstorm-mongodb:/data/db
rabbitmq:
image: rabbitmq:3.8
image: rabbitmq:3.12
restart: on-failure
networks:
- private
volumes:
- stackstorm-rabbitmq:/var/lib/rabbitmq
redis:
image: redis:6.2
image: redis:7.2
restart: on-failure
networks:
- private
Expand Down