Skip to content

Commit 7989c26

Browse files
authored
Merge branch 'mmottl:main' into main
2 parents 1669688 + ff2da4e commit 7989c26

File tree

3 files changed

+13
-1
lines changed

3 files changed

+13
-1
lines changed

.github/workflows/pre-commit.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
---
22
name: pre-commit
3+
permissions:
4+
contents: read
35

46
on:
57
push:
@@ -42,4 +44,6 @@ jobs:
4244
# Run all hooks not already handled by other workflows
4345
- name: Run hooks
4446
run: |
47+
# Formatting already handled by a dedicated hook
48+
SKIP="ocaml-format" \
4549
pre-commit run --all-files --show-diff-on-failure --color=always

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Changelog
22

3+
## [5.3.2] - 2025-09-27
4+
5+
### Fixed
6+
7+
- Enable binary results for parameterless queries by calling `PQsendQueryParams`
8+
when `binary_result` is requested (instead of `PQsendQuery`). Thanks to Alain
9+
Frisch for the patch.
10+
311
## [5.3.1] - 2025-09-23
412

513
### Fixed

dune-project

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
"Postgresql offers library functions for accessing PostgreSQL databases.")
2727
(depends
2828
(ocaml
29-
(>= 4.12))
29+
(>= 5.00))
3030
dune-compiledb
3131
dune-configurator
3232
(conf-postgresql :build)))

0 commit comments

Comments
 (0)