Releases: microsoftgraph/msgraph-sdk-javascript
2.0.0
New Features (Breaking Changes)
Refer this guide for migrating from 1.x.x to 2.x.x
Polyfilling
Removed polyfills for Fetch and Promise, Now its the responsibility of the library users to polyfill these based on their environment support needs.
New minified files
graph-js-sdk-web.js
and graph-js-sdk-core.js
files are no longer available, new file named graph-js-sdk.js
will be shipped along with graph-es-sdk.js
. Both graph-js-sdk.js
and graph-es-sdk.js
will not depend on the isomorphic-fetch
and es6-promise
anymore.
Getting Raw Response
When making request using callback method raw response will not be passed as the param to the callback, instead one can get the same by using .responseType(ResponseType.RAW)
.
Renaming MSALAuthenticationProvider
Authentication provider and its options for MSAL library are now renamed from MSALAuthenticationProvider to ImplicitMSALAuthenticationProvider.
Initializing ImplicitMSALAuthenticationProvider
In order to create an instance of ImplicitMSALAuthenticationProvider previously named as MSALAuthenticaitonProvider now you can only pass an instance of MSAL's UserAgentApplication and MSALAuthenticationProviderOptions.
Creating MSAL's UserAgentApplication
MSAL changed its way of initializing UserAgentApplication (also called as MSALInstance) in v1.0.0. Since we updated our MSAL's dependency to latest stable version and ImplicitMSALAuthenticationProvider modified to adapt the same. Creating instance of ImplicitMSALAuthenticationProvider takes UserAgentApplication created as per MSAL v1.0.0.
Changing Default Content-Type in put method
Changed default Content-Type for a put request method to application/json, as it works with most of the cases. In case of putting payload other than JSON use .header
method to add custom Content-Type.
Bug Fixes
2.0.0-Preview.5
2.0.0-Preview.4
Fixes
- Returning undefined token in case if the error for acquireTokenSilent is not InteractionRequiredAuthError in ImplicitMSALAuthenticationProvider.
2.0.0-Preview.3
Bug Fix
2.0.0-Preview.2
Bug Fixes:
2.0.0-Preview.1
New Features (Breaking Changes)
We are excited to announce that we will be releasing the preview for version 2.0.0 which will have the following changes
Refer this guide for migrating from 1.x.x to 2.x.x.
Polyfilling
Removed polyfills for Fetch and Promise, Now its the responsibility of the library users to polyfill these based on their environment support needs.
New minified files
graph-js-sdk-web.js
and graph-js-sdk-core.js
files are no longer available, new file named graph-js-sdk.js
will be shipped along with graph-es-sdk.js
. Both graph-js-sdk.js
and graph-es-sdk.js
will not depend on the isomorphic-fetch
and es6-promise
anymore.
Getting Raw Response
When making request using callback method raw response will not be passed as the param to the callback, instead one can get the same by using .responseType(ResponseType.RAW)
.
Renaming MSALAuthenticationProvider
Authentication provider and its options for MSAL library are now renamed from MSALAuthenticationProvider to ImplicitMSALAuthenticationProvider.
Initializing ImplicitMSALAuthenticationProvider
In order to create an instance of ImplicitMSALAuthenticationProvider previously named as MSALAuthenticaitonProvider now you can only pass an instance of MSAL's UserAgentApplication and MSALAuthenticationProviderOptions.
Creating MSAL's UserAgentApplication
MSAL changed its way of initializing UserAgentApplication (also called as MSALInstance) in v1.0.0. Since we updated our MSAL's dependency to latest stable version and ImplicitMSALAuthenticationProvider modified to adapt the same. Creating instance of ImplicitMSALAuthenticationProvider takes UserAgentApplication created as per MSAL v1.0.0.
Changing Default Content-Type in put method
Changed default Content-Type for a put request method to application/json, as it works with most of the cases. In case of putting payload other than JSON use .header
method to add custom Content-Type.
1.7.0
1.7.0-Preview.3
Features
- Large file upload with customized options - This enables uploading files to SharePoint
Bug Fixes
1.7.0-Preview.2
Changes
- Added document for calling pattern
- Fixing #171
1.7.0-Preview.1
Changes:
- Added Telemetry Handler