Skip to content

Commit 960621a

Browse files
2 parents 3922605 + 59ad0ce commit 960621a

28 files changed

+212
-84
lines changed

.env.example

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ NUXT_PUBLIC_SENTRY_DSN=
44
NUXT_PUBLIC_APP_DOMAIN=localhost:8080
55
NUXT_PUBLIC_MIDDLEWARE_URL=https://mainnet.aeternity.io/mdw
66
NUXT_PUBLIC_NODE_URL=https://mainnet.aeternity.io
7-
NUXT_PUBLIC_WEBSOCKET_URL=wss://mainnet.aeternity.io/mdw/v2/websocket
7+
NUXT_PUBLIC_WEBSOCKET_URL=wss://mainnet.aeternity.io/mdw/v3/websocket
88
NUXT_PUBLIC_NETWORK_NAME=MAINNET
99
NUXT_PUBLIC_ALTERNATIVE_NETWORK_NAME=TESTNET
1010
NUXT_PUBLIC_NETWORK_ID=ae_mainnet

.github/workflows/ci-code.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@ jobs:
1919
lint:
2020
runs-on: ubuntu-latest
2121
steps:
22-
- uses: actions/checkout@v2
22+
- uses: actions/checkout@v3
2323
- name: Use Node.js 20.x
24-
uses: actions/setup-node@v1
24+
uses: actions/setup-node@v4.0.4
2525
with:
2626
node-version: '20'
2727
cache: 'yarn'

.github/workflows/dev-pipeline-mainnet.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
install: true
3737

3838
- name: Cache Docker layers
39-
uses: actions/cache@v2
39+
uses: actions/cache@v4.0.2
4040
with:
4141
path: /tmp/.buildx-cache
4242
# Key is named differently to avoid collision
@@ -45,15 +45,15 @@ jobs:
4545
${{ runner.os }}-${{ env.ENV }}-buildx
4646
4747
- name: Log in to dockerhub
48-
uses: docker/login-action@v1
48+
uses: docker/login-action@v3.3.0
4949
with:
5050
username: ${{ secrets.DOCKERHUB_USER }}
5151
password: ${{ secrets.DOCKERHUB_PASS }}
5252

5353
- name: Extract metadata for docker
5454
if: github.event_name == 'push'
5555
id: meta
56-
uses: docker/metadata-action@v3
56+
uses: docker/metadata-action@v5.5.1
5757
with:
5858
images: aeternity/aescan
5959
tags: |
@@ -65,7 +65,7 @@ jobs:
6565
6666
- name: Build and push docker image
6767
if: github.event_name == 'push'
68-
uses: docker/build-push-action@v2
68+
uses: docker/build-push-action@v6.9.0
6969
with:
7070
context: .
7171
file: Dockerfile
@@ -85,7 +85,7 @@ jobs:
8585
rm -rf /tmp/.buildx-cache
8686
mv /tmp/.buildx-cache-new /tmp/.buildx-cache
8787
88-
- uses: actions/checkout@v2
88+
- uses: actions/checkout@v3
8989
with:
9090
repository: aeternity/gitops-apps-aelabs.git
9191
token: ${{ secrets.BOT_GITHUB_TOKEN }}

.github/workflows/dev-pipeline-testnet.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
install: true
3737

3838
- name: Cache Docker layers
39-
uses: actions/cache@v2
39+
uses: actions/cache@v4.0.2
4040
with:
4141
path: /tmp/.buildx-cache
4242
# Key is named differently to avoid collision
@@ -45,15 +45,15 @@ jobs:
4545
${{ runner.os }}-${{ env.ENV }}-buildx
4646
4747
- name: Log in to dockerhub
48-
uses: docker/login-action@v1
48+
uses: docker/login-action@v3.3.0
4949
with:
5050
username: ${{ secrets.DOCKERHUB_USER }}
5151
password: ${{ secrets.DOCKERHUB_PASS }}
5252

5353
- name: Extract metadata for docker
5454
if: github.event_name == 'push'
5555
id: meta
56-
uses: docker/metadata-action@v3
56+
uses: docker/metadata-action@v5.5.1
5757
with:
5858
images: aeternity/aescan
5959
tags: |
@@ -65,7 +65,7 @@ jobs:
6565
6666
- name: Build and push docker image
6767
if: github.event_name == 'push'
68-
uses: docker/build-push-action@v2
68+
uses: docker/build-push-action@v6.9.0
6969
with:
7070
context: .
7171
file: Dockerfile
@@ -85,7 +85,7 @@ jobs:
8585
rm -rf /tmp/.buildx-cache
8686
mv /tmp/.buildx-cache-new /tmp/.buildx-cache
8787
88-
- uses: actions/checkout@v2
88+
- uses: actions/checkout@v3
8989
with:
9090
repository: aeternity/gitops-apps-aelabs.git
9191
token: ${{ secrets.BOT_GITHUB_TOKEN }}

