Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.122.0",
"apps/explorer": "2.56.0",
"apps/explorer": "2.57.0",
"libs/permit-utils": "1.0.0",
"libs/widget-lib": "0.20.0",
"libs/widget-react": "0.11.2",
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.57.0](https://github.com/cowprotocol/cowswap/compare/explorer-v2.56.0...explorer-v2.57.0) (2025-11-05)


### Features

* 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))

## [2.56.0](https://github.com/cowprotocol/cowswap/compare/explorer-v2.55.0...explorer-v2.56.0) (2025-10-14)


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.56.0",
"version": "2.57.0",
"description": "CoW Swap Explorer",
"main": "src/main.tsx",
"author": "",
Expand Down
4 changes: 1 addition & 3 deletions apps/explorer/src/utils/miscellaneous.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,7 @@ window.toggleDebug = (): boolean => {
return debugEnabled
}

// TODO: Replace any with proper type definitions
// eslint-disable-next-line @typescript-eslint/no-explicit-any
export const logDebug = (...args: any[]): void => {
export const logDebug = (...args: unknown[]): void => {
if (debugEnabled) {
console.log(...args)
}
Expand Down
Loading