From 626243870d1e4254defb050d8f16d5d509c91d51 Mon Sep 17 00:00:00 2001 From: Michal Zielenkiewicz Date: Wed, 18 Sep 2024 08:02:11 +0200 Subject: [PATCH 1/2] Assemble changes for 1.13.0 release --- .changelog/1523.trivial.md | 1 - .changelog/1524.trivial.md | 1 - .changelog/1529.bugfix.md | 1 - .changelog/1532.trivial.md | 1 - .changelog/1538.feature.md | 1 - .changelog/1539.bugfix.md | 1 - .changelog/1540.feature.md | 1 - .changelog/1541.trivial.md | 1 - .changelog/1542.trivial.md | 1 - .changelog/1543.bugfix.md | 1 - .changelog/1544.feature.md | 1 - .changelog/1548.bugfix.md | 1 - CHANGELOG.md | 25 +++++++++++++++++++++++++ package.json | 2 +- 14 files changed, 26 insertions(+), 13 deletions(-) delete mode 100644 .changelog/1523.trivial.md delete mode 100644 .changelog/1524.trivial.md delete mode 100644 .changelog/1529.bugfix.md delete mode 100644 .changelog/1532.trivial.md delete mode 100644 .changelog/1538.feature.md delete mode 100644 .changelog/1539.bugfix.md delete mode 100644 .changelog/1540.feature.md delete mode 100644 .changelog/1541.trivial.md delete mode 100644 .changelog/1542.trivial.md delete mode 100644 .changelog/1543.bugfix.md delete mode 100644 .changelog/1544.feature.md delete mode 100644 .changelog/1548.bugfix.md diff --git a/.changelog/1523.trivial.md b/.changelog/1523.trivial.md deleted file mode 100644 index 52211f794..000000000 --- a/.changelog/1523.trivial.md +++ /dev/null @@ -1 +0,0 @@ -Use runtimes tables to render Consensus tx lists diff --git a/.changelog/1524.trivial.md b/.changelog/1524.trivial.md deleted file mode 100644 index 6329dc4f3..000000000 --- a/.changelog/1524.trivial.md +++ /dev/null @@ -1 +0,0 @@ -Provide data to render cumulative voting diff --git a/.changelog/1529.bugfix.md b/.changelog/1529.bugfix.md deleted file mode 100644 index 967d4d32c..000000000 --- a/.changelog/1529.bugfix.md +++ /dev/null @@ -1 +0,0 @@ -Fix displaying negative allowance changes diff --git a/.changelog/1532.trivial.md b/.changelog/1532.trivial.md deleted file mode 100644 index ad5282819..000000000 --- a/.changelog/1532.trivial.md +++ /dev/null @@ -1 +0,0 @@ -Add eslint rule to ban '@emotion/styled' imports diff --git a/.changelog/1538.feature.md b/.changelog/1538.feature.md deleted file mode 100644 index 1ed1c8978..000000000 --- a/.changelog/1538.feature.md +++ /dev/null @@ -1 +0,0 @@ -Detect ERC-1167 Minimal Proxy contracts diff --git a/.changelog/1539.bugfix.md b/.changelog/1539.bugfix.md deleted file mode 100644 index 4e9c2680d..000000000 --- a/.changelog/1539.bugfix.md +++ /dev/null @@ -1 +0,0 @@ -Fix non-native event denominations diff --git a/.changelog/1540.feature.md b/.changelog/1540.feature.md deleted file mode 100644 index 1ed1c8978..000000000 --- a/.changelog/1540.feature.md +++ /dev/null @@ -1 +0,0 @@ -Detect ERC-1167 Minimal Proxy contracts diff --git a/.changelog/1541.trivial.md b/.changelog/1541.trivial.md deleted file mode 100644 index faf92d928..000000000 --- a/.changelog/1541.trivial.md +++ /dev/null @@ -1 +0,0 @@ -Display charts Transactions Per Day and Total Transactions in one row diff --git a/.changelog/1542.trivial.md b/.changelog/1542.trivial.md deleted file mode 100644 index a2e243e05..000000000 --- a/.changelog/1542.trivial.md +++ /dev/null @@ -1 +0,0 @@ -Cleanup diff --git a/.changelog/1543.bugfix.md b/.changelog/1543.bugfix.md deleted file mode 100644 index 56961aa35..000000000 --- a/.changelog/1543.bugfix.md +++ /dev/null @@ -1 +0,0 @@ -Differentiate transaction amount and fee tickers diff --git a/.changelog/1544.feature.md b/.changelog/1544.feature.md deleted file mode 100644 index cb320c361..000000000 --- a/.changelog/1544.feature.md +++ /dev/null @@ -1 +0,0 @@ -Show emitting transaction address in events diff --git a/.changelog/1548.bugfix.md b/.changelog/1548.bugfix.md deleted file mode 100644 index 1c67ab762..000000000 --- a/.changelog/1548.bugfix.md +++ /dev/null @@ -1 +0,0 @@ -Swap Fee and Value labels in columns in list of transactions diff --git a/CHANGELOG.md b/CHANGELOG.md index 5beca58cb..98c0efae8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,6 +12,31 @@ The format is inspired by [Keep a Changelog]. +## 1.13.0 (2024-09-18) + +### Features + +- Detect ERC-1167 Minimal Proxy contracts + ([#1538](https://github.com/oasisprotocol/explorer/issues/1538), + [#1540](https://github.com/oasisprotocol/explorer/issues/1540)) + +- Show emitting transaction address in events + ([#1544](https://github.com/oasisprotocol/explorer/issues/1544)) + +### Bug Fixes and Improvements + +- Fix displaying negative allowance changes + ([#1529](https://github.com/oasisprotocol/explorer/issues/1529)) + +- Fix non-native event denominations + ([#1539](https://github.com/oasisprotocol/explorer/issues/1539)) + +- Differentiate transaction amount and fee tickers + ([#1543](https://github.com/oasisprotocol/explorer/issues/1543)) + +- Swap Fee and Value labels in columns in list of transactions + ([#1548](https://github.com/oasisprotocol/explorer/issues/1548)) + ## 1.12.0 (2024-08-29) ### Features diff --git a/package.json b/package.json index 0db8cbe66..f84668969 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "$schema": "https://raw.githubusercontent.com/lukaw3d/parcel-bundler-json-schemas/main/package_schema.json", "name": "@oasisprotocol/explorer-frontend", - "version": "1.12.0", + "version": "1.13.0", "private": true, "repository": { "type": "git", From 7cde87b61df134f770d9121a644f81bdc7a0a49c Mon Sep 17 00:00:00 2001 From: Michal Zielenkiewicz Date: Wed, 18 Sep 2024 08:05:53 +0200 Subject: [PATCH 2/2] Manually update CHANGELOG --- CHANGELOG.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 98c0efae8..af0524ea9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -18,7 +18,7 @@ The format is inspired by [Keep a Changelog]. - Detect ERC-1167 Minimal Proxy contracts ([#1538](https://github.com/oasisprotocol/explorer/issues/1538), - [#1540](https://github.com/oasisprotocol/explorer/issues/1540)) + [#1540](https://github.com/oasisprotocol/explorer/issues/1540)) - Show emitting transaction address in events ([#1544](https://github.com/oasisprotocol/explorer/issues/1544)) @@ -35,7 +35,7 @@ The format is inspired by [Keep a Changelog]. ([#1543](https://github.com/oasisprotocol/explorer/issues/1543)) - Swap Fee and Value labels in columns in list of transactions - ([#1548](https://github.com/oasisprotocol/explorer/issues/1548)) + ([#1547](https://github.com/oasisprotocol/explorer/issues/1547)) ## 1.12.0 (2024-08-29)