Skip to content

Commit 5067ccf

Browse files
committed
version
2 parents 6791576 + 9cffd34 commit 5067ccf

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.34...6.x)
3+
## [Unreleased](https://github.com/laravel/framework/compare/v6.20.35...6.x)
4+
5+
6+
## [v6.20.35 (2021-10-05)](https://github.com/laravel/framework/compare/v6.20.34...v6.20.35)
7+
8+
### Added
9+
- Added new lost connection message to DetectsLostConnections ([#39028](https://github.com/laravel/framework/pull/39028))
410

511

612
## [v6.20.34 (2021-09-07)](https://github.com/laravel/framework/compare/v6.20.33...v6.20.34)

src/Illuminate/Database/DetectsLostConnections.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@ protected function causedByLostConnection(Throwable $e)
5555
'SQLSTATE[08006] [7] could not connect to server: Connection refused Is the server running on host',
5656
'SQLSTATE[HY000]: General error: 7 SSL SYSCALL error: No route to host',
5757
'The client was disconnected by the server because of inactivity. See wait_timeout and interactive_timeout for configuring this behavior.',
58+
'SQLSTATE[08006] [7] could not translate host name',
5859
]);
5960
}
6061
}

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.64.0';
36+
const VERSION = '8.65.0';
3737

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

0 commit comments

Comments
 (0)