@hyperlane-xyz/utils 5.4.0-beta.0 → 5.5.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.
@@ -20,7 +20,7 @@ describe('Object utilities', () => {
20
20
  const obj1 = { a: 1, b: { c: ['arr1'] } };
21
21
  const obj2 = { a: 2, b: { c: ['arr2'] } };
22
22
  const merged = objMerge(obj1, obj2, 10, true);
23
- expect(merged).to.eql({ a: 2, b: { c: ['arr1', 'arr2'] } });
23
+ expect(merged).to.eql({ a: 2, b: { c: ['arr2', 'arr1'] } });
24
24
  });
25
25
  it('objMerge without array', () => {
26
26
  const obj1 = { a: 1, b: { c: ['arr1'] } };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@hyperlane-xyz/utils",
3
3
  "description": "General utilities and types for the Hyperlane network",
4
- "version": "5.4.0-beta.0",
4
+ "version": "5.5.0",
5
5
  "dependencies": {
6
6
  "@cosmjs/encoding": "^0.32.4",
7
7
  "@solana/web3.js": "^1.78.0",