Skip to content
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

adjust self-hosted hard stop documentation #11146

Merged
merged 1 commit into from
Aug 26, 2024
Merged
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
19 changes: 15 additions & 4 deletions develop-docs/self-hosted/releases.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -41,15 +41,26 @@ Finally, to upgrade, just run `./install.sh`.

### Hard Stops

These are the hard stops that you need to go through in order to pick up significant database changes:
When upgrading one must upgrade to **each** hard stop to pick up significant database changes.

```
<your.sentry.version> -> 9.1.2 -> 21.5.0 -> 21.6.3 -> 23.6.2 -> 23.11.0 -> latest
```
These are the hard stops that one needs to go through:

- 9.1.2
- 21.5.0
- 21.6.3
- 23.6.2
- 23.11.0
- 24.8.0

Versions to avoid upgrading to:
- `23.7.0` (issues around database migrations and the Django 3 upgrade)

As an example if one wants to go from `22.8.0` to `24.2.0` one needs the following upgrade path:

```
# example
(initial: 22.8.0) -> 23.6.2 -> 23.11.0 -> 24.2.0
```

## Nightly Builds

Expand Down
Loading