ci(release): publish latest release

parent 8463bf48
IPFS hash of the deployment: IPFS hash of the deployment:
- CIDv0: `QmWe2TF9c45GQYs4stbUXrYQvX34xQaaNTdU3T24DiRwLe` - CIDv0: `QmeHTibtaHFy2CsJfYCkWUkz6iRTJPbPQEnAa7syJ8TJuV`
- CIDv1: `bafybeid3kd2hknxwdz7hcsqrebostgihtwucjlonlzw6oaaxjlsbgmcqdm` - CIDv1: `bafybeihm5hjaazzxpktgygpmi4gvtkhdfsozzxhuxmyjnbq5jiwuxskfna`
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,55 +10,10 @@ You can also access the Uniswap Interface from an IPFS gateway. ...@@ -10,55 +10,10 @@ 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://bafybeid3kd2hknxwdz7hcsqrebostgihtwucjlonlzw6oaaxjlsbgmcqdm.ipfs.dweb.link/ - https://bafybeihm5hjaazzxpktgygpmi4gvtkhdfsozzxhuxmyjnbq5jiwuxskfna.ipfs.dweb.link/
- https://bafybeid3kd2hknxwdz7hcsqrebostgihtwucjlonlzw6oaaxjlsbgmcqdm.ipfs.cf-ipfs.com/ - https://bafybeihm5hjaazzxpktgygpmi4gvtkhdfsozzxhuxmyjnbq5jiwuxskfna.ipfs.cf-ipfs.com/
- [ipfs://QmWe2TF9c45GQYs4stbUXrYQvX34xQaaNTdU3T24DiRwLe/](ipfs://QmWe2TF9c45GQYs4stbUXrYQvX34xQaaNTdU3T24DiRwLe/) - [ipfs://QmeHTibtaHFy2CsJfYCkWUkz6iRTJPbPQEnAa7syJ8TJuV/](ipfs://QmeHTibtaHFy2CsJfYCkWUkz6iRTJPbPQEnAa7syJ8TJuV/)
## 5.30.0 (2024-05-30) ### 5.30.1 (2024-05-31)
### Features
* **web:** [multichain] handle default input token logic (#8209) 3eed0e3
* **web:** 4131 default to token project name instead of token name (#8325) 1debde2
* **web:** 4171 fix duplicate keys in currency search, show balance (#8320) 4c81e41
* **web:** add Mobile App Promo Banner component (#8257) c03744d
* **web:** Add Multichain Explore Feature Flag and Dropdown option (#8314) 27683d8
* **web:** converge to single analytics implementation (#8161) 30558ba
* **web:** convert all Trace elements to shared API (#8159) b340e9b
* **web:** convert all TraceEvent usage to shared trace (#8053) 3631853
* **web:** disable Liquidity Charts on V2 PDP (#8468) 66aad34
* **web:** migrates to using shared analytics send + typing relevant events (#8051) 11c6325
* **web:** Sitemap generation round 3?? (#8323) b6e42b6
* **web:** unicon v2 education label (#8339) f92cd5e
* **web:** use app-specific download links for competitor wallets (#8258) 399844e
* **web:** use new chains with wagmi (#8083) dc14772
* **web:** use new error dialog design (#6974) ae3628c
* **web:** use Xv2 arbitrum experiment parameters for quote (#8251) 08ab621
### Bug Fixes
* **web:** add liquidity title fix (#8298) b587de4
* **web:** Check if WC getNamespaceChainsIds is empty rather than undefined (#8422) 2c76bff
* **web:** dont fetch portfolio balances if multichain ux is not enabled (#8478) 35debe1
* **web:** e2e test amplitude checks (#8391) ef3a9e5
* **web:** enable base eth and usdc for moonpay (#8330) ac0ba90
* **web:** failing e2e tests and wrong ethereum name (#8373) 1cd24a6
* **web:** filtering out spam on send (#8386) 322551b
* **web:** Fix blocking Testlio bugs - staging (#8592) 55a9345
* **web:** fix broken translations (#8580) df6f23d
* **web:** fix failing e2e tests (#8480) 1535f19
* **web:** handle chainName passed as the tab param (#8317) 4555cfd
* **web:** lowercase unicon flag (#8380) dbfe14a
* **web:** mouseover position bug (#8384) 2d8cd91
* **web:** prevent 1H time period on PDP price chart (#8315) ddc10ca
* **web:** prevent connection from hanging when iframed (#8379) 2feccc4
* **web:** Unicon loading state (#8415) 76f29f5
### Continuous Integration
* **web:** update sitemaps b837434
web/5.30.0 web/5.30.1
\ No newline at end of file \ No newline at end of file
...@@ -22,18 +22,20 @@ export function getEventHandlers( ...@@ -22,18 +22,20 @@ export function getEventHandlers(
> = {} > = {}
for (const event of triggers) { for (const event of triggers) {
eventHandlers[event] = (eventHandlerArgs: unknown): void => { eventHandlers[event] = (eventHandlerArgs: unknown): void => {
if (!child.props[event]) { // Some interface elements don't have handlers defined.
logger.error(new Error('Found a null handler while logging an event'), { // TODO(WEB-4252): Potentially can remove isInterface check once web is fully converted to tamagui
tags: { const isInterface: boolean = process.env.REACT_APP_IS_UNISWAP_INTERFACE === 'true'
file: 'trace/utils.ts', if (!child.props[event] && !isInterface) {
function: 'getEventHandlers', logger.info(
}, 'trace/utils.ts',
extra: { 'getEventHandlers',
'Found a null handler while logging an event',
{
eventName, eventName,
...consumedProps, ...consumedProps,
...properties, ...properties,
}, }
}) )
} }
// call child event handler with original arguments // call child event handler with original arguments
......
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