-
Notifications
You must be signed in to change notification settings - Fork 939
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #312 from driesvints/changelog
[4.0] Add changelog and upgrade guide
- Loading branch information
Showing
2 changed files
with
23 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# Release Notes | ||
|
||
## [v4.0.0 (2018-12-XX)](https://github.com/laravel/socialite/compare/v3.2.0...v4.0.0) | ||
|
||
### Changed | ||
|
||
- Removed support for PHP 7.0 ([#311](https://github.com/laravel/socialite/pull/311)) | ||
- Require Laravel 5.7 as minimum version ([#311](https://github.com/laravel/socialite/pull/311)) | ||
|
||
### Fixed | ||
|
||
- Fixed and updated the broken LinkedIn provider ([#310](https://github.com/laravel/socialite/pull/310)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# Upgrade Guide | ||
|
||
## Upgrading To 4.0 From 3.0 | ||
|
||
### PHP & Laravel Version Requirements | ||
|
||
Like the latest releases of the Laravel framework, Laravel Socialite now requires PHP >= 7.1.3. We encourage you to upgrade to the latest versions of PHP and Laravel before upgrading to Socialite 4.0. | ||
|
||
### LinkedInProvider Changes | ||
|
||
The `LinkedInProvider` was updated to make use of the latest API version of LinkedIn. The provider will now only retrieve the most basic fields and removes the `fields` method from the provider. Please review [the related PR](https://github.com/laravel/socialite/pull/310) for all details and changes. |