Skip to content

Commit

Permalink
Merge branch 'main' into v3-next
Browse files Browse the repository at this point in the history
  • Loading branch information
ekenigs committed Aug 19, 2024
2 parents 0952697 + 22603d0 commit 1a61f6a
Show file tree
Hide file tree
Showing 16 changed files with 95 additions and 40 deletions.
5 changes: 5 additions & 0 deletions .changeset/eight-insects-warn.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@moonbeam-network/xcm-sdk': patch
---

Fix acceptance tests and make them run on every push
6 changes: 1 addition & 5 deletions .github/workflows/acceptance.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,6 @@
name: acceptance

on:
push:
branches:
- main
workflow_dispatch:
on: push

concurrency: ${{ github.workflow }}-${{ github.ref }}

Expand Down
6 changes: 3 additions & 3 deletions examples/sdk-simple/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@
"author": "",
"license": "MIT",
"dependencies": {
"@moonbeam-network/xcm-config": "2.5.3",
"@moonbeam-network/xcm-sdk": "2.5.4",
"@moonbeam-network/xcm-utils": "2.1.4"
"@moonbeam-network/xcm-config": "2.5.4",
"@moonbeam-network/xcm-sdk": "2.5.5",
"@moonbeam-network/xcm-utils": "2.1.5"
},
"devDependencies": {
"bun": "^1.1.21"
Expand Down
10 changes: 10 additions & 0 deletions packages/builder/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# @moonbeam-network/xcm-builder

## 2.4.2

### Patch Changes

- [#322](https://github.com/moonbeam-foundation/xcm-sdk/pull/322) [`70085b8`](https://github.com/moonbeam-foundation/xcm-sdk/commit/70085b814801967cd7ccce3a26ed681e45da9677) Thanks [@Rihyx](https://github.com/Rihyx)! - Fix axios vulnerability

- Updated dependencies [[`70085b8`](https://github.com/moonbeam-foundation/xcm-sdk/commit/70085b814801967cd7ccce3a26ed681e45da9677)]:
- @moonbeam-network/xcm-types@2.3.2
- @moonbeam-network/xcm-utils@2.1.5

## 2.4.1

### Patch Changes
Expand Down
6 changes: 3 additions & 3 deletions packages/builder/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@moonbeam-network/xcm-builder",
"version": "2.4.1",
"version": "2.4.2",
"description": "Moonbeam XCM builder",
"scripts": {
"build": "tsup",
Expand Down Expand Up @@ -37,8 +37,8 @@
"types": "./build/index.d.ts",
"main": "./build/index.mjs",
"dependencies": {
"@moonbeam-network/xcm-types": "2.3.1",
"@moonbeam-network/xcm-utils": "2.1.4",
"@moonbeam-network/xcm-types": "2.3.2",
"@moonbeam-network/xcm-utils": "2.1.5",
"big.js": "^6.2.1"
},
"peerDependencies": {
Expand Down
10 changes: 10 additions & 0 deletions packages/config/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# @moonbeam-network/xcm-config

## 2.5.4

### Patch Changes

- [#322](https://github.com/moonbeam-foundation/xcm-sdk/pull/322) [`70085b8`](https://github.com/moonbeam-foundation/xcm-sdk/commit/70085b814801967cd7ccce3a26ed681e45da9677) Thanks [@Rihyx](https://github.com/Rihyx)! - Fix axios vulnerability

- Updated dependencies [[`70085b8`](https://github.com/moonbeam-foundation/xcm-sdk/commit/70085b814801967cd7ccce3a26ed681e45da9677)]:
- @moonbeam-network/xcm-builder@2.4.2
- @moonbeam-network/xcm-types@2.3.2

## 2.5.3

### Patch Changes
Expand Down
8 changes: 4 additions & 4 deletions packages/config/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@moonbeam-network/xcm-config",
"version": "2.5.3",
"version": "2.5.4",
"description": "All necessary configuration to transfer assets from Moonbeam, Moonriver, Moonbase to other parachains and back",
"scripts": {
"build": "tsup",
Expand Down Expand Up @@ -37,9 +37,9 @@
"types": "./build/index.d.ts",
"main": "./build/index.mjs",
"dependencies": {
"@moonbeam-network/xcm-builder": "2.4.1",
"@moonbeam-network/xcm-types": "2.3.1",
"@moonbeam-network/xcm-utils": "2.1.4"
"@moonbeam-network/xcm-builder": "2.4.2",
"@moonbeam-network/xcm-types": "2.3.2",
"@moonbeam-network/xcm-utils": "2.1.5"
},
"peerDependencies": {
"@polkadot/types": "^12.2.3",
Expand Down
4 changes: 2 additions & 2 deletions packages/mrl/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
"types": "./build/index.d.ts",
"main": "./build/index.mjs",
"dependencies": {
"@moonbeam-network/xcm-config": "2.5.3",
"@moonbeam-network/xcm-types": "2.3.1"
"@moonbeam-network/xcm-config": "2.5.4",
"@moonbeam-network/xcm-types": "2.3.2"
}
}
12 changes: 12 additions & 0 deletions packages/sdk/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# @moonbeam-network/xcm-sdk

## 2.5.5

### Patch Changes

- [#322](https://github.com/moonbeam-foundation/xcm-sdk/pull/322) [`70085b8`](https://github.com/moonbeam-foundation/xcm-sdk/commit/70085b814801967cd7ccce3a26ed681e45da9677) Thanks [@Rihyx](https://github.com/Rihyx)! - Fix axios vulnerability

- Updated dependencies [[`70085b8`](https://github.com/moonbeam-foundation/xcm-sdk/commit/70085b814801967cd7ccce3a26ed681e45da9677)]:
- @moonbeam-network/xcm-builder@2.4.2
- @moonbeam-network/xcm-config@2.5.4
- @moonbeam-network/xcm-types@2.3.2
- @moonbeam-network/xcm-utils@2.1.5

## 2.5.4

### Patch Changes
Expand Down
10 changes: 5 additions & 5 deletions packages/sdk/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@moonbeam-network/xcm-sdk",
"version": "2.5.4",
"version": "2.5.5",
"description": "The Moonbeam XCM SDK enables developers to easily deposit and withdraw assets to Moonbeam/Moonriver from the relay chain and other parachains in the Polkadot/Kusama ecosystem",
"scripts": {
"build": "tsup",
Expand Down Expand Up @@ -39,10 +39,10 @@
"types": "./build/index.d.ts",
"main": "./build/index.mjs",
"dependencies": {
"@moonbeam-network/xcm-builder": "2.4.1",
"@moonbeam-network/xcm-config": "2.5.3",
"@moonbeam-network/xcm-types": "2.3.1",
"@moonbeam-network/xcm-utils": "2.1.4",
"@moonbeam-network/xcm-builder": "2.4.2",
"@moonbeam-network/xcm-config": "2.5.4",
"@moonbeam-network/xcm-types": "2.3.2",
"@moonbeam-network/xcm-utils": "2.1.5",
"big.js": "^6.2.1"
},
"peerDependencies": {
Expand Down
7 changes: 7 additions & 0 deletions packages/sdk/tests/acceptance/__snapshots__/sdk.test.ts.snap
Original file line number Diff line number Diff line change
Expand Up @@ -448,6 +448,13 @@ exports[`sdk > getParachainBalances > on 'Moonbeam' for address: '0x4E82143Af671
"originSymbol": "NCTR",
"symbol": "NCTR",
},
a {
"amount": 0n,
"decimals": 10,
"key": "wifd",
"originSymbol": "WIFD",
"symbol": "WIFD",
},
a {
"amount": 0n,
"decimals": 10,
Expand Down
9 changes: 9 additions & 0 deletions packages/types/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# @moonbeam-network/xcm-types

## 2.3.2

### Patch Changes

- [#322](https://github.com/moonbeam-foundation/xcm-sdk/pull/322) [`70085b8`](https://github.com/moonbeam-foundation/xcm-sdk/commit/70085b814801967cd7ccce3a26ed681e45da9677) Thanks [@Rihyx](https://github.com/Rihyx)! - Fix axios vulnerability

- Updated dependencies [[`70085b8`](https://github.com/moonbeam-foundation/xcm-sdk/commit/70085b814801967cd7ccce3a26ed681e45da9677)]:
- @moonbeam-network/xcm-utils@2.1.5

## 2.3.1

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/types/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@moonbeam-network/xcm-types",
"version": "2.3.1",
"version": "2.3.2",
"description": "Moonbeam XCM Types",
"scripts": {
"build": "tsup",
Expand Down Expand Up @@ -36,7 +36,7 @@
"types": "./build/index.d.ts",
"main": "./build/index.mjs",
"dependencies": {
"@moonbeam-network/xcm-utils": "2.1.4",
"@moonbeam-network/xcm-utils": "2.1.5",
"big.js": "^6.2.1"
},
"devDependencies": {
Expand Down
6 changes: 6 additions & 0 deletions packages/utils/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @moonbeam-network/xcm-utils

## 2.1.5

### Patch Changes

- [#322](https://github.com/moonbeam-foundation/xcm-sdk/pull/322) [`70085b8`](https://github.com/moonbeam-foundation/xcm-sdk/commit/70085b814801967cd7ccce3a26ed681e45da9677) Thanks [@Rihyx](https://github.com/Rihyx)! - Fix axios vulnerability

## 2.1.4

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/utils/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@moonbeam-network/xcm-utils",
"version": "2.1.4",
"version": "2.1.5",
"description": "Moonbeam XCM utilities",
"scripts": {
"build": "tsup",
Expand Down
30 changes: 15 additions & 15 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 1a61f6a

Please sign in to comment.