Skip to content

Commit

Permalink
Merge pull request #69 from availproject/ghali/update-upstream
Browse files Browse the repository at this point in the history
Ghali/update upstream
  • Loading branch information
Leouarz authored Apr 29, 2024
2 parents cbdcfdc + ef6f13b commit fb4213d
Show file tree
Hide file tree
Showing 121 changed files with 1,925 additions and 2,362 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/chain-endpoints.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ jobs:
if: github.repository == 'polkadot-js/apps'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 'lts/*'
- name: check
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pr-any.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ jobs:
step: ['lint', 'test', 'build:code']
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 'lts/*'
- name: ${{ matrix.step }}
Expand Down
82 changes: 77 additions & 5 deletions .github/workflows/push-master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,17 +7,89 @@ on:
jobs:
# publish to gh-pages (& IPFS when a release is detected)
www:
continue-on-error: true
if: "! startsWith(github.event.head_commit.message, '[CI Skip]')"
strategy:
matrix:
step: ['lint', 'build:www']
step: ['build:release:www']
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0
token: ${{ secrets.GH_PAT_BOT }}
- uses: actions/setup-node@v4
with:
node-version: 'lts/*'
- name: ${{ matrix.step }}
env:
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }}
CF_API_TOKEN: ${{ secrets.CF_API_TOKEN }}
CRUST_SEEDS: ${{ secrets.CRUST_SEEDS }}
GH_PAGES_SRC: packages/apps/build
GH_PAT: ${{ secrets.GH_PAT_BOT }}
GH_RELEASE_GITHUB_API_TOKEN: ${{ secrets.GH_PAT_BOT }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
PINATA_API_KEY: ${{ secrets.PINATA_API_KEY }}
PINATA_SECRET_KEY: ${{ secrets.PINATA_SECRET_KEY }}
run: |
yarn install --immutable
yarn ${{ matrix.step }}
yarn ${{ matrix.step }}
# only run on "CI skip", i.e. when the actual version has been bumped to release/stable
docker:
if: "startsWith(github.event.head_commit.message, '[CI Skip] release/stable')"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 'lts/*'
- name: docker
env:
DOCKER_PASS: ${{ secrets.DOCKER_PASS }}
run: |
./docker/build.sh
# only run on "CI skip", i.e. when the actual version has been bumped to release/stable
electron:
if: "startsWith(github.event.head_commit.message, '[CI Skip] release/stable')"
strategy:
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
with:
token: ${{ secrets.GH_PAT_BOT }}
- uses: actions/setup-node@v4
with:
node-version: 'lts/*'
- name: Prepare for app notarization (macOS)
if: startsWith(matrix.os, 'macos')
# Import Apple API key for app notarization on macOS
run: |
mkdir -p ~/private_keys/
echo '${{ secrets.API_KEY }}' > ~/private_keys/AuthKey_${{ secrets.API_KEY_ID }}.p8
- name: Build/release Electron app
uses: samuelmeuli/action-electron-builder@v1
with:
# Base64-encoded code signing certificate for macOS
mac_certs: ${{ secrets.MAC_CERTS }}
# Password for decrypting `mac_certs`
mac_certs_password: ${{ secrets.MAC_CERTS_PASSWORD }}
# Base64-encoded code signing certificate for Windows
windows_certs: ${{ secrets.WINDOWS_CERTS }}
# Password for decrypting `windows_certs`
windows_certs_password: ${{ secrets.WINDOWS_CERTS_PASSWORD }}
# GitHub token, automatically provided to the action
# (No need to define this secret in the repo settings)
github_token: ${{ secrets.GITHUB_TOKEN }}
args: '--project packages/apps-electron'
build_script_name: build:release:electron
# If the commit is tagged with a version (e.g. "v1.0.0"),
# release the app after building
release: ${{ startsWith(github.ref, 'refs/tags/v') }}
env:
# macOS notarization API key
API_KEY_ID: ${{ secrets.API_KEY_ID }}
API_KEY_ISSUER_ID: ${{ secrets.API_KEY_ISSUER_ID }}
4 changes: 2 additions & 2 deletions .github/workflows/test-nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ jobs:
name: ${{ matrix.step }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 'lts/*'
- name: ${{ matrix.step }}
Expand Down
81 changes: 81 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,86 @@
# CHANGELOG

## 0.137.1 Apr 27, 2024

Contributed:

- Identity fix. Username has been introduced in identity pallet (Thanks tohttps://github.com/niklabh)
- Add Dwellir asset-hub-paseo-rpc endpoint (Thanks to https://github.com/jakobilobi)
- Archive Logion solochain and switch testnet (Thanks to https://github.com/gdethier)
- Update dancebox endpoint (Thanks to https://github.com/albertov19)
- Add analog testnet (Thanks to https://github.com/FlorianFranzen)

Changes:

- Fix Staking with latest breaking changes
- Bump polkadot/* deps


## 0.136.1 Apr 18, 2024

Contributed:

- Update Creditcoin Testnet Details (https://github.com/wi-ry)
- Change Muse paraId (https://github.com/Moliholy)
- Add Subscan link to Paseo and Opal testnet (https://github.com/yakio)
- Update Frequency information (https://github.com/wilwade)
- Fix MAX_SIGNATORIES (https://github.com/adamsteeber)
- Add mythos parachain (https://github.com/Moliholy)
- Update Dwellir Nodle RPC endpoint (https://github.com/jakobilobi)
- Fix broken metadata tab for Paseo (https://github.com/al3mart)
- Update the provider for Phyken Network (https://github.com/Ekaanth)
- Add bridge hub teleport destination for Polkadot and Kusama (https://github.com/PierreBesson)
- Update subscan.ts, change the host of some networks (https://github.com/freehere107)
- Add RockX phala/khala endpoints (https://github.com/AgoL5866)
- Fix provider for Frequency (https://github.com/wilwade)
- Update Subscan network config (https://github.com/carlhong)
- Search/filter functionality of selection dropdowns (https://github.com/dominikfedor)
- Add Pop Netowrk to Paseo (https://github.com/al3mart)
- Remove Automata 1RPC from Kusama (https://github.com/laboon)
- Remove Dwellir from Pendulum (https://github.com/benjichat)
- feat: support asset filter (https://github.com/monkeyWie)
- Peerplays types bundle (https://github.com/serkixenos)
- Nodle testnet migrated from Roccoco to Paseo (https://github.com/simonsso)
- Update Creditcoin Testnet Naming (https://github.com/wi-ry)
- chore: remove Logion RPC 3 (https://github.com/gdethier)
- Add Blast rpc (https://github.com/EugenWay)
- LAOS Omega added to paseo (https://github.com/asiniscalchi)
- Updated the md5 network endpoint for the Hashed Systems provider (https://github.com/sebastianmontero)
- Add Vara RPC endpoint (https://github.com/EugenWay)
- Update CI checkout, and setup_node to v4 (https://github.com/simonsso)
- Update Frequency Types package and testnet chain name (https://github.com/wilwade)
- Fix query slot duration for block interval (https://github.com/Moliholy)
- Add Dwellir paseo-rpc endpoint (https://github.com/jakobilobi)
- Add coretime-kusama rpc (https://github.com/BulatSaif)
- Adds Dancebox Tanssi TestNet (https://github.com/albertov19)
- Add Dwellir encointer-kusama-rpc endpoint (https://github.com/jakobilobi)
- Add tangle to live networks (https://github.com/salman01zp)
- Upgrade chopsticks (https://github.com/qiweiii)
- Adding Dwellir Chainflip endpoint (https://github.com/jonathanudd)
- feat: local fork allow fake accounts (https://github.com/qiweiii)
- fix: remove local account storage override (https://github.com/qiweiii)
- Add IBP RPC endpoints for coretime-westend, coretime-people, and asset-hub-paseo (https://github.com/senseless)
- Updated endpoints for Hashed Systems 1 and 2 providers (https://github.com/sebastianmontero)
- Restore Virto provider for Kreivo in Kusama (https://github.com/pandres95)
- fix: show parachain names for paseo (https://github.com/al3mart)
- Remove connection between 3360 chain id and NueroWeb (https://github.com/NZT48)
- use runtime API's to query block time (https://github.com/Moliholy)
- added copy button to Output (https://github.com/bee344)
- Add LAOS polkadot parachain (https://github.com/asiniscalchi)
- Add more statescan external links (https://github.com/wliyongfeng)
- Make encointer teleporter again (https://github.com/brenzi)
- Updated Invo network testnet URL (https://github.com/ayushmishra2005)

Changes:

- Fix apps-routing for staking (Westend)
- Bump yarn to 4.1.1
- Disable unreachable endpoints
- Add warning banners for Auctions and Crowdloans
- Update polkadot/* deps
- Resolve module location for endpoints when it exists


## 0.135.1 Mar 21, 2024

Contributed:
Expand Down
Loading

0 comments on commit fb4213d

Please sign in to comment.