Skip to content

Commit 54832bc

Browse files
New release V0.9.0 (#1183)
1 parent 36d36e6 commit 54832bc

File tree

214 files changed

+5500
-5203
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

214 files changed

+5500
-5203
lines changed

.github/workflows/boba-publish-develop.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
contents: read
2020
steps:
2121
- name: Configure AWS credentials
22-
uses: aws-actions/configure-aws-credentials@v2
22+
uses: aws-actions/configure-aws-credentials@v3
2323
with:
2424
role-to-assume: ${{ secrets.AWS_ROLE }}
2525
aws-region: ${{ secrets.AWS_REGION }}
@@ -168,7 +168,7 @@ jobs:
168168
contents: read
169169
steps:
170170
- name: Configure AWS credentials
171-
uses: aws-actions/configure-aws-credentials@v2
171+
uses: aws-actions/configure-aws-credentials@v3
172172
with:
173173
role-to-assume: ${{ secrets.AWS_ROLE }}
174174
aws-region: ${{ secrets.AWS_REGION }}

.github/workflows/boba-publish-master.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
contents: read
1919
steps:
2020
- name: Configure AWS credentials
21-
uses: aws-actions/configure-aws-credentials@v2
21+
uses: aws-actions/configure-aws-credentials@v3
2222
with:
2323
role-to-assume: ${{ secrets.AWS_ROLE }}
2424
aws-region: ${{ secrets.AWS_REGION }}
@@ -70,7 +70,7 @@ jobs:
7070
password: ${{ secrets.DOCKERHUB_ACCESS_TOKEN_SECRET }}
7171

7272
- name: Configure AWS credentials
73-
uses: aws-actions/configure-aws-credentials@v2
73+
uses: aws-actions/configure-aws-credentials@v3
7474
with:
7575
role-to-assume: ${{ secrets.AWS_ROLE }}
7676
aws-region: ${{ secrets.AWS_REGION }}
@@ -189,7 +189,7 @@ jobs:
189189
contents: read
190190
steps:
191191
- name: Configure AWS credentials
192-
uses: aws-actions/configure-aws-credentials@v2
192+
uses: aws-actions/configure-aws-credentials@v3
193193
with:
194194
role-to-assume: ${{ secrets.AWS_ROLE }}
195195
aws-region: ${{ secrets.AWS_REGION }}

.github/workflows/gateway-deploy-stage.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
REACT_APP_GA4_MEASUREMENT_ID: ${{ env.REACT_APP_GA4_MEASUREMENT_ID }}
4949
REACT_APP_SENTRY_DSN: ${{ env.REACT_APP_SENTRY_DSN }}
5050
- name: Configure AWS credentials
51-
uses: aws-actions/configure-aws-credentials@v2
51+
uses: aws-actions/configure-aws-credentials@v3
5252
with:
5353
role-to-assume: ${{ secrets.AWS_ROLE }}
5454
aws-region: ${{ secrets.AWS_REGION }}

.github/workflows/release.yml

+4-1
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,17 @@ jobs:
1616

1717
steps:
1818
- uses: actions/checkout@v3
19+
with:
20+
fetch-depth: 0
1921
- name: Setup git user
2022
run: |
2123
git config --global user.name [email protected]
2224
git config --global user.email ${{ github.actor }}@users.noreply.github.com
2325
- name: Run
2426
run: |
2527
git fetch
26-
LAST_COMMIT=$(gh api -H "Accept: application/vnd.github+json" -H "X-GitHub-Api-Version: 2022-11-28" /repos/bobanetwork/boba/pulls/${{ github.event.inputs.last_release_pr }}/commits | jq '.[-1].commit.message' | grep -o -E -e "[0-9a-f]{40}")
28+
#this might break if there's more then 400 commits in a PR
29+
LAST_COMMIT=$(gh api -H "Accept: application/vnd.github+json" -H "X-GitHub-Api-Version: 2022-11-28" /repos/bobanetwork/boba/pulls/${{ github.event.inputs.last_release_pr }}/commits?per_page=400 | jq '.[-1].commit.message' | grep -o -E -e "[0-9a-f]{40}")
2730
echo 'LAST_COMMIT'
2831
echo $LAST_COMMIT
2932
TIP_OF_DEVELOP=$(gh api -H "Accept: application/vnd.github+json" -H "X-GitHub-Api-Version: 2022-11-28" /repos/bobanetwork/boba/commits?per_page=1 | jq '.[-1].sha' | tr -d '"')

boba_community/boba-node/docker-compose-bobaavax.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ version: "3.9"
1010
services:
1111
dtl:
1212
container_name: dtl
13-
image: bobanetwork/data-transport-layer:alt-l1-${RELEASE_VERSION}
13+
image: bobanetwork/data-transport-layer:${RELEASE_VERSION}
1414
env_file:
1515
- ../../ops/envs/dtl.env
1616
environment:
@@ -40,7 +40,7 @@ services:
4040
container_name: replica
4141
depends_on:
4242
- dtl
43-
image: bobanetwork/l2geth:alt-l1-${RELEASE_VERSION}
43+
image: bobanetwork/l2geth:${RELEASE_VERSION}
4444
deploy:
4545
replicas: 1
4646
entrypoint: sh ./geth.sh

boba_community/boba-node/docker-compose-bobabase.yml

-78
This file was deleted.

boba_community/boba-node/docker-compose-bobabeam.yml

-78
This file was deleted.

boba_community/boba-node/docker-compose-bobabnb-testnet.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,12 @@ version: "3.9"
1010
services:
1111
dtl:
1212
container_name: dtl
13-
image: bobanetwork/data-transport-layer:alt-l1-${RELEASE_VERSION}
13+
image: bobanetwork/data-transport-layer:${RELEASE_VERSION}
1414
env_file:
1515
- ../../ops/envs/dtl.env
1616
environment:
1717
<< : *l1_rpc_dtl
18-
DATA_TRANSPORT_LAYER__L2_RPC_ENDPOINT: 'https://replica.testnet.bnb.boba.network/'
18+
DATA_TRANSPORT_LAYER__L2_RPC_ENDPOINT: 'https://testnet.bnb.boba.network'
1919
DATA_TRANSPORT_LAYER__SYNC_FROM_L1: 'false'
2020
DATA_TRANSPORT_LAYER__SYNC_FROM_L2: 'true'
2121
DATA_TRANSPORT_LAYER__L2_CHAIN_ID: 9728
@@ -27,7 +27,7 @@ services:
2727
DATA_TRANSPORT_LAYER__TURING_V1_HEIGHT: 0
2828
volumes:
2929

30-
- ./state-dumps/bobabnb:/opt/optimism/packages/data-transport-layer/state-dumps/
30+
- ./state-dumps/bobabnbtestnet:/opt/optimism/packages/data-transport-layer/state-dumps/
3131
logging:
3232
driver: "json-file"
3333
options:
@@ -41,7 +41,7 @@ services:
4141
container_name: replica
4242
depends_on:
4343
- dtl
44-
image: bobanetwork/l2geth:alt-l1-${RELEASE_VERSION}
44+
image: bobanetwork/l2geth:${RELEASE_VERSION}
4545
deploy:
4646
replicas: 1
4747
entrypoint: sh ./geth.sh

boba_community/boba-node/docker-compose-bobabnb.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ version: "3.9"
1010
services:
1111
dtl:
1212
container_name: dtl
13-
image: bobanetwork/data-transport-layer:alt-l1-${RELEASE_VERSION}
13+
image: bobanetwork/data-transport-layer:${RELEASE_VERSION}
1414
env_file:
1515
- ../../ops/envs/dtl.env
1616
environment:
@@ -41,7 +41,7 @@ services:
4141
container_name: replica
4242
depends_on:
4343
- dtl
44-
image: bobanetwork/l2geth:alt-l1-${RELEASE_VERSION}
44+
image: bobanetwork/l2geth:${RELEASE_VERSION}
4545
deploy:
4646
replicas: 1
4747
entrypoint: sh ./geth.sh

boba_community/boba-node/docker-compose-bobafuji.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ version: "3.9"
1010
services:
1111
dtl:
1212
container_name: dtl
13-
image: bobanetwork/data-transport-layer:alt-l1-${RELEASE_VERSION}
13+
image: bobanetwork/data-transport-layer:${RELEASE_VERSION}
1414
env_file:
1515
- ../../ops/envs/dtl.env
1616
environment:
@@ -40,7 +40,7 @@ services:
4040
container_name: replica
4141
depends_on:
4242
- dtl
43-
image: bobanetwork/l2geth:alt-l1-${RELEASE_VERSION}
43+
image: bobanetwork/l2geth:${RELEASE_VERSION}
4444
deploy:
4545
replicas: 1
4646
entrypoint: sh ./geth.sh

boba_community/boba-node/docker-compose-bobaopera-testnet.yml

-78
This file was deleted.

0 commit comments

Comments
 (0)