Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prepare pgrx 0.11.3 #1496

Merged
merged 23 commits into from
Jan 25, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
2a81e26
add bindings for `pg_foreign_data_wrapper.h`
burmecia Dec 12, 2023
82b914b
make CI work
eeeebbbbrrrr Dec 16, 2023
c7fe6ce
Include rule utils header (#1431)
daamien Dec 16, 2023
b96204f
expand readme (#1433)
Lokathor Dec 16, 2023
d97f7fe
fix issue #1437 (#1440)
eeeebbbbrrrr Dec 16, 2023
b98d909
add bindings for` libpq/pqformat.h` (#1436)
usamoi Dec 16, 2023
d2f634b
Allow to build cargo-pgrx either with rustls (default) or native-tls …
jirutka Dec 27, 2023
3d349ce
Use native-certs with ureq (#1449)
workingjubilee Dec 27, 2023
281ab4f
Alpine should not need tar (#1450)
workingjubilee Dec 28, 2023
bc795ff
Add regproc.h (#1453)
workingjubilee Dec 28, 2023
411ce80
use the full `cargo` version string in the version match check. (#1443)
Lokathor Dec 29, 2023
4fce3b9
Remove unused attrs on `Pg_magic_func` (#1460)
workingjubilee Jan 3, 2024
e0a2370
fix undefined behaviour when loading control file (#1466)
usamoi Jan 8, 2024
8ada4a3
Allow `detail` argument and trailing commas in `ereport!` (#1472)
hoodiecollin Jan 9, 2024
cabfe02
Add bindings for "access/multixact.h" (#1486)
rebasedming Jan 24, 2024
892f0f3
Include varlena functions (#1485)
daamien Jan 24, 2024
3a8960a
Use bindgen 0.69 (#1492)
workingjubilee Jan 24, 2024
561df5e
Document CPU and OS support expectations (#1480)
workingjubilee Jan 24, 2024
867a044
Bump shlex 1.3 to reduce escaping concerns (#1493)
workingjubilee Jan 25, 2024
1188a90
Remove atty (#1494)
workingjubilee Jan 25, 2024
81c3772
Remove busted Will-It-Blend pg11 CI
workingjubilee Jan 25, 2024
544e3ba
install --sudo destination path must exist to be canonicalized (#1352)
levkk Oct 25, 2023
c1bcf74
Prepare pgrx 0.11.3
workingjubilee Jan 25, 2024
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
1 change: 0 additions & 1 deletion .github/docker/Dockerfile.alpine:3.18
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ RUN apk add --no-cache \
make \
musl-dev \
openssl-dev \
tar \
util-linux-dev

# Set up permissions so that the rust user below can create extensions
Expand Down
9 changes: 8 additions & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,8 @@ jobs:

- name: Set up prerequisites and environment
run: |
sudo apt-get update -y -qq --fix-missing

echo ""
echo "----- Install sccache -----"
mkdir -p $HOME/.local/bin
Expand Down Expand Up @@ -277,6 +279,8 @@ jobs:

- name: Set up prerequisites and environment
run: |
sudo apt-get update -y -qq --fix-missing

echo ""

echo "----- Install / Set up sccache -----"
Expand Down Expand Up @@ -402,9 +406,12 @@ jobs:
- name: Workaround GitHub Actions Python issues
run: brew unlink python && brew link --overwrite python

# install postgres with homebrew, but do't let homebrew do an update too. The update
# process not only takes forever, but it tends to fail when the internet changes
# https://github.com/Homebrew/brew/issues/1670#issuecomment-267096602
- name: brew install postgresql
run: |
brew install ${FORMULA}
HOMEBREW_NO_AUTO_UPDATE=1 HOMEBREW_NO_INSTALLED_DEPENDENTS_CHECK=1 brew install ${FORMULA}

echo "$(brew --prefix ${FORMULA})/bin" >> $GITHUB_PATH
env:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/will-it-blend-develop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
strategy:
fail-fast: false # We want all of them to run, even if one fails
matrix:
pg_version: ["pg11", "pg12", "pg13", "pg14", "pg15"]
pg_version: ["pg12", "pg13", "pg14", "pg15"]
container: ["fedora", "debian:bullseye", "alpine:3.18", "amazon:2"]
steps:
- uses: actions/checkout@v3
Expand Down
Loading