Installation and Upgrade Notes
Overview of the Changes
- Expose and persist invoice item product name
- New history apis
- Test hardening
- Fix swallowed TAG_DEFINITION_DOES_NOT_EXIST when doing a
TagDefinitionDao#getById - Make sure invoice item adjustment correctly reflect the catalog info from the item being adjusted
API Changes
- New API to retrieve history info from any objects
- Add
InvoiceItem#productName
DB Changes
Add new column product_name to table invoice_items.
The migration script can be obtained by running: kpm migrations killbill killbill-0.19.13 killbill-0.19.14, and would produce following ddl changes:
alter table invoice_items add column product_name varchar(255) after description;