Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
90febfa
Doc fix
cgiachalis May 18, 2026
e7fe006
`TTDriver` - a `TileDriver` variant with time-travel support
cgiachalis May 19, 2026
d371b2e
`StorrTimeTravel` - a `TileDBStorr` variant with time-travel support
cgiachalis May 19, 2026
4ce2f53
Rename TTDriver -> TimeDriver
cgiachalis May 19, 2026
76ea836
Fix timestamp in active field; code tweaks
cgiachalis May 19, 2026
68a4f20
Add `storr_timetravel`
cgiachalis May 19, 2026
f0a5e96
Update NAMESPACE and pkgdown.yaml
cgiachalis May 19, 2026
4692095
Polish documentation for storr_timetravel
cgiachalis May 19, 2026
2539caa
Correct documentation
cgiachalis May 19, 2026
b6ffb8e
Change code-color inline with 'R6.tiledb' package
cgiachalis May 19, 2026
a3785b9
`TimeDriver` -> `TimeTravelDriver`
cgiachalis May 19, 2026
0bcfd51
Unit tests for 'TimeTravelDriver'
cgiachalis May 20, 2026
6550140
Correct class name in `storr_timetravel()`
cgiachalis May 20, 2026
b18aaad
`StorrTimeTravel` unit tests
cgiachalis May 20, 2026
3f70893
Minor code, misc improvements
cgiachalis May 20, 2026
b08566d
Expose `export_tdb()`
cgiachalis May 21, 2026
4c9e35b
Fix documentation
cgiachalis May 21, 2026
b147690
Unit tests for `export()` and `export_tdb()`
cgiachalis May 21, 2026
f0b2ae2
Update documentation
cgiachalis May 21, 2026
99b7ae8
Update NEWS.md and DESCRIPTION
cgiachalis May 21, 2026
a13cd88
Default testthat cpus
cgiachalis May 21, 2026
e633fa7
Test a fix for winCI
cgiachalis May 21, 2026
3f49bc6
Another try for winCI
cgiachalis May 21, 2026
3d461d0
Wait to resolve
cgiachalis May 21, 2026
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
4 changes: 2 additions & 2 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Package: storr.tiledb
Title: A TileDB Storage Driver for Storr
Version: 0.0.38
Date: 2026-05-18
Version: 0.0.39
Date: 2026-05-21
Authors@R:
person("Constantinos", "Giachalis", , "xx@github.com", role = c("aut", "cre"))
Maintainer: Constantinos Giachalis <xx@github.com>
Expand Down
3 changes: 3 additions & 0 deletions NAMESPACE
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,10 @@

export(CAS)
export(StorrFragments)
export(StorrTimeTravel)
export(TileDBDriver)
export(TileDBStorr)
export(TimeTravelDriver)
export(driver_tiledb)
export(driver_tiledb_create)
export(get_allocation_size_preference)
Expand All @@ -15,6 +17,7 @@ export(storr_fragments)
export(storr_move)
export(storr_rename)
export(storr_tiledb)
export(storr_timetravel)
export(storr_vacuum)
export(tiledb_config)
export(tiledb_ctx)
Expand Down
2 changes: 1 addition & 1 deletion NEWS.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# storr.tiledb 0.0.38
# storr.tiledb 0.0.39

* Initial GitHub release.
Loading