Skip to content

Commit

Permalink
Merge pull request #4997 from cowprotocol/main
Browse files Browse the repository at this point in the history
Main -> develop
  • Loading branch information
shoom3301 authored Oct 16, 2024
2 parents 26cbffb + d6c25b8 commit 84c90c9
Show file tree
Hide file tree
Showing 8 changed files with 18 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"apps/cowswap-frontend": "1.85.0",
"apps/explorer": "2.35.0",
"apps/explorer": "2.35.1",
"libs/permit-utils": "0.4.0",
"libs/widget-lib": "0.15.0",
"libs/widget-react": "0.11.0",
Expand Down
7 changes: 7 additions & 0 deletions apps/explorer/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## [2.35.1](https://github.com/cowprotocol/cowswap/compare/explorer-v2.35.0...explorer-v2.35.1) (2024-10-14)


### Bug Fixes

* **explorer:** do not crash when appData is not parsed ([#4983](https://github.com/cowprotocol/cowswap/issues/4983)) ([b960bde](https://github.com/cowprotocol/cowswap/commit/b960bde94570dba2a297ecb59a7a79cbbbfcefb8))

## [2.35.0](https://github.com/cowprotocol/cowswap/compare/explorer-v2.34.1...explorer-v2.35.0) (2024-10-10)


Expand Down
2 changes: 1 addition & 1 deletion apps/explorer/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@cowprotocol/explorer",
"version": "2.35.0",
"version": "2.35.1",
"description": "CoW Swap Explorer",
"main": "src/main.tsx",
"author": "",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ interface OrderHooksDetailsProps {
export function OrderHooksDetails({ appData, fullAppData, children }: OrderHooksDetailsProps) {
const { appDataDoc } = useAppData(appData, fullAppData)

if (!appDataDoc) return null
if (!appDataDoc?.metadata) return null

const metadata = appDataDoc.metadata as latest.Metadata

Expand Down
4 changes: 2 additions & 2 deletions libs/events/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,6 @@
"dex"
],
"dependencies": {
"@cowprotocol/types": "^1.1.1-RC.0"
"@cowprotocol/types": "^1.2.0"
}
}
}
2 changes: 1 addition & 1 deletion libs/iframe-transport/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@cowprotocol/iframe-transport",
"version": "1.0.0",
"version": "1.1.0",
"type": "commonjs",
"description": "CoW Swap iframe-transport",
"main": "index.js",
Expand Down
5 changes: 3 additions & 2 deletions libs/widget-lib/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
"widget-lib"
],
"dependencies": {
"@cowprotocol/events": "^1.4.1-RC.0"
"@cowprotocol/events": "^1.5.0",
"@cowprotocol/iframe-transport": "^1.1.0"
}
}
}
4 changes: 2 additions & 2 deletions libs/widget-react/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,6 @@
"react"
],
"dependencies": {
"@cowprotocol/widget-lib": "^0.14.1-RC.0"
"@cowprotocol/widget-lib": "^0.15.0"
}
}
}

0 comments on commit 84c90c9

Please sign in to comment.