ci(release): publish latest release

parent aad7fb3e
IPFS hash of the deployment: IPFS hash of the deployment:
- CIDv0: `QmNhWv1wsYtTeENpAN7Niquy4TMJ6JzEh8ZZqPGCoeYcGH` - CIDv0: `QmbPRyz7JxeDFrkmKzQnSi5h8Vn5iP81skJA5SoXkfJb6G`
- CIDv1: `bafybeiaflbrdbl3olcods3uy3feg64eaepg736m7aoiwuw3ctsyla36iri` - CIDv1: `bafybeigb3zegvo3fwadtcskq6ty2fbznvkqu7jkxt56dequcbqenjo5kme`
The latest release is always mirrored at [app.uniswap.org](https://app.uniswap.org). The latest release is always mirrored at [app.uniswap.org](https://app.uniswap.org).
...@@ -10,63 +10,15 @@ You can also access the Uniswap Interface from an IPFS gateway. ...@@ -10,63 +10,15 @@ You can also access the Uniswap Interface from an IPFS gateway.
Your Uniswap settings are never remembered across different URLs. Your Uniswap settings are never remembered across different URLs.
IPFS gateways: IPFS gateways:
- https://bafybeiaflbrdbl3olcods3uy3feg64eaepg736m7aoiwuw3ctsyla36iri.ipfs.dweb.link/ - https://bafybeigb3zegvo3fwadtcskq6ty2fbznvkqu7jkxt56dequcbqenjo5kme.ipfs.dweb.link/
- https://bafybeiaflbrdbl3olcods3uy3feg64eaepg736m7aoiwuw3ctsyla36iri.ipfs.cf-ipfs.com/ - https://bafybeigb3zegvo3fwadtcskq6ty2fbznvkqu7jkxt56dequcbqenjo5kme.ipfs.cf-ipfs.com/
- [ipfs://QmNhWv1wsYtTeENpAN7Niquy4TMJ6JzEh8ZZqPGCoeYcGH/](ipfs://QmNhWv1wsYtTeENpAN7Niquy4TMJ6JzEh8ZZqPGCoeYcGH/) - [ipfs://QmbPRyz7JxeDFrkmKzQnSi5h8Vn5iP81skJA5SoXkfJb6G/](ipfs://QmbPRyz7JxeDFrkmKzQnSi5h8Vn5iP81skJA5SoXkfJb6G/)
## 5.50.0 (2024-10-04) ### 5.50.1 (2024-10-07)
### Features
* **web:** add the review screen modal to the add liquidity flow (#12210) a43a6cd
* **web:** avoid duplicate swap steps upon closing/reopening review modal (#12232) 7613047
* **web:** call Trading API for increase/decrease/create LP actions (#12280) b563835
* **web:** generate steps for increasing position (#12339) 08fddec
* **web:** handle swap saga cancellation / interruption (#12115) e78fe1f
* **web:** move routing diagram to uniswap (#12244) 7cc63c4
* **web:** move web swap settings to popover (#12118) 0be1d91
* **web:** setting up backend for create position range (#12193) 0ddb961
* **web:** single swap step UI state (#12410) 6132c6c
* **web:** step-specific swap review button text (#12117) 1327c62
* **web:** swap detail line items (#12169) 1eb5c93
* **web:** universal swap bridge link banners + across bridging promo banner (#12378) d3d2641
* **web:** v2 position details data (#12216) 67f8087
* **web:** v3 position detail page API integration (#12217) 4328bdf
* **web:** v4 PosDP improvements (#12255) 83e7a77
### Bug Fixes ### Bug Fixes
* **web:** add requestId and quoteId to post /order request (#12614) 562361b * **web:** invalidate local activity cache for updates to transaction or signature state - prod (#12732) 74b24f2
* **web:** deadline input field focus (#12405) 9ace591
* **web:** disabled button states (#12509) 0dc3f11
* **web:** disallow non numerical input on deadline (#12265) 36d1d33
* **web:** dont respect url flag overrides on prod - staging (#12549) 69f3780
* **web:** fix token warnings on URL query prefill (#12329) e951732
* **web:** Fix/top tokens cache staging (#12570) 70ac444
* **web:** only clear amount input on swap success in shared flow (#12231) 1f28931
* **web:** priority orders only enabled on base (#12437) 4902650
* **web:** remove hardcoded web saga var (#12520) 8d87977
* **web:** reset inputs after trade, no rogue data (#12335) b2a2710
* **web:** rm prod arb+eth quicknode urls [staging] (#12647) 9d2d765
* **web:** segmented control flashing and off by 1px (#12319) 2d88b56
* **web:** suggested tokens height (#12454) 64ffee3
* **web:** swap review screen ux/ui fixes (#12267) b76218d
* **web:** swap tabs from pathname (#12126) 1c25507
* **web:** swap UI nits (#12448) 3777948
* **web:** swap warning tooltip width (#12125) 89130ab
* **web:** switch chain in wrap saga (#12263) 7f81f76
* **web:** testlio polish - limit form button color + hidden header should not prevent clicks (#12413) 4bb70f9
* **web:** ui fixes part 1 (#12279) 8b3abdc
* **web:** uniswapx toasts/polling [staging] (#12659) 7a14094
* **web:** universal swap flow on tdp and pdp (#12257) c296cd1
* **web:** update simulation param for async swap step (#12490) 06dc81d
* **web:** use proper arb+eth urls [staging] (#12674) dd4b6b5
### Continuous Integration
* **web:** update sitemaps 1f57186
web/5.50.0 web/5.50.1
\ No newline at end of file \ No newline at end of file
...@@ -354,7 +354,7 @@ export function useLocalActivities(account: string): ActivityMap { ...@@ -354,7 +354,7 @@ export function useLocalActivities(account: string): ActivityMap {
const { formatNumber } = useFormatter() const { formatNumber } = useFormatter()
const { data } = useQuery({ const { data } = useQuery({
queryKey: ['localActivities', account], queryKey: ['localActivities', account, allTransactions, allSignatures],
queryFn: async () => { queryFn: async () => {
const transactions = Object.values(allTransactions) const transactions = Object.values(allTransactions)
.filter(([transaction]) => transaction.from === account) .filter(([transaction]) => transaction.from === account)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment