List of all CRAN events (new, updated, archived packages)

cran_events(releases = TRUE, archivals = TRUE, limit = 10, from = 1)

# S3 method for class 'cran_event_list'
summary(object, ...)

# S3 method for class 'cran_event_list'
print(x, ...)

Arguments

releases

Whether to include package releases.

archivals

Whether to include package archivals.

limit

Number of events to list.

from

Where to start the list, for pagination.

object

Object to summarize.

...

Additional arguments are ignored currently.

x

Object to print.

Value

List of events.

Examples

cran_events()
#> CRAN events (events)-----------------------------------------------------------
#>  . When    Package         Version Title                                       
#>  + 3 hours CFtime          1.6.1   Using CF-Compliant Calendars with Climate...
#>  + 3 hours fs              1.6.6   Cross-Platform File System Operations Bas...
#>  + 4 hours ps              1.9.1   List, Query, Manipulate System Processes    
#>  + 4 hours pkgsearch       3.1.5   Search and Query CRAN R Packages            
#>  + 5 hours cubeview        0.2.4   View 3D Raster Cubes Interactively          
#>  + 5 hours MetricsWeighted 1.0.4   Weighted Metrics and Performance Measures...
#>  + 5 hours ReMFPCA         2.0.0   Regularized Multivariate Functional Princ...
#>  + 5 hours AzureKeyVault   1.0.6   Key and Secret Management in 'Azure'        
#>  + 5 hours etm             1.1.2   Empirical Transition Matrix                 
#>  + 5 hours AzureContainers 1.3.3   Interface to 'Container Instances', 'Dock...
cran_events(limit = 5, releases = FALSE)
#> CRAN events (archivals)--------------------------------------------------------
#>  . When  Package   Version Title                                               
#>  - 1 day disprose  0.1.6   Discriminating Probes Selection                     
#>  - 4 day astrodatR 0.1     Astronomical Data                                   
#>  - 4 day varrank   0.5     Heuristics Tools Based on Mutual Information for ...
#>  - 4 day episcan   0.0.1   Scan Pairwise Epistasis                             
#>  - 4 day ADMMsigma 2.1     Penalized Precision Matrix Estimation via ADMM      
cran_events(limit = 5, archivals = FALSE)
#> CRAN events (pkgreleases)------------------------------------------------------
#>  . When    Package   Version Title                                             
#>  + 3 hours CFtime    1.6.1   Using CF-Compliant Calendars with Climate Proje...
#>  + 3 hours fs        1.6.6   Cross-Platform File System Operations Based on ...
#>  + 4 hours ps        1.9.1   List, Query, Manipulate System Processes          
#>  + 4 hours pkgsearch 3.1.5   Search and Query CRAN R Packages                  
#>  + 5 hours cubeview  0.2.4   View 3D Raster Cubes Interactively                
summary(cran_events(limit = 10))
#> CRAN events (events)
#>  [1] "CFtime@1.6.1"          "fs@1.6.6"              "ps@1.9.1"             
#>  [4] "pkgsearch@3.1.5"       "cubeview@0.2.4"        "MetricsWeighted@1.0.4"
#>  [7] "ReMFPCA@2.0.0"         "AzureKeyVault@1.0.6"   "etm@1.1.2"            
#> [10] "AzureContainers@1.3.3"