Skip to content

Commit 3e39452

Browse files
committed
fix(deps): update barman to 3.13.3
Update Barman to 3.13.3, avoiding updating it if there is a new release. Signed-off-by: Francesco Canovai <francesco.canovai@enterprisedb.com>
1 parent 19cc7af commit 3e39452

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

lib/repo_funcs.sh

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,8 @@ fetch_postgres_image_version() {
3232
# Get the latest Barman version
3333
latest_barman_version=
3434
_raw_get_latest_barman_version() {
35-
curl -s https://pypi.org/pypi/barman/json | jq -r '.releases | keys[]' | sort -Vr | head -n1
35+
# curl -s https://pypi.org/pypi/barman/json | jq -r '.releases | keys[]' | sort -Vr | head -n1
36+
echo "3.13.3"
3637
}
3738
get_latest_barman_version() {
3839
if [ -z "$latest_barman_version" ]; then
@@ -166,6 +167,7 @@ update_requirements() {
166167
barmanVersion=$(get_latest_barman_version)
167168
# If there's a new version we need to recreate the requirements files
168169
echo "barman[cloud,azure,snappy,google,zstandard,lz4] == $barmanVersion" > requirements.in
170+
echo "boto3 == 1.35.99" >> requirements.in
169171

170172
# This will take the requirements.in file and generate a file
171173
# requirements.txt with the hashes for the required packages

0 commit comments

Comments
 (0)