From a69fce026e16d929938b51a6f8a3eaa49dbbd646 Mon Sep 17 00:00:00 2001 From: krlmlr Date: Tue, 2 Apr 2024 01:35:40 +0000 Subject: [PATCH] Bump version to 1.4.6.9006 --- DESCRIPTION | 4 ++-- NEWS.md | 35 +++++++++++++++++++++++++++++++++++ 2 files changed, 37 insertions(+), 2 deletions(-) diff --git a/DESCRIPTION b/DESCRIPTION index 5d7976fd..377bd1d8 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -1,7 +1,7 @@ Package: RPostgres Title: C++ Interface to PostgreSQL -Version: 1.4.6.9005 -Date: 2024-01-24 +Version: 1.4.6.9006 +Date: 2024-04-02 Authors@R: c( person("Hadley", "Wickham", role = "aut"), person("Jeroen", "Ooms", role = "aut"), diff --git a/NEWS.md b/NEWS.md index 6967ac70..59000d05 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,5 +1,40 @@ +# RPostgres 1.4.6.9006 (2024-04-02) + +## Bug fixes + +- `dbWriteTable()` correctly handles name clashes between temporary and permanent tables (#402, #431). + +- Fix `dbQuoteIdentifier()` for `Id()` objects to no longer rely on names (#460). + +## Features + +- Breaking change: Avoid appending a numeric suffix to duplicate column names (#463). + +## Chore + +- Refactor `dbListTables()` et al. (@dpprdan, #413). + +- Refactor `list_fields()` (#462). + +- Use `Id` in `exists_table()` (#461). + +- Add Aviator configuration. + +## Documentation + +- Use dbitemplate (@maelle, #456). + +## Testing + +- Test for columns in `dbQuoteIdentifier()` (@dpprdan, #263, #372). + +## Breaking changes + +- Breaking change: Avoid appending a numeric suffix to duplicate column names (#463). + + # RPostgres 1.4.6.9005 (2024-01-24) - Internal changes only.