Skip to content

Commit c42a631

Browse files
author
spalger
committed
version 15.1.1
1 parent 9345043 commit c42a631

8 files changed

+32
-20
lines changed

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "elasticsearch",
3-
"version": "15.1.0",
3+
"version": "15.1.1",
44
"authors": [
55
"Spencer Alger <spencer@spenceralger.com>"
66
],

elasticsearch.angular.js

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! elasticsearch - v15.1.0 - 2018-07-03
1+
/*! elasticsearch - v15.1.1 - 2018-07-03
22
* http://www.elastic.co/guide/en/elasticsearch/client/javascript-api/current/index.html
33
* Copyright (c) 2018 Elasticsearch BV; Licensed Apache-2.0 */
44

@@ -29490,7 +29490,11 @@ Json.prototype.serialize = function (val, replacer, spaces) {
2949029490

2949129491
case 'object':
2949229492
if (val) {
29493-
return JSON.stringify(val, replacer, spaces);
29493+
if (replacer || spaces) {
29494+
return JSON.stringify(val, replacer, spaces);
29495+
} else {
29496+
return JSON.stringify(val);
29497+
}
2949429498
}
2949529499

2949629500
/* falls through */

elasticsearch.angular.min.js

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

elasticsearch.jquery.js

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! elasticsearch - v15.1.0 - 2018-07-03
1+
/*! elasticsearch - v15.1.1 - 2018-07-03
22
* http://www.elastic.co/guide/en/elasticsearch/client/javascript-api/current/index.html
33
* Copyright (c) 2018 Elasticsearch BV; Licensed Apache-2.0 */
44

@@ -29432,7 +29432,11 @@ Json.prototype.serialize = function (val, replacer, spaces) {
2943229432

2943329433
case 'object':
2943429434
if (val) {
29435-
return JSON.stringify(val, replacer, spaces);
29435+
if (replacer || spaces) {
29436+
return JSON.stringify(val, replacer, spaces);
29437+
} else {
29438+
return JSON.stringify(val);
29439+
}
2943629440
}
2943729441

2943829442
/* falls through */

elasticsearch.jquery.min.js

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

elasticsearch.js

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! elasticsearch - v15.1.0 - 2018-07-03
1+
/*! elasticsearch - v15.1.1 - 2018-07-03
22
* http://www.elastic.co/guide/en/elasticsearch/client/javascript-api/current/index.html
33
* Copyright (c) 2018 Elasticsearch BV; Licensed Apache-2.0 */
44

@@ -29442,7 +29442,11 @@ Json.prototype.serialize = function (val, replacer, spaces) {
2944229442

2944329443
case 'object':
2944429444
if (val) {
29445-
return JSON.stringify(val, replacer, spaces);
29445+
if (replacer || spaces) {
29446+
return JSON.stringify(val, replacer, spaces);
29447+
} else {
29448+
return JSON.stringify(val);
29449+
}
2944629450
}
2944729451

2944829452
/* falls through */

elasticsearch.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": "elasticsearch-browser",
3-
"version": "15.1.0",
3+
"version": "15.1.1",
44
"description": "The official low-level Elasticsearch client, for use in the browser.",
55
"main": "elasticsearch.js",
66
"scripts": {

0 commit comments

Comments
 (0)