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

Adding support for postgres 17 #14

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
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
5 changes: 3 additions & 2 deletions src/postgresql-client/devcontainer-feature.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "PostgreSQL Client",
"id": "postgresql-client",
"version": "1.1.0",
"version": "1.2.0",
"description": "PostgreSQL is a powerful, open source object-relational database system that uses and extends the SQL language combined with many features that safely store and scale the most complicated data workloads.",
"options": {
"version": {
Expand All @@ -10,7 +10,8 @@
"13",
"14",
"15",
"16"
"16",
"17"
],
"default": "13",
"description": "Select the major version of postgres"
Expand Down
4 changes: 2 additions & 2 deletions src/postgresql-client/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

# Maintainer: John Rowley

TARGET_POSTGRESQL_VERSION="${VERSION:-"14"}"
TARGET_POSTGRESQL_VERSION="${VERSION:-"13"}"

set -e

Expand Down Expand Up @@ -90,4 +90,4 @@ apt-get -y install postgresql-client-${TARGET_POSTGRESQL_VERSION}
# Clean up
rm -rf /var/lib/apt/lists/*

echo "Done!"
echo "Done!"