50 lines
1.4 KiB
Markdown
50 lines
1.4 KiB
Markdown
---
|
|
title: Release 2023.7
|
|
slug: "/releases/2023.7"
|
|
---
|
|
|
|
## Breaking changes
|
|
|
|
- Removal of PostgreSQL 11 support
|
|
|
|
As announced in the [2023.5](./v2023.5.md) release notes (and postponed by a release), this release requires PostgreSQL 12 or newer. This is due to a changed requirement in a framework we use, Django.
|
|
|
|
This does not affect docker-compose installations (as these already ship with PostgreSQL 12), however it is still recommended to upgrade to a newer version when convenient.
|
|
|
|
For Kubernetes install, a manual one-time migration has to be done: [Upgrading PostgreSQL on Kubernetes](../../troubleshooting/postgres/upgrade_kubernetes.md)
|
|
|
|
## New features
|
|
|
|
## Upgrading
|
|
|
|
This release does not introduce any new requirements.
|
|
|
|
### docker-compose
|
|
|
|
To upgrade, download the new docker-compose file and update the Docker stack with the new version, using these commands:
|
|
|
|
```
|
|
wget -O docker-compose.yml https://goauthentik.io/version/2023.7/docker-compose.yml
|
|
docker-compose up -d
|
|
```
|
|
|
|
The `-O` flag retains the downloaded file's name, overwriting any existing local file with the same name.
|
|
|
|
### Kubernetes
|
|
|
|
Update your values to use the new images:
|
|
|
|
```yaml
|
|
image:
|
|
repository: ghcr.io/goauthentik/server
|
|
tag: 2023.7.0
|
|
```
|
|
|
|
## Minor changes/fixes
|
|
|
|
<!-- _Insert the output of `make gen-changelog` here_ -->
|
|
|
|
## API Changes
|
|
|
|
<!-- _Insert output of `make gen-diff` here_ -->
|