.github/workflows/prd-pipeline-mainnet.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -36,22 +36,22 @@ jobs:
3636
install: true
3737

3838
- name: Cache Docker layers
39-
uses: actions/cache@v2
39+
uses: actions/cache@v4.0.2
4040
with:
4141
path: /tmp/.buildx-cache
4242
key: ${{ runner.os }}-${{ env.ENV }}-buildx-${{ github.sha }}
4343
restore-keys: |
4444
${{ runner.os }}-${{ env.ENV }}-buildx
4545
4646
- name: Log in to dockerhub
47-
uses: docker/login-action@v1
47+
uses: docker/login-action@v3.3.0
4848
with:
4949
username: ${{ secrets.DOCKERHUB_USER }}
5050
password: ${{ secrets.DOCKERHUB_PASS }}
5151

5252
- name: Extract metadata for docker
5353
id: meta
54-
uses: docker/metadata-action@v3
54+
uses: docker/metadata-action@v5.5.1
5555
with:
5656
images: aeternity/aescan
5757
tags: |
@@ -62,7 +62,7 @@ jobs:
6262
echo APP_VERSION=$(git describe --tags --abbrev=0) >> .env
6363
6464
- name: Build and push docker image
65-
uses: docker/build-push-action@v2
65+
uses: docker/build-push-action@v6.9.0
6666
with:
6767
context: .
6868
file: Dockerfile
@@ -77,7 +77,7 @@ jobs:
7777
rm -rf /tmp/.buildx-cache
7878
mv /tmp/.buildx-cache-new /tmp/.buildx-cache
7979
80-
- uses: actions/checkout@v2
80+
- uses: actions/checkout@v3
8181
with:
8282
repository: aeternity/gitops-apps-aelabs.git
8383
token: ${{ secrets.BOT_GITHUB_TOKEN }}

.github/workflows/prd-pipeline-testnet.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -36,22 +36,22 @@ jobs:
3636
install: true
3737

3838
- name: Cache Docker layers
39-
uses: actions/cache@v2
39+
uses: actions/cache@v4.0.2
4040
with:
4141
path: /tmp/.buildx-cache
4242
key: ${{ runner.os }}-${{ env.ENV }}-buildx-${{ github.sha }}
4343
restore-keys: |
4444
${{ runner.os }}-${{ env.ENV }}-buildx
4545
4646
- name: Log in to dockerhub
47-
uses: docker/login-action@v1
47+
uses: docker/login-action@v3.3.0
4848
with:
4949
username: ${{ secrets.DOCKERHUB_USER }}
5050
password: ${{ secrets.DOCKERHUB_PASS }}
5151

5252
- name: Extract metadata for docker
5353
id: meta
54-
uses: docker/metadata-action@v3
54+
uses: docker/metadata-action@v5.5.1
5555
with:
5656
images: aeternity/aescan
5757
tags: |
@@ -62,7 +62,7 @@ jobs:
6262
echo APP_VERSION=$(git describe --tags --abbrev=0) >> .env
6363
6464
- name: Build and push docker image
65-
uses: docker/build-push-action@v2
65+
uses: docker/build-push-action@v6.9.0
6666
with:
6767
context: .
6868
file: Dockerfile
@@ -77,7 +77,7 @@ jobs:
7777
rm -rf /tmp/.buildx-cache
7878
mv /tmp/.buildx-cache-new /tmp/.buildx-cache
7979
80-
- uses: actions/checkout@v2
80+
- uses: actions/checkout@v3
8181
with:
8282
repository: aeternity/gitops-apps-aelabs.git
8383
token: ${{ secrets.BOT_GITHUB_TOKEN }}

.github/workflows/release-create.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
with:
2323
node-version: 20
2424
- name: Checkout code
25-
uses: actions/checkout@v2
25+
uses: actions/checkout@v3
2626
with:
2727
ref: ${{ github.event.inputs.ref_branch }}
2828
token: ${{ secrets.BOT_GITHUB_TOKEN }}

.github/workflows/stg-pipeline-mainnet.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
install: true
3535

3636
- name: Cache Docker layers
37-
uses: actions/cache@v2
37+
uses: actions/cache@v4.0.2
3838
with:
3939
path: /tmp/.buildx-cache
4040
# Key is named differently to avoid collision
@@ -43,15 +43,15 @@ jobs:
4343
${{ runner.os }}-${{ env.ENV }}-buildx
4444
4545
- name: Log in to dockerhub
46-
uses: docker/login-action@v1
46+
uses: docker/login-action@v3.3.0
4747
with:
4848
username: ${{ secrets.DOCKERHUB_USER }}
4949
password: ${{ secrets.DOCKERHUB_PASS }}
5050

