Skip to content

Commit ed4fa88

Browse files
ci(release): publish latest release
1 parent afbd32f commit ed4fa88

File tree

4 files changed

+19
-43
lines changed

4 files changed

+19
-43
lines changed

RELEASE

Lines changed: 6 additions & 42 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
IPFS hash of the deployment:
2-
- CIDv0: `QmdQ6urSp5w5e6VJxiyS2mdGKHUgmzpjNHkBT1YVdpigS6`
3-
- CIDv1: `bafybeig7ygwheh6xlew6fuz5tjgupkxx7gidccbsc6nsjrov7klmn5g7qm`
2+
- CIDv0: `QmRWQUuESBFQpRspBXxNzW6qyuE6KtdyCcHmvk3AxdoBtj`
3+
- CIDv1: `bafybeibpcleblyn2rtlfvsxmhi4meneq5rwyjk3rvvq6l3ufkzdthqayga`
44

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

@@ -10,50 +10,14 @@ You can also access the Uniswap Interface from an IPFS gateway.
1010
Your Uniswap settings are never remembered across different URLs.
1111

1212
IPFS gateways:
13-
- https://bafybeig7ygwheh6xlew6fuz5tjgupkxx7gidccbsc6nsjrov7klmn5g7qm.ipfs.dweb.link/
14-
- [ipfs://QmdQ6urSp5w5e6VJxiyS2mdGKHUgmzpjNHkBT1YVdpigS6/](ipfs://QmdQ6urSp5w5e6VJxiyS2mdGKHUgmzpjNHkBT1YVdpigS6/)
13+
- https://bafybeibpcleblyn2rtlfvsxmhi4meneq5rwyjk3rvvq6l3ufkzdthqayga.ipfs.dweb.link/
14+
- [ipfs://QmRWQUuESBFQpRspBXxNzW6qyuE6KtdyCcHmvk3AxdoBtj/](ipfs://QmRWQUuESBFQpRspBXxNzW6qyuE6KtdyCcHmvk3AxdoBtj/)
1515

16-
## 5.137.0 (2026-03-11)
17-
18-
19-
### Features
20-
21-
* **web:** add allowlisted hooks link to positions page (#29181) 0ff53ac
22-
* **web:** add multichain balances expanding rows (#29054) 506eafb
23-
* **web:** integrate REST price fallback (#29144) b18655d
24-
* **web:** Show reset filters button on no results for search modal (#28654) 71d5260
25-
* **web:** update token percentage allocation chart (#29117) 606f9ab
26-
* **web:** Update wallet connection panel styling (#29139) b53ac09
27-
* **web:** use multichain token format in portfolio page (#28942) 10f85d1
28-
* **web:** use price service in explore pages (#29082) 9df45d8
16+
### 5.137.1 (2026-03-12)
2917

3018

3119
### Bug Fixes
3220

33-
* **web:** Add compact mode for demo wallet header in portfolio (#29226) 1d9c341
34-
* **web:** cherry-pick #29363 (#5.136.1) (#29397) f2a1ada
35-
* **web:** cherry-pick #29386 (#5.136.3) (#29425) 820182e
36-
* **web:** cherry-pick #29399 (#5.136.2) (#29417) b3390fb
37-
* **web:** correctly pass multichain data argument so we don't get multichain dummy data when flag is off (#29174) 94dfa5f
38-
* **web:** Disable scrolling for context menus in token list from portfolio (#28837) 67fcfd9
39-
* **web:** Don't re-render avatars on scroll in Portfolio's activity (#29222) b824c10
40-
* **web:** fix light/dark mode transition flicker (#29247) 8a46c62
41-
* **web:** fix nav searchbar text overflow (#29284) d8b1968
42-
* **web:** Fix navbar e2e test for token details page (#29205) 00587bf
43-
* **web:** handle explore context issue for TokenCarousel component (#29166) a58f71c
44-
* **web:** use ref for dataLength comparison in useLoadMore hook (#29233) 4c5b664
45-
* **websocket:** debounce disconnects (#29085) 105efd1
46-
* **websocket:** track callback-less subscribers with eager cancellation (#29140) 578173b
47-
* **websockets:** update urls for staging/dev (#29171) 591c2c4
48-
49-
50-
### Continuous Integration
51-
52-
* **web:** update sitemaps 74f05b9
53-
54-
55-
### Code Refactoring
56-
57-
* **web:** fix some egw proxy edge cases (#29112) 2ed1220
21+
* **web:** hotfix #29588 (#5.136.5) (#29592) ae76a15
5822

5923

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
web/5.137.0
1+
web/5.137.1

apps/web/src/components/Liquidity/LowLPSlippageWarning.tsx

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
import { FeatureFlags, useFeatureFlag } from '@universe/gating'
12
import { useTranslation } from 'react-i18next'
23
import { useLocalizationContext } from 'uniswap/src/features/language/LocalizationContext'
34
import { isLowSlippage } from 'uniswap/src/features/transactions/components/settings/settingsConfigurations/slippage/SlippageLPWarning'
@@ -10,6 +11,7 @@ import { ErrorCallout } from '~/components/ErrorCallout'
1011
export function LowLPSlippageWarning({ isNativePool }: { isNativePool: boolean }) {
1112
const { t } = useTranslation()
1213
const { formatPercent } = useLocalizationContext()
14+
const isLpDynamicNativeSlippageEnabled = useFeatureFlag(FeatureFlags.LpDynamicNativeSlippage)
1315
const { customSlippageTolerance, isSlippageDirty } = useTransactionSettingsStore((s) => ({
1416
customSlippageTolerance: s.customSlippageTolerance,
1517
isSlippageDirty: s.isSlippageDirty,
@@ -20,6 +22,7 @@ export function LowLPSlippageWarning({ isNativePool }: { isNativePool: boolean }
2022
const isLowSlippageWarning = isLowSlippage({
2123
isNativePool,
2224
isSlippageDirty,
25+
isLpDynamicNativeSlippageEnabled,
2326
effectiveSlippage: effectiveSlippage ?? 0,
2427
})
2528

packages/uniswap/src/features/transactions/components/settings/settingsConfigurations/slippage/SlippageLPWarning.tsx

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
import { FeatureFlags, useFeatureFlag } from '@universe/gating'
12
import { useTranslation } from 'react-i18next'
23
import { WarningMessage } from 'uniswap/src/components/WarningMessage/WarningMessage'
34
import { SlippageWarning } from 'uniswap/src/features/transactions/components/settings/settingsConfigurations/slippage/SlippageWarning'
@@ -16,18 +17,25 @@ export function isLowSlippage({
1617
isNativePool,
1718
isSlippageDirty,
1819
effectiveSlippage,
20+
isLpDynamicNativeSlippageEnabled,
1921
}: {
2022
isNativePool: boolean
2123
isSlippageDirty: boolean
2224
effectiveSlippage: number
25+
isLpDynamicNativeSlippageEnabled: boolean
2326
}): boolean {
27+
if (!isLpDynamicNativeSlippageEnabled) {
28+
return false
29+
}
30+
2431
return Boolean(
2532
isNativePool && !isSlippageDirty && effectiveSlippage >= 0 && effectiveSlippage < SLIPPAGE_LOW_TOLERANCE_LP,
2633
)
2734
}
2835

2936
export function SlippageLPWarning({ isNativePool }: SlippageLPWarningProps): JSX.Element | null {
3037
const { t } = useTranslation()
38+
const isLpDynamicNativeSlippageEnabled = useFeatureFlag(FeatureFlags.LpDynamicNativeSlippage)
3139
const { customSlippageTolerance, isSlippageDirty } = useTransactionSettingsStore((s) => ({
3240
customSlippageTolerance: s.customSlippageTolerance,
3341
isSlippageDirty: s.isSlippageDirty,
@@ -38,6 +46,7 @@ export function SlippageLPWarning({ isNativePool }: SlippageLPWarningProps): JSX
3846
const isLowSlippageWarning = isLowSlippage({
3947
isNativePool,
4048
isSlippageDirty,
49+
isLpDynamicNativeSlippageEnabled,
4150
effectiveSlippage: effectiveSlippage ?? 0,
4251
})
4352

0 commit comments

Comments
 (0)