NEWS | R Documentation |
Includes all modifications from v0.5-3 and v0.5-2.
Packages required for loading data sources are attached to the search path (with a warning) only if the new compatibility setting attach_internal_libraries
is set to TRUE
. Attaching packages to the search path seems to be unnecessary to achieve proper functionality, but users might rely on this behavior, and so this is the default for migrated projects but turned off for new projects (#104).
Fixed error message when require.package
is called from an anonymous
function and fails to load a package. (Using deparse(nlines = 1)
now.)
Added functon .add.extension()
. This allows users to create custom readers for extensions, either locally in a project or as packages.
The configuration now stores the version of ProjectTemplate in the version
field (#90).
New function migrate.project()
that allows upgrading a project to the
current version of ProjectTemplate (#90, #121).
New parameter override.config
to load.project()
and reload.project()
allows substitution of individual configuration items (#76).
Can use mustache style templating in SQL calls to access project data structures (#50).
Support passwordless connection to postgresql databases (#115).
Configuration entries that start with a hash (#
) are silently ignored (#74).
New variables default.config
and new.config
that store the default
configuration used for missing configuration items or for a new project (#76, #89).
Missing but required directories are now created (with a warning) (#76).
Missing entries in the configuration file, or a missing configuration file, are substituted by defaults (with a warning). Extra entries are ignored (with a warning) (#76).
All logical configuration options are now stored as Boolean values instead of
'on'
/'off'
. Input values other than 'on'
/'off'
are converted using
as.logical
, invalid values result in an error (#76).
Dropped dependency on Defaults
package (#100).
Suppress warnings in tests (#111).
Fix CRAN check issues (#117).
Improved presentation of available readers in documentation (#119).
Restore compatibility to R 2.15.3 by avoiding use of the no..
parameter
to list.files()
in our create.project()
function.
New function get.project()
to access project.info
.
Attempting to load a missing package when reading data will lead to a user-friendly error message (#26).
Export existing translate.dcf
function, useful for implementing custom readers (#59).
Add new function .add.extension.
This allows users to create custom readers
for extensions, either locally in a project or as packages (#59).
Fix CRAN warnings concerning use of ProjectTemplate:::
qualification
(#56).
Fix CRAN warnings concerning assignments to .GlobalEnv
.
Updated author information in DESCRIPTION file (#40).
Store templates for empty projects in tar files instead of storing
the entire directory structure per CRAN request and to avoid having to build
with the --keep-empty-dirs
switch (#41).
New maintainers: Kirill Müller <mail@kirill-mueller.de>, Kenton White <jkentonwhite@gmail.com>
Allow string interpolation of R functions in sql queries
Added a JDBC database wrapper for accessing PostgreSQL databases hosted by Heroku (#20)
JDBC connection can now use path to jar stored in CLASSPATH
project.info is stored in the global environment again (reverted change from 0.4-4); the active binding seemed to work for the tests but not from outside the package
create.project now works if the directory exists. Merging with a non-empty directory is supported by setting the new parameter merge.strategy.
Fix CRAN checks (@krlmlr).
project.info is now an active binding to avoid writing to the global environment (@krlmlr).
Reenabled xlsx.reader (@krlmlr).
Added JDBC support to sql.reader (@joshbode, #12).
Various MySQL improvements (@cortex, #10).
Fix "Argument port must be an integer value" when using port number for mysql driver (@cortex, #7).
Tentative CSV2 support.
Added optional recursive data directory loading using a 'recursive_loading' setting.
Added basic Oracle support (with tnsnames, no host/port) (@matteoredaelli, #6).
Had to disable xlsx.reader temporarily because it does not build for 2.15.
Added 'eda.R' example file in 'src/' directory.
Allow loading from 'cache/' without loading from 'data/' through 'cache_loading' setting.
Revised documentation.
Added Postgres support through RPostgreSQL
Very rough ODBC support. See example in ProjectTemplate:::sql.reader documentation.
'.dat' files are now read as if they were '.wsv' files.
Revised documentation.
Added a cache.project() function.
'as_factors' configuration option suppresses automatic character-to-factor conversion.
Implemented .zip support using temporary files.
Added .mp3 support through the tuneR package.
Added .ppm support through the pixmap package.
'data_tables' configuration option automatically translates data sets into data.tables.
Added unit tests for SPSS, Stata and SAS file formats.
Increased SQLite3 support
Load all tables from SQLite3 database using a .sql file: set table = *
Load all tables from SQLite3 database automatically using .db extension
Added a .file type that can load files outside of the project directory.
Removed run.tests(). Use test.project().
Added a stub.tests() function that autogenerates tests for helper functions.
Added a show.project() function that gives all known information about a project's internal state.
Added a reload.project() function.
Improved error handling.
Renamed utilities.R to helpers.R.
Fixed a bug in cache().
Added new *Reader functions.
Switched configuration system over to DCF format.
Ability to create full projects or minimal projects.
Switched print() calls to message() calls.
Moved *Reader functionality into separate functions that users can override.
Fixed a bug in cache().
Moved boot.R's logic into functions and configuration files.
Added SQLite support using the RSQLite package.
Cleaned up the database connection and disconnection code.
Changed list of packages listed as dependencies, so that even more are suggestions.
Added new configuration settings in config/global.yaml.
Data is now loaded from a cache/ directory and then the traditional data/ directory.
Added log4r integration, which is configurable and turned off by default.
Added a sample preprocessing script.
Added a cache/ directory.
Added a config/ directory.
Added a logs/ directory.
Added a munge/ directory.
Added a src/ directory.
Fixed a bug in clean.variable.name() for variable names that start with numbers.
Added XSLX support.
Many changes to load_data.R.
Added notices when data sets are autoloaded.
Added autoload support for WSV (whitespace separated values) data files.
Added autoload support for RData files.
Added autoload support for compressed *SV files.
Added autoload support for *SV files available through HTTP.
Added autoload support for MySQl database tables.
Added autoload support for SPSS and Stata files.
Added test.project as an alias for run.tests().
Changed list of packages listed as dependencies, so that many are now suggestions.
load.project() does not autoload libraries that are not dependencies.
Added a sample profiling script.
Added a sample test that always passes to the default project.
Added a basic show.updates() function for porting projects to newer releases of ProjectTemplate.
Cleaned up documentation.
Rewrote backend.
Added load.package() and run.tests() functions.
Maintainer: John Myles White <jmw@johnmyleswhite.com>
Initial release.