From 7175c4ed7f40b4f85696da1f737e8ed69269e2f4 Mon Sep 17 00:00:00 2001 From: James Hunsaker Date: Fri, 20 Aug 2021 09:28:24 -0500 Subject: [PATCH 1/2] fix uninit variable --- pc/manager.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/pc/manager.cpp b/pc/manager.cpp index b5f54d677..b0ecf973d 100644 --- a/pc/manager.cpp +++ b/pc/manager.cpp @@ -61,6 +61,7 @@ manager::manager() pub_int_( PC_PUB_INTERVAL ), wait_conn_( false ), do_cap_( false ), + do_ws_( true ), do_tx_( true ), is_pub_( false ), cmt_( commitment::e_confirmed ), From 1fb2fe7662eff0b9da6ccd83e359f4a13004c9de Mon Sep 17 00:00:00 2001 From: Samir Islam Date: Fri, 20 Aug 2021 10:07:23 -0500 Subject: [PATCH 2/2] changelog --- CHANGELOG.md | 42 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 000000000..422e700fb --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,42 @@ +# Changelog + +All notable changes to this project will be documented in this file. + +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), +and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). + +## [2.3.1] - 2021-08-20 +- Fixed uninitialized variable in `manager.cpp` + +## [2.3] - 2021-08-18 +### Security update +- [pythd] add whitelist for dashboard static files to http server to prevent directory traversal + +### Others +- Fix constructor parameter order and unnecessary declaration. +- Add ability to send price updates without pyth_tx. +- pyth.cpp: add upd_price_val for explicit price value updates (#32) +- [pythd] Update user::parse_get_product code. +- [pythd] Add get_product and get_all_products WS methods. +- fix uninit variable + +## [2.2] - 2021-08-10 +- [pyth] Add get_all_products command. +- [pyth] Print error and return 1 on mapping key failure. +- [manager] Set error state if program key is not found. +- [pyth] Add hidden -d debug logging flag to help text. +- [replace] slot_subscribe with get_slot +- [build] Add pyth_tx to the release target +- [docker] no access to secrets on pull requests +- [docker] grant sudo access to pyth user + +## [2.1] - 2021-07-27 +- [build] remove github packages +- [docker] docker action to create containers +- [oracle] weight twap contributions inversely with confidence interval; added testnet keys +- [config] add testnet keys + +## [2.0] - 2021-07-14 +Initial public release +- fix to proxy soolana node reconnect logic in reinitializing slot leaders (origin/v2) +- show tx errors in get_block