Skip to content

Commit 922a11a

Browse files
authored
feat: oriole beta12 (#1707)
* feat: oriole beta12 * fix: update testing schema * chore: bump versions to release
1 parent 2442765 commit 922a11a

File tree

4 files changed

+11
-11
lines changed

4 files changed

+11
-11
lines changed

ansible/vars.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ postgres_major:
99

1010
# Full version strings for each major version
1111
postgres_release:
12-
postgresorioledb-17: "17.0.1.107-orioledb"
13-
postgres17: "17.4.1.057"
14-
postgres15: "15.8.1.114"
12+
postgresorioledb-17: "17.5.1.001-orioledb"
13+
postgres17: "17.4.1.058"
14+
postgres15: "15.8.1.115"
1515

1616
# Non Postgres Extensions
1717
pgbouncer_release: "1.19.0"

migrations/schema-orioledb-17.sql

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
-- PostgreSQL database dump
33
--
44

5-
-- Dumped from database version 17.0
6-
-- Dumped by pg_dump version 17.0
5+
-- Dumped from database version 17.5
6+
-- Dumped by pg_dump version 17.5
77

88
SET statement_timeout = 0;
99
SET lock_timeout = 0;

nix/config.nix

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,8 @@ in
5252
};
5353
orioledb = {
5454
"17" = {
55-
version = "17_6";
56-
hash = "sha256-HbuTcXNanFOl9YfvlSzQJon8CfAhc8TFwo/y7jXy51w=";
55+
version = "17_11";
56+
hash = "sha256-RZYU955PmGZExfX2JKw1dIQMMuuswtAXpXjZ9CLbOsw=";
5757
};
5858
};
5959
};

nix/ext/orioledb.nix

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,18 +15,18 @@ stdenv.mkDerivation rec {
1515
src = fetchFromGitHub {
1616
owner = "orioledb";
1717
repo = "orioledb";
18-
rev = "beta10";
19-
sha256 = "sha256-O4OTi8ickylVXE9FURm5R++A+l15Z22YLna7OVzVMjc=";
18+
rev = "beta12";
19+
sha256 = "sha256-5dyVdKD1PzW+F5OPW3TR3OKBaJxxR3OhLbzK+o9Wf+Q=";
2020
};
21-
version = "beta10";
21+
version = "beta12";
2222
buildInputs = [
2323
curl
2424
libkrb5
2525
postgresql
2626
python3
2727
openssl
2828
];
29-
buildPhase = "make USE_PGXS=1 ORIOLEDB_PATCHSET_VERSION=6";
29+
buildPhase = "make USE_PGXS=1 ORIOLEDB_PATCHSET_VERSION=11";
3030
installPhase = ''
3131
runHook preInstall
3232

0 commit comments

Comments
 (0)