From cb525477e5c3ab4265b1249b010e95ba5bd2bbfd Mon Sep 17 00:00:00 2001 From: farbanas Date: Wed, 22 Mar 2023 10:39:48 +0100 Subject: [PATCH 1/8] fix: update CHANGELOG for contracts --- CHANGELOG.md | 2 -- contracts/CHANGELOG.md | 6 ++++++ 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index dbc5cfaefb..1296602af7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,7 +9,6 @@ Post 1.0.0 release, the changelog format is based on [Keep a Changelog](https:// - NE - instead of throwing a "Mixnode/Gateway not found" error for blacklisted nodes due to bad performance, show their history but tag them as "Having poor performance" ([#2979]) - NE - Upgrade Sandbox and make below changes: ([#2332]) - Explorer - Updates ([#3168]) -- Fix contracts and nym-api audit findings ([#3026]) - Website v2 - deploy infrastructure for strapi and CI ([#2213]) - add blockstream green to sp list ([#3180]) - mock-nym-api: fix .storybook lint error ([#3178]) @@ -18,7 +17,6 @@ Post 1.0.0 release, the changelog format is based on [Keep a Changelog](https:// [#2979]: https://github.com/nymtech/nym/issues/2979 [#2332]: https://github.com/nymtech/nym/issues/2332 [#3168]: https://github.com/nymtech/nym/issues/3168 -[#3026]: https://github.com/nymtech/nym/issues/3026 [#2213]: https://github.com/nymtech/nym/issues/2213 [#3180]: https://github.com/nymtech/nym/pull/3180 [#3178]: https://github.com/nymtech/nym/pull/3178 diff --git a/contracts/CHANGELOG.md b/contracts/CHANGELOG.md index d622d922fa..6aed5c0b06 100644 --- a/contracts/CHANGELOG.md +++ b/contracts/CHANGELOG.md @@ -2,6 +2,12 @@ ## Unreleased +## [v1.1.5] (2023-03-21) + +- Fix contracts and nym-api audit findings ([#3026]) + +[#3026]: https://github.com/nymtech/nym/issues/3026 + ## [v1.1.4] (2023-02-21) - Problem 142 (rust-side) ([#3024]) From a69d4bb45705c768049b9bbd173f254d1c4787cf Mon Sep 17 00:00:00 2001 From: fmtabbara Date: Mon, 3 Apr 2023 10:39:13 +0100 Subject: [PATCH 2/8] location and version needed in gateway settings updates --- .../GeneralGatewaySettings.tsx | 52 +++++++++++++++++-- 1 file changed, 47 insertions(+), 5 deletions(-) diff --git a/nym-wallet/src/pages/bonding/node-settings/settings-pages/general-settings/GeneralGatewaySettings.tsx b/nym-wallet/src/pages/bonding/node-settings/settings-pages/general-settings/GeneralGatewaySettings.tsx index 2ea789bb4d..2a75866ab2 100644 --- a/nym-wallet/src/pages/bonding/node-settings/settings-pages/general-settings/GeneralGatewaySettings.tsx +++ b/nym-wallet/src/pages/bonding/node-settings/settings-pages/general-settings/GeneralGatewaySettings.tsx @@ -36,20 +36,22 @@ export const GeneralGatewaySettings = ({ bondedNode }: { bondedNode: TBondedGate host: bondedNode.host, mixPort: bondedNode.mixPort, httpApiPort: bondedNode.httpApiPort, + version: bondedNode.version, + location: bondedNode.location, }, }); const onSubmit = async (data: any) => { resetFeeState(); - const { host, mixPort, httpApiPort } = data; + const { host, mixPort, httpApiPort, version, location } = data; try { const GatewayConfigParams = { host, mix_port: mixPort, + location, + version, clients_port: httpApiPort, - location: bondedNode.location!, - version: bondedNode.version, verloc_port: bondedNode.verlocPort, }; @@ -111,7 +113,7 @@ export const GeneralGatewaySettings = ({ bondedNode }: { bondedNode: TBondedGate + + + + Version + + + + + + + + + + + + Location + + + + + + + +