mirror of
https://github.com/matrix-org/dendrite
synced 2024-11-04 15:08:59 +01:00
ad3a3e7bed
This change introduces a major Postgresql upgrade (from 15.1.0 to 16.1.0). From https://artifacthub.io/packages/helm/bitnami/postgresql/13.2.24#to-13-0-0: This major version changes the default PostgreSQL image from 15.x to 16.x. Follow the [official instructions](https://www.postgresql.org/docs/15/upgrading.html) to upgrade to 16.x. ### Pull Request Checklist <!-- Please read https://matrix-org.github.io/dendrite/development/contributing before submitting your pull request --> * [x] I have added Go unit tests or [Complement integration tests](https://github.com/matrix-org/complement) for this PR _or_ I have justified why this PR doesn't need tests * [x] Pull request includes a [sign off below using a legally identifiable name](https://matrix-org.github.io/dendrite/development/contributing#sign-off) _or_ I have already signed off privately This PR doesn't need a Go unit tests since it doesn't touch any code, only the helm chart is affected. Signed-off-by: Varac Anero <varac@varac.net> --------- Signed-off-by: Varac Anero <varac@varac.net> Co-authored-by: Till Faelligen <2353100+S7evinK@users.noreply.github.com> [skip ci]
83 lines
881 B
Text
83 lines
881 B
Text
.*.swp
|
|
|
|
# Hidden files
|
|
.*
|
|
|
|
# Allow GitHub config
|
|
!.github
|
|
|
|
# Downloads
|
|
/.downloads
|
|
|
|
# Compiled Object files, Static and Dynamic libs (Shared Objects)
|
|
*.o
|
|
*.a
|
|
*.so
|
|
|
|
# Folders
|
|
/kafka
|
|
/bin
|
|
/pkg
|
|
/_obj
|
|
/_test
|
|
/vendor/bin
|
|
/docker/build
|
|
/logs
|
|
/jetstream
|
|
|
|
# Architecture specific extensions/prefixes
|
|
*.[568vq]
|
|
[568vq].out
|
|
|
|
*.cgo1.go
|
|
*.cgo2.c
|
|
_cgo_defun.c
|
|
_cgo_gotypes.go
|
|
_cgo_export.*
|
|
|
|
_testmain.go
|
|
|
|
*.exe
|
|
*.test
|
|
*.prof
|
|
*.wasm
|
|
*.aar
|
|
*.jar
|
|
*.framework
|
|
*.xcframework
|
|
|
|
# Generated keys
|
|
*.pem
|
|
*.key
|
|
*.crt
|
|
|
|
# Default configuration file
|
|
dendrite.yaml
|
|
|
|
# Database files
|
|
*.db
|
|
*.db-journal
|
|
|
|
# Log files
|
|
*.log*
|
|
|
|
# Generated code
|
|
cmd/dendrite-demo-yggdrasil/embed/fs*.go
|
|
|
|
# Test dependencies
|
|
test/wasm/node_modules
|
|
|
|
# Ignore complement folder when running locally
|
|
complement/
|
|
|
|
# Stuff from GitHub Pages
|
|
docs/_site
|
|
|
|
media_store/
|
|
build
|
|
|
|
# golang workspaces
|
|
go.work*
|
|
|
|
# helm chart
|
|
helm/dendrite/charts/
|