@mongosh/logging 1.5.4 → 1.6.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.
Files changed (2) hide show
  1. package/.depcheckrc +2 -0
  2. package/package.json +8 -5
package/.depcheckrc ADDED
@@ -0,0 +1,2 @@
1
+ # needed as a peer dependency of @mongodb-js/devtools-connect
2
+ ignores: ['mongodb']
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mongosh/logging",
3
- "version": "1.5.4",
3
+ "version": "1.6.0",
4
4
  "description": "MongoDB Shell Logging Utilities Package",
5
5
  "homepage": "https://github.com/mongodb-js/mongosh",
6
6
  "license": "Apache-2.0",
@@ -18,12 +18,15 @@
18
18
  },
19
19
  "dependencies": {
20
20
  "@mongodb-js/devtools-connect": "^1.4.3",
21
- "@mongosh/errors": "1.5.4",
22
- "@mongosh/history": "1.5.4",
23
- "@mongosh/types": "1.5.4",
21
+ "@mongosh/errors": "1.6.0",
22
+ "@mongosh/history": "1.6.0",
23
+ "@mongosh/types": "1.6.0",
24
24
  "mongodb-log-writer": "^1.1.3",
25
25
  "mongodb-redact": "^0.2.2"
26
26
  },
27
+ "devDependencies": {
28
+ "mongodb": "^4.10.0"
29
+ },
27
30
  "scripts": {
28
31
  "test": "mocha -r \"../../scripts/import-expansions.js\" --timeout 15000 -r ts-node/register \"./src/**/*.spec.ts\"",
29
32
  "test-ci": "node ../../scripts/run-if-package-requested.js npm test",
@@ -35,5 +38,5 @@
35
38
  "mongosh": {
36
39
  "unitTestsOnly": true
37
40
  },
38
- "gitHead": "92fc4d6ce4b4eed4d8d29bc0d38a9eb50831d14e"
41
+ "gitHead": "fbbf54a08fb315ae5fde693a98d439b9aa3285f8"
39
42
  }