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 Nov 20, 2024
1 parent 7c34701 commit cdc2660
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 40 deletions.
44 changes: 6 additions & 38 deletions RELEASE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
IPFS hash of the deployment:
- CIDv0: `Qmckh3X76dS3aki3F24Hf4GZzDtSPyhMRBa1rV2soC6qJm`
- CIDv1: `bafybeigwfqzd3hshqyg4h4gexgv2yuxodjpaxgkvteoqwjiznjcrukcq7y`
- CIDv0: `Qmbi7qUw2KPYEeiRDwq1p9QFH7aNAbCfL6JT7qVeF6PUum`
- CIDv1: `bafybeiggu7gmcacpa2plvge7vi5dv6quztwe52x7e7edrnnv35xgzipxqa`

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

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

IPFS gateways:
- https://bafybeigwfqzd3hshqyg4h4gexgv2yuxodjpaxgkvteoqwjiznjcrukcq7y.ipfs.dweb.link/
- https://bafybeigwfqzd3hshqyg4h4gexgv2yuxodjpaxgkvteoqwjiznjcrukcq7y.ipfs.cf-ipfs.com/
- [ipfs://Qmckh3X76dS3aki3F24Hf4GZzDtSPyhMRBa1rV2soC6qJm/](ipfs://Qmckh3X76dS3aki3F24Hf4GZzDtSPyhMRBa1rV2soC6qJm/)
- https://bafybeiggu7gmcacpa2plvge7vi5dv6quztwe52x7e7edrnnv35xgzipxqa.ipfs.dweb.link/
- https://bafybeiggu7gmcacpa2plvge7vi5dv6quztwe52x7e7edrnnv35xgzipxqa.ipfs.cf-ipfs.com/
- [ipfs://Qmbi7qUw2KPYEeiRDwq1p9QFH7aNAbCfL6JT7qVeF6PUum/](ipfs://Qmbi7qUw2KPYEeiRDwq1p9QFH7aNAbCfL6JT7qVeF6PUum/)

## 5.59.0 (2024-11-20)


### Features

* **web:** add hide button to chain connectivity warning (#13795) 48e7521
* **web:** add max content to liq modals and propagate padding and gap to bottom sheet (#13806) 1991803
* **web:** clear selected limit orders after cancellation (#13808) 084120b
* **web:** mweb responsive liq position cards (#13825) 8757ff6
* **web:** mweb support for pool creation page (#13823) 9c82fec
* **web:** navigate to positions page after migrating liq (#13802) e60979a
* **web:** tweaks to top pools cards (#13824) c2628e0
* **web:** update shadow prop medium and light for interface (#13819) ad78fc4
* **web:** watch swap, send, bridge, wrap txs (#13807) 523abbd


### Bug Fixes

* **web:** [v4] wrap disconnected welcome text (#13791) dba8373
* **web:** broken charts on PDP (#13809) 5ba405f
* **web:** Fix buy crypto form e2e tests and nft tab nav test (#13790) 44b02ae
* **web:** fix overflow in unconnected menu [staging] (#13938) 9e46347
* **web:** Fix regression in TDP swap component navigation on web (#13779) 3f107e5
* **web:** handle edit text on small screens (#13800) 8a796fa
* **web:** only show warning on invalid price or range (#13805) 1c32c37
* **web:** pool tab zindex was too damn high (#13792) 7d01a6a
* **web:** set max height for advanced info icon (#13801) 4aea7f0
* **web:** uniswapx tests - increase hardhat funding (#13820) 7a43cff


### Continuous Integration

* **web:** update sitemaps 2c6b2bc
### 5.59.1 (2024-11-20)


2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
web/5.59.0
web/5.59.1
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ function getCurrenciesWithExpectedUpdates(transaction: TransactionDetails): Set<
// All txs besides FOR at least use gas so check for update of gas token
currenciesWithBalToUpdate.add(buildNativeCurrencyId(txChainId))

switch (transaction.typeInfo.type) {
switch (transaction.typeInfo?.type) {
case TransactionType.Swap:
case TransactionType.Bridge:
currenciesWithBalToUpdate.add(transaction.typeInfo.inputCurrencyId.toLowerCase())
Expand All @@ -157,6 +157,11 @@ function getCurrenciesWithExpectedUpdates(transaction: TransactionDetails): Set<
buildCurrencyId(txChainId, transaction.typeInfo.destinationTokenAddress).toLowerCase(),
)
break
default:
logger.info('refetchGQLQueriesSaga', 'getCurrenciesWithExpectedUpdates', 'Unhandled transaction type', {
transaction,
})
break
}

return currenciesWithBalToUpdate
Expand Down

0 comments on commit cdc2660

Please sign in to comment.