Skip to content

Commit 81892ca

Browse files
committed
minor
2 parents bb6e6f2 + 664a943 commit 81892ca

File tree

3 files changed

+9
-2
lines changed

3 files changed

+9
-2
lines changed

CHANGELOG-6.x.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
# Release Notes for 6.x
22

3-
## [Unreleased](https://github.com/laravel/framework/compare/v6.20.18...6.x)
3+
## [Unreleased](https://github.com/laravel/framework/compare/v6.20.19...6.x)
4+
5+
6+
## [v6.20.19 (2021-03-16)](https://github.com/laravel/framework/compare/v6.20.18...v6.20.19)
7+
8+
### Added
9+
- Added broken pipe exception as lost connection error ([#36601](https://github.com/laravel/framework/pull/36601))
410

511

612
## [v6.20.18 (2021-03-09)](https://github.com/laravel/framework/compare/v6.20.17...v6.20.18)

src/Illuminate/Database/DetectsLostConnections.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@ protected function causedByLostConnection(Throwable $e)
5151
'SQLSTATE[HY000]: General error: 1105 The last transaction was aborted due to Seamless Scaling. Please retry.',
5252
'Temporary failure in name resolution',
5353
'SSL: Broken pipe',
54+
'SQLSTATE[08S01]: Communication link failure',
5455
]);
5556
}
5657
}

src/Illuminate/Foundation/Application.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ class Application extends Container implements ApplicationContract, CachesConfig
3333
*
3434
* @var string
3535
*/
36-
const VERSION = '8.33.1';
36+
const VERSION = '8.34.0';
3737

3838
/**
3939
* The base path for the Laravel installation.

0 commit comments

Comments
 (0)