Skip to content

Commit

Permalink
[RELEASE] 2023 Oct 24 - Hubble Bridge, Hubble Stats and Faucet (#1794)
Browse files Browse the repository at this point in the history
  • Loading branch information
AtelyPham authored Oct 23, 2023
1 parent 5557ada commit 71e1784
Show file tree
Hide file tree
Showing 11 changed files with 65 additions and 32 deletions.
18 changes: 12 additions & 6 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -1,28 +1,34 @@
## Summary of changes

_Provide a detailed description of proposed changes._
-

-

### Proposed area of change

_Put an `x` in the boxes that apply._

- [ ] `apps/bridge-dapp`
- [ ] `apps/hubble-stats`
- [ ] `apps/stats-dapp`
- [ ] `apps/webbsite`
- [ ] `apps/tangle-dapp`
- [ ] `apps/faucet`
- [ ] `apps/tangle-website`
- [ ] `libs/webb-ui-components`

### Reference issue to close (if applicable)

_Specify any issues that can be closed from these changes (e.g. Closes #233)._
- Closes

- Closes

### Screen Recording

_If possible provide a screen recording of proposed change._

---

### Code Checklist

-----
### Code Checklist
_Please be sure to add .stories documentation if any additions are made to `libs/webb-ui-components`._

- [ ] I have added tests that prove my fix is effective or that my feature works
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy-tangle-website.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ name: deploy-tangle-website 🌐
on:
pull_request:
types: [opened, synchronize, reopened, ready_for_review]
branches: [develop]
branches: []
paths:
- 'apps/tangle-website/**'

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy-webbsite-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ name: deploy-webbsite 🌐
on:
pull_request:
types: [opened, synchronize, reopened, ready_for_review]
branches: [develop]
branches: []
paths:
- 'apps/webbsite/**'

Expand Down
42 changes: 21 additions & 21 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,15 +51,15 @@ jobs:
with:
paths: apps/faucet

- uses: marceloprado/has-changed-path@v1
id: changed-webbsite
with:
paths: apps/webbsite
# - uses: marceloprado/has-changed-path@v1
# id: changed-webbsite
# with:
# paths: apps/webbsite

- uses: marceloprado/has-changed-path@v1
id: changed-tangle
with:
paths: apps/tangle-website
# - uses: marceloprado/has-changed-path@v1
# id: changed-tangle
# with:
# paths: apps/tangle-website

- uses: marceloprado/has-changed-path@v1
id: changed-hubble-stats
Expand Down Expand Up @@ -120,19 +120,19 @@ jobs:
package-path: apps/faucet
repo-token: ${{ secrets.REPO_TOKEN }}

- name: Release webbsite
if: steps.changed-webbsite.outputs.changed == 'true'
uses: ./.github/actions/create-release
with:
package-path: apps/webbsite
repo-token: ${{ secrets.REPO_TOKEN }}

- name: Release tangle
if: steps.changed-tangle.outputs.changed == 'true'
uses: ./.github/actions/create-release
with:
package-path: apps/tangle-website
repo-token: ${{ secrets.REPO_TOKEN }}
# - name: Release webbsite
# if: steps.changed-webbsite.outputs.changed == 'true'
# uses: ./.github/actions/create-release
# with:
# package-path: apps/webbsite
# repo-token: ${{ secrets.REPO_TOKEN }}

# - name: Release tangle
# if: steps.changed-tangle.outputs.changed == 'true'
# uses: ./.github/actions/create-release
# with:
# package-path: apps/tangle-website
# repo-token: ${{ secrets.REPO_TOKEN }}

- name: Release hubble stats
if: steps.changed-hubble-stats.outputs.changed == 'true'
Expand Down
1 change: 1 addition & 0 deletions .lycheeignore
Original file line number Diff line number Diff line change
Expand Up @@ -31,3 +31,4 @@ https://github.com/webb-tools/webb-dapp/releases/tag/v1.0.4
https://github.com/webb-tools/webb-dapp/releases/tag/v1.0.5
https://github.com/webb-tools/webb-dapp/releases/tag/v1.0.6
https://github.com/webb-tools/webb-dapp/releases/tag/v1.0.7
https://github.com/webb-tools/webb-dapp/releases/tag/v1.0.8
10 changes: 10 additions & 0 deletions apps/bridge-dapp/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -217,3 +217,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- Fix UI issues on bridge dapp
- Disable amount input for destination accross flows [#1739](https://github.com/webb-tools/webb-dapp/pull/1739)

## [1.0.8] - 2023-10-24

### Fixed, Changed and Added

- Improve balance display across all flows on Hubble Bridge [#1746](https://github.com/webb-tools/webb-dapp/pull/1746)
- Removal of Chain Selection Option in Withdrawal Flow on Destination Input [#1747](https://github.com/webb-tools/webb-dapp/pull/1747)
- Fix bridge mobile view [#1765](https://github.com/webb-tools/webb-dapp/pull/1765)
- Fix Hubble Bridge QA Checklist 2 [#1771](https://github.com/webb-tools/webb-dapp/pull/1771)
- Improve Wallet Connection Flow [#1768](https://github.com/webb-tools/webb-dapp/pull/1768)
2 changes: 1 addition & 1 deletion apps/bridge-dapp/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@webb-tools/bridge-dapp",
"version": "1.0.7",
"version": "1.0.8",
"main": "./src/index.js",
"license": "Apache-2.0"
}
9 changes: 9 additions & 0 deletions apps/faucet/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -103,3 +103,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [0.0.12] - 2023-10-05

- Hotfix faucet footer width.

## [0.0.13] - 2023-10-24

### Fixed, Changed and Added

- Add Tangle Sidebar to Faucet [#1774](https://github.com/webb-tools/webb-dapp/pull/1774)
- chore: ui update on buttons and containers [#1778](https://github.com/webb-tools/webb-dapp/pull/1778)
- Faucet Responsive + Fix Flicker [#1782](https://github.com/webb-tools/webb-dapp/pull/1782)
- Update faucet SEO metadata & container texts [#1785](https://github.com/webb-tools/webb-dapp/pull/1785)
2 changes: 1 addition & 1 deletion apps/faucet/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@webb-tools/faucet",
"version": "0.0.12",
"version": "0.0.13",
"license": "Apache-2.0",
"description": "Official Webb Faucet"
}
7 changes: 7 additions & 0 deletions apps/hubble-stats/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -84,3 +84,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Chaged, Added and Fixed

- Fix Sidebar not keep consistent state when refreshing pages ([#1740](https://github.com/webb-tools/webb-dapp/pull/1740))

## [0.0.8] - 2023-10-24

### Chaged, Added and Fixed

- Bump Netlify Next.js Runtime ([#1780](https://github.com/webb-tools/webb-dapp/pull/1780)).
- Client Side Fetching for Hubble Stats ([#1787](https://github.com/webb-tools/webb-dapp/pull/1787)).
2 changes: 1 addition & 1 deletion apps/hubble-stats/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "@webb-tools/hubble-stats",
"version": "0.0.7",
"version": "0.0.8",
"license": "Apache-2.0"
}

0 comments on commit 71e1784

Please sign in to comment.