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 1, 2024
1 parent f5bd214 commit f61d42b
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 49 deletions.
55 changes: 8 additions & 47 deletions RELEASE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
IPFS hash of the deployment:
- CIDv0: `Qmd28dj63MAN4SSYPnXMSDe5bKUbnwSFKijHz59isELY4t`
- CIDv1: `bafybeig2edl4hxzvem7w6ujx735fox2jnpdaizovofieutl3rvawydroqu`
- CIDv0: `QmZqX6QCCokYMm8oRdYVi85GDzqDKJZZL1M3djEQXJeXeF`
- CIDv1: `bafybeifk2xe6jgopl2yr55xs3py2ot6rernc2mokn2xxjgybkbomb53tqa`

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

Expand All @@ -10,54 +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://bafybeig2edl4hxzvem7w6ujx735fox2jnpdaizovofieutl3rvawydroqu.ipfs.dweb.link/
- https://bafybeig2edl4hxzvem7w6ujx735fox2jnpdaizovofieutl3rvawydroqu.ipfs.cf-ipfs.com/
- [ipfs://Qmd28dj63MAN4SSYPnXMSDe5bKUbnwSFKijHz59isELY4t/](ipfs://Qmd28dj63MAN4SSYPnXMSDe5bKUbnwSFKijHz59isELY4t/)

## 5.49.0 (2024-10-01)


### Features

* **web:** [1/2] fee tier selection modal (#12092) fa1f56d
* **web:** [2/2] fee tier selection modal (create new) (#12110) 780bbc0
* **web:** add fee tier and price range selection to migrate page (#12064) f417a3f
* **web:** add fiat values props to swap logs in new saga (#12215) 857119c
* **web:** add price impact events (#12208) 30b8c39
* **web:** add total_balances_usd prop to swap logs in new saga (#12173) 79a0b17
* **web:** add UniswapX priority orders in swap flow (#12088) d55a9bd
* **web:** add uniswapx saga to shared web flow (#11973) d10498e
* **web:** add url param to create positions page (#12212) b89e5d1
* **web:** add wrap saga for shared flow (#11971) f14a41a
* **web:** adding multiple protocols to create page (#12132) b4bff49
* **web:** changing create page based on version (#12136) bc16817
* **web:** classic swap saga (#11922) f74c332
* **web:** keep input to all networks unless output selected (#12274) e43b95d
* **web:** log SWAP_MODIFIED_IN_WALLET event in new swap saga (#12247) 16e9f56
* **web:** log SWAP_SIGNED event in new swag saga (#12170) 2494b9d
* **web:** log UniswapXOrderPostError and UniswapXSignatureRequested in new saga (#12114) 454666b
* **web:** log UniswapXOrderSubmitted in new saga (#12113) 9ae3373
* **web:** pulling from backend for create page (#12143) 8f6aa1e
* **web:** swap saga notifications (#12070) e28ec03
* **web:** v2 position page refreshed (#11972) da6c705
* **web:** v4 Position detail page (#11904) a735564
- https://bafybeifk2xe6jgopl2yr55xs3py2ot6rernc2mokn2xxjgybkbomb53tqa.ipfs.dweb.link/
- https://bafybeifk2xe6jgopl2yr55xs3py2ot6rernc2mokn2xxjgybkbomb53tqa.ipfs.cf-ipfs.com/
- [ipfs://QmZqX6QCCokYMm8oRdYVi85GDzqDKJZZL1M3djEQXJeXeF/](ipfs://QmZqX6QCCokYMm8oRdYVi85GDzqDKJZZL1M3djEQXJeXeF/)

### 5.49.1 (2024-10-01)

### Bug Fixes

* **web:** fix AddressQRModal eyeSize (#12318) 33f8160
* **web:** fix language file mapping (#12207) bbfe66d
* **web:** fix overflow issue in search results (#12158) fbd7358
* **web:** limit form button color should be neutralContrast (#12416) d923cdd
* **web:** shared swap landing page (#12026) fe2d0b6
* **web:** token caching fix in mini portfolio (#12149) 4c2d402
* **web:** token selector height (#12028) 3adb0d0
* **web:** use percentFromFloat (#12142) 18f819b
* **web:** use swap saga prefilled state (#12082) c6bd810

### Bug Fixes

### Continuous Integration

* **web:** update sitemaps d8b4a5a
* **web:** priority orders only enabled on base (#12438) c44ffba


2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
web/5.49.0
web/5.49.1
3 changes: 2 additions & 1 deletion apps/web/src/lib/hooks/routing/useRoutingAPIArguments.ts
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,8 @@ export function useRoutingAPIArguments({

const chainId = tokenIn?.chainId
const isUniswapXSupportedChain = useIsUniswapXSupportedChain(chainId)
const isPriorityOrder = isPriorityOrdersEnabled && routerPreference === RouterPreference.X && isUniswapXSupportedChain
const isPriorityOrder =
routerPreference === RouterPreference.X && isPriorityOrdersEnabled && chainId === UniverseChainId.Base // UniswapX priority orders are only available on Base for now

return useMemo(
() =>
Expand Down

0 comments on commit f61d42b

Please sign in to comment.