Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
4 changes: 2 additions & 2 deletions .github/workflows/build-and-test/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,9 @@ inputs:
default: idkit
cargo-pgrx-version:
type: string
default: 0.15.0
default: 0.16.0
decription: |
cargo-pgrx version (ex. '0.15.0')
cargo-pgrx version (ex. '0.16.0')
pgrx-pg-version:
type: string
default: pg17
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/build-rpm/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,9 @@ inputs:
Postgres version (ex. '17.5')
cargo-pgrx-version:
type: string
default: 0.15.0
default: 0.16.0
decription: |
cargo-pgrx version (ex. '0.15.0')
cargo-pgrx version (ex. '0.16.0')
user:
type: string
default: runner
Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ pg_test = []

[dependencies]
getrandom = { version = "0.2" }
pgrx = { version = "=0.15.0" }
pgrx = { version = "=0.16.0" }
chrono = { version = "0.4", default-features = false, features = ["clock"] }
anyhow = { version = "1", default-features = false }
time = { version = "0.3" }
Expand All @@ -47,7 +47,7 @@ xid = { version = "1.1" }
type-safe-id = { version = "0.3.3", default-features = false }

[dev-dependencies]
pgrx-tests = { version = "=0.15.0" }
pgrx-tests = { version = "=0.16.0" }

[profile.dev]
panic = "unwind"
Expand Down
2 changes: 1 addition & 1 deletion Justfile
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ builder_image_name := env_var_or_default("BUILDER_IMAGE_NAME", "ghcr.io/vadoswar
builder_image_tag := env_var_or_default("BUILDER_IMAGE_TAG", "0.1.x")
builder_image_name_full := env_var_or_default("BUILDER_IMAGE_NAME_FULL", builder_image_name + ":" + builder_image_tag)

builder_image_arg_cargo_pgrx_version := env_var_or_default("BUILDER_IMAGE_ARG_CARGO_PGRX_VERSION", "0.15.0")
builder_image_arg_cargo_pgrx_version := env_var_or_default("BUILDER_IMAGE_ARG_CARGO_PGRX_VERSION", "0.16.0")

# Build the docker image used in BUILDER
[group('package')]
Expand Down
2 changes: 1 addition & 1 deletion infra/docker/base-pkg-alpine3.21.3-amd64.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ RUN cargo install just cargo-get

# Install pgrx
# (disabling the static C runtime is required since pgrx requires dynamic linking w/ libssl and libcrypto)
RUN RUSTFLAGS="-Ctarget-feature=-crt-static" cargo install --locked cargo-pgrx@0.15.0
RUN RUSTFLAGS="-Ctarget-feature=-crt-static" cargo install --locked cargo-pgrx@0.16.0

# Copy in pg_idkit code
WORKDIR /pg_idkit
Expand Down
2 changes: 1 addition & 1 deletion infra/docker/builder-gnu.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# rust:1.85.1-slim-bullseye as of 2025/03/27
FROM rust:1.85.1-slim-bullseye@sha256:1eca9af45f393ac4669b9b63659529638359575f6268cbd4e6543ddc46c53803

ARG CARGO_PGRX_VERSION=0.15.0
ARG CARGO_PGRX_VERSION=0.16.0
ENV CARGO_PGRX_VERSION=${CARGO_PGRX_VERSION}

# Install deps
Expand Down
2 changes: 1 addition & 1 deletion infra/docker/builder-musl.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# rust:1.85.1-alpine3.21 as of 2025/03/31
FROM rust:1.85.1-alpine3.21@sha256:4333721398de61f53ccbe53b0b855bcc4bb49e55828e8f652d7a8ac33dd0c118

ARG CARGO_PGRX_VERSION=0.15.0
ARG CARGO_PGRX_VERSION=0.16.0
ENV CARGO_PGRX_VERSION=${CARGO_PGRX_VERSION}

RUN apk add --no-cache musl-dev openssl-dev perl make
Expand Down
Loading