Releases: orchestral/foundation
Releases · orchestral/foundation
v3.8.3
v3.8.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. - Use
static function
rather thanfunction
whenever possible, the PHP engine does not need to instantiate and later GC a$this
variable for said closure.
Fixes
- Fixed flash messages not being stored to session on redirection.
v3.8.1
v3.8.0
Added
- Added
Orchestra\Foundation\Observers\UserObserver
. - Added
Orchestra\Foundation\Tools\GenerateRandomPassword
. - Added
carbonize()
anduse_timezone()
helpers.
Changes
- Update support for Laravel Framework v5.8.
- Update
nesbot/carbon
minimum version to^2.0
.
Removed
- Remove deprecated classes:
Orchestra\Foundation\Processor\Processor
.Orchestra\Foundation\Support\Traits\RouteProvider
.Orchestra\Foundation\Traits\RedirectUser
.
- Remove
Orchestra\Foundation\Traits\Timezone
.
v3.7.2
v3.7.1
v3.7.0
Added
- Add
Orchestra\Foundation\Publisher\Filesystem
as replacement to FTP publisher. - Overwrite
Orchestra\Foundation\Application::registerConfiguredProviders()
to considerOrchestra
namespace to be loaded first before discovered packages.
Changes
- Update support for Laravel Framework v5.7.
- Rename
Orchestra\Foundation\Processor
namespace toOrchestra\Foundation\Processors
. - Rename
Orchestra\Foundation\Validation
namespace toOrchestra\Foundation\Validations
. - Restucture routing.
v3.6.3
Added
- Add
Orchestra\Foundation\Publisher\Filesystem
as replacement to FTP publisher. - Overwrite
Orchestra\Foundation\Application::registerConfiguredProviders()
to considerOrchestra
namespace to be loaded first before discovered packages.
Fixes
- Fixed missing import on
Orchestra\Foundation\Http\Middleware\Reauthenticate
.