### API change recommendations per the 1.3 hit list
- `FormHelper::select()` - roll `$showEmpty` parameter into `$attributes` array as `'empty'`, to match `FormHelper::input()` (et al.) API
- Same with `day()`, `year()`, `month()` and friends
- `HtmlHelper::para()` - roll `$escape` parameter into `$attributes` array
- `HtmlHelper::link()` - officially deprecate `$escapeTitle` parameter, as it has been in `$htmlAttributes` for many release cycles.
- `HtmlHelper::tag()` - roll `$escape` parameter into `$attributes` array
- `JavascriptHelper::object()` - remove all deprecated parameters
- `TextHelper::highlight()` - roll `$highlighter` and `$considerHtml` parameters into new `$options` param as `'format'` and `'html'`, respectively
- `TextHelper::truncate()` - roll `$ending`, `$exact` and `$considerHtml` into new `$options` parameter
- For all helper methods with parameters named `$attributes`, `$htmlAttributes` or `$htmlOptions`, but no `$options` parameter, the parameter names should be changed to `$options` for general API consistency.
- Move all the `$inline` parameters in helpers to their respective `$options` parameters (maybe? [feedback/opinions?])
