-
Notifications
You must be signed in to change notification settings - Fork 11
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
Adds PostgreSQL 17 support #1117
Conversation
sedagundogdu
commented
Dec 30, 2024
- Modified Dockerfiles to include PostgreSQL 17 as a supported version for building and testing.
- Ensured that tests run correctly against PostgreSQL 17 environments.
- Removed PostgreSQL 11 from the supported versions due to its end-of-life (EOL)
- Removed support for CentOS 7, Oracle Linux 7 and Ubuntu Kinetic
- Updated packaging scripts to reflect the removal of deprecated PostgreSQL and OS versions.
ci/push_images
Outdated
@@ -4,7 +4,7 @@ | |||
set -euo pipefail | |||
IFS=$'\n\t' | |||
|
|||
pgversions='10 11 12 13 14 15 16' | |||
pgversions='10 11 12 13 14 15 16 17' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please delete 10 and 11 here since their support has been dropped
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fixed
dockerfiles/centos-7-pg16/Dockerfile
Outdated
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please delete all centos-7 and oraclelinux-7 files
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fixed
include: | ||
- TARGET_PLATFORM: debian,buster | ||
# - TARGET_PLATFORM: debian,buster | ||
# removing due to EOL of debian buster |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please delete all comments for dropped os and postgres support
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fixed for all pipelines
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Delete ubuntu-kinetic docker file since we are not supporting this any more
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fixed