@mimik/sumologic-winston-logger 2.0.2 → 2.0.3

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'});
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/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.3",
4
4
  "description": "Log wrapper for sumo, s3, kinesis and winston",
5
5
  "main": "./index.js",
6
6
  "type": "module",
@@ -33,17 +33,17 @@
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.848.0",
38
+ "@aws-sdk/client-kinesis": "3.848.0",
39
+ "axios": "1.10.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
49
  "lodash.trim": "4.5.1",
@@ -52,22 +52,22 @@
52
52
  "winston-transport": "4.9.0"
53
53
  },
54
54
  "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",
55
+ "@eslint/js": "9.31.0",
56
+ "@mimik/eslint-plugin-document-env": "^2.0.8",
57
+ "@mimik/request-helper": "^2.0.2",
58
+ "@stylistic/eslint-plugin": "5.2.0",
59
+ "body-parser": "2.2.0",
60
60
  "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",
61
+ "chai": "5.2.1",
62
+ "eslint": "9.31.0",
63
+ "eslint-plugin-import": "2.32.0",
64
+ "express": "5.1.0",
65
65
  "husky": "9.1.7",
66
- "jsdoc-to-markdown": "9.1.1",
66
+ "jsdoc-to-markdown": "9.1.2",
67
67
  "lodash.clone": "4.5.0",
68
- "mocha": "11.1.0",
68
+ "mocha": "11.7.1",
69
69
  "mochawesome": "7.1.3",
70
- "sinon": "20.0.0",
71
- "supertest": "7.1.0"
70
+ "sinon": "21.0.0",
71
+ "supertest": "7.1.3"
72
72
  }
73
73
  }