From 3e9e64c6147c03c481e87d6bae62301de9c08470 Mon Sep 17 00:00:00 2001 From: Anthony Law Yong Chuan Date: Sat, 15 Aug 2020 03:13:32 +0800 Subject: [PATCH] release v0.50 --- CHANGELOG.md | 45 ++++++++++++++++++++++++++++++++++++++++++++- package-lock.json | 16 ++++++++-------- package.json | 4 ++-- 3 files changed, 54 insertions(+), 11 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2b623b0ee..36afa7949 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,48 @@ All notable changes to this project will be documented in this file. The changelog format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). +## [v0.5.0][v0.5.0] - 15-Aug-2020 + +### Milestone: [catapult-server@v0.9.6.4](https://github.com/nemtech/catapult-server/releases/tag/v0.9.6.4) + +Package | Version | Link +---|---|--- +REST Core| v1.2.0 | [catapult-rest](https://github.com/nemtech/catapult-rest/releases/tag/v1.2.0) +SDK Core| v0.20.7 | [symbol-sdk](https://www.npmjs.com/package/symbol-sdk) + +### Added +- Added compatibility for 0.9.6.4 server. +- Added search Criteria for Blocks, Accounts, Namespaces, Transactions and Mosaics. +- Added PageAssembler component. +- Added Transaction filter component into transaction list. +- Added resolved address in transaction list and transaction detail page. +- Added more transaction test case for cypress e2e. +- Added Transaction Graphic widget to visualize transaction info + - Address Alias + - Mosaic Alias + - Namespace Registration + - TransferTransaction +- Added account filter component into account list. +- Added supplemental Keys info into Account Detail page. +- Added harvested info into Account Detail page. +- Added namespace filter component into namespace list. +- Added namespace name into alias transaction detail page. +- Added Merkle-tree infomation into Block Detail page. +- Added more japanese translations (Thanks @44uk). + +### Update +- Refactor infrastructure to use `repositoryFactory` +- Refactor statistics chart effect. +- Load network config from network. +- Enhanced mobile view experience. + +### Fixed +- Pagination. Block-list live update does not work [#555](https://github.com/nemgrouplimited/symbol-explorer/issues/555) +- Multisig account not showing correctly [#559](https://github.com/nemgrouplimited/symbol-explorer/issues/559) +- Transaction Detail. Unable to show the data [#562](https://github.com/nemgrouplimited/symbol-explorer/issues/562) +- Transaction Detail. Missing address in address alias [#534](https://github.com/nemgrouplimited/symbol-explorer/issues/534) +- PageAssembler. Mobile view doesn't work properly [#533](https://github.com/nemgrouplimited/symbol-explorer/issues/533) + ## [v0.4.0][v0.4.0] ### Milestone: [catapult-server@v0.9.5.1](https://github.com/nemtech/catapult-server/releases/tag/v0.9.5.1) @@ -36,4 +78,5 @@ The changelog format is based on [Keep a Changelog](https://keepachangelog.com/e [v0.3.0]: https://github.com/nemfoundation/symbol-explorer/releases/tag/v0.3.0 -[v0.4.0]: https://github.com/nemfoundation/symbol-explorer/releases/tag/v0.4.0 \ No newline at end of file +[v0.4.0]: https://github.com/nemfoundation/symbol-explorer/releases/tag/v0.4.0 +[v0.5.0]: https://github.com/nemfoundation/symbol-explorer/releases/tag/v0.5.0 \ No newline at end of file diff --git a/package-lock.json b/package-lock.json index ac27a46fe..7c1899cbb 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "symbol-explorer", - "version": "0.4.1", + "version": "0.5.0", "lockfileVersion": 1, "requires": true, "dependencies": { @@ -20793,14 +20793,14 @@ "dev": true }, "symbol-openapi-typescript-fetch-client": { - "version": "0.9.6-SNAPSHOT.202007311152", - "resolved": "https://registry.npmjs.org/symbol-openapi-typescript-fetch-client/-/symbol-openapi-typescript-fetch-client-0.9.6-SNAPSHOT.202007311152.tgz", - "integrity": "sha512-7sK43CLpXO8897Z2YfDtaCQTLECIKzZRPnl7ovNb5o9gRKQcfvnkFas6ER7ABI8NExj+kafUAd2/wplIIp678Q==" + "version": "0.9.6", + "resolved": "https://registry.npmjs.org/symbol-openapi-typescript-fetch-client/-/symbol-openapi-typescript-fetch-client-0.9.6.tgz", + "integrity": "sha512-ZZtR031IBkYfiG0bR26vGckKmUrJzY9sggXMusrqloxweNovtzf7Aqpx7nNEpCJdMNzwv+E0V8mYBwxgFuiMfg==" }, "symbol-sdk": { - "version": "0.20.7-alpha-202008131441", - "resolved": "https://registry.npmjs.org/symbol-sdk/-/symbol-sdk-0.20.7-alpha-202008131441.tgz", - "integrity": "sha512-rKn7NpTqQPAZT4FpS85DmA/Z4WNXYwmHJ2CTwseB7R0CHfKtaHFStdIT9AiLQkj3aYQ+RAuJLqQxs8bbpHz8Sg==", + "version": "0.20.7", + "resolved": "https://registry.npmjs.org/symbol-sdk/-/symbol-sdk-0.20.7.tgz", + "integrity": "sha512-313Uo/cev3ygvVLwTyDtnD1Qh56u4HeuUt5Q05R+WB3zjZl5xffXs5VKPRA4Th45/0Leyxk7oMPAS9hfFim5vw==", "requires": { "bluebird": "^3.7.2", "catbuffer-typescript": "0.0.21", @@ -20820,7 +20820,7 @@ "ripemd160": "^2.0.2", "rxjs": "^6.5.3", "rxjs-compat": "^6.5.3", - "symbol-openapi-typescript-fetch-client": "0.9.6-SNAPSHOT.202007311152", + "symbol-openapi-typescript-fetch-client": "0.9.6", "tweetnacl": "^1.0.3", "utf8": "^3.0.0", "ws": "^7.2.3" diff --git a/package.json b/package.json index 664a3b60a..a079eba17 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "symbol-explorer", "description": "Symbol Block and Network Explorer", "homepage": "https://github.com/nemgrouplimited/symbol-explorer", - "version": "0.4.1", + "version": "0.5.0", "scripts": { "dev": "vue-cli-service serve", "build": "vue-cli-service build", @@ -26,7 +26,7 @@ "js-sha3": "^0.8.0", "merkletreejs": "^0.2.9", "moment-timezone": "^0.5.28", - "symbol-sdk": "^0.20.7-alpha-202008131441", + "symbol-sdk": "^0.20.7", "url-parse": "^1.4.7", "vue": "^2.6.11", "vue-apexcharts": "^1.5.2",