5151
- name: Extract metadata for docker
5252
if: github.event_name == 'pull_request' && github.event.action == 'opened' || github.event.action == 'synchronize'
5353
id: meta
54-
uses: docker/metadata-action@v3
54+
uses: docker/metadata-action@v5.5.1
5555
with:
5656
images: aeternity/aescan
5757
tags: |
@@ -70,7 +70,7 @@ jobs:
7070
7171
- name: Build and push docker image
7272
if: github.event_name == 'pull_request' && github.event.action == 'opened' || github.event.action == 'synchronize'
73-
uses: docker/build-push-action@v2
73+
uses: docker/build-push-action@v6.9.0
7474
with:
7575
context: .
7676
file: Dockerfile
@@ -90,7 +90,7 @@ jobs:
9090
rm -rf /tmp/.buildx-cache
9191
mv /tmp/.buildx-cache-new /tmp/.buildx-cache
9292
93-
- uses: actions/checkout@v2
93+
- uses: actions/checkout@v3
9494
with:
9595
repository: aeternity/gitops-apps-aelabs.git
9696
ref: stg

.github/workflows/stg-pipeline-testnet.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
install: true
3535

3636
- name: Cache Docker layers
37-
uses: actions/cache@v2
37+
uses: actions/cache@v4.0.2
3838
with:
3939
path: /tmp/.buildx-cache
4040
# Key is named differently to avoid collision
@@ -43,15 +43,15 @@ jobs:
4343
${{ runner.os }}-${{ env.ENV }}-buildx
4444
4545
- name: Log in to dockerhub
46-
uses: docker/login-action@v1
46+
uses: docker/login-action@v3.3.0
4747
with:
4848
username: ${{ secrets.DOCKERHUB_USER }}
4949
password: ${{ secrets.DOCKERHUB_PASS }}
5050

5151
- name: Extract metadata for docker
5252
if: github.event_name == 'pull_request' && github.event.action == 'opened' || github.event.action == 'synchronize'
5353
id: meta
54-
uses: docker/metadata-action@v3
54+
uses: docker/metadata-action@v5.5.1
5555
with:
5656
images: aeternity/aescan
5757
tags: |
@@ -70,7 +70,7 @@ jobs:
7070
7171
- name: Build and push docker image
7272
if: github.event_name == 'pull_request' && github.event.action == 'opened' || github.event.action == 'synchronize'
73-
uses: docker/build-push-action@v2
73+
uses: docker/build-push-action@v6.9.0
7474
with:
7575
context: .
7676
file: Dockerfile
@@ -87,7 +87,7 @@ jobs:
8787
rm -rf /tmp/.buildx-cache
8888
mv /tmp/.buildx-cache-new /tmp/.buildx-cache
8989
90-
- uses: actions/checkout@v2
90+
- uses: actions/checkout@v3
9191
with:
9292
repository: aeternity/gitops-apps-aelabs.git
9393
ref: stg

CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,22 @@
11
# Changelog
22

3+
## [0.17.0](https://github.com/aeternity/aescan/compare/0.16.1...0.17.0) (2024-10-24)
4+
5+
6+
### Features
7+
8+
* e2e testing - filtering ([#917](https://github.com/aeternity/aescan/issues/917)) ([d5ceab4](https://github.com/aeternity/aescan/commit/d5ceab4ef50b72529bc166fb3b674565929ce618))
9+
* e2e testing improvements ([#966](https://github.com/aeternity/aescan/issues/966)) ([506155e](https://github.com/aeternity/aescan/commit/506155eed449fc7fda45d889cea5d560f6010d71))
10+
* migrate names related endpoints to v3 ([#915](https://github.com/aeternity/aescan/issues/915)) ([cf3c959](https://github.com/aeternity/aescan/commit/cf3c9596320be8e10b91e0361d45a5525e76031b))
11+
* Use nuxt-link ([#949](https://github.com/aeternity/aescan/issues/949)) ([5e4cb79](https://github.com/aeternity/aescan/commit/5e4cb792f7d9b086f52a8cb8b6208cecce54d962))
12+
13+
14+
### Bug Fixes
15+
16+
* Add N/A label for no query and response even ([#948](https://github.com/aeternity/aescan/issues/948)) ([4150fc1](https://github.com/aeternity/aescan/commit/4150fc172b83ab4b7e78fdb8dcb3e88b29258c4b))
17+
* code cleanup ([#970](https://github.com/aeternity/aescan/issues/970)) ([df1b0cd](https://github.com/aeternity/aescan/commit/df1b0cd9dccd148c455e195dbaf94e2a0826b52c))
18+
* sanitize contract events ([#969](https://github.com/aeternity/aescan/issues/969)) ([2566580](https://github.com/aeternity/aescan/commit/2566580cbdb5bd8dc8eb1c106f19698e56a1344c))
19+
320
## [0.16.1](https://github.com/aeternity/aescan/compare/0.16.0...0.16.1) (2024-10-23)
421

522

0 commit comments

Comments
 (0)