Skip to content

Commit 23a065f

Browse files
Release v1.2.9
1 parent 723027c commit 23a065f

File tree

6 files changed

+12
-10
lines changed

6 files changed

+12
-10
lines changed

dist/dwa.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! dwa v1.2.8 (c) 2017 Aleksandr Rogov */
1+
/*! dwa v1.2.9 (c) 2017 Aleksandr Rogov */
22
(function webpackUniversalModuleDefinition(root, factory) {
33
if(typeof exports === 'object' && typeof module === 'object')
44
module.exports = factory();

dist/dynamics-web-api-callbacks.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! dynamics-web-api-callbacks v1.2.8 (c) 2017 Aleksandr Rogov */
1+
/*! dynamics-web-api-callbacks v1.2.9 (c) 2017 Aleksandr Rogov */
22
(function webpackUniversalModuleDefinition(root, factory) {
33
if(typeof exports === 'object' && typeof module === 'object')
44
module.exports = factory();
@@ -386,7 +386,7 @@ module.exports = function sendRequest(method, uri, config, data, additionalHeade
386386
}
387387

388388
//if the URL contains more characters than max possible limit, convert the request to a batch request
389-
if (uri.length > 2083) {
389+
if (uri.length > 2000) {
390390
var batchBoundary = 'dwa_batch_' + generateUUID();
391391

392392
var batchBody = [];
@@ -692,6 +692,7 @@ module.exports = function dateReviver(key, value) {
692692

693693
var dateReviver = __webpack_require__(6);
694694

695+
//https://github.com/emiltholin/google-api-batch-utils
695696
function parseBatchResponse(response) {
696697
// Not the same delimiter in the response as we specify ourselves in the request,
697698
// so we have to extract it.

dist/dynamics-web-api-callbacks.min.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/dynamics-web-api.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! dynamics-web-api v1.2.8 (c) 2017 Aleksandr Rogov */
1+
/*! dynamics-web-api v1.2.9 (c) 2017 Aleksandr Rogov */
22
(function webpackUniversalModuleDefinition(root, factory) {
33
if(typeof exports === 'object' && typeof module === 'object')
44
module.exports = factory();
@@ -386,7 +386,7 @@ module.exports = function sendRequest(method, uri, config, data, additionalHeade
386386
}
387387

388388
//if the URL contains more characters than max possible limit, convert the request to a batch request
389-
if (uri.length > 2083) {
389+
if (uri.length > 2000) {
390390
var batchBoundary = 'dwa_batch_' + generateUUID();
391391

392392
var batchBody = [];
@@ -692,6 +692,7 @@ module.exports = function dateReviver(key, value) {
692692

693693
var dateReviver = __webpack_require__(6);
694694

695+
//https://github.com/emiltholin/google-api-batch-utils
695696
function parseBatchResponse(response) {
696697
// Not the same delimiter in the response as we specify ourselves in the request,
697698
// so we have to extract it.

dist/dynamics-web-api.min.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "dynamics-web-api",
3-
"version": "1.2.8",
3+
"version": "1.2.9",
44
"description": "DynamicsWebApi is a Microsoft Dynamics CRM Web API helper library",
55
"keywords": [
66
"crm",

0 commit comments

Comments
 (0)