Release Notes
From DOC
This page only contains critical release notes. Each plugin contains detailed release notes.
Contents |
29 April 2011
The XML01 column in the MenuData entity/table contains an XML representation of extended columns stored in a placeholder. The XML is stored as a LOB and managed by a class called org.tolven.app.entity.ExtendedMenuData. A new feature in this plug-in update allows this XML to be encrypted. See the notes on the individual plug-ins for details:
24 Apr 2010
If you have any custom code that persists MenuData, you may need to make a code change. In most cases, MenuData is persisted in DefaultPersister.java in which case the change has been made. If you override the persist method in this class or otherwise persist MenuData, you must add a call to the initPath method. For example:
em.persist( md ); md.initPath();
This change is necessary due to more strict adherence to JPA standards.
30 Mar 2010
SubstanceAdministration in trim4.xml was incorrectly a subclass of Act instead of Procedure as specified by HL7.
This change is effective with org.tolven.component.tolvenejb version 0.0.68. Before using this version of the tolvenejb plugin, contact Tolven if you are using SubstanceAdministration as this change may cause you a compatibility problem.
19 Mar 2010
If you have any custom plugins that have a web/vestibule entry in your plugins.xml, it must be removed or updated. It is unlikely that you have any contributions to the vestibule so removing this entry should have no functional impact. If you do have a contribution to the vestibule folder, make two small changes to your plugins.xml.
- Add the following plugin requirement:
<requires>
...
<import plugin-id="org.tolven.web.vestibule" />
</requires>
- change the plugin-id in your vestibule extension:
<extension id="vestibuleDirectory" plugin-id="org.tolven.web.vestibule" point-id="vestibuleDirectory">
<parameter id="sourceDirectory" value="web/vestibule" />
</extension>

