Releases: orchestral/model
Releases · orchestral/model
v3.8.2
Changes
- Use
static function
rather than function
whenever possible, the PHP engine does not need to instantiate and later GC a $this
variable for said closure.
v3.8.1
Changes
- Allow to pass optional parameters to
Orchestra\Model\Concerns\Faker::faker()
.
v3.8.0
Changes
- Update support to Laravel Framework 5.8.
v3.7.2
Changes
- Improve performance by prefixing all global functions calls with
\
to skip the look up and resolve process and go straight to the global function.
v3.7.1
Added
- Add
Orchestra\Model\Concerns\Metable::forgetMetaData()
method helper.
v3.6.4
Added
- Add
Orchestra\Model\Concerns\Metable::forgetMetaData()
method helper.
v3.7.0
Changes
- Update support to Laravel Framework 5.7.
Orchestra\Model\Concerns\Metable::mutateMetableAttribute()
should accept $key
as first parameter to allow multiple JSON fields.
Removed
- Remove deprecated
Orchestra\Model\Traits
namespace.
v3.6.3
Changes
- Avoid re-casting
meta
to instance of Orchestra\Model\Value\Meta
when it already is.
v3.6.2
Changes
- Improves
Orchestra\Model\Concerns\AdvancedSearchable
by parsing keyword using regular expression.
v3.6.1
Added
- Added
Orchestra\Model\Concerns\AdvancedSearchable
.
Changes
- Include
Orchestra\Model\Concerns\Searchable::scopeSearch()
by default.