From 57065589cb921f4b36c9c83b2a10da2747c47efd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Till=20Kru=CC=88ss?= Date: Sun, 20 Nov 2016 14:18:48 -0800 Subject: [PATCH 1/2] Updated `CHANGELOG-5.3.md` --- CHANGELOG-5.3.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/CHANGELOG-5.3.md b/CHANGELOG-5.3.md index be21ab9c1d8a..9c09484a27ea 100644 --- a/CHANGELOG-5.3.md +++ b/CHANGELOG-5.3.md @@ -7,10 +7,19 @@ - Support arrays in `HasOne::withDefault()` ([#16382](https://github.com/laravel/framework/pull/16382)) - Define route basename for resources ([#16352](https://github.com/laravel/framework/pull/16352)) - Added `$fallback` parameter to `Redirector::back()` ([#16426](https://github.com/laravel/framework/pull/16426)) +- Added support for footer and markdown in `SlackAttachment` ([#16451](https://github.com/laravel/framework/pull/16451)) +- Added password change feedback auth stubs ([#16461](https://github.com/laravel/framework/pull/16461)) +- Added `name` to default register route ([#16480](https://github.com/laravel/framework/pull/16480)) +- Added `ServiceProvider::loadRoutesFrom()` method ([#16483](https://github.com/laravel/framework/pull/16483)) + +### Changed +- Use `getKey()` instead of `$id` in `PusherBroadcaster` ([#16438](https://github.com/laravel/framework/pull/16438)) ### Fixed - Pass `PheanstalkJob` to Pheanstalk's `delete()` method ([#16415](https://github.com/laravel/framework/pull/16415)) - Don't call PDO callback in `reconnectIfMissingConnection()` until it is needed ([#16422](https://github.com/laravel/framework/pull/16422)) +- Don't timeout queue if `--timeout` is set to `0` ([#16465](https://github.com/laravel/framework/pull/16465)) +- Respect `--force` option of `queue:work` in maintenance mode ([#16468](https://github.com/laravel/framework/pull/16468)) ## v5.3.23 (2016-11-14) From b603b7cf77ff083c2248f7baa23f3add34c3ff84 Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Mon, 21 Nov 2016 08:14:16 -0600 Subject: [PATCH 2/2] version --- src/Illuminate/Foundation/Application.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Illuminate/Foundation/Application.php b/src/Illuminate/Foundation/Application.php index 48f4cf47c5de..9483eb0b0053 100755 --- a/src/Illuminate/Foundation/Application.php +++ b/src/Illuminate/Foundation/Application.php @@ -25,7 +25,7 @@ class Application extends Container implements ApplicationContract, HttpKernelIn * * @var string */ - const VERSION = '5.3.23'; + const VERSION = '5.3.24'; /** * The base path for the Laravel installation.