Releases: imixs/imixs-workflow
Releases · imixs/imixs-workflow
imixs-workflow-5.2.1
Bugfixes
- fixed BPMNHandler - parsing error - bpmn2:timeDuration #678
Migration Notes
See release 5.2.0
imixs-workflow-5.2.0
Features
Enhancements
- Maven pom.xml update report site definition #670
Bugfixes
Migration Notes
Since version 5.2.x the EventLog JPA entity was extended with a new column 'timeout'. For that the table schema need to be updated.
Solution 1)
In persistence.xml set the eclipse property 'eclipselink.ddl-generation' to 'create-or-extend-tables'
....
<properties>
.....
<!-- optional extend schema... -->
<property name="eclipselink.ddl-generation" value="create-or-extend-tables" />
.....
</properties>
....
Solution 2)
As an alternative you can also drop the table
$ docker exec -it f637718e09be bash
...
root@f637718e09be:/# psql workflow-db -Upostgres
workflow-db=# drop table eventlog;
DROP TABLE
After a redeployment the table will be recreated.
imixs-workflow-5.1.12
Features
- Introduce an transaction ID feature #669
- WorkflowScheduler - support QuerySelector #664
- Provide new Interface - QuerySelector #663
- ItemCollection - add support for LocalDate #662
- IntervalPlugin - crontab function #661
- EventLogService - add lock mechanism #658
Enhancements
- Add default $snapshot.history=1 for internal documents #660
- ResultPlugin - add supported kernel fields #659
Bugfixes
imixs-workflow-5.1.11
Bugfixes
- LoginController - getUserPrincipal returns wrong name #656
imixs-workflow-5.1.10
Features
- Workflowkernel - switch model version #651
- BPMNParser - support Events with outgoing link #650
- ItemCollection - added new method to set unique item values #648
Enhancements
- Fixed documentation - deployment - database configuration #652
- DocumentService - getDocumentByQuery did not fire a ON_DOCUMENT_LOAD event #647
- WorkflowService - evalWorkflowResult - support $file #644
- SplitAndJoin - change ref item name #643
Bugfixes
imixs-workflow-5.1.9
Enhancements
- WorkflowService - evalWorkflowResult support additional data types #638
-DocumentController - setDocument should fire a WorkflowEvent.DOCUMENT_CHANGED #633
Bugfixes
- RestClient - POST byte[] did not compute http response code #642
- SolrIndexService - did not support german umlaute #640
- Solr-Indexer does not support german umlaute #639
- AbstractDataController - missing DocumentService getter method #637
- Imixs XMLParser - findTagValue with complex content #636
- ImixsJSONBuilder - type for data type xs:float #635
- DocumentService - find and getDocuments... Methods should start in new transaction #634
imixs-workflow-5.1.8
imixs-workflow-5.1.7
Bugfixes
- SolrIndexService - deletion takes wrong document id #627
imixs-workflow-5.1.6
Features
- Provide new TextForEachAdapter #626
- ModelRestService - save model with optional filename #624
- JSONParser - provide new method to parse data structures #623
- Add Support for Microprofile-Metrics-API feature #514
Enhancements
- Introduce new coding style #625
- Rest API - send error message for invalid /search query #621
- Rest API - Methods posting a Workitem or Document did not support the 'items' param #615