Skip to content

Commit 168fd79

Browse files
ci(release): publish latest release
1 parent 8463bf4 commit 168fd79

File tree

3 files changed

+18
-61
lines changed

3 files changed

+18
-61
lines changed

RELEASE

+6-51
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
IPFS hash of the deployment:
2-
- CIDv0: `QmWe2TF9c45GQYs4stbUXrYQvX34xQaaNTdU3T24DiRwLe`
3-
- CIDv1: `bafybeid3kd2hknxwdz7hcsqrebostgihtwucjlonlzw6oaaxjlsbgmcqdm`
2+
- CIDv0: `QmeHTibtaHFy2CsJfYCkWUkz6iRTJPbPQEnAa7syJ8TJuV`
3+
- CIDv1: `bafybeihm5hjaazzxpktgygpmi4gvtkhdfsozzxhuxmyjnbq5jiwuxskfna`
44

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

@@ -10,55 +10,10 @@ 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://bafybeid3kd2hknxwdz7hcsqrebostgihtwucjlonlzw6oaaxjlsbgmcqdm.ipfs.dweb.link/
14-
- https://bafybeid3kd2hknxwdz7hcsqrebostgihtwucjlonlzw6oaaxjlsbgmcqdm.ipfs.cf-ipfs.com/
15-
- [ipfs://QmWe2TF9c45GQYs4stbUXrYQvX34xQaaNTdU3T24DiRwLe/](ipfs://QmWe2TF9c45GQYs4stbUXrYQvX34xQaaNTdU3T24DiRwLe/)
13+
- https://bafybeihm5hjaazzxpktgygpmi4gvtkhdfsozzxhuxmyjnbq5jiwuxskfna.ipfs.dweb.link/
14+
- https://bafybeihm5hjaazzxpktgygpmi4gvtkhdfsozzxhuxmyjnbq5jiwuxskfna.ipfs.cf-ipfs.com/
15+
- [ipfs://QmeHTibtaHFy2CsJfYCkWUkz6iRTJPbPQEnAa7syJ8TJuV/](ipfs://QmeHTibtaHFy2CsJfYCkWUkz6iRTJPbPQEnAa7syJ8TJuV/)
1616

17-
## 5.30.0 (2024-05-30)
18-
19-
20-
### Features
21-
22-
* **web:** [multichain] handle default input token logic (#8209) 3eed0e3
23-
* **web:** 4131 default to token project name instead of token name (#8325) 1debde2
24-
* **web:** 4171 fix duplicate keys in currency search, show balance (#8320) 4c81e41
25-
* **web:** add Mobile App Promo Banner component (#8257) c03744d
26-
* **web:** Add Multichain Explore Feature Flag and Dropdown option (#8314) 27683d8
27-
* **web:** converge to single analytics implementation (#8161) 30558ba
28-
* **web:** convert all Trace elements to shared API (#8159) b340e9b
29-
* **web:** convert all TraceEvent usage to shared trace (#8053) 3631853
30-
* **web:** disable Liquidity Charts on V2 PDP (#8468) 66aad34
31-
* **web:** migrates to using shared analytics send + typing relevant events (#8051) 11c6325
32-
* **web:** Sitemap generation round 3?? (#8323) b6e42b6
33-
* **web:** unicon v2 education label (#8339) f92cd5e
34-
* **web:** use app-specific download links for competitor wallets (#8258) 399844e
35-
* **web:** use new chains with wagmi (#8083) dc14772
36-
* **web:** use new error dialog design (#6974) ae3628c
37-
* **web:** use Xv2 arbitrum experiment parameters for quote (#8251) 08ab621
38-
39-
40-
### Bug Fixes
41-
42-
* **web:** add liquidity title fix (#8298) b587de4
43-
* **web:** Check if WC getNamespaceChainsIds is empty rather than undefined (#8422) 2c76bff
44-
* **web:** dont fetch portfolio balances if multichain ux is not enabled (#8478) 35debe1
45-
* **web:** e2e test amplitude checks (#8391) ef3a9e5
46-
* **web:** enable base eth and usdc for moonpay (#8330) ac0ba90
47-
* **web:** failing e2e tests and wrong ethereum name (#8373) 1cd24a6
48-
* **web:** filtering out spam on send (#8386) 322551b
49-
* **web:** Fix blocking Testlio bugs - staging (#8592) 55a9345
50-
* **web:** fix broken translations (#8580) df6f23d
51-
* **web:** fix failing e2e tests (#8480) 1535f19
52-
* **web:** handle chainName passed as the tab param (#8317) 4555cfd
53-
* **web:** lowercase unicon flag (#8380) dbfe14a
54-
* **web:** mouseover position bug (#8384) 2d8cd91
55-
* **web:** prevent 1H time period on PDP price chart (#8315) ddc10ca
56-
* **web:** prevent connection from hanging when iframed (#8379) 2feccc4
57-
* **web:** Unicon loading state (#8415) 76f29f5
58-
59-
60-
### Continuous Integration
61-
62-
* **web:** update sitemaps b837434
17+
### 5.30.1 (2024-05-31)
6318

6419

VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
web/5.30.0
1+
web/5.30.1

packages/utilities/src/telemetry/trace/utils.ts

+11-9
Original file line numberDiff line numberDiff line change
@@ -22,18 +22,20 @@ export function getEventHandlers(
2222
> = {}
2323
for (const event of triggers) {
2424
eventHandlers[event] = (eventHandlerArgs: unknown): void => {
25-
if (!child.props[event]) {
26-
logger.error(new Error('Found a null handler while logging an event'), {
27-
tags: {
28-
file: 'trace/utils.ts',
29-
function: 'getEventHandlers',
30-
},
31-
extra: {
25+
// Some interface elements don't have handlers defined.
26+
// TODO(WEB-4252): Potentially can remove isInterface check once web is fully converted to tamagui
27+
const isInterface: boolean = process.env.REACT_APP_IS_UNISWAP_INTERFACE === 'true'
28+
if (!child.props[event] && !isInterface) {
29+
logger.info(
30+
'trace/utils.ts',
31+
'getEventHandlers',
32+
'Found a null handler while logging an event',
33+
{
3234
eventName,
3335
...consumedProps,
3436
...properties,
35-
},
36-
})
37+
}
38+
)
3739
}
3840

3941
// call child event handler with original arguments

0 commit comments

Comments
 (0)