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

fledge: CRAN release v1.4.8 #492

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
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 DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package: RPostgres
Title: C++ Interface to PostgreSQL
Version: 1.4.7.9900
Version: 1.4.8
Date: 2025-02-24
Authors@R: c(
person("Hadley", "Wickham", role = "aut"),
Expand Down
84 changes: 3 additions & 81 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,92 +1,14 @@
<!-- NEWS.md is maintained by https://fledge.cynkra.com, contributors should not edit this file -->

# RPostgres 1.4.7.9900 (2025-02-24)
# RPostgres 1.4.8 (2025-02-25)

## Windows

- Update libpq fallback library (#489).

- Use libpq from Rtools if available (#486).
- Use libpq from Rtools if available (#486), update libpq fallback library (#489).

## Features

- Importing large objects from client side (@toppyy, #376, #472).

## Chore

- IDE.

- Auto-update from GitHub Actions.

Run: https://github.com/r-dbi/RPostgres/actions/runs/10425486593

Run: https://github.com/r-dbi/RPostgres/actions/runs/10224248168

Run: https://github.com/r-dbi/RPostgres/actions/runs/10200112323

Run: https://github.com/r-dbi/RPostgres/actions/runs/9728443553

Run: https://github.com/r-dbi/RPostgres/actions/runs/9692464325

## Continuous integration

- Test on older Windows versions.

- Avoid failure in fledge workflow if no changes (#479).

- Remove Aviator.

- Fetch tags for fledge workflow to avoid unnecessary NEWS entries (#478).

- Use stable pak (#477).

- Latest changes (#475).

- Import from actions-sync, check carefully (#474).

- Use pkgdown branch (#473).

- ci: Use pkgdown branch

- ci: Updates from duckdb

- ci: Trigger run

- Install via R CMD INSTALL ., not pak (#471).

- ci: Install via R CMD INSTALL ., not pak

- ci: Bump version of upload-artifact action

- Install local package for pkgdown builds.

- Improve support for protected branches with fledge.

- Improve support for protected branches, without fledge.

- Sync with latest developments.

- Use v2 instead of master.

- Inline action.

- Use dev roxygen2 and decor.

- Fix on Windows, tweak lock workflow.

- Avoid checking bashisms on Windows.

- Allow NOTEs on R-devel.

- Better commit message.

- Bump versions, better default, consume custom matrix.

- Recent updates.

## Uncategorized

- Merge branch 'cran-1.4.7'.
- New `postgresImportLargeObject()` for importing large objects from client side (@toppyy, #376, #472).


# RPostgres 1.4.7 (2024-05-26)
Expand Down
2 changes: 1 addition & 1 deletion cran-comments.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
RPostgres 1.4.7.9900
RPostgres 1.4.8

## Cran Repository Policy

Expand Down
2 changes: 1 addition & 1 deletion vignettes/work-queue.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ One lucky worker will get a row back, but thanks to ``FOR UPDATE``, the row is n
For any other worker, as the row is now locked, they will skip over it (``SKIP LOCKED``) and find something else to do.
If there are no other jobs available, then nothing will be returned.

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/).
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/).

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