Skip to content

Commit

Permalink
Merge branch 'mainnet-v2.3/branch' into testnet-v2.3/branch
Browse files Browse the repository at this point in the history
  • Loading branch information
dragonfrond committed Aug 20, 2021
2 parents b432609 + 1fb2fe7 commit da25714
Show file tree
Hide file tree
Showing 2 changed files with 43 additions and 0 deletions.
42 changes: 42 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
1 change: 1 addition & 0 deletions pc/manager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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 ),
Expand Down

0 comments on commit da25714

Please sign in to comment.