@exodus/error-tracking 1.1.2 → 1.1.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/CHANGELOG.md CHANGED
@@ -3,6 +3,12 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [1.1.3](https://github.com/ExodusMovement/exodus-hydra/compare/@exodus/error-tracking@1.1.2...@exodus/error-tracking@1.1.3) (2024-07-25)
7
+
8
+ ### Bug Fixes
9
+
10
+ - migrate definitions ([#8030](https://github.com/ExodusMovement/exodus-hydra/issues/8030)) ([d2dfde5](https://github.com/ExodusMovement/exodus-hydra/commit/d2dfde55dfa843eb52842f64b3aac3a6f9a59069))
11
+
6
12
  ## [1.1.2](https://github.com/ExodusMovement/exodus-hydra/compare/@exodus/error-tracking@1.1.1...@exodus/error-tracking@1.1.2) (2024-07-18)
7
13
 
8
14
  **Note:** Version bump only for package @exodus/error-tracking
package/atoms/index.js CHANGED
@@ -7,7 +7,6 @@ import { createInMemoryAtom } from '@exodus/atoms'
7
7
  */
8
8
  const errorsAtomDefinition = {
9
9
  id: 'errorsAtom',
10
- private: true,
11
10
  type: 'atom',
12
11
  factory: () => createInMemoryAtom({ defaultValue: { errors: [] } }),
13
12
  dependencies: [],
@@ -7,4 +7,5 @@ export const errorTrackingDefinition = {
7
7
  type: 'module',
8
8
  factory: createErrorTracking,
9
9
  dependencies: ['config', 'errorsAtom'],
10
+ public: true,
10
11
  }
@@ -5,7 +5,6 @@ import createFetchival from '@exodus/fetch/create-fetchival'
5
5
  export const remoteErrorTrackingDefinition = {
6
6
  id: 'remoteErrorTracking',
7
7
  type: 'module',
8
- private: true,
9
8
  factory: ({ config, fetch, defaultStackTraceParser }) => {
10
9
  const fetchival = createFetchival({ fetch })
11
10
  return createSentryClient({
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@exodus/error-tracking",
3
- "version": "1.1.2",
3
+ "version": "1.1.3",
4
4
  "type": "module",
5
5
  "description": "A simple error tracking package to let any feature collect errors and create the report",
6
6
  "author": "Exodus Movement, Inc.",
@@ -38,5 +38,5 @@
38
38
  "@exodus/sentry-client": "^3.2.0",
39
39
  "@exodus/typeforce": "^1.19.0"
40
40
  },
41
- "gitHead": "a76a22c96445bcaa05e18de0e0c323cf9dd04cba"
41
+ "gitHead": "3995391eb48639b2d60ced5224a6a8f4902a2466"
42
42
  }
package/report/index.js CHANGED
@@ -8,6 +8,7 @@ const errorTrackingReportDefinition = {
8
8
  },
9
9
  }),
10
10
  dependencies: ['errorsAtom'],
11
+ public: true,
11
12
  }
12
13
 
13
14
  export default errorTrackingReportDefinition