Skip to content

Releases: orchestral/foundation

v3.8.3

02 Sep 06:45
Compare
Choose a tag to compare

Added

  • Added Orchestra\Foundation\Providers\HttpServiceProvider.

Changes

  • Use Orchestra\Model\Eloquent::usesTransaction().

Deprecated

  • Deprecate Orchestra\Foundation\Providers\MiddlewareServiceProvider.

v3.8.2

08 Aug 22:23
Compare
Choose a tag to compare

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 than function 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

15 Apr 02:23
Compare
Choose a tag to compare

Changes

  • Improves notification emails for reset password and welcome user.

v3.8.0

30 Mar 05:15
Compare
Choose a tag to compare

Added

  • Added Orchestra\Foundation\Observers\UserObserver.
  • Added Orchestra\Foundation\Tools\GenerateRandomPassword.
  • Added carbonize() and use_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

08 Mar 07:00
Compare
Choose a tag to compare

Changes

  • Allows developers to remove Orchestra Platform admin routes if they want to use it with other administation panels.

v3.7.1

03 Mar 04:29
Compare
Choose a tag to compare

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

16 Jan 00:04
Compare
Choose a tag to compare

Added

  • Add Orchestra\Foundation\Publisher\Filesystem as replacement to FTP publisher.
  • Overwrite Orchestra\Foundation\Application::registerConfiguredProviders() to consider Orchestra namespace to be loaded first before discovered packages.

Changes

  • Update support for Laravel Framework v5.7.
  • Rename Orchestra\Foundation\Processor namespace to Orchestra\Foundation\Processors.
  • Rename Orchestra\Foundation\Validation namespace to Orchestra\Foundation\Validations.
  • Restucture routing.

v3.6.3

13 Dec 03:15
Compare
Choose a tag to compare

Added

  • Add Orchestra\Foundation\Publisher\Filesystem as replacement to FTP publisher.
  • Overwrite Orchestra\Foundation\Application::registerConfiguredProviders() to consider Orchestra namespace to be loaded first before discovered packages.

Fixes

  • Fixed missing import on Orchestra\Foundation\Http\Middleware\Reauthenticate.

v3.6.2

09 Dec 05:10
Compare
Choose a tag to compare

Fixes

  • Rename invalid orchestra.reauth middleware alias to orchestra.sudo.

v3.6.1

06 Aug 21:03
Compare
Choose a tag to compare

Changes

  • Use app.name configuration as default application name instead of Orchestra Platform.