Post-release fixes for 2.13.1

Bumping the previous version and adding tests for 2.13.1
This commit is contained in:
Jan Nidzwetzki 2024-01-04 14:49:50 +01:00 committed by Jan Nidzwetzki
parent 202ac8d3a0
commit df7a8fed6f
10 changed files with 16 additions and 16 deletions

View File

@ -2,7 +2,7 @@ name: "Build distribution packages"
"on":
release:
types: [released]
types: [published]
jobs:
update:

View File

@ -4,7 +4,7 @@
`psql` with the `-X` flag to prevent any `.psqlrc` commands from
accidentally triggering the load of a previous DB version.**
## 2.13.1 (2024-01-08)
## 2.13.1 (2024-01-09)
This release contains bug fixes since the 2.13.0 release.
We recommend that you upgrade at the next available opportunity.

View File

@ -17,10 +17,10 @@ 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.12.0-pg13 2.12.1-pg13 2.12.2-pg13 2.13.0-pg13 2.13.1-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.12.0-pg13 2.12.1-pg13 2.12.2-pg13 2.13.0-pg13 2.13.1-pg13

View File

@ -16,10 +16,10 @@ 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.12.0-pg14 2.12.1-pg14 2.12.2-pg14 2.13.0-pg14 2.13.1-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.12.0-pg14 2.12.1-pg14 2.12.2-pg14 2.13.0-pg14 2.13.1-pg14

View File

@ -12,10 +12,10 @@ 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.11.2-pg15 2.12.0-pg15 2.12.1-pg15 2.12.2-pg15 2.13.0-pg15 2.13.1-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.11.2-pg15 2.12.0-pg15 2.12.1-pg15 2.12.2-pg15 2.13.0-pg15 2.13.1-pg15

View File

@ -8,9 +8,9 @@ SCRIPT_DIR=$(dirname $0)
source ${SCRIPT_DIR}/test_functions.inc
run_tests "$@" -v8 \
2.13.0-pg16
2.13.0-pg16 2.13.1-pg16
# Run repair tests for >=2.10.x versions due to PR #5441
run_tests "$@" -r -v8 \
2.13.0-pg16
2.13.0-pg16 2.13.1-pg16

View File

@ -79,7 +79,8 @@ set(OLD_REV_FILES
2.12.0--2.11.2.sql
2.12.1--2.12.0.sql
2.12.2--2.12.1.sql
2.13.0--2.12.2.sql)
2.13.0--2.12.2.sql
2.13.1--2.13.0.sql)
set(MODULE_PATHNAME "$libdir/timescaledb-${PROJECT_VERSION_MOD}")
set(LOADER_PATHNAME "$libdir/timescaledb")

View File

@ -0,0 +1,3 @@
-- Manually drop the following functions / procedures since 'OR REPLACE' is missing in 2.13.0
DROP PROCEDURE IF EXISTS _timescaledb_functions.repair_relation_acls();
DROP FUNCTION IF EXISTS _timescaledb_functions.makeaclitem(regrole, regrole, text, bool);

View File

@ -1,7 +1,3 @@
-- Manually drop the following functions / procedures since 'OR REPLACE' is missing in 2.13.0
DROP PROCEDURE IF EXISTS _timescaledb_functions.repair_relation_acls();
DROP FUNCTION IF EXISTS _timescaledb_functions.makeaclitem(regrole, regrole, text, bool);
CREATE FUNCTION _timescaledb_functions.ping_data_node(node_name NAME, timeout INTERVAL = NULL) RETURNS BOOLEAN
AS '@MODULE_PATHNAME@', 'ts_data_node_ping' LANGUAGE C VOLATILE;

View File

@ -1,3 +1,3 @@
version = 2.14.0-dev
update_from_version = 2.13.1
downgrade_to_version = 2.13.0
downgrade_to_version = 2.13.1