Releases: microsoftgraph/msgraph-beta-sdk-php
2.0.0 Release Candidate 7
What's Changed
- Updated PHPDoc types for
$headersand$optionsattributes of request configuration objects for clarity:
@var array<string, string>|null $headers Request headersand@var array<string, RequestOption>|null $options Request options - Updated models and fluent API paths
Full Changelog: 2.0.0-RC6...2.0.0-RC7
2.0.0 Release Candidate 6
This release contains bug fixes and the following improvements:
- Authentication Provider that handles token fetching and refresh behind the scenes for you:
use Microsoft\Kiota\Authentication\Oauth\AuthorizationCodeContext;
use Microsoft\Kiota\Authentication\PhpLeagueAuthenticationProvider;
$tokenRequestContext = new AuthorizationCodeContext(
'tenantId',
'clientId',
'clientSecret',
'authCode',
'redirectUri'
);
$scopes = ['User.Read', 'Mail.Read'];
$authProvider = new PhpLeagueAuthenticationProvider($tokenRequestContext, $scopes);- A fluent API design:
$messages = $graphServiceClient->usersById(USER_ID)->messages()->get()->wait();More details in the Upgrade Guide and README
2.0.0 Release Candidate 5
What's Changed
- Model updates
(Breaking)
- Support overwriting existing headers & response exception updates by @Ndiritu in microsoftgraph/msgraph-sdk-php-core#55.
For more info on the breaking change, please see the upgrade guide
Full Changelog: 2.0.0-RC4...2.0.0-RC5
2.0.0 Release Candidate 4
2.0.0 Release Candidate 3
What's Changed
- Generated beta models using Typewriter by @github-actions in #45
- Generated beta models using Typewriter by @github-actions in #47
Full Changelog: 2.0.0-RC2...2.0.0-RC3
2.0.0 Release Candidate 2
What's Changed
- Update phpstan/phpstan requirement from ^0.12.90 to ^0.12.90 || ^1.0.0 by @dependabot in #39
- Weekly model updates by @Ndiritu in #42
- Release 2.0.0-RC2 by @Ndiritu in #43
New Contributors
- @dependabot made their first contribution in #39
Full Changelog: 2.0.0-RC1...2.0.0-RC2
2.0.0 Release Candidate 1
This is the initial preview release of the stand-alone Microsoft Graph Beta SDK. This SDK contains Microsoft Graph Beta API models and a client to make requests to the Microsoft Graph Beta API.
Previously, Beta models were provided in he Microsoft Graph SDK.
This SDK contains new features, bug fixes and breaking changes from v1 of the Microsoft Graph SDK.
Please see our Upgrade Guide for more details.
We'd really appreciate your feedback! Feel free to create GitHub issues on this repo.