mirror of
https://github.com/timescale/timescaledb.git
synced 2025-05-14 17:43:34 +08:00
Post-release fixes for 2.13.1
Bumping the previous version and adding tests for 2.13.1
This commit is contained in:
parent
202ac8d3a0
commit
df7a8fed6f
2
.github/workflows/release_build_packages.yml
vendored
2
.github/workflows/release_build_packages.yml
vendored
@ -2,7 +2,7 @@ name: "Build distribution packages"
|
||||
|
||||
"on":
|
||||
release:
|
||||
types: [released]
|
||||
types: [published]
|
||||
|
||||
jobs:
|
||||
update:
|
||||
|
@ -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.
|
||||
|
@ -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
|
||||
|
||||
|
@ -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
|
||||
|
||||
|
@ -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
|
||||
|
||||
|
@ -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
|
||||
|
||||
|
@ -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")
|
||||
|
3
sql/updates/2.13.1--2.13.0.sql
Normal file
3
sql/updates/2.13.1--2.13.0.sql
Normal 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);
|
@ -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;
|
||||
|
||||
|
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user