@bigbinary/neeto-commons-frontend 2.0.128 → 2.0.129

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
@@ -100,6 +100,7 @@ Category
100
100
  - [preprocessForSerialization](./docs/pure/objects.md#preprocessforserialization)
101
101
  - [keysToCamelCase](./docs/pure/objects.md#keystocamelcase)
102
102
  - [keysToSnakeCase](./docs/pure/objects.md#keystosnakecase)
103
+ - [serializeKeysToSnakeCase](./docs/pure/objects.md#serializekeystosnakecase)
103
104
  - [deepFreezeObject](./docs/pure/objects.md#deepfreezeobject)
104
105
  - [matches](./docs/pure/objects.md#matches)
105
106
  - [filterNonNull](./docs/pure/objects.md#filternonnull)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bigbinary/neeto-commons-frontend",
3
- "version": "2.0.128",
3
+ "version": "2.0.129",
4
4
  "description": "A package encapsulating common code across neeto projects including initializers, utility functions, common components and hooks and so on.",
5
5
  "repository": "git@github.com:bigbinary/neeto-commons-frontend.git",
6
6
  "author": "Amaljith K <amaljith.k@bigbinary.com>",
@@ -119,7 +119,7 @@ var FallbackComponent = function FallbackComponent() {
119
119
  }
120
120
  }))));
121
121
  };
122
- var ignorableErrorsRegex = /(window\.requestAnimationFrame|ResizeObserver|ChunkLoadError|window\.webkit\.messageHandlers|Request aborted)/;
122
+ var ignorableErrorsRegex = /(window\.requestAnimationFrame|ResizeObserver|ChunkLoadError|window\.webkit\.messageHandlers|Request aborted|Network Error)/;
123
123
 
124
124
  /** @type {import("neetocommons/react-utils").HoneybadgerErrorBoundary} */
125
125
  var HoneybadgerErrorBoundary = function HoneybadgerErrorBoundary(_ref) {