@contrast/assess 1.61.0 → 1.62.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.
@@ -65,7 +65,7 @@ module.exports = function tracker(core) {
65
65
 
66
66
  if (distringuish.getProperties(value)) {
67
67
  const err = new Error();
68
- logger.error({ err, value }, 'tracker.track called with a string value that is already tracked');
68
+ logger.debug({ err, value }, 'tracker.track called with a string value that is already tracked');
69
69
  return { extern: null };
70
70
  }
71
71
 
@@ -101,7 +101,7 @@ function factory(core) {
101
101
  // that the caller previously logged, we generate a stack trace to
102
102
  // capture that information.
103
103
  const err = new Error('No source context found');
104
- core.logger.warn({ err }, 'assess running outside of request scope');
104
+ core.logger.debug({ err }, 'assess running outside of request scope');
105
105
  return null;
106
106
  }
107
107
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@contrast/assess",
3
- "version": "1.61.0",
3
+ "version": "1.62.0",
4
4
  "description": "Contrast service providing framework-agnostic Assess support",
5
5
  "license": "SEE LICENSE IN LICENSE",
6
6
  "author": "Contrast Security <nodejs@contrastsecurity.com> (https://www.contrastsecurity.com)",
@@ -20,18 +20,18 @@
20
20
  "test": "bash ../scripts/test.sh"
21
21
  },
22
22
  "dependencies": {
23
- "@contrast/common": "1.36.0",
24
- "@contrast/config": "1.51.0",
25
- "@contrast/core": "1.56.0",
26
- "@contrast/dep-hooks": "1.25.0",
23
+ "@contrast/common": "1.37.0",
24
+ "@contrast/config": "1.52.0",
25
+ "@contrast/core": "1.57.0",
26
+ "@contrast/dep-hooks": "1.26.0",
27
27
  "@contrast/distringuish": "^6.0.2",
28
- "@contrast/instrumentation": "1.35.0",
29
- "@contrast/logger": "1.29.0",
30
- "@contrast/patcher": "1.28.0",
31
- "@contrast/rewriter": "1.32.0",
32
- "@contrast/route-coverage": "1.48.0",
33
- "@contrast/scopes": "1.26.0",
34
- "@contrast/sources": "1.2.0",
28
+ "@contrast/instrumentation": "1.36.0",
29
+ "@contrast/logger": "1.30.0",
30
+ "@contrast/patcher": "1.29.0",
31
+ "@contrast/rewriter": "1.33.0",
32
+ "@contrast/route-coverage": "1.49.0",
33
+ "@contrast/scopes": "1.27.0",
34
+ "@contrast/sources": "1.3.0",
35
35
  "semver": "^7.6.0"
36
36
  }
37
37
  }