Skip to content

Commit d3a63c8

Browse files
committed
updated change log
1 parent 0acbee4 commit d3a63c8

File tree

1 file changed

+118
-0
lines changed

1 file changed

+118
-0
lines changed

changelog.md

Lines changed: 118 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,124 @@ Renamed repo to dcblogdev/laravel-microsoft-graph
7777

7878
## Version 3.0.1
7979

80+
Added support for Laravel 7
81+
82+
## Version 3.0.2
83+
84+
Calling the API with the id
85+
86+
When calling the connect-method with explicit id it would fail trying to retrieve the users email address. This issue is fixed by calling the API with the id.
87+
88+
## Version 3.0.3
89+
90+
added support for Laravel 8
91+
92+
## Version 3.0.4
93+
94+
Laravel 8 and Guzzle 7 support
95+
96+
Guzzle has been upgraded from version 6 to 7 and Laravel 8 (illuminate/support) has been added.
97+
98+
Base url has also changed from the /beta endpoing to 1.0
99+
100+
https://graph.microsoft.com/v1.0/
101+
102+
## Version 3.0.5
103+
104+
Support for Guzzle 6 and 7
105+
106+
Added support for both Guzzle 6 and 7 since older versions of Laravel required Guzzle 6.
107+
108+
## Version 3.0.6
109+
110+
patch for guzzle 6/7
111+
112+
## Version 3.0.7
113+
114+
supports login ability
115+
116+
Added new methods: isConnected() and disconnect()
117+
fires an event when a user logs in
118+
config uses tenant id for authorise urls when set in .env
119+
added a publishing option for listeners
120+
added an event NewMicrosoft365SignInEvent that fires on login.
121+
122+
## Version 3.0.8
123+
124+
Fix issue when connecting with specified ID
125+
126+
Merge pull request #14 from stromgren/explicit-id
127+
128+
Fix issue when connecting with specified ID
129+
130+
## Version 3.0.9
131+
132+
added file methods
133+
134+
Added methods:
135+
136+
List files and folders
137+
138+
```php
139+
MsGraph::files()->getFiles($path = null, $order = 'asc');
140+
```
141+
142+
List drive
143+
144+
```php
145+
MsGraph::files()->getDrive();
146+
```
147+
148+
List drives
149+
150+
```php
151+
MsGraph::files()->getDrives();
152+
```
153+
154+
Search items
155+
156+
```php
157+
MsGraph::files()->search($term);
158+
```
159+
160+
Download file by id
161+
162+
```php
163+
MsGraph::files()->downloadFile($id)
164+
```
165+
166+
Delete file by id
167+
168+
```php
169+
MsGraph::files()->deleteFile($id)
170+
```
171+
172+
Create folder pass the folder and the path where the folder will be created if no path is provided the root is used.
173+
174+
```php
175+
MsGraph::files()->createFolder($name, $path = null)
176+
```
177+
178+
Get file/folder item by id
179+
180+
```php
181+
MsGraph::files()->getItem($id)
182+
```
183+
184+
Rename file/folder pass the new name and the id
185+
186+
```php
187+
MsGraph::files()->rename($name, $id)
188+
```
189+
190+
Upload file passes the name and the uploadPath (where the file is on your server) and the path to where the file will be stored if no path is provided the root is used.
191+
192+
```php
193+
MsGraph::files()->upload($name, $uploadPath, $path = null)
194+
```
195+
196+
## Version 3.0.10
197+
80198
Changed files to support passing the prefix to the paths such as me or groups/$groupId or sites.
81199

82200
Example

0 commit comments

Comments
 (0)