Skip to content

Commit 4994670

Browse files
ci(release): publish latest release
1 parent 7887825 commit 4994670

File tree

9 files changed

+21
-10
lines changed

9 files changed

+21
-10
lines changed

RELEASE

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
IPFS hash of the deployment:
2-
- CIDv0: `QmSC1sbHxyqCDMoenbyRbNy3ng8pRFXA1t1WiU8ufuAew5`
3-
- CIDv1: `bafybeibzhbztvwsi7k2x3mwg44ixqk6awd5jpzzawc4h4mkbbcwng76slq`
2+
- CIDv0: `QmYp3ToAJE9712vFyhnVHxEKyx8W43eZqqzXCE1ozANNSm`
3+
- CIDv1: `bafybeie3tfduaapweaj3s5fgquswce35oyqqx37rukr2nccjd43hozmpyi`
44

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

@@ -10,14 +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://bafybeibzhbztvwsi7k2x3mwg44ixqk6awd5jpzzawc4h4mkbbcwng76slq.ipfs.dweb.link/
14-
- [ipfs://QmSC1sbHxyqCDMoenbyRbNy3ng8pRFXA1t1WiU8ufuAew5/](ipfs://QmSC1sbHxyqCDMoenbyRbNy3ng8pRFXA1t1WiU8ufuAew5/)
13+
- https://bafybeie3tfduaapweaj3s5fgquswce35oyqqx37rukr2nccjd43hozmpyi.ipfs.dweb.link/
14+
- [ipfs://QmYp3ToAJE9712vFyhnVHxEKyx8W43eZqqzXCE1ozANNSm/](ipfs://QmYp3ToAJE9712vFyhnVHxEKyx8W43eZqqzXCE1ozANNSm/)
1515

16-
### 5.120.5 (2025-12-03)
16+
### 5.120.6 (2025-12-04)
1717

1818

1919
### Bug Fixes
2020

21-
* **web:** zindex/hover fixes for navbar (#26024) 1153033
21+
* **web:** use popover zIndex for tamagui popover (#26072) 305043f
2222

2323

VERSION

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

apps/web/src/components/HelpModal/HelpModal.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ import { useState } from 'react'
33
import { ClickableTamaguiStyle } from 'theme/components/styles'
44
import { Flex, Popover, TouchableArea, useMedia } from 'ui/src'
55
import { QuestionInCircleFilled } from 'ui/src/components/icons/QuestionInCircleFilled'
6+
import { zIndexes } from 'ui/src/theme'
67
import { TestID } from 'uniswap/src/test/fixtures/testIDs'
78

89
export function HelpModal({ showOnXL = false }: { showOnXL?: boolean }) {
@@ -43,6 +44,7 @@ export function HelpModal({ showOnXL = false }: { showOnXL?: boolean }) {
4344
</TouchableArea>
4445
</Popover.Trigger>
4546
<Popover.Content
47+
zIndex={zIndexes.popover}
4648
enterStyle={{ scale: 0.95, opacity: 0 }}
4749
exitStyle={{ scale: 0.95, opacity: 0 }}
4850
animation="quick"

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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ import { useAppDispatch } from 'state/hooks'
1010
import { Button, DropdownMenuSheetItem, Flex, IconButton, Popover, useIsTouchDevice, useMedia } from 'ui/src'
1111
import { GridView } from 'ui/src/components/icons/GridView'
1212
import { X } from 'ui/src/components/icons/X'
13+
import { zIndexes } from 'ui/src/theme'
1314
import { MenuOptionItem } from 'uniswap/src/components/menus/ContextMenuV2'
1415
import { ModalName } from 'uniswap/src/features/telemetry/constants'
1516
import { isV4UnsupportedChain } from 'utils/networkSupportsV4'
@@ -172,6 +173,7 @@ function MWebActionButtons({ actionItems }: { actionItems: MenuOptionItem[] }):
172173
<IconButton emphasis="secondary" icon={isOpen ? <X color="$neutral1" /> : <GridView color="$neutral1" />} />
173174
</Popover.Trigger>
174175
<Popover.Content
176+
zIndex={zIndexes.popover}
175177
backgroundColor="transparent"
176178
animation="125ms"
177179
enterStyle={{

apps/web/src/pages/Explore/ExploreStatsSection.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ const StatDisplayWithPopover = memo(({ data, isLoading }: StatDisplayProps) => {
168168
<StatDisplay data={data} isLoading={isLoading} isHoverable />
169169
</Popover.Trigger>
170170
<Popover.Content
171-
zIndex={zIndexes.dropdown}
171+
zIndex={zIndexes.popover}
172172
borderColor="$surface2"
173173
borderRadius="$rounded16"
174174
borderWidth="$spacing1"

apps/web/src/pages/Portfolio/NFTs/NFTCard.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,7 @@ function _NFTCard(props: NftCardProps): JSX.Element {
216216
<Popover.Content
217217
backgroundColor="transparent"
218218
animation="quick"
219-
zIndex={zIndexes.modal}
219+
zIndex={zIndexes.popover}
220220
{...animationPresets.fadeInDownOutUp}
221221
>
222222
<MenuContent

apps/web/src/pages/Swap/Send/SendRecipientForm.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ import { ClickableStyle } from 'theme/components/styles'
1616
import { capitalize } from 'tsafe'
1717
import { Flex, Popover, Text, Tooltip, styled as UIStyled } from 'ui/src'
1818
import { Unitag } from 'ui/src/components/icons/Unitag'
19+
import { zIndexes } from 'ui/src/theme'
1920
import { useUnitagsAddressQuery } from 'uniswap/src/data/apiClients/unitagsApi/useUnitagsAddressQuery'
2021
import { AccountIcon } from 'uniswap/src/features/accounts/AccountIcon'
2122
import { useENSName } from 'uniswap/src/features/ens/api'
@@ -380,6 +381,7 @@ export function SendRecipientForm({ disabled }: { disabled?: boolean }) {
380381
)}
381382
</Popover.Trigger>
382383
<Popover.Content
384+
zIndex={zIndexes.popover}
383385
background="transparent"
384386
width={(inputNode.current?.clientWidth ?? 0) + 32}
385387
ref={popoverContentRef}

packages/ui/src/components/popover/AdaptiveWebPopoverContent.tsx

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ import { ComponentProps, ReactNode } from 'react'
22
import { Popover } from 'tamagui'
33
// biome-ignore lint/style/noRestrictedImports: needed here
44
import { WebBottomSheet } from 'ui/src/components/modal/AdaptiveWebModal'
5+
import { zIndexes } from 'ui/src/theme'
56

67
type AdaptiveWebPopoverContentProps = Omit<ComponentProps<typeof Popover.Content>, 'children'> & {
78
children: ReactNode
@@ -23,7 +24,9 @@ export function AdaptiveWebPopoverContent({
2324
}: AdaptiveWebPopoverContentProps): JSX.Element {
2425
return (
2526
<>
26-
<Popover.Content {...popoverContentProps}>{children}</Popover.Content>
27+
<Popover.Content zIndex={zIndexes.popover} {...popoverContentProps}>
28+
{children}
29+
</Popover.Content>
2730
<Popover.Adapt when="sm">
2831
<WebBottomSheet isOpen={isOpen} {...(webBottomSheetProps || {})}>
2932
<Popover.Adapt.Contents />

packages/uniswap/src/components/menus/ContextMenuV2.web.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
import { Fragment, PropsWithChildren, useRef, useState } from 'react'
22
import { Popover } from 'ui/src'
3+
import { zIndexes } from 'ui/src/theme'
34
import { MenuContent } from 'uniswap/src/components/menus/ContextMenuContent'
45
import { ContextMenuProps } from 'uniswap/src/components/menus/ContextMenuV2'
56
import { useContextMenuTracking } from 'uniswap/src/components/menus/hooks/useContextMenuTracking'
@@ -119,6 +120,7 @@ export function ContextMenu({
119120
scale: 0.98,
120121
transform: [{ translateY: -4 }],
121122
}}
123+
zIndex={zIndexes.popover}
122124
>
123125
<MenuContent
124126
items={menuItems}

0 commit comments

Comments
 (0)