@kronos-integration/service 10.4.7 → 10.4.11

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,6 +1,6 @@
1
1
  {
2
2
  "name": "@kronos-integration/service",
3
- "version": "10.4.7",
3
+ "version": "10.4.11",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -29,8 +29,8 @@
29
29
  "lint:docs": "documentation lint ./src/**/*.mjs"
30
30
  },
31
31
  "dependencies": {
32
- "@kronos-integration/endpoint": "^9.4.12",
33
- "@kronos-integration/interceptor": "^10.2.13",
32
+ "@kronos-integration/endpoint": "^9.4.14",
33
+ "@kronos-integration/interceptor": "^10.2.14",
34
34
  "loglevel-mixin": "^6.0.5",
35
35
  "model-attributes": "^4.1.12",
36
36
  "remove-sensible-values": "^1.0.9",
@@ -38,12 +38,12 @@
38
38
  },
39
39
  "devDependencies": {
40
40
  "ava": "^3.15.0",
41
- "c8": "^7.8.0",
41
+ "c8": "^7.10.0",
42
42
  "documentation": "^13.2.5",
43
- "semantic-release": "^17.4.4"
43
+ "semantic-release": "^18.0.1"
44
44
  },
45
45
  "engines": {
46
- "node": ">=14.17.4"
46
+ "node": ">=16.13.1"
47
47
  },
48
48
  "repository": {
49
49
  "type": "git",
@@ -192,7 +192,7 @@ export const InitializationContext = LogLevelMixin(
192
192
  return module.default;
193
193
  }
194
194
  } catch (e) {
195
- this.info(e);
195
+ this.warn(e);
196
196
  }
197
197
 
198
198
  const outstandingFactory = {};
@@ -210,7 +210,7 @@ export const InitializationContext = LogLevelMixin(
210
210
 
211
211
  outstandingFactory.timeout = setTimeout(() => {
212
212
  const message = `timeout waiting for ${type}`;
213
- this.info(message);
213
+ this.warn(message);
214
214
  reject(new Error(message));
215
215
  }, 1000 * 10);
216
216