Skip to content

Commit

Permalink
Bump Graph API version to v2.10
Browse files Browse the repository at this point in the history
  • Loading branch information
SammyK committed Jul 22, 2017
1 parent 19b8040 commit 4e56a4c
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# CHANGELOG

## 3.4.3 - July 22, 2017

- Bumped the Graph API version in the config to [v2.10](https://developers.facebook.com/docs/apps/changelog)

## 3.4.2 - April 20, 2017

- Bumped the Graph API version in the config to [v2.9](https://developers.facebook.com/docs/apps/changelog).
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -360,7 +360,7 @@ By default the JavaScript SDK will not set a cookie, so you have to explicitly e
FB.init({
appId : 'your-app-id',
cookie : true,
version : 'v2.9'
version : 'v2.10'
});
```

Expand Down Expand Up @@ -753,7 +753,7 @@ Route::get('/example', function(SammyK\LaravelFacebookSdk\LaravelFacebookSdk $fb
$fb2 = $fb->newInstance([
'app_id' => env('FACEBOOK_APP_ID2'),
'app_secret' => env('FACEBOOK_APP_SECRET2'),
'default_graph_version' => 'v2.9',
'default_graph_version' => 'v2.10',
// . . .
]);
});
Expand Down
2 changes: 1 addition & 1 deletion src/config/laravel-facebook-sdk.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
'facebook_config' => [
'app_id' => env('FACEBOOK_APP_ID'),
'app_secret' => env('FACEBOOK_APP_SECRET'),
'default_graph_version' => 'v2.9',
'default_graph_version' => 'v2.10',
//'enable_beta_mode' => true,
//'http_client_handler' => 'guzzle',
],
Expand Down

0 comments on commit 4e56a4c

Please sign in to comment.