Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
af3f659
chore: update (and refactor) flake inputs
jfroche Jul 7, 2025
0af3725
chore: replace (deprecated) `substituteAll` by `replaceVars`
jfroche Jul 7, 2025
9ec61f2
chore: fix missing required `teams` meta attribute
jfroche Jul 7, 2025
130c43a
chore: update old (unsupported) version of nix used in script
jfroche Jul 7, 2025
67eb512
fix: overlay and use our `buildPgrxExtension` function
jfroche Jul 7, 2025
3a74543
chore: `v8` has been removed from nixpkgs and replaced with `nodejs.l…
jfroche Jul 7, 2025
2c2275e
chore: fix formatting
jfroche Jul 7, 2025
054e04a
chore: bump `pgrouting` version to 3.8.0
yvan-sraka Jul 11, 2025
1a0f562
Backport tzdata fixes for postgresql 15
jfroche Jul 18, 2025
c46a856
fix: plv8 3.1 requires older v8
jfroche Jul 21, 2025
89e43e7
chore: remove deprecated appl_sdk frameworks
jfroche Jul 21, 2025
9500dc6
chore: update cargo-pgrx 1.14.3 cargo hash
jfroche Jul 21, 2025
72075b2
chore(postgresql): add isOrioleDB condition
jfroche Jul 21, 2025
89f4284
Fix pgregress tests
jfroche Jul 21, 2025
db3bebc
fix: update schema for dbmate schema_migrations table
jfroche Jul 22, 2025
2431cf0
chore: update nixpkgs flake inputs
jfroche Aug 10, 2025
4847ada
chore: update fmt
jfroche Aug 10, 2025
17b218c
Structured attributes are now required when building with separateDeb…
jfroche Aug 11, 2025
4ef18e3
fix: pgroonga should test for all version
samrose Aug 21, 2025
6ad6a22
chore: version bump
samrose Sep 2, 2025
fbe8630
fix: rebase on develop and fix code api changes from nixpkgs
samrose Sep 9, 2025
f442862
chore: bump to test
samrose Sep 10, 2025
f59927a
tests: try to get passing tests
samrose Sep 10, 2025
caed707
feat: pin icu75 for postgres build to maintain compat with existing
samrose Sep 11, 2025
e840226
chore: remove commented out code not needed in latest changes to pg
samrose Sep 11, 2025
21a8f63
chore: version bump to test
samrose Sep 11, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions ansible/vars.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ postgres_major:

# Full version strings for each major version
postgres_release:
postgresorioledb-17: "17.5.1.026-orioledb"
postgres17: "17.6.1.005"
postgres15: "15.14.1.005"
postgresorioledb-17: "17.5.1.024-orioledb-nixpkgs-4"
postgres17: "17.6.1.003-nixpkgs-4"
postgres15: "15.14.1.003-nixpkgs-4"

# Non Postgres Extensions
pgbouncer_release: "1.19.0"
Expand Down
226 changes: 48 additions & 178 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

38 changes: 28 additions & 10 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,36 @@
description = "Prototype tooling for deploying PostgreSQL";

inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixpkgs-unstable";
flake-utils.url = "github:numtide/flake-utils";
nix2container.url = "github:nlewo/nix2container";
nix-editor.url = "github:snowfallorg/nix-editor";
rust-overlay.url = "github:oxalica/rust-overlay";
nix-fast-build.url = "github:Mic92/nix-fast-build";
nixpkgs.url = "https://channels.nixos.org/nixos-unstable/nixexprs.tar.xz";
flake-parts.url = "github:hercules-ci/flake-parts";
treefmt-nix.url = "github:numtide/treefmt-nix";
treefmt-nix.inputs.nixpkgs.follows = "nixpkgs";
git-hooks.url = "github:cachix/git-hooks.nix";
git-hooks.inputs.nixpkgs.follows = "nixpkgs";
nixpkgs-go124.url = "github:Nixos/nixpkgs/d2ac4dfa61fba987a84a0a81555da57ae0b9a2b0";
flake-utils.url = "github:numtide/flake-utils";
treefmt-nix = {
url = "github:numtide/treefmt-nix";
inputs.nixpkgs.follows = "nixpkgs";
};
nix-editor = {
url = "github:snowfallorg/nix-editor";
inputs.nixpkgs.follows = "nixpkgs";
};
nix-fast-build = {
url = "github:Mic92/nix-fast-build";
inputs.nixpkgs.follows = "nixpkgs";
inputs.flake-parts.follows = "flake-parts";
inputs.treefmt-nix.follows = "treefmt-nix";
};
nix2container = {
url = "github:nlewo/nix2container";
inputs.nixpkgs.follows = "nixpkgs";
};
rust-overlay = {
url = "github:oxalica/rust-overlay";
inputs.nixpkgs.follows = "nixpkgs";
};
git-hooks = {
url = "github:cachix/git-hooks.nix";
inputs.nixpkgs.follows = "nixpkgs";
};
};

outputs =
Expand Down
2 changes: 1 addition & 1 deletion migrations/schema-15.sql
Original file line number Diff line number Diff line change
Expand Up @@ -703,7 +703,7 @@ COMMENT ON TABLE auth.users IS 'Auth: Stores user login data within a secure sch
--

CREATE TABLE public.schema_migrations (
version character varying(128) NOT NULL
version character varying NOT NULL
);


Expand Down
Loading