Skip to content

Commit

Permalink
Merge branch 'main' into ui-qa-checklist
Browse files Browse the repository at this point in the history
  • Loading branch information
bearni95 committed May 14, 2024
2 parents 044c2c2 + 0ef7b8c commit 1d6bf06
Show file tree
Hide file tree
Showing 151 changed files with 6,190 additions and 658 deletions.
4 changes: 2 additions & 2 deletions .github/actions/install-pnpm-dependencies/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ runs:
node-version: 20

- name: Install pnpm
uses: pnpm/action-setup@v3
uses: pnpm/action-setup@v4
id: pnpm-install
with:
version: 8
version: 9
run_install: false

- name: Get pnpm store directory
Expand Down
File renamed without changes.
9 changes: 6 additions & 3 deletions .github/workflows/bridge-ui.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,12 @@ name: Bridge UI CI/CD
on:
push:
branches-ignore:
- main
- release-please-*
paths:
- "packages/bridge-ui/**"
tags:
- "bridge-ui-v*"
pull_request:
paths:
- "packages/bridge-ui/**"
Expand All @@ -16,7 +19,7 @@ jobs:

# Deployment name follow the pattern: deploy_<appname(bridge-ui)>_<network(devnet|hekla|mainnet)>_<environment(preview|production)>
deploy_bridge-ui_hekla_preview:
if: ${{ github.ref_name != 'main' }}
if: ${{ github.ref_type != 'tag' }}
needs: build-and-test
uses: ./.github/workflows/vercel-deploy.yml
with:
Expand All @@ -28,7 +31,7 @@ jobs:
vercel_token: ${{ secrets.VERCEL_TOKEN }}

deploy_bridge-ui_devnet_preview:
if: ${{ github.ref_name != 'main' }}
if: ${{ github.ref_type != 'tag' }}
needs: build-and-test
uses: ./.github/workflows/vercel-deploy.yml
with:
Expand All @@ -40,7 +43,7 @@ jobs:
vercel_token: ${{ secrets.VERCEL_TOKEN }}

deploy_bridge-ui_hekla_production:
if: ${{ github.ref_name == 'main' && contains(github.ref, 'refs/tags/bridge-ui-') }}
if: ${{ startsWith(github.ref, 'refs/tags/bridge-ui-v') }}
needs: build-and-test
uses: ./.github/workflows/vercel-deploy.yml
with:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
name: Blobstorage Preview
name: Docs Site Preview

env:
VERCEL_ORG_ID: ${{ secrets.VERCEL_ORG_ID }}
VERCEL_PROJECT_ID: ${{ secrets.VERCEL_PROJECT_ID_BLOBSTORAGE }}
VERCEL_PROJECT_ID: ${{ secrets.VERCEL_PROJECT_ID_DOCS_SITE }}

on:
push:
branches-ignore:
- main
- release-please-*
paths:
- "packages/blobstorage/**"
- "packages/docs-site/**"

jobs:
deploy-blobstorage-preview:
deploy-docs-site-preview:
runs-on: [taiko-runner]
steps:
- name: Checkout repository
Expand Down
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
name: Blobstorage Production
name: Docs Site Production

env:
VERCEL_ORG_ID: ${{ secrets.VERCEL_ORG_ID }}
VERCEL_PROJECT_ID: ${{ secrets.VERCEL_PROJECT_ID_BLOBSTORAGE }}
VERCEL_PROJECT_ID: ${{ secrets.VERCEL_PROJECT_ID_DOCS_SITE }}

on:
push:
tags:
- "blobstorage-*"
- "docs-site-*"

jobs:
deploy-blobstorage-production:
deploy-docs-site-production:
runs-on: [taiko-runner]
steps:
- name: Checkout repository
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/eventindexer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ on:

jobs:
lint-eventindexer:
name: lint
name: lint-eventindexer
runs-on: [taiko-runner]
steps:
- uses: actions/setup-go@v5
Expand All @@ -30,7 +30,7 @@ jobs:

test-eventindexer:
runs-on: [taiko-runner]
needs: lint
needs: lint-eventindexer
steps:
- name: Cancel Previous Runs
uses: styfle/[email protected]
Expand Down
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,3 @@ jobs:
- name: Linting
working-directory: ./packages/guardian-prover-health-check-ui
run: pnpm lint

- name: Unit tests
env:
SKIP_ENV_VALIDATION: "true"
working-directory: ./packages/guardian-prover-health-check-ui
run: pnpm test:unit
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ on:
- "packages/guardian-prover-health-check/**"

jobs:
lint:
name: lint
lint-guardian-prover-health-check:
name: lint-guardian-prover-health-check
runs-on: [taiko-runner]
steps:
- uses: actions/setup-go@v5
Expand All @@ -28,9 +28,9 @@ jobs:
working-directory: ./packages/guardian-prover-health-check
args: --config=.golangci.yml --timeout=4m

test:
test-guardian-prover-health-check:
runs-on: [taiko-runner]
needs: lint
needs: lint-guardian-prover-health-check
steps:
- name: Cancel Previous Runs
uses: styfle/[email protected]
Expand All @@ -52,7 +52,7 @@ jobs:
files: ./packages/guardian-prover-health-check/coverage.txt
flags: guardian-prover-health-check

push-docker-image:
push-guardian-prover-health-check-docker-image:
# only push docker image on PR merge to main
if: ${{ github.event }} == 'push'
name: Build and push docker image
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/relayer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ on:

jobs:
lint-relayer:
name: lint
name: lint-relayer
runs-on: [taiko-runner]
steps:
- uses: actions/setup-go@v5
Expand All @@ -30,7 +30,7 @@ jobs:

test-relayer:
runs-on: [taiko-runner]
needs: lint
needs: lint-relayer
steps:
- name: Cancel Previous Runs
uses: styfle/[email protected]
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ jobs:
main
deps
deps-dev
docs-site
blobstorage
branding
bridge-ui
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
46 changes: 0 additions & 46 deletions .github/workflows/taiko-client-proverapi-preview.yml

This file was deleted.

43 changes: 0 additions & 43 deletions .github/workflows/taiko-client-proverapi-production.yml

This file was deleted.

File renamed without changes.
13 changes: 8 additions & 5 deletions .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,15 @@
{
"packages/blobstorage": "0.1.0",
"packages/branding": "0.3.0",
"packages/bridge-ui": "4.2.0",
"packages/blobstorage": "0.2.0",
"packages/branding": "0.4.0",
"packages/bridge-ui": "2.10.1",
"packages/docs-site": "1.1.0",
"packages/eventindexer": "0.13.0",
"packages/fork-diff": "0.4.0",
"packages/fork-diff": "0.5.0",
"packages/guardian-prover-health-check": "0.1.0",
"packages/guardian-prover-health-check-ui": "0.1.0",
"packages/protocol": "1.5.0",
"packages/relayer": "0.12.0",
"packages/taiko-client": "0.22.0"
"packages/taiko-client": "0.22.0",
"packages/taikoon": "1.0.0",
"packages/supplementary-contracts": "1.0.0"
}
20 changes: 20 additions & 0 deletions packages/blobstorage/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# Changelog

## [0.2.0](https://github.com/taikoxyz/taiko-mono/compare/blobstorage-v0.1.0...blobstorage-v0.2.0) (2024-05-14)


### Features

* **blobstorage:** add health check, change regular mux for echo, filter changes ([#16449](https://github.com/taikoxyz/taiko-mono/issues/16449)) ([ee1233d](https://github.com/taikoxyz/taiko-mono/commit/ee1233d523a24e682b9dced312d3ffafe76c1889))
* **blobstorage:** allow get_blob api to return blob data ([#16629](https://github.com/taikoxyz/taiko-mono/issues/16629)) ([2581772](https://github.com/taikoxyz/taiko-mono/commit/2581772afb6875de2a6f4d54a93a2f11be5ab2fc))
* **blobstorage:** isolating tables for no blob data duplication ([#16702](https://github.com/taikoxyz/taiko-mono/issues/16702)) ([55426ef](https://github.com/taikoxyz/taiko-mono/commit/55426ef700c3eabc693f32829525a42775909b2a))
* **blobstorage:** set initial indexing block via genesis if no blobs exist ([#16477](https://github.com/taikoxyz/taiko-mono/issues/16477)) ([9427ab4](https://github.com/taikoxyz/taiko-mono/commit/9427ab43c599f9d26637bb0d051e11f3ccdee47c))
* **eventindexer:** fix down mig + regen bindings ([#16563](https://github.com/taikoxyz/taiko-mono/issues/16563)) ([da5a039](https://github.com/taikoxyz/taiko-mono/commit/da5a03900409ded0488058068092d6d2ec9a0b26))
* **relayer:** regen bindings, make changes for stateVars, add isMessageReceived ([#16664](https://github.com/taikoxyz/taiko-mono/issues/16664)) ([66a35e2](https://github.com/taikoxyz/taiko-mono/commit/66a35e29aa3c688ac57ddd40a24b59aef45beff6))


### Bug Fixes

* **blobstorage, eventindexer, relayer:** remove username and password ([#16700](https://github.com/taikoxyz/taiko-mono/issues/16700)) ([35adb3d](https://github.com/taikoxyz/taiko-mono/commit/35adb3d7f5a79200573c1f6822586ea221a29dfa))
* **blobstorage:** blockId determination by timestamp ([#16614](https://github.com/taikoxyz/taiko-mono/issues/16614)) ([eba19c7](https://github.com/taikoxyz/taiko-mono/commit/eba19c766e419d7744b0d6307e103261e1dd3241))
* **blobstorage:** fix command instructions and missing local_docker folder in packages/blobstorage ([#16464](https://github.com/taikoxyz/taiko-mono/issues/16464)) ([a7e7f1a](https://github.com/taikoxyz/taiko-mono/commit/a7e7f1af40165cb27d8e10eab47f8f0f2ae458a1))
2 changes: 1 addition & 1 deletion packages/blobstorage/package.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"name": "@taikoxyz/blobstorage",
"version": "0.1.0"
"version": "0.2.0"
}
3 changes: 3 additions & 0 deletions packages/branding/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Changelog

## [0.4.0](https://github.com/taikoxyz/taiko-mono/compare/branding-v0.3.0...branding-v0.4.0) (2024-05-13)


## [0.3.0](https://github.com/taikoxyz/taiko-mono/compare/branding-v0.2.0...branding-v0.3.0) (2023-08-15)


Expand Down
2 changes: 1 addition & 1 deletion packages/branding/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "@taiko/branding",
"version": "0.3.0",
"version": "0.4.0",
"private": true
}
Loading

0 comments on commit 1d6bf06

Please sign in to comment.