Skip to content

Commit 6fe3202

Browse files
author
Bitnami Bot
authored
[bitnami/pgpool] Release pgpool-4.6.0-debian-12-r0 (#78403)
Signed-off-by: Bitnami Bot <bitnami-bot@vmware.com>
1 parent 0502454 commit 6fe3202

File tree

4 files changed

+49
-17
lines changed

4 files changed

+49
-17
lines changed

bitnami/pgpool/4/debian-12/Dockerfile

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,15 @@ ARG TARGETARCH
88

99
LABEL com.vmware.cp.artifact.flavor="sha256:c50c90cfd9d12b445b011e6ad529f1ad3daea45c26d20b00732fae3cd71f6a83" \
1010
org.opencontainers.image.base.name="docker.io/bitnami/minideb:bookworm" \
11-
org.opencontainers.image.created="2025-02-20T15:23:48Z" \
11+
org.opencontainers.image.created="2025-02-28T02:35:36Z" \
1212
org.opencontainers.image.description="Application packaged by Broadcom, Inc." \
1313
org.opencontainers.image.documentation="https://github.com/bitnami/containers/tree/main/bitnami/pgpool/README.md" \
1414
org.opencontainers.image.licenses="Apache-2.0" \
15-
org.opencontainers.image.ref.name="4.5.5-debian-12-r6" \
15+
org.opencontainers.image.ref.name="4.6.0-debian-12-r0" \
1616
org.opencontainers.image.source="https://github.com/bitnami/containers/tree/main/bitnami/pgpool" \
1717
org.opencontainers.image.title="pgpool" \
1818
org.opencontainers.image.vendor="Broadcom, Inc." \
19-
org.opencontainers.image.version="4.5.5"
19+
org.opencontainers.image.version="4.6.0"
2020

2121
ENV HOME="/" \
2222
OS_ARCH="${TARGETARCH:-amd64}" \
@@ -30,8 +30,8 @@ RUN install_packages ca-certificates curl ldap-utils libaudit1 libbsd0 libcap-ng
3030
RUN mkdir -p /tmp/bitnami/pkg/cache/ ; cd /tmp/bitnami/pkg/cache/ ; \
3131
COMPONENTS=( \
3232
"wait-for-port-1.0.8-13-linux-${OS_ARCH}-debian-12" \
33-
"postgresql-client-17.3.0-1-linux-${OS_ARCH}-debian-12" \
34-
"pgpool-4.5.5-1-linux-${OS_ARCH}-debian-12" \
33+
"postgresql-client-17.4.0-0-linux-${OS_ARCH}-debian-12" \
34+
"pgpool-4.6.0-0-linux-${OS_ARCH}-debian-12" \
3535
) ; \
3636
for COMPONENT in "${COMPONENTS[@]}"; do \
3737
if [ ! -f "${COMPONENT}.tar.gz" ]; then \
@@ -50,7 +50,7 @@ RUN find / -perm /6000 -type f -exec chmod a-s {} \; || true
5050

5151
COPY rootfs /
5252
RUN /opt/bitnami/scripts/pgpool/postunpack.sh
53-
ENV APP_VERSION="4.5.5" \
53+
ENV APP_VERSION="4.6.0" \
5454
BITNAMI_APP_NAME="pgpool" \
5555
LD_LIBRARY_PATH="/opt/bitnami/common/lib:/opt/bitnami/common/lib64:$LD_LIBRARY_PATH" \
5656
PATH="/opt/bitnami/common/bin:/opt/bitnami/postgresql/bin:/opt/bitnami/common/sbin:/opt/bitnami/pgpool/bin:$PATH"

bitnami/pgpool/4/debian-12/prebuildfs/opt/bitnami/.bitnami_components.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@
33
"arch": "amd64",
44
"distro": "debian-12",
55
"type": "NAMI",
6-
"version": "4.5.5-1"
6+
"version": "4.6.0-0"
77
},
88
"postgresql-client": {
99
"arch": "amd64",
1010
"distro": "debian-12",
1111
"type": "NAMI",
12-
"version": "17.3.0-1"
12+
"version": "17.4.0-0"
1313
},
1414
"wait-for-port": {
1515
"arch": "amd64",

bitnami/pgpool/4/debian-12/prebuildfs/opt/bitnami/scripts/liblog.sh

Lines changed: 40 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,14 @@ stderr_print() {
3939
# None
4040
#########################
4141
log() {
42-
stderr_print "${CYAN}${MODULE:-} ${MAGENTA}$(date "+%T.%2N ")${RESET}${*}"
42+
local color_bool="${BITNAMI_COLOR:-true}"
43+
# comparison is performed without regard to the case of alphabetic characters
44+
shopt -s nocasematch
45+
if [[ "$color_bool" = 1 || "$color_bool" =~ ^(yes|true)$ ]]; then
46+
stderr_print "${CYAN}${MODULE:-} ${MAGENTA}$(date "+%T.%2N ")${RESET}${*}"
47+
else
48+
stderr_print "${MODULE:-} $(date "+%T.%2N ")${*}"
49+
fi
4350
}
4451
########################
4552
# Log an 'info' message
@@ -49,7 +56,14 @@ log() {
4956
# None
5057
#########################
5158
info() {
52-
log "${GREEN}INFO ${RESET} ==> ${*}"
59+
local msg_color=""
60+
local color_bool="${BITNAMI_COLOR:-true}"
61+
# comparison is performed without regard to the case of alphabetic characters
62+
shopt -s nocasematch
63+
if [[ "$color_bool" = 1 || "$color_bool" =~ ^(yes|true)$ ]];then
64+
msg_color="$GREEN"
65+
fi
66+
log "${msg_color}INFO ${RESET} ==> ${*}"
5367
}
5468
########################
5569
# Log message
@@ -59,7 +73,14 @@ info() {
5973
# None
6074
#########################
6175
warn() {
62-
log "${YELLOW}WARN ${RESET} ==> ${*}"
76+
local msg_color=""
77+
local color_bool="${BITNAMI_COLOR:-true}"
78+
# comparison is performed without regard to the case of alphabetic characters
79+
shopt -s nocasematch
80+
if [[ "$color_bool" = 1 || "$color_bool" =~ ^(yes|true)$ ]];then
81+
msg_color="$YELLOW"
82+
fi
83+
log "${msg_color}WARN ${RESET} ==> ${*}"
6384
}
6485
########################
6586
# Log an 'error' message
@@ -69,7 +90,14 @@ warn() {
6990
# None
7091
#########################
7192
error() {
72-
log "${RED}ERROR${RESET} ==> ${*}"
93+
local msg_color=""
94+
local color_bool="${BITNAMI_COLOR:-true}"
95+
# comparison is performed without regard to the case of alphabetic characters
96+
shopt -s nocasematch
97+
if [[ "$color_bool" = 1 || "$color_bool" =~ ^(yes|true)$ ]];then
98+
msg_color="$RED"
99+
fi
100+
log "${msg_color}ERROR${RESET} ==> ${*}"
73101
}
74102
########################
75103
# Log a 'debug' message
@@ -81,12 +109,16 @@ error() {
81109
# None
82110
#########################
83111
debug() {
84-
# 'is_boolean_yes' is defined in libvalidations.sh, but depends on this file so we cannot source it
85-
local bool="${BITNAMI_DEBUG:-false}"
112+
local msg_color=""
113+
local color_bool="${BITNAMI_COLOR:-true}"
86114
# comparison is performed without regard to the case of alphabetic characters
87115
shopt -s nocasematch
88-
if [[ "$bool" = 1 || "$bool" =~ ^(yes|true)$ ]]; then
89-
log "${MAGENTA}DEBUG${RESET} ==> ${*}"
116+
if [[ "$color_bool" = 1 || "$color_bool" =~ ^(yes|true)$ ]] ;then
117+
msg_color="$MAGENTA"
118+
fi
119+
local debug_bool="${BITNAMI_DEBUG:-false}"
120+
if [[ "$debug_bool" = 1 || "$debug_bool" =~ ^(yes|true)$ ]]; then
121+
log "${msg_color}DEBUG${RESET} ==> ${*}"
90122
fi
91123
}
92124

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
rolling-tags:
22
- "4"
33
- 4-debian-12
4-
- 4.5.5
4+
- 4.6.0
55
- latest

0 commit comments

Comments
 (0)