mirror of
https://github.com/timescale/timescaledb.git
synced 2025-05-16 02:23:49 +08:00
Post release 2.5.0
Add 2.5.0 to update test scripts for PG12 and PG13 and create update test script for PG14. Fix missing CHANGELOG thanks for external contributors.
This commit is contained in:
parent
8925dd8e15
commit
df7f058ad1
8
.github/workflows/update-test.yaml
vendored
8
.github/workflows/update-test.yaml
vendored
@ -13,12 +13,14 @@ jobs:
|
||||
runs-on: 'ubuntu-latest'
|
||||
strategy:
|
||||
matrix:
|
||||
pg: ["12.8","13.4"]
|
||||
pg: ["12.8", "13.4", "14.0"]
|
||||
include:
|
||||
- pg: 12.8
|
||||
pg_major: 12
|
||||
- pg: 13.4
|
||||
pg_major: 13
|
||||
- pg: 14.0
|
||||
pg_major: 14
|
||||
fail-fast: false
|
||||
env:
|
||||
PG_VERSION: ${{ matrix.pg }}
|
||||
@ -48,12 +50,14 @@ jobs:
|
||||
runs-on: 'ubuntu-latest'
|
||||
strategy:
|
||||
matrix:
|
||||
pg: ["12.8","13.4"]
|
||||
pg: ["12.8", "13.4", "14.0"]
|
||||
include:
|
||||
- pg: 12.8
|
||||
pg_major: 12
|
||||
- pg: 13.4
|
||||
pg_major: 13
|
||||
- pg: 14.0
|
||||
pg_major: 14
|
||||
fail-fast: false
|
||||
env:
|
||||
PG_VERSION: ${{ matrix.pg }}
|
||||
|
@ -54,6 +54,7 @@ This release also includes several bug fixes.
|
||||
* @phemmer for reporting the issues on multinode with aggregate queries and evaluation of now()
|
||||
* @abolognino for reporting an issue with INSERTs into compressed hypertables that have cagg
|
||||
* @tanglebones for reporting the ANALYZE crash with custom types on multinode
|
||||
* @amadeubarbosa and @felipenogueirajack for reporting crash using JSONB column in compressed chunks
|
||||
|
||||
## 2.4.2 (2021-09-21)
|
||||
|
||||
|
@ -17,4 +17,5 @@ run_tests "$@" -r -v7 \
|
||||
2.0.0-rc1-pg12
|
||||
run_tests "$@" -v7 \
|
||||
2.0.0-rc2-pg12 2.0.0-rc3-pg12 2.0.0-rc4-pg12 2.0.0-pg12 2.0.1-pg12 2.0.2-pg12 2.1.0-pg12 \
|
||||
2.1.1-pg12 2.2.0-pg12 2.2.1-pg12 2.3.0-pg12 2.3.1-pg12 2.4.0-pg12 2.4.1-pg12 2.4.2-pg12
|
||||
2.1.1-pg12 2.2.0-pg12 2.2.1-pg12 2.3.0-pg12 2.3.1-pg12 2.4.0-pg12 2.4.1-pg12 2.4.2-pg12 \
|
||||
2.5.0-pg12
|
||||
|
@ -8,4 +8,4 @@ source ${SCRIPT_DIR}/test_functions.inc
|
||||
|
||||
run_tests -v7 \
|
||||
2.1.0-pg13 2.1.1-pg13 2.2.0-pg13 2.2.1-pg13 2.3.0-pg13 2.3.1-pg13 \
|
||||
2.4.0-pg13 2.4.1-pg13 2.4.2-pg13
|
||||
2.4.0-pg13 2.4.1-pg13 2.4.2-pg13 2.5.0-pg13
|
||||
|
10
scripts/test_updates_pg14.sh
Executable file
10
scripts/test_updates_pg14.sh
Executable file
@ -0,0 +1,10 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
set -e
|
||||
|
||||
SCRIPT_DIR=$(dirname $0)
|
||||
|
||||
source ${SCRIPT_DIR}/test_functions.inc
|
||||
|
||||
run_tests -v7 \
|
||||
2.5.0-pg14
|
@ -34,12 +34,12 @@ set(MOD_FILES
|
||||
|
||||
# The downgrade file to generate a downgrade script for the current version, as
|
||||
# specified in version.config
|
||||
set(CURRENT_REV_FILE 2.5.0--2.4.2.sql)
|
||||
set(CURRENT_REV_FILE reverse-dev.sql)
|
||||
# Files for generating old downgrade scripts. This should only include files for
|
||||
# downgrade to from one version to its previous version since we do not support
|
||||
# skipping versions when downgrading.
|
||||
set(OLD_REV_FILES 2.3.1--2.3.0.sql 2.4.0--2.3.1.sql 2.4.1--2.4.0.sql
|
||||
2.4.2--2.4.1.sql)
|
||||
2.4.2--2.4.1.sql 2.5.0--2.4.2.sql)
|
||||
|
||||
set(MODULE_PATHNAME "$libdir/timescaledb-${PROJECT_VERSION_MOD}")
|
||||
set(LOADER_PATHNAME "$libdir/timescaledb")
|
||||
|
@ -1,3 +1,3 @@
|
||||
version = 2.5.0-dev
|
||||
version = 2.6.0-dev
|
||||
update_from_version = 2.5.0
|
||||
downgrade_to_version = 2.4.2
|
||||
downgrade_to_version = 2.5.0
|
||||
|
Loading…
x
Reference in New Issue
Block a user