Skip to content

Releases: dcblogdev/laravel-microsoft-graph

v3.2.4

15 Aug 12:03
Compare
Choose a tag to compare

Added

  • Add the ability to override the User model by setting setUserModel($model) when using MsGraph class

Updated

  • Changed migrations to not run migrations automatically

Removed

  • Removed package-level migrations, using src migrations instead

v3.2.3

19 Jun 08:43
Compare
Choose a tag to compare

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

06 Jun 08:43
Compare
Choose a tag to compare

3.2.2

Added

  • Added method setApiVersion to set API version on call defaults to 1.0 MsGraph::setApiVersion('beta')->get('me')

v3.2.1

02 Jun 12:38
Compare
Choose a tag to compare

Added

Changed

  • Removed unused imports from testcase

v3.2.0

25 May 07:13
Compare
Choose a tag to compare

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

15 Feb 01:56
Compare
Choose a tag to compare

MsGraphAdmin::connect redirects by default add false to disable redirecting.

Better token retrivel for MsGraphAdmin

13 Feb 21:20
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v3.1.7...v3.1.8

changed migration to anonymous migration

03 Feb 00:32
Compare
Choose a tag to compare
v3.1.7

changed migration to anonymous migration

add support for Laravel 10

02 Feb 00:57
d7e1aae
Compare
Choose a tag to compare
Merge pull request #47 from laravel-shift/l10-compatibility

Laravel 10.x Compatibility

v3.1.5

04 Sep 16:37
Compare
Choose a tag to compare

Added

  • added commands msgraphadmin:keep-alive and msgraph: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 file upload 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