Skip to content

Commit

Permalink
2.14.2 post release
Browse files Browse the repository at this point in the history
Add 2.14.2 to update tests and adjust version configuration
  • Loading branch information
svenklemm committed Feb 20, 2024
1 parent d0e07a4 commit a058950
Show file tree
Hide file tree
Showing 7 changed files with 17 additions and 13 deletions.
6 changes: 4 additions & 2 deletions scripts/test_updates_pg13.sh
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,12 @@ run_tests "$@" -v8 \

run_tests "$@" -v8 \
2.10.0-pg13 2.10.1-pg13 2.10.2-pg13 2.10.3-pg13 2.11.0-pg13 2.11.1-pg13 2.11.2-pg13 \
2.12.0-pg13 2.12.1-pg13 2.12.2-pg13 2.13.0-pg13 2.13.1-pg13 2.14.0-pg13
2.12.0-pg13 2.12.1-pg13 2.12.2-pg13 2.13.0-pg13 2.13.1-pg13 2.14.0-pg13 2.14.1-pg13 \
2.14.2-pg13

# Run repair tests for >= 2.10.x versions due to PR #5441
run_tests "$@" -r -v8 \
2.10.0-pg13 2.10.1-pg13 2.10.2-pg13 2.10.3-pg13 2.11.0-pg13 2.11.1-pg13 2.11.2-pg13 \
2.12.0-pg13 2.12.1-pg13 2.12.2-pg13 2.13.0-pg13 2.13.1-pg13 2.14.0-pg13 2.14.1-pg13
2.12.0-pg13 2.12.1-pg13 2.12.2-pg13 2.13.0-pg13 2.13.1-pg13 2.14.0-pg13 2.14.1-pg13 \
2.14.2-pg13

6 changes: 4 additions & 2 deletions scripts/test_updates_pg14.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,12 @@ run_tests "$@" -v8 \

run_tests "$@" -v8 \
2.10.0-pg14 2.10.1-pg14 2.10.2-pg14 2.10.3-pg14 2.11.0-pg14 2.11.1-pg14 2.11.2-pg14 \
2.12.0-pg14 2.12.1-pg14 2.12.2-pg14 2.13.0-pg14 2.13.1-pg14 2.14.0-pg14
2.12.0-pg14 2.12.1-pg14 2.12.2-pg14 2.13.0-pg14 2.13.1-pg14 2.14.0-pg14 2.14.1-pg14 \
2.14.2-pg14

# Run repair tests for >=2.10.x versions due to PR #5441
run_tests "$@" -r -v8 \
2.10.0-pg14 2.10.1-pg14 2.10.2-pg14 2.10.3-pg14 2.11.0-pg14 2.11.1-pg14 2.11.2-pg14 \
2.12.0-pg14 2.12.1-pg14 2.12.2-pg14 2.13.0-pg14 2.13.1-pg14 2.14.0-pg14 2.14.1-pg14
2.12.0-pg14 2.12.1-pg14 2.12.2-pg14 2.13.0-pg14 2.13.1-pg14 2.14.0-pg14 2.14.1-pg14 \
2.14.2-pg14

4 changes: 2 additions & 2 deletions scripts/test_updates_pg15.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@ run_tests "$@" -v8 \
run_tests "$@" -v8 \
2.10.0-pg15 2.10.1-pg15 2.10.2-pg15 2.10.3-pg15 2.11.0-pg15 2.11.1-pg15 \
2.11.2-pg15 2.12.0-pg15 2.12.1-pg15 2.12.2-pg15 2.13.0-pg15 2.13.1-pg15 \
2.14.0-pg15
2.14.0-pg15 2.14.1-pg15 2.14.2-pg15

# Run repair tests for >=2.10.x versions due to PR #5441
run_tests "$@" -r -v8 \
2.10.0-pg15 2.10.1-pg15 2.10.2-pg15 2.10.3-pg15 2.11.0-pg15 2.11.1-pg15 \
2.11.2-pg15 2.12.0-pg15 2.12.1-pg15 2.12.2-pg15 2.13.0-pg15 2.13.1-pg15 \
2.14.0-pg15 2.14.1-pg15
2.14.0-pg15 2.14.1-pg15 2.14.2-pg15

9 changes: 4 additions & 5 deletions scripts/test_updates_pg16.sh
Original file line number Diff line number Diff line change
@@ -1,20 +1,19 @@
#!/usr/bin/env bash

PG_VERSION=${PG_VERSION:-16.2}
set -e

PG_VERSION=${PG_VERSION:-16.2}
export PG_VERSION

set -e

SCRIPT_DIR=$(dirname $0)

# shellcheck source=scripts/test_functions.inc
source ${SCRIPT_DIR}/test_functions.inc

run_tests "$@" -v8 \
2.13.0-pg16 2.13.1-pg16 2.14.0-pg16
2.13.0-pg16 2.13.1-pg16 2.14.0-pg16 2.14.1-pg16 2.14.2-pg16

# Run repair tests for >=2.10.x versions due to PR #5441
run_tests "$@" -r -v8 \
2.13.0-pg16 2.13.1-pg16 2.14.0-pg16 2.14.1-pg16
2.13.0-pg16 2.13.1-pg16 2.14.0-pg16 2.14.1-pg16 2.14.2-pg16

3 changes: 2 additions & 1 deletion sql/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,8 @@ set(OLD_REV_FILES
2.13.0--2.12.2.sql
2.13.1--2.13.0.sql
2.14.0--2.13.1.sql
2.14.1--2.14.0.sql)
2.14.1--2.14.0.sql
2.14.2--2.14.1.sql)

set(MODULE_PATHNAME "$libdir/timescaledb-${PROJECT_VERSION_MOD}")
set(LOADER_PATHNAME "$libdir/timescaledb")
Expand Down
Empty file added sql/updates/2.14.2--2.14.1.sql
Empty file.
2 changes: 1 addition & 1 deletion version.config
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
version = 2.15.0-dev
update_from_version = 2.14.2
downgrade_to_version = 2.14.1
downgrade_to_version = 2.14.2

0 comments on commit a058950

Please sign in to comment.