diff --git a/CHANGELOG.md b/CHANGELOG.md index a5f30cff16..d8c2b61db0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -19,6 +19,16 @@ - [](https://github.com/vegaprotocol/vega/issues/xxx) +## 0.78.3 + +### 🐛 Fixes + +- [11664](https://github.com/vegaprotocol/vega/issues/11664) - Remove unneeded check for market length in `GetPartyStats`. +- [11662](https://github.com/vegaprotocol/vega/issues/11662) - Remove reference to public from query. +- [11665](https://github.com/vegaprotocol/vega/issues/11665) - Delay the final termination of a transfer to the following epoch. +- [11672](https://github.com/vegaprotocol/vega/issues/11672) - Add missing fees in GraphQL bindings. + + ## 0.78.2 ### 🛠 Improvements @@ -33,7 +43,7 @@ - [11650](https://github.com/vegaprotocol/vega/issues/11650) - Add include sub accounts flag to `listPositions`. - [11641](https://github.com/vegaprotocol/vega/issues/11641) - Panic with pegged orders. - [11646](https://github.com/vegaprotocol/vega/issues/11646) - Add tier numbers to API. -- [11665](https://github.com/vegaprotocol/vega/issues/11665) - Delay the final termination of a transfer to the following epoch. +- [11665](https://github.com/vegaprotocol/vega/issues/11665) - Delay the final termination of a transfer to the following epoch. ## 0.78.1 @@ -67,6 +77,9 @@ - [11577](https://github.com/vegaprotocol/vega/issues/11577) - Add API for party discounts and rewards. - [10716](https://github.com/vegaprotocol/vega/issues/10716) - Set Tendermint defaults during init. - [11624](https://github.com/vegaprotocol/vega/issues/11624) - prevent creation of rewards with no payout, but with high computational cost. +- [11512](https://github.com/vegaprotocol/vega/issues/11512) - Add loss socialisation amounts to funding payment API. +- [11627](https://github.com/vegaprotocol/vega/issues/11627) - Add eligible keys filter to reward transfers. + ### 🐛 Fixes diff --git a/datanode/gateway/graphql/resolvers.go b/datanode/gateway/graphql/resolvers.go index 315e233395..4951405597 100644 --- a/datanode/gateway/graphql/resolvers.go +++ b/datanode/gateway/graphql/resolvers.go @@ -3043,6 +3043,8 @@ func (r *myTradeResolver) BuyerFee(_ context.Context, obj *vegapb.Trade) (*Trade fee.LiquidityFee = obj.BuyerFee.LiquidityFee fee.LiquidityFeeReferralDiscount = setIfExists(obj.BuyerFee.LiquidityFeeReferrerDiscount) fee.LiquidityFeeVolumeDiscount = setIfExists(obj.BuyerFee.LiquidityFeeVolumeDiscount) + fee.TreasuryFee = obj.BuyerFee.TreasuryFee + fee.BuyBackFee = obj.BuyerFee.BuyBackFee } return &fee, nil } @@ -3068,6 +3070,8 @@ func (r *myTradeResolver) SellerFee(_ context.Context, obj *vegapb.Trade) (*Trad fee.LiquidityFee = obj.SellerFee.LiquidityFee fee.LiquidityFeeReferralDiscount = setIfExists(obj.SellerFee.LiquidityFeeReferrerDiscount) fee.LiquidityFeeVolumeDiscount = setIfExists(obj.SellerFee.LiquidityFeeVolumeDiscount) + fee.TreasuryFee = obj.SellerFee.TreasuryFee + fee.BuyBackFee = obj.SellerFee.BuyBackFee } return &fee, nil