Compare commits

...

4 Commits

Author SHA1 Message Date
7e05333158 Add renovate.json 2026-03-10 18:01:12 +00:00
68e529d369 add postgres collation version mismatch fix function 2026-02-20 14:24:08 +01:00
92d0b679a4 chore: publish 2.17.0+1.5.0 release 2026-02-15 18:34:38 +00:00
9d479d6088 chore: publish 2.16.0+1.4.0 release 2026-02-08 18:29:50 +00:00
4 changed files with 16 additions and 2 deletions

View File

@ -98,3 +98,10 @@ delete_duplicate_users() {
delete_user_by_id "$USERID_OLD" "$USERID_NEW"
done
}
fix_collation_mismatch() {
psql -U ${POSTGRES_USER} -d outline -c "ALTER DATABASE outline REFRESH COLLATION VERSION;"
psql -U ${POSTGRES_USER} -d outline -c "REINDEX DATABASE outline;"
psql -U ${POSTGRES_USER} -d postgres -c "ALTER DATABASE postgres REFRESH COLLATION VERSION;"
psql -U ${POSTGRES_USER} -d postgres -c "REINDEX DATABASE postgres;"
}

View File

@ -6,7 +6,7 @@ services:
networks:
- backend
- proxy
image: outlinewiki/outline:1.3.0
image: outlinewiki/outline:1.5.0
secrets:
- db_password
- secret_key
@ -34,7 +34,7 @@ services:
- "traefik.http.routers.${STACK_NAME}.rule=Host(`${DOMAIN}`${EXTRA_DOMAINS})"
- "traefik.http.routers.${STACK_NAME}.entrypoints=web-secure"
- "traefik.http.routers.${STACK_NAME}.tls.certresolver=${LETS_ENCRYPT_ENV}"
- "coop-cloud.${STACK_NAME}.version=2.15.1+1.3.0"
- "coop-cloud.${STACK_NAME}.version=2.17.0+1.5.0"
# Redirect from EXTRA_DOMAINS to DOMAIN
- "traefik.http.routers.${STACK_NAME}.middlewares=${STACK_NAME}-redirect"
- "traefik.http.middlewares.${STACK_NAME}-redirect.headers.SSLForceHost=true"

1
release/2.17.0+1.5.0 Normal file
View File

@ -0,0 +1 @@
y

6
renovate.json Normal file
View File

@ -0,0 +1,6 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:recommended"
]
}