elasticio-sailor-nodejs 2.7.4-dev.1 → 2.7.5-dev.1

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/CHANGELOG.md CHANGED
@@ -1,3 +1,7 @@
1
+ ## 2.7.4 (November 14, 2024)
2
+
3
+ * Fixed error location if component use `Rebound` functionality
4
+
1
5
  ## 2.7.3 (September 12, 2024)
2
6
 
3
7
  * @elastic.io/maester-client updated to 5.0.3 to get rid of the vulnerability
package/lib/settings.js CHANGED
@@ -5,7 +5,7 @@ const PREFIX = 'ELASTICIO_';
5
5
  function getOptionalEnvVars(envVars) {
6
6
  const optional = {
7
7
  REBOUND_INITIAL_EXPIRATION: 15000,
8
- REBOUND_LIMIT: 3,
8
+ REBOUND_LIMIT: 20,
9
9
  COMPONENT_PATH: '',
10
10
  RABBITMQ_PREFETCH_SAILOR: 1,
11
11
  STARTUP_REQUIRED: false,
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "elasticio-sailor-nodejs",
3
3
  "description": "The official elastic.io library for bootstrapping and executing for Node.js connectors",
4
- "version": "2.7.4-dev.1",
4
+ "version": "2.7.5-dev.1",
5
5
  "main": "run.js",
6
6
  "scripts": {
7
7
  "audit": "better-npm-audit audit --level high --production",
@@ -16,7 +16,7 @@
16
16
  "node": ">=12.13.0"
17
17
  },
18
18
  "dependencies": {
19
- "@elastic.io/maester-client": "5.0.3",
19
+ "@elastic.io/maester-client": "6.0.0-dev.1",
20
20
  "amqplib": "0.8.0",
21
21
  "bunyan": "1.8.10",
22
22
  "co": "4.6.0",