Releases: bowphp/framework
Releases · bowphp/framework
Release 5.1.7
Release 5.1.6
What's Changed
Full Changelog: 5.1.5...5.1.6
Release 5.1.5
Release 5.1.4
What's Changed
- fix: return type compatibility by @papac in #288
- feat: add userAgent method by @papac in #289
- fix(route): format route by his name by @papac in #290
- refactor: change and add new methods by @papac in #291
- refactor: refactor http module by @papac in #292
- feat: add paginate class by @papac in #293
- fix: refond response helper by @papac in #294
- fix: return value of str_uuid by @papac in #295
- refactor: change uploaded file name by @papac in #296
- fix: return type compatibility by @papac in #297
- fix(log): fix log and data access config by @papac in #298
- fix: arraydotify return value by @papac in #299
- fix: resolve url by route name by @papac in #300
- fix: data secure by @papac in #301
- fix: session and e helpers by @papac in #302
Full Changelog: 5.1.3...5.1.4
Release 5.1.3
What's Changed
- Update CHANGELOG by @papac in #259
- Fix many issues by @papac in #262
- Feat integrate queue adapters by @papac in #263
- Change cache method to store by @papac in #264
- Add onException for catch job error by @papac in #265
- formatting by @papac in #266
- Fix queue migration stubs by @papac in #267
- Update readme.md by @papac in #268
- Integration of queue for the standard event system by @papac in #269
- Add sync queue adapter by @papac in #270
- Update WorkerCommand.php by @papac in #271
- Update QueueAdapter.php by @papac in #272
- Update Console.php by @papac in #273
- Update BeanstalkdAdapter.php by @papac in #274
- Update Model.php by @papac in #275
- Update MysqlCompose.php by @papac in #276
- Update HttpClient.php by @papac in #277
- Fix duplicate headers by @papac in #278
- comply with psr-4 autoloading standard by @papac in #279
- Fixes the processing request data from php input by @papac in #280
- Bug fixes by @papac in #281
- fix: match should return Route class instance by @papac in #287
- Fix Serializes importation in event.stub by @papac in #285
Full Changelog: 5.1.2...5.1.3
Release 5.1.2
Release 5.1.1
Add the transaction method
This method aims to execute an SQL transaction around a passed arrow function.
Database::transaction(fn() => $user->update(['name' => '']));
Ref: #255