Skip to content

Commit

Permalink
ci(release): publish latest release
Browse files Browse the repository at this point in the history
  • Loading branch information
hello-happy-puppy committed Oct 17, 2024
1 parent eb6cc09 commit 53b10bc
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 8 deletions.
17 changes: 11 additions & 6 deletions RELEASE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
IPFS hash of the deployment:
- CIDv0: `QmP3HJDhveJzTkfDPfPhq1XHGUv3unqqTvgYSHwrsSaM2R`
- CIDv1: `bafybeiakncneysroeo4fn4a5djrsantokobvtjz4d7cukzcbkoqobmlnli`
- CIDv0: `QmfZnGkqmvUSeByDRpHFCSFU4ANdwD4XXE8WXxhTjnu35z`
- CIDv1: `bafybeih76pdzu4rnkttpfyyla3tkd65x6ma6xhtzdqb6xn4l6vgutggjde`

The latest release is always mirrored at [app.uniswap.org](https://app.uniswap.org).

Expand All @@ -10,10 +10,15 @@ You can also access the Uniswap Interface from an IPFS gateway.
Your Uniswap settings are never remembered across different URLs.

IPFS gateways:
- https://bafybeiakncneysroeo4fn4a5djrsantokobvtjz4d7cukzcbkoqobmlnli.ipfs.dweb.link/
- https://bafybeiakncneysroeo4fn4a5djrsantokobvtjz4d7cukzcbkoqobmlnli.ipfs.cf-ipfs.com/
- [ipfs://QmP3HJDhveJzTkfDPfPhq1XHGUv3unqqTvgYSHwrsSaM2R/](ipfs://QmP3HJDhveJzTkfDPfPhq1XHGUv3unqqTvgYSHwrsSaM2R/)
- https://bafybeih76pdzu4rnkttpfyyla3tkd65x6ma6xhtzdqb6xn4l6vgutggjde.ipfs.dweb.link/
- https://bafybeih76pdzu4rnkttpfyyla3tkd65x6ma6xhtzdqb6xn4l6vgutggjde.ipfs.cf-ipfs.com/
- [ipfs://QmfZnGkqmvUSeByDRpHFCSFU4ANdwD4XXE8WXxhTjnu35z/](ipfs://QmfZnGkqmvUSeByDRpHFCSFU4ANdwD4XXE8WXxhTjnu35z/)

### 5.53.5 (2024-10-16)
### 5.53.6 (2024-10-17)


### Bug Fixes

* **web:** fallback to local activity if remote is empty (#13136) 33f4425


2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
web/5.53.5
web/5.53.6
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,8 @@ function combineActivities(localMap: ActivityMap = {}, remoteMap: ActivityMap =

if (localActivity.cancelled) {
// Hides misleading activities caused by cross-chain nonce collisions previously being incorrectly labelled as cancelled txs in redux
if (localActivity.chainId !== remoteActivity.chainId) {
// If there is no remote activity fallback to local activity
if (remoteActivity.chainId && localActivity.chainId !== remoteActivity.chainId) {
acc.push(remoteActivity)
return acc
}
Expand Down

0 comments on commit 53b10bc

Please sign in to comment.