Skip to content

Latest commit

 

History

History
230 lines (122 loc) · 4.65 KB

CHANGELOG.md

File metadata and controls

230 lines (122 loc) · 4.65 KB

Changelog

All notable changes to this project will be documented in this file.

The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.

[1.9.4] - 2020-08-06

Changed

  • Reworked translations logic

[1.9.3] - 2020-08-05

Changed

  • More workarounds for Nova's bug that causes runtime crashes
  • Added French translations (thanks to @nonovd)

[1.9.2] - 2020-07-31

Changed

  • Workaround for Nova's bug that causes runtime crashes
  • Updated packages

[1.9.1] - 2020-07-21

Changed

  • Fix bug causing nullable multiselects to save as 'null' string (thanks to @mstyles)
  • Updated packages

[1.9.0] - 2020-04-16

Added

[1.8.2] - 2020-04-16

Changed

  • Show group name when using option groups and multiple items have the same label
  • Fix plausible crash when using saveAsJSON() and singleSelect() together
  • Updated packages

[1.8.1] - 2020-03-05

Added

  • Support Nova 3.0 in composer.json requirements

[1.8.0] - 2020-03-02

Added

  • Added option groups support (see README.md)

Changed

  • Updated packages

[1.7.4] - 2020-02-25

Changed

  • Improve nova-flexible-content support

[1.7.3] - 2020-02-14

Changed

  • PHP 7.4 support improvements
  • Value resolve/save fixes

[1.7.2] - 2020-02-14

Changed

  • Fix mysterious ternary operator error w/ nullable

[1.7.1] - 2020-02-13

Changed

  • Fix singleSelect() not saving correctly

[1.7.0] - 2020-02-13

Changed

  • Improved validation support (min, max, array etc)
  • Updated packages

[1.6.2] - 2020-01-28

Changed

  • Updated packages

[1.6.1] - 2019-12-05

Changed

  • ->options($options) method now accepts callable type

[1.6.0] - 2019-11-13

Added

  • Added option to overwrite the detail field value component (NovaMultiselectDetailFieldValue)

[1.5.0] - 2019-11-05

Added

  • Added optional singleSelect support for picking single values through the same searchable input

[1.4.0] - 2019-11-04

Added

  • Added optional reordering functionality that allows the selected items to be arranged in a new sequence
    • The feature can be enabled on a per field basis with ->reorderable() or ->reorderable(true)

[1.3.5] - 2019-10-14

Changed

  • Fix loading and registering translation files

[1.3.4] - 2019-10-10

Changed

  • Fix values not being displayed on Index view
  • Fix missing translation on Index view (n items selected)
  • Fix invalid is_callable call in ServiceProvider

[1.3.3] - 2019-10-02

Changed

[1.3.2] - 2019-09-15

Changed

  • Fix Composer crash due to incorrect capitalization of Nova::translations method call

[1.3.1] - 2019-09-13

Changed

  • Fix resolveResponseValue not working with saveAsJSON

[1.3.0] - 2019-09-10

Added

  • Added saveAsJSON option which allows the field to save the value as a SQL JSON array
  • Added translation option

Changed

  • Undo saving value as not an array when the field max is set to 1

[1.2.0] - 2019-09-10

Changed

  • Do not save value as an array when field max is set to 1

[1.1.6] - 2019-08-22

Changed

  • Fix fields casted to array not working by @jplhomer

[1.1.5] - 2019-08-16

Changed

  • Fix support packages that wrap fields like nova-grid by using better $refs for calculating dropdown position
  • Fix JS runtime crash when data in database is invalid (not a JSON array)

[1.1.4] - 2019-08-16

Changed

  • Fix fields casted to array not working by @victorlap

[1.1.3] - 2019-08-16

Changed

  • Fixed detail field trying to display empty array as a value

[1.1.2] - 2019-08-16

Added

  • Added support for nullable() (as requested by @potentweb)

[1.1.1] - 2019-08-16

Changed

  • Fixed multiselect field opening towards the bottom even when there's no room for it (by @marttinnotta)

[1.1.0] - 2019-08-16

Added

  • Added resolveForPageResponseUsing(callable $callback) option

Changed

  • Changed the way data is stored - instead of a separated list (string), data is now stored as JSON

[1.0.0] - 2019-08-16

Initial release.

Added