Releases: thekangaroofactory/kitems
v0.5.0-beta
Release Note
The main reason for switching from v0.4x to v0.5x is the implementation of a server return value communication strategy
instead of a shared reactiveValues
object.
This makes the communication workflow more reliable and allow passing callback functions and reactive references.
Various bugs have also been fixed.
What's Changed
- v0.5.0Beta - Milestone delivery by @thekangaroofactory in #274
Full Changelog: v0.4.1-beta...v0.5.0-beta
v0.4.1-beta
Description
The main purpose of this version is to deliver feedback based on 1st app migration POC
as well as the support of data model update (including rework of the administration console UI)
What's Changed
- Reactivity check lifecycle by @thekangaroofactory in #202
- Milestone delivery: first migration POC by @thekangaroofactory in #222
- Milestone delivery: data model update by @thekangaroofactory in #234
- Milestone delivery: data model update by @thekangaroofactory in #236
Full Changelog: v0.4.0-beta...v0.4.1-beta
v0.4.0-beta
What's Changed
Packaging convergence:
- Dependencies,
- Documentation,
- Test coverage.
Code:
- Code Cleanup,
- Admin UI,
- Cleanup server parameters.
Full Changelog: v0.3.0-alpha...v0.4.0-beta
Data Model (data.frame)
So far, the data model information have been stored in different objects (colClasses, default_val, default_fun and soon skip).
This makes it complicated to manage and synchronize as different lists have to be updated and saved each time an action
is performed on the data model.
In order to ease data model management and future evolution, all objects will be merged into a single data.frame
rows will correspond to the attributes of the data model,
columns will provide name, class, default value, default function, skip, ... information
Also this will be saved as a single resource object instead of many.
Data Model
Contains data model improvements and capabilities:
- default values
- default functions
- skip user input
Setting up basic capabilities
- create a new data model
- add column to the data model
- reorder columns into the data model
- hide columns to the data model view