Skip to content

Commit e886ba5

Browse files
authored
fledge: CRAN release v1.4.8 (#492)
1 parent 0ca1ecf commit e886ba5

File tree

4 files changed

+7
-139
lines changed

4 files changed

+7
-139
lines changed

DESCRIPTION

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Package: RPostgres
22
Title: C++ Interface to PostgreSQL
3-
Version: 1.4.7.9906
4-
Date: 2025-09-06
3+
Version: 1.4.8
4+
Date: 2025-02-24
55
Authors@R: c(
66
person("Hadley", "Wickham", role = "aut"),
77
person("Jeroen", "Ooms", role = "aut"),

NEWS.md

Lines changed: 3 additions & 135 deletions
Original file line numberDiff line numberDiff line change
@@ -1,146 +1,14 @@
11
<!-- NEWS.md is maintained by https://fledge.cynkra.com, contributors should not edit this file -->
22

3-
# RPostgres 1.4.7.9906 (2025-09-06)
4-
5-
## Continuous integration
6-
7-
- Use reviewdog for external PRs (#517).
8-
9-
10-
# RPostgres 1.4.7.9905 (2025-09-05)
11-
12-
## Chore
13-
14-
- Auto-update from GitHub Actions (#515).
15-
16-
17-
# RPostgres 1.4.7.9904 (2025-08-05)
18-
19-
## Continuous integration
20-
21-
- Cleanup and fix macOS (#512).
22-
23-
24-
# RPostgres 1.4.7.9903 (2025-08-01)
25-
26-
## Continuous integration
27-
28-
- Format with air, check detritus, better handling of `extra-packages` (#510).
29-
30-
31-
# RPostgres 1.4.7.9902 (2025-05-04)
32-
33-
## Continuous integration
34-
35-
- Enhance permissions for workflow (#506).
36-
37-
38-
# RPostgres 1.4.7.9901 (2025-04-30)
39-
40-
## Continuous integration
41-
42-
- Permissions, better tests for missing suggests, lints (#504).
43-
44-
- Only fail covr builds if token is given (#501).
45-
46-
- Always use `_R_CHECK_FORCE_SUGGESTS_=false` (#500).
47-
48-
- Correct installation of xml2 (#497).
49-
50-
- Explain (#495).
51-
52-
- Add xml2 for covr, print testthat results (#494).
53-
54-
- Sync (#493).
55-
56-
57-
# RPostgres 1.4.7.9900 (2025-02-24)
3+
# RPostgres 1.4.8 (2025-02-25)
584

595
## Windows
606

61-
- Update libpq fallback library (#489).
62-
63-
- Use libpq from Rtools if available (#486).
7+
- Use libpq from Rtools if available (#486), update libpq fallback library (#489).
648

659
## Features
6610

67-
- Importing large objects from client side (@toppyy, #376, #472).
68-
69-
## Chore
70-
71-
- IDE.
72-
73-
- Auto-update from GitHub Actions.
74-
75-
Run: https://github.com/r-dbi/RPostgres/actions/runs/10425486593
76-
77-
Run: https://github.com/r-dbi/RPostgres/actions/runs/10224248168
78-
79-
Run: https://github.com/r-dbi/RPostgres/actions/runs/10200112323
80-
81-
Run: https://github.com/r-dbi/RPostgres/actions/runs/9728443553
82-
83-
Run: https://github.com/r-dbi/RPostgres/actions/runs/9692464325
84-
85-
## Continuous integration
86-
87-
- Test on older Windows versions.
88-
89-
- Avoid failure in fledge workflow if no changes (#479).
90-
91-
- Remove Aviator.
92-
93-
- Fetch tags for fledge workflow to avoid unnecessary NEWS entries (#478).
94-
95-
- Use stable pak (#477).
96-
97-
- Latest changes (#475).
98-
99-
- Import from actions-sync, check carefully (#474).
100-
101-
- Use pkgdown branch (#473).
102-
103-
- ci: Use pkgdown branch
104-
105-
- ci: Updates from duckdb
106-
107-
- ci: Trigger run
108-
109-
- Install via R CMD INSTALL ., not pak (#471).
110-
111-
- ci: Install via R CMD INSTALL ., not pak
112-
113-
- ci: Bump version of upload-artifact action
114-
115-
- Install local package for pkgdown builds.
116-
117-
- Improve support for protected branches with fledge.
118-
119-
- Improve support for protected branches, without fledge.
120-
121-
- Sync with latest developments.
122-
123-
- Use v2 instead of master.
124-
125-
- Inline action.
126-
127-
- Use dev roxygen2 and decor.
128-
129-
- Fix on Windows, tweak lock workflow.
130-
131-
- Avoid checking bashisms on Windows.
132-
133-
- Allow NOTEs on R-devel.
134-
135-
- Better commit message.
136-
137-
- Bump versions, better default, consume custom matrix.
138-
139-
- Recent updates.
140-
141-
## Uncategorized
142-
143-
- Merge branch 'cran-1.4.7'.
11+
- New `postgresImportLargeObject()` for importing large objects from client side (@toppyy, #376, #472).
14412

14513

14614
# RPostgres 1.4.7 (2024-05-26)

cran-comments.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
RPostgres 1.4.7.9900
1+
RPostgres 1.4.8
22

33
## Cran Repository Policy
44

vignettes/work-queue.Rmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ One lucky worker will get a row back, but thanks to ``FOR UPDATE``, the row is n
124124
For any other worker, as the row is now locked, they will skip over it (``SKIP LOCKED``) and find something else to do.
125125
If there are no other jobs available, then nothing will be returned.
126126

127-
Using SKIP LOCKED is discussed in more detail [in this article](https://www.2ndquadrant.com/en/blog/what-is-select-skip-locked-for-in-postgresql-9-5/).
127+
Using SKIP LOCKED is discussed in more detail [in this article](https://www.enterprisedb.com/en/blog/what-is-select-skip-locked-for-in-postgresql-9-5/).
128128

129129
```{r, echo = FALSE}
130130
if (!is.null(rs)) {

0 commit comments

Comments
 (0)