mangoro 0.2.6
CRAN release: 2025-11-25
- actually remove the generate_certs.R script from the package build
mangoro 0.2.5
CRAN Policy Compliance
- Replaced non-suppressible console output (
print()/cat()) withmessage()where appropriate (notablymangoro_go_build()), so information. - Updated
tools/generate_certs.Rto avoid writing into the package or user home by default: when no explicit--diris provided it writes into a temporary directory and reports the chosen path viamessage(); the script still accepts an explicit--dirfor persistent output. - Added
inst/AUTHORSandinst/COPYRIGHTSso vendored components and their license files are easy to find; full license/NOTICE/AUTHORS files remain in the vendor directories. - Added
LICENSE.notesummarizing the license types present in vendored code. - Added
Copyright: See inst/AUTHORStoDESCRIPTIONto make copyright ownership explicit as requested by CRAN.
mangoro 0.2.3
CRAN Policy Compliance
-
mangoro_go_build()now setsGOCACHEto a temporary directory by default to prevent populating~/.cache/go-buildduring package checks, complying with CRAN policy - Added
gocacheparameter tomangoro_go_build()for users who want to specify a custom cache location or use the default Go cache (gocache = NA) - Maintains backward compatibility while ensuring CRAN compliance
mangoro 0.2.2
CRAN Packaging Improvements
- Fixed long path warnings by relocating flatbuf files during build process
- Flatbuf files now stored in
tools/flatbuf/and restored during package installation via configure script - Configure scripts updated to be POSIX-compliant (replaced bashisms with standard sh syntax)
- Moved
processxfrom Imports to Suggests (only used in tests) - Package now passes
R CMD check --as-cranwith no warnings
mangoro 0.2.1
RPC Interface
- New
rgoipcGo package for type-safe function registration with Arrow schema validation - RPC protocol wrapping Arrow IPC data with function call envelope
- RPC helper functions:
mangoro_rpc_get_manifest(),mangoro_rpc_call(),mangoro_rpc_send(),mangoro_rpc_recv(),mangoro_rpc_parse_response() - RPC example server demonstrating function registration (add, echoString functions)
- HTTP file server with RPC control interface (start/stop/status commands)
- Helper functions for HTTP server control:
mangoro_http_start(),mangoro_http_stop(),mangoro_http_status()
mangoro 0.2.0
Initial Release
- R/Go IPC using Nanomsg Next Gen (mangos v3, nanonext)
- Vendored Go dependencies for reproducible builds
- Helper functions to build and run Go binaries from R
- Example echo server and on-the-fly Go compilation from R
- Platform-correct IPC path helpers
- Designed for extensibility and cross-platform use
- We do not cgo’s c-shared mode to avoid loading multiple Go runtimes in the same R session
Arrow Go IPC Support
- Add Arrow Go IPC roundtrip example and support: send and receive Arrow IPC streams between R and Go using nanoarrow and arrow-go.
- New function:
get_arrow_go_version()to report the vendored Arrow Go version.