-
Notifications
You must be signed in to change notification settings - Fork 229
2.0.0 Preview Changes
We are excited to announce that we will be releasing the preview for version 2.0.0 which will have the following changes
Removed polyfills for Fetch and Promise, Now its the responsibility of the library users to polyfill these based on their environment support needs.
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.
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)
.
Authentication provider and its options for MSAL library are now renamed from MSALAuthenticationProvider to 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.
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.
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.