Skip to content

Commit

Permalink
(databases/R-RSQLite) Updated 2.2.0 to 2.2.7
Browse files Browse the repository at this point in the history
# RSQLite 2.2.7 (2021-04-22)
- Remove RStudio Connection pane support due to problems reported by
  users (#352).
- Upgrade bundled SQLite to version 3.35.5 (#368).


# RSQLite 2.2.6 (2021-04-11)
- Upgrade bundled SQLite to 3.35.4 (#361).
- Implement RStudio Connection Contract (#352, @edwindj).

- `Dbdatatype()` supports extended types  for connections created with
  `extended_types = TRUE` (#360, @ablack3).

- `dbWriteTable()` creates tables with extended types for connections
  created with `extended_types = TRUE` (#360, @ablack3).

- Remove BH dependency by inlining the header files (#362).

# RSQLite 2.2.5 (2021-03-25)
- Upgrade bundled SQLite to version 3.35.2 (#357).
- If the busy handler fails, the transaction is aborted explicitly
  (#348, @gaborcsardi).

# RSQLite 2.2.4 (2021-03-12)
## Features
- Improve concurrency behavior with multiple writers (#280, @gaborcsardi).

- New `sqliteSetBusyHandler()` helps configure what SQLite should do
  when the database is locked (#280, @gaborcsardi).

- `dbConnect()` gains an `extended_types` argument that adds support
  for date, time and timestamp columns. If a column has a declared
  type `DATE`, `TIME` or `TIMESTAMP`, it is returned as `Date`, `hms`
  or `POSIXct` value, respectively (#333, @anderic1).

- Upgrade bundled SQLite to version 3.34.1 (#342).

# RSQLite 2.2.3 (2021-01-24)
## Features
- Upgrade bundled SQLite to version 3.34.1 (#342).

- `dbConnect()` gains an `extended_types` argument that adds support
  for date, time and timestamp columns. If a column has a declared
  type `DATE`, `TIME` or `TIMESTAMP`, it is returned as `Date`, `hms`
  or `POSIXct` value, respectively (#333, @anderic1).

# RSQLite 2.2.2 (2021-01-04)
## Features
- Upgrade bundled SQLite to version 3.34 (#337).

## Bug fixes
- `dbWriteTable()` and `dbAppendTable()` use transactions with unique
  savepoint IDs (#338).

- Loading extensions works when RSQLite is installed in a path with
  non-ASCII characters (#310).

## Internal
- Implement automatic upgrade of bundled SQLite via GitHub Actions (#335).
- Switch to GitHub Actions (#331).

# RSQLite 2.2.1 (2020-09-28)
- Upgrade to SQLite 3.33.0 (#321).
- Use transaction for faster processing in `dbAppendTable()` (#306).
- Strings and blobs now can have a size of up to 2 GB (#314, @shutinet).
- Multipart queries now give a warning (#313).
  • Loading branch information
mef committed Jun 9, 2021
1 parent 4b0ada8 commit 5fbf29d
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 7 deletions.
7 changes: 5 additions & 2 deletions databases/R-RSQLite/Makefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# $NetBSD: Makefile,v 1.5 2020/09/20 14:34:25 mef Exp $
# $NetBSD: Makefile,v 1.6 2021/06/09 15:20:49 mef Exp $

R_PKGNAME= RSQLite
R_PKGVER= 2.2.0
R_PKGVER= 2.2.7
CATEGORIES= databases

MAINTAINER= pkgsrc-users@NetBSD.org
Expand All @@ -14,6 +14,9 @@ DEPENDS+= R-memoise>=1.1.0:../../devel/R-memoise
DEPENDS+= R-pkgconfig>=2.0.2:../../devel/R-pkgconfig
DEPENDS+= R-DBI>=1.1.0:../../math/R-DBI

# Packages suggested but not available: 'DBItest', 'hms', 'rvest'
# TEST_DEPENDS+=

USE_LANGUAGES+= c c++

.include "../../math/R/Makefile.extension"
Expand Down
10 changes: 5 additions & 5 deletions databases/R-RSQLite/distinfo
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
$NetBSD: distinfo,v 1.4 2020/09/20 14:34:25 mef Exp $
$NetBSD: distinfo,v 1.5 2021/06/09 15:20:49 mef Exp $

SHA1 (R/RSQLite_2.2.0.tar.gz) = 6a1024ba27d9980af695cb030a49916c80b08ce5
RMD160 (R/RSQLite_2.2.0.tar.gz) = ddb06cd6f788a16c64461b672e8c184c9494f3ff
SHA512 (R/RSQLite_2.2.0.tar.gz) = 4059fa9b0d33457ff5500c3257d4b1ea73c6b5cd546e33797574de36f11adf3f109b05fe8e8b31fb181b984685fca1123b09a07617c8a97a5b42508425618a5d
Size (R/RSQLite_2.2.0.tar.gz) = 2373785 bytes
SHA1 (R/RSQLite_2.2.7.tar.gz) = 41c83bc3dff11111cfc2389cd0d66cf5dae8cadc
RMD160 (R/RSQLite_2.2.7.tar.gz) = 0d71a89d288e73fa0488505d36cee5d0b8b19da8
SHA512 (R/RSQLite_2.2.7.tar.gz) = acc608a4e360b3f738a28a23e92fad8da43135b1d3f808c076eb235809f192b4e3773facfb732b730403fc66e6001ce9f553b01b0ba5be1c930c512da30a18d2
Size (R/RSQLite_2.2.7.tar.gz) = 3616162 bytes

0 comments on commit 5fbf29d

Please sign in to comment.