Releases: dcblogdev/laravel-microsoft-graph
Releases · dcblogdev/laravel-microsoft-graph
v3.2.4
v3.2.3
Added
- Added pagination helper to build pages from a set number of records, for internal use
- Added TaskLists resource class for working with task lists
Updated
- Updated contacts get method to use pagination of the contacts. Sets default per page to 25 contacts
- Updated Tasks resource class for working with tasks
v3.2.2
v3.2.1
Added
- Added
tenantId
to config file to allow the tenantId to be retrievable - Added package shitware-ltd/flysystem-msgraph into this package to allow using a files flysystem driver
- Added page to the docs for the file system - https://dcblog.dev/docs/laravel-microsoft-graph/v3/msgraph/filesystem
Changed
- Removed unused imports from testcase
v3.2.0
Changed
- Changed MsGraph Listener to store a token once authenticated directly
- Re-wrote a lot of the internal workings of MsGraph, no userland changes are required apart from the Listener has changed.
Added
- Added tests for both MsGraph and MsGraphAdmin
Fixed
- Corrected refresh tokens after they expire
- Stopped an infinite loop when a token needs to be refreshed
- Stopped duplicating users when using a listener
- Stopped token getting deleted on logout
- Stopped token getting overwritten when another user logs in
v3.1.9
Better token retrivel for MsGraphAdmin
What's Changed
- Rewrote MsGraphAdmin token methods by @ChrisToxz in #44
New Contributors
- @ChrisToxz made their first contribution in #44
Full Changelog: v3.1.7...v3.1.8
changed migration to anonymous migration
v3.1.7 changed migration to anonymous migration
add support for Laravel 10
Merge pull request #47 from laravel-shift/l10-compatibility Laravel 10.x Compatibility
v3.1.5
Added
- added commands
msgraphadmin:keep-alive
andmsgraph:keep-alive
to allow refresh tokens to be automated by running these commands on a schedule - added support in Files.php to support replace/rename behavior on
createFolder
and fileupload
functions. Default behavior is to rename.
Usage for createFolder:
MsGraph::files()->createFolder($name, $path, $type = 'me', $behavior='rename')
Where $behavior is either rename or replace
Usage for upload:
MsGraph::files()->upload($name, $uploadPath, $path=null, $type='me',$behavior='rename')
Where $behavior is either rename or replace