Skip to content

Releases: AleksandrRogov/DynamicsWebApi

v2.0.1

16 Aug 13:49
Compare
Choose a tag to compare

Fixes:

  • Object.hasOwn is replaced with hasOwnProperty because it's not supported in Node v15. #160

v2.0.0

20 Jul 14:16
Compare
Choose a tag to compare

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:

  • What's new in version 2? Check out this link.
  • For the list of Breaking Changes check out this link.

v2.0.0-beta.4

16 Jul 22:57
Compare
Choose a tag to compare
v2.0.0-beta.4 Pre-release
Pre-release

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:

  • What's new in version 2? Check out this link.
  • For the list of Breaking Changes check out this link

v2.0.0-beta.3

14 Jul 23:58
Compare
Choose a tag to compare
v2.0.0-beta.3 Pre-release
Pre-release

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:

  • What's new in version 2? Check out this link.
  • For the list of Breaking Changes check out this link

v1.7.11

14 Jul 23:42
Compare
Choose a tag to compare

Fixes:

  • Wrong error message in case of network error. #153
  • Incorrect bundle for a browser.

v1.7.10

11 Jul 01:18
Compare
Choose a tag to compare

Changes:

  • Added continueOnError property to executeBatch.
dynamicsWebApi.executeBatch({
  continueOnError: true
});

v2.0.0-beta.1

10 Jul 21:31
Compare
Choose a tag to compare
v2.0.0-beta.1 Pre-release
Pre-release

This is a beta release of v2. Thus, there can still be changes and fixes. For testing purposes only!

Changes:

  • Added continueOnError in executeRequest 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:

  • What's new in version 2? Check out: #146
  • For the list of Breaking Changes check out #135

v2.0.0-beta.0

17 Jun 23:23
Compare
Choose a tag to compare
v2.0.0-beta.0 Pre-release
Pre-release

This is a beta release of v2. Thus, there can still be changes and fixes. For testing purposes only!

  • What's new in version 2? Check out: #146
  • For the list of Breaking Changes check out #135

v1.7.9

15 May 21:05
Compare
Choose a tag to compare

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 guid savedQuery = 'fb15ee32-524d-41be-b6a0-7d0f28055d52' or savedQuery = '{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.

v1.7.8

02 Apr 05:14
Compare
Choose a tag to compare

Changes

  • Added deprecations. All deprecated functions and properties will be removed in v2. Please consult #135 for a list of breaking changes.