Skip to content

Commit 2636f5e

Browse files
authored
Update dependencies (#607)
* Add ignore_updates flag to gh action * Update papi * Update asset-transfer-api * Update pjs * Update moonwall * Update deps
1 parent f4d07b0 commit 2636f5e

File tree

2 files changed

+12
-10
lines changed

2 files changed

+12
-10
lines changed

.github/scripts/check_dependencies.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,10 @@ def check_releases(releases_source_file):
7373
continue
7474

7575
for name, info in items.items():
76+
# Skip dependencies marked with ignore_updates=true
77+
if info.get("ignore_updates", False):
78+
continue
79+
7680
current_version = info.get("version")
7781
latest_version, latest_url = REGISTRIES[category](info)
7882

variables.yml

Lines changed: 8 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,10 @@ dependencies:
77
architecture: macos-arm64
88
asset_transfer_api:
99
repository_url: https://github.com/paritytech/asset-transfer-api
10-
version: v0.6.0
10+
version: v0.6.1
1111
polkadot_sdk_solochain_template:
1212
repository_url: https://github.com/paritytech/polkadot-sdk-solochain-template
1313
version: v0.0.2
14-
polkadot_js_api:
15-
repository_url: https://github.com/polkadot-js/api
16-
version: v15.0.2
1714
srtool:
1815
repository_url: https://github.com/paritytech/srtool
1916
version: v0.18.2
@@ -36,6 +33,7 @@ dependencies:
3633
tokio:
3734
name: tokio
3835
version: 1.44.2
36+
ignore_updates: true
3937
chain_spec_builder:
4038
name: staging-chain-spec-builder
4139
version: 10.0.0
@@ -45,18 +43,18 @@ dependencies:
4543
javascript_packages:
4644
chopsticks:
4745
name: '@acala-network/chopsticks'
48-
version: 1.0.4
46+
version: 1.0.5
4947
asset_transfer_api:
5048
name: '@substrate/asset-transfer-api'
51-
version: 0.6.0
52-
polkadot_js_api_version: v15.8.1 # Check changelog for pjs version bumps
49+
version: 0.6.1
50+
polkadot_js_api_version: v15.9.2 # Check changelog for pjs version bumps
5351
moonwall:
5452
name: '@moonwall/cli'
55-
version: 5.9.1
53+
version: 5.11.0
5654
polkadot_js_api:
5755
name: '@polkadot/api'
58-
version: 15.9.1
56+
version: 15.9.3
5957
polkadot_api:
6058
name: polkadot-api
61-
version: 1.9.9
59+
version: 1.10.1
6260
# python_packages:

0 commit comments

Comments
 (0)