Skip to content

Commit f67e708

Browse files
authored
Merge pull request #6482 from cowprotocol/main
main -> develop
2 parents b6f5607 + 00ac93a commit f67e708

File tree

4 files changed

+10
-5
lines changed

4 files changed

+10
-5
lines changed

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"apps/cowswap-frontend": "1.122.0",
3-
"apps/explorer": "2.56.0",
3+
"apps/explorer": "2.57.0",
44
"libs/permit-utils": "1.0.0",
55
"libs/widget-lib": "0.20.0",
66
"libs/widget-react": "0.11.2",

apps/explorer/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Changelog
22

3+
## [2.57.0](https://github.com/cowprotocol/cowswap/compare/explorer-v2.56.0...explorer-v2.57.0) (2025-11-05)
4+
5+
6+
### Features
7+
8+
* adjust params type to trigger a bumping of version ([#6476](https://github.com/cowprotocol/cowswap/issues/6476)) ([1e08587](https://github.com/cowprotocol/cowswap/commit/1e0858701b909fe2847be325ed2a7287592711b8))
9+
310
## [2.56.0](https://github.com/cowprotocol/cowswap/compare/explorer-v2.55.0...explorer-v2.56.0) (2025-10-14)
411

512

apps/explorer/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@cowprotocol/explorer",
3-
"version": "2.56.0",
3+
"version": "2.57.0",
44
"description": "CoW Swap Explorer",
55
"main": "src/main.tsx",
66
"author": "",

apps/explorer/src/utils/miscellaneous.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,7 @@ window.toggleDebug = (): boolean => {
2727
return debugEnabled
2828
}
2929

30-
// TODO: Replace any with proper type definitions
31-
// eslint-disable-next-line @typescript-eslint/no-explicit-any
32-
export const logDebug = (...args: any[]): void => {
30+
export const logDebug = (...args: unknown[]): void => {
3331
if (debugEnabled) {
3432
console.log(...args)
3533
}

0 commit comments

Comments
 (0)