Releases: AleksandrRogov/DynamicsWebApi
v2.0.1
v2.0.0
Version 2 is out! 🙌
What a run... I am very excited to see how many of you will migrate and, of course, I will be happy to hear your comments and/or you have any issues with it.
Special thank you to all who helped me to test the beta version of the library! 👍
v2 open discussion is here.
Forgot to include the .js.map files in this release on GitHub, so if you'd like to get them please refer to this commit.
More details about v2:
v2.0.0-beta.4
This is a beta release of v2. Thus, there can still be changes and fixes. For testing purposes only!
Fixes:
- Several issues with ESM bundles.
Also found a bug in Dynamics 365 with batch operations. It throws an error when multiple non-atomic operations that change data were done. A workaround there is to add a "GET" request at the end of the batch to make it work. Seems like that bug was there for a looong time already.
v2.0.0-beta.3 was not the last one, so I lied! :) Hopefully, this one will be the last!
More details about v2:
v2.0.0-beta.3
This is a beta release of v2. Thus, there can still be changes and fixes. For testing purposes only!
Fixes:
- Wrong error message in case of network error. #153
This will be the last beta release for v2. The official release will be either this weekend or next week!
More details about v2:
v1.7.11
v1.7.10
Changes:
- Added
continueOnError
property toexecuteBatch
.
dynamicsWebApi.executeBatch({
continueOnError: true
});
v2.0.0-beta.1
This is a beta release of v2. Thus, there can still be changes and fixes. For testing purposes only!
Changes:
- Added
continueOnError
inexecuteRequest
parameter. - Added ESM bundles for Node and Browser.
- Fixed Browser bundle. Previously, the generated code did not create a global DynamicsWebApi class.
More details about v2:
v2.0.0-beta.0
v1.7.9
Fixes:
- Fixed an issue with function parameters of type "guid" #149 .
Heads up!
- I changed the way the guids are validated. Before you could have typed in something like
savedQuery = 'my wonderful guid=fb15ee32-524d-41be-b6a0-7d0f28055d52'
and it would normally extract it, now the value must be an exact guidsavedQuery = 'fb15ee32-524d-41be-b6a0-7d0f28055d52'
orsavedQuery = '{fb15ee32-524d-41be-b6a0-7d0f28055d52}'
. Otherwise it would throw an error:<function name> requires the <param name> parameter to be of type GUID String
.
Please let me know if this causes any issues.