Skip to content
Merged
Show file tree
Hide file tree
Changes from all 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
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Added
- Added a manually triggered cloud image release workflow for isolated internal deployments. [#1566](https://github.com/sourcebot-dev/sourcebot/pull/1566)

### Fixed
- Fixed the web process being capped at a ~4GiB heap regardless of how much memory the container has, which caused multi-second garbage collection pauses on larger deployments. [#1569](https://github.com/sourcebot-dev/sourcebot/pull/1569)

## [5.1.6] - 2026-08-10

### Added
Expand Down
3 changes: 2 additions & 1 deletion supervisord.conf
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ redirect_stderr=true

[program:web]
command=./prefix-output.sh node packages/web/server.js
environment=NODE_OPTIONS="--max-old-space-size-percentage=50"
priority=20
autostart=true
autorestart=true
Expand All @@ -31,4 +32,4 @@ autorestart=true
startretries=3
stdout_logfile=/dev/fd/1
stdout_logfile_maxbytes=0
redirect_stderr=true
redirect_stderr=true
Loading