UNPKG

2.78 kBMarkdownView Raw
1# Changelog
2
3## 1.4.0
4
5New Features
6
7- Added Search query param functionality
8
9Bug Fixes
10
11- https://github.com/microsoftgraph/msgraph-sdk-javascript/issues/115
12- https://github.com/microsoftgraph/msgraph-sdk-javascript/issues/107
13
14## 1.3.0
15
16New Features
17
18- Support for Large File upload [[#1](https://developer.microsoft.com/en-us/graph/docs/api-reference/v1.0/api/driveitem_createuploadsession), [#2](https://github.com/microsoftgraph/msgraph-sdk-javascript/blob/dev/docs/tasks/LargeFileUploadTask.md)]
19- Batching made easy [[#1](https://developer.microsoft.com/en-us/graph/docs/concepts/json_batching), [#2](https://github.com/microsoftgraph/msgraph-sdk-javascript/blob/dev/docs/content/Batching.md)]
20
21Bug Fixes
22
23- https://github.com/microsoftgraph/msgraph-sdk-javascript/issues/97
24- https://github.com/microsoftgraph/msgraph-sdk-javascript/issues/110
25- https://github.com/microsoftgraph/msgraph-sdk-javascript/issues/39
26- https://github.com/microsoftgraph/msgraph-sdk-javascript/issues/111
27
28## 1.2.0
29
30Updates
31
32- Two output js files, one with polyfills for Fetch-API and ES6-Promises lib/graph-js-sdk-web.js and one without lib/graph-js-sdk-core.js [Refer [README.md](https://github.com/microsoftgraph/msgraph-sdk-javascript#browser) for usage]
33- Enum for ResponseType, which lists down the available ResponseType options in autocomplete
34
35Bug Fix
36
37- Cannot access the property "request-id" of undefined in GraphError handling
38
39## 1.1.0
40
41New Features
42
43- Support for Multipart POST request
44
45Updates
46
47- Light weight FetchAPI dependency (in replacement for SuperAgent)
48
49Bug Fixes
50
51- Updated putStream and getStream to work for all sized files
52- Added obfuscation for output js file (graph-js-sdk-web.js)
53- Updated versions of mocha and chai to 5.2.0 and 4.1.2 to fix security vulnerability in growl (which is a dependency of mocha)
54- Running unit test files under types directory
55- Compiling ts files
56
57## 1.0.0
58
59- Added tests for new Graph functionality - Delta query, Extensibility, OneNote, and more.
60
61## 0.4.0
62
63- Add support for ES5. Make sure to use `graph-js-sdk-web.js` for web apps
64- Removed iterator helper method.
65
66## 0.3.1
67
68- Support for Node.js versions 4 and 5
69
70## 0.3.0
71
72- Migrated away from typings in client library core and TypeScript sample
73
74## 0.2.2
75
76- Updated SuperAgent to version `3.3.0`
77
78## 0.2.0
79
80- **Breaking change for existing apps** - Initialize the client library with `MicrosoftGraph.Client.init({...})`. See the updated usage section below for code samples.
81- Added response handling tests to simulate Graph calls
82- Added type declarations file for core client library, which adds intellisense for chained methods.