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
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
package_name:
- pg-graphql
pgrx_version:
- 0.12.4
- 0.12.5
postgres: [14, 15, 16, 17]
box:
- { runner: ubuntu-20.04, arch: amd64 }
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
name: tests
on:
pull_request:
push: { branches: master }
push: { branches: [master] }

jobs:
test:
name: Run tests
strategy:
matrix:
postgres: [14, 15, 16]
postgres: [14, 15, 16, 17]
runs-on: ubuntu-latest
steps:
- name: Checkout code
Expand Down
29 changes: 15 additions & 14 deletions Cargo.lock

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

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ pg17 = ["pgrx/pg17", "pgrx-tests/pg17"]
pg_test = []

[dependencies]
pgrx = "=0.12.4"
pgrx = "=0.12.5"
graphql-parser = "0.4"
serde = { version = "1.0", features = ["rc"] }
serde_json = "1.0"
Expand All @@ -35,7 +35,7 @@ bimap = { version = "0.6.3", features = ["serde"] }
indexmap = "2.2"

[dev-dependencies]
pgrx-tests = "=0.12.4"
pgrx-tests = "=0.12.5"

[profile.dev]
panic = "unwind"
Expand Down
2 changes: 1 addition & 1 deletion dockerfiles/db/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ RUN \
cargo --version

# PGRX
RUN cargo install cargo-pgrx --version 0.12.4 --locked
RUN cargo install cargo-pgrx --version 0.12.5 --locked

RUN cargo pgrx init --pg${PG_MAJOR} $(which pg_config)

Expand Down
Loading