Changelog
[0.5.0] - High - 2020-01-04: Another Special preventing bit-rot edition
Changelog
[0.4.5] - Low - 2017-07-09: Special preventing bit-rot edition
Changelog
[0.4.4] - High - 2017-02-23: Another important tag search bug fix!
Changelog
[0.4.3] - High - 2017-02-23: Important tag search bug fix!
Very sorry about that. :(
Changelog
[0.4.2] - Low - 2017-02-22: Special artistic edition
You probably want to avoid installing this release
Changelog
[0.4.1] - Low - 2017-02-22: GSV Unfortunate Contact with the Enemy edition
Changelog
[0.4.0] - Moderate - 2017-02-21: Would Have Done It Earlier But For A Two Hour Power Outage edition
Note: Many of the non-breaking changes for this milestone were rolled out already in 0.3.x builds, so if you are just joining us after the 0.3.0 release, check the added functionality in the point releases instead of just what happened between 0.3.8 and 0.4.
I'm able to replace all of my installations of the original rm with rm3 0.4. It's still alpha but it should work for you. :)
BREAKING: There are database changes since 0.3. Before you install 0.4 you should delete the workflow:
drop table wf_jobs;
drop table wf_jobs_info;
drop table wf_runners;
drop table wf_locked_targets;
drop table wf_workflows;
And then you can add the tables:
CREATE TABLE wh_geotag (
"predPath" ltree,
"objGeotag" point,
"subjPath" ltree,
"objClass" text
);
CREATE TABLE wh_ticket (
PRIMARY KEY("ticketId"),
"ticketId" uuid,
path ltree,
"inetAddr" inet,
"identityId" uuid,
"userPath" ltree,
subject text,
recorded timestamp,
details json
);
CREATE TABLE wh_serviceaccount (
PRIMARY KEY(provider, "clientId"),
provider text,
"clientId" text,
"providerDetails" json
);
CREATE TABLE wh_workflowsub (
PRIMARY KEY("subscriptionId"),
"subscriptionId" uuid,
proto text,
pathQuery lquery,
"actorPath" ltree,
"workflowDetails" json
);
and create the workflow engine again: ./bin/rm3admin createworkflow
Alternatively, you can load from a saved dump.
-p
to specify path anymore.Changelog
[0.3.8] - Low - 2017-02-05: Special Crazy Eights edition
Changelog
[0.3.7] - Low - 2017-02-05: Superb, and not so superb, owl edition
Changelog
[0.3.6] - Low - 2017-01-16: Women's March on Washington edition
rm3rm
command to delete an entity via the CLI.rm3wf
didn't support the blobstore, which broke things.