@terascope/elasticsearch-api 3.5.0 → 3.6.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@terascope/elasticsearch-api",
|
|
3
3
|
"displayName": "Elasticsearch API",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.6.0",
|
|
5
5
|
"description": "Elasticsearch client api used across multiple services, handles retries and exponential backoff",
|
|
6
6
|
"homepage": "https://github.com/terascope/teraslice/tree/master/packages/elasticsearch-api#readme",
|
|
7
7
|
"bugs": {
|
|
@@ -17,21 +17,21 @@
|
|
|
17
17
|
"test:7": "ELASTICSEARCH_VERSION='7.9.3' yarn run test",
|
|
18
18
|
"test:8": "ELASTICSEARCH_VERSION='8.1.2' yarn run test",
|
|
19
19
|
"test:debug": "ts-scripts test --debug . --",
|
|
20
|
-
"test:legacy": "LEGACY_CLIENT=true yarn run test",
|
|
20
|
+
"test:legacy": "LEGACY_CLIENT=true yarn run test:debug",
|
|
21
21
|
"test:opensearch": "TEST_OPENSEARCH='true' RESTRAINED_OPENSEARCH='true' yarn run test",
|
|
22
22
|
"test:watch": "ts-scripts test --watch . --"
|
|
23
23
|
},
|
|
24
24
|
"dependencies": {
|
|
25
25
|
"@terascope/types": "^0.11.2",
|
|
26
|
-
"@terascope/utils": "^0.
|
|
26
|
+
"@terascope/utils": "^0.46.0",
|
|
27
27
|
"bluebird": "^3.7.2",
|
|
28
28
|
"setimmediate": "^1.0.5"
|
|
29
29
|
},
|
|
30
30
|
"devDependencies": {
|
|
31
|
-
"@opensearch-project/opensearch": "^1.
|
|
31
|
+
"@opensearch-project/opensearch": "^1.2.0",
|
|
32
32
|
"@types/elasticsearch": "^5.0.40",
|
|
33
33
|
"elasticsearch": "^15.4.1",
|
|
34
|
-
"elasticsearch-store": "^0.
|
|
34
|
+
"elasticsearch-store": "^0.67.0",
|
|
35
35
|
"elasticsearch6": "npm:@elastic/elasticsearch@^6.7.0",
|
|
36
36
|
"elasticsearch7": "npm:@elastic/elasticsearch@^7.0.0",
|
|
37
37
|
"elasticsearch8": "npm:@elastic/elasticsearch@^8.0.0"
|
|
@@ -14,7 +14,9 @@ const {
|
|
|
14
14
|
createMappingFromDatatype
|
|
15
15
|
} = ElasticsearchTestHelpers;
|
|
16
16
|
|
|
17
|
-
|
|
17
|
+
const THREE_MINUTES = 3 * 60 * 1000;
|
|
18
|
+
|
|
19
|
+
jest.setTimeout(THREE_MINUTES + 60000);
|
|
18
20
|
|
|
19
21
|
function formatUploadData(
|
|
20
22
|
index, data, isES8ClientTest = false
|