@exodus/activity-txs 3.0.0 → 3.1.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.
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
+ ## [3.1.0](https://github.com/ExodusMovement/exodus-hydra/compare/@exodus/activity-txs@3.0.0...@exodus/activity-txs@3.1.0) (2023-10-18)
7
+
8
+ ### Features
9
+
10
+ - call hasOwnProperty on prototype for security ([#4461](https://github.com/ExodusMovement/exodus-hydra/issues/4461)) ([f257407](https://github.com/ExodusMovement/exodus-hydra/commit/f2574075dbf2855301b9fc14d7fc7eaeb35f2455))
11
+
6
12
  ## [3.0.0](https://github.com/ExodusMovement/exodus-hydra/compare/@exodus/activity-txs@2.0.0...@exodus/activity-txs@3.0.0) (2023-10-06)
7
13
 
8
14
  ### ⚠ BREAKING CHANGES
@@ -44,7 +44,7 @@ const areActivitiesEqual = (obj1 = {}, obj2 = {}) => {
44
44
  // Iterate over each wallet account in obj1
45
45
  for (const walletAccount of obj1WalletAccounts) {
46
46
  // Check if obj2 has the same wallet account
47
- if (!obj2.hasOwnProperty(walletAccount)) {
47
+ if (!Object.prototype.hasOwnProperty.call(obj2, walletAccount)) {
48
48
  return false
49
49
  }
50
50
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@exodus/activity-txs",
3
- "version": "3.0.0",
3
+ "version": "3.1.0",
4
4
  "description": "The activity-txs feature",
5
5
  "author": "Exodus Movement Inc.",
6
6
  "repository": {
@@ -30,7 +30,7 @@
30
30
  "test": "jest"
31
31
  },
32
32
  "dependencies": {
33
- "@exodus/atoms": "^5.7.1",
33
+ "@exodus/atoms": "^5.7.2",
34
34
  "@exodus/basic-utils": "^2.1.0",
35
35
  "@exodus/core-selectors": "^1.5.0",
36
36
  "@exodus/module": "^1.2.0",
@@ -41,7 +41,7 @@
41
41
  "devDependencies": {
42
42
  "@exodus/assets": "^8.0.95",
43
43
  "@exodus/assets-base": "^8.1.10",
44
- "@exodus/assets-feature": "^3.4.0",
44
+ "@exodus/assets-feature": "^3.5.0",
45
45
  "@exodus/bitcoin-plugin": "^1.4.2",
46
46
  "@exodus/blockchain-metadata": "^14.1.0",
47
47
  "@exodus/dependency-injection": "^2.0.1",
@@ -55,5 +55,5 @@
55
55
  "jest": "^29.1.2",
56
56
  "redux": "^4.2.1"
57
57
  },
58
- "gitHead": "ba03dcc3b373d079c9d7f5c55e0845a38badfcab"
58
+ "gitHead": "19011c0e956a4d74000965b2c83d01f5c2ddd143"
59
59
  }
@@ -29,8 +29,7 @@ const collapseBatch = ({ batch, assets }) => {
29
29
  batchedIds,
30
30
  },
31
31
  }),
32
- }),
33
- { assets }
32
+ })
34
33
  )
35
34
  }
36
35