@cumulus/common 10.1.2 → 11.0.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/package.json +5 -5
  2. package/util.d.ts +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cumulus/common",
3
- "version": "10.1.2",
3
+ "version": "11.0.0",
4
4
  "description": "Common utilities used across tasks",
5
5
  "keywords": [
6
6
  "GIBS",
@@ -41,8 +41,8 @@
41
41
  "author": "Cumulus Authors",
42
42
  "license": "Apache-2.0",
43
43
  "dependencies": {
44
- "@cumulus/errors": "10.1.2",
45
- "@cumulus/logger": "10.1.2",
44
+ "@cumulus/errors": "11.0.0",
45
+ "@cumulus/logger": "11.0.0",
46
46
  "ajv": "^6.12.3",
47
47
  "aws-sdk": "^2.585.0",
48
48
  "follow-redirects": "^1.2.4",
@@ -50,7 +50,7 @@
50
50
  "is-ip": "^3.1.0",
51
51
  "jsonpath-plus": "^3.0.0",
52
52
  "lodash": "^4.17.21",
53
- "node-forge": "^1.0.0",
53
+ "node-forge": "^1.3.0",
54
54
  "p-limit": "^2.0.0",
55
55
  "p-map": "^1.2.0",
56
56
  "p-retry": "^4.2.0",
@@ -64,5 +64,5 @@
64
64
  "@types/node-forge": "^0.9.5",
65
65
  "@types/url-join": "^4.0.0"
66
66
  },
67
- "gitHead": "3b59753fa85064549b70ad8ed4a4ee213c5af313"
67
+ "gitHead": "e922ad12fd94affa6cd60a97a184a465a756c50b"
68
68
  }
package/util.d.ts CHANGED
@@ -27,7 +27,7 @@ export declare const deprecate: (name: string, version: string, alternative?: st
27
27
  *
28
28
  * @alias module:util
29
29
  */
30
- export declare const removeNilProperties: <T extends object>(obj: T) => import("lodash").Dictionary<any>;
30
+ export declare const removeNilProperties: <T extends object>(obj: T) => T;
31
31
  /**
32
32
  * Test if a value is included in a list of items
33
33
  *