Releases: orchestral/kernel
Releases · orchestral/kernel
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
Added
- Added
Orchestra\Http\Transformer\InteractsWithDateTime
trait.
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.8.0
Changes
- Update support for Laravel Framework v5.8.
- Change configuration file on
Orchestra\Config\Console\ConfigCacheCommand
using composer.json extra.config-cache
instead of compile.php
configuration file.
Remove
- Remove deprecated
Orchestra\Http\Traits\PassThrough
.
- Remove deprecated
Orchestra\Routing\Traits\ControllerResponse
.
v3.7.1
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.0
Added
Changes
- Update support for Laravel Framework v5.7.
v3.6.1
Changes
- return
self
should only be used when method is marked as final
.
Fixes
- Fixes
Orchestra\Http\Transformer
.
v3.5.3
Fixes
- Fixes
Orchestra\Http\Transformer
.
v3.6.0
Added
- Added
orchestra/publisher
.
Changes
- Update support for Laravel Framework v5.6.
- Use PHP 7.1 scalar typehint and return type whenever possible.
Removed
- Remove
--realpath
support from orchestra/database
as this is not supported in Laravel Framework.
v3.5.2
Added
- Add
Orchestra\Http\Transformer
.