@mimik/sumologic-winston-logger 2.0.2 → 2.0.4

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/README.md CHANGED
@@ -162,7 +162,7 @@ Formatting of SumoLogic logs is handled by this module in the following ways:
162
162
  Listing 2 below show you how to declare a logger to run under ECMAScript 6 and then log using the various log levels supported by the Sumologic-Winston-Logger.
163
163
 
164
164
  ``` javascript
165
- const logger = require('sumologic-winston-logger');
165
+ import logger from 'sumologic-winston-logger';
166
166
 
167
167
  logger.log('debug', 'this is a debug statement using log');
168
168
  logger.debug({ message: 'this is a debug statement using an object'});
@@ -103,7 +103,7 @@ Formatting of SumoLogic logs is handled by this module in the following ways:
103
103
  Listing 2 below show you how to declare a logger to run under ECMAScript 6 and then log using the various log levels supported by the Sumologic-Winston-Logger.
104
104
 
105
105
  ``` javascript
106
- const logger = require('sumologic-winston-logger');
106
+ import logger from 'sumologic-winston-logger';
107
107
 
108
108
  logger.log('debug', 'this is a debug statement using log');
109
109
  logger.debug({ message: 'this is a debug statement using an object'});
@@ -25,7 +25,6 @@ import isNil from 'lodash.isnil';
25
25
  import isUndefined from 'lodash.isundefined';
26
26
  import process from 'process';
27
27
  import split from 'lodash.split';
28
- import trim from 'lodash.trim';
29
28
 
30
29
  const DECIMAL = 10;
31
30
  const EXISTING_ERRORS = 1;
@@ -116,7 +115,7 @@ const checkMode = (mode) => {
116
115
  let logMode = null;
117
116
 
118
117
  if (mode) {
119
- logMode = split(trim(mode), /\s*,\s*/u);
118
+ logMode = split(mode.trim(), /\s*,\s*/u);
120
119
  if (logMode.length === NO_MODE) throw new Error('Invalid LOG_MODE: cannot be an empty array');
121
120
  if (difference(logMode, ALL_MODES).length !== KNOWN_MODE) throw new Error(`Invalid items in LOG_MODE: ${mode}`);
122
121
  if (logMode.includes(NONE_MODE) && logMode.length !== SINGLE_MODE) throw new Error(`Cannot have multiple modes when ${NONE_MODE} is selected`);
package/eslint.config.js CHANGED
@@ -16,7 +16,7 @@ export default [
16
16
  ignores: ['mochawesome-report/**', 'node_modules/**', 'dist/**'],
17
17
  },
18
18
  importPlugin.flatConfigs.recommended,
19
- stylistic.configs['recommended-flat'],
19
+ stylistic.configs.recommended,
20
20
  js.configs.all,
21
21
  {
22
22
  plugins: {
package/lib/stackLib.js CHANGED
@@ -4,7 +4,6 @@ import {
4
4
  } from 'url';
5
5
  import path from 'path';
6
6
  import reject from 'lodash.reject';
7
- import trimStart from 'lodash.trimstart';
8
7
 
9
8
  // Stack trace format :
10
9
  // https://github.com/v8/v8/wiki/Stack%20Trace%20API
@@ -45,7 +44,7 @@ const parseStack = (newError) => {
45
44
  line: stackParts[LINE],
46
45
  pos: stackParts[POSITION],
47
46
  file: path.basename(stackParts[PATH]),
48
- stack: `${SHIFT}${trimStart(truncatedList.join('\n'))}`,
47
+ stack: `${SHIFT}${truncatedList.join('\n').trimStart()}`,
49
48
  };
50
49
  stackInfo.hash = crypto.createHash('sha256', SECRET)
51
50
  .update(stackInfo.stack)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mimik/sumologic-winston-logger",
3
- "version": "2.0.2",
3
+ "version": "2.0.4",
4
4
  "description": "Log wrapper for sumo, s3, kinesis and winston",
5
5
  "main": "./index.js",
6
6
  "type": "module",
@@ -33,41 +33,39 @@
33
33
  "url": "https://bitbucket.org/mimiktech/sumologic-winston-logger"
34
34
  },
35
35
  "dependencies": {
36
- "@mimik/lib-filters": "^2.0.3",
37
- "@aws-sdk/client-s3": "3.775.0",
38
- "@aws-sdk/client-kinesis": "3.775.0",
39
- "axios": "1.8.4",
36
+ "@mimik/lib-filters": "^2.0.4",
37
+ "@aws-sdk/client-s3": "3.864.0",
38
+ "@aws-sdk/client-kinesis": "3.864.0",
39
+ "axios": "1.11.0",
40
40
  "bluebird": "3.7.2",
41
41
  "lodash.difference": "4.5.0",
42
42
  "lodash.foreach": "4.5.0",
43
43
  "lodash.isnil": "4.0.0",
44
44
  "lodash.isobject": "3.0.2",
45
45
  "lodash.isstring": "4.0.1",
46
- "lodash.isundefined": "",
46
+ "lodash.isundefined": "3.0.1",
47
47
  "lodash.reject": "4.6.0",
48
48
  "lodash.split": "4.4.2",
49
- "lodash.trim": "4.5.1",
50
- "lodash.trimstart": "4.5.1",
51
49
  "winston": "3.17.0",
52
50
  "winston-transport": "4.9.0"
53
51
  },
54
52
  "devDependencies": {
55
- "@eslint/js": "9.23.0",
56
- "@mimik/eslint-plugin-document-env": "^2.0.5",
57
- "@mimik/request-helper": "^2.0.1",
58
- "@stylistic/eslint-plugin": "4.2.0",
59
- "body-parser": "1.20.3",
53
+ "@eslint/js": "9.33.0",
54
+ "@mimik/eslint-plugin-document-env": "^2.0.8",
55
+ "@mimik/request-helper": "^2.0.2",
56
+ "@stylistic/eslint-plugin": "5.2.3",
57
+ "body-parser": "2.2.0",
60
58
  "c8": "10.1.3",
61
- "chai": "5.2.0",
62
- "eslint": "9.23.0",
63
- "eslint-plugin-import": "2.31.0",
64
- "express": "4.21.2",
59
+ "chai": "5.2.1",
60
+ "eslint": "9.33.0",
61
+ "eslint-plugin-import": "2.32.0",
62
+ "express": "5.1.0",
65
63
  "husky": "9.1.7",
66
- "jsdoc-to-markdown": "9.1.1",
64
+ "jsdoc-to-markdown": "9.1.2",
67
65
  "lodash.clone": "4.5.0",
68
- "mocha": "11.1.0",
66
+ "mocha": "11.7.1",
69
67
  "mochawesome": "7.1.3",
70
- "sinon": "20.0.0",
71
- "supertest": "7.1.0"
68
+ "sinon": "21.0.0",
69
+ "supertest": "7.1.4"
72
70
  }
73
71
  }