Skip to content

Commit

Permalink
Merge branch 'master' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremyletang committed Sep 3, 2024
2 parents 0a157dc + 0910d96 commit 26ea1ab
Show file tree
Hide file tree
Showing 11 changed files with 46 additions and 45 deletions.
15 changes: 13 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Changelog

## Unreleased 0.78.0
## Unreleased 0.79.0

### 🚨 Breaking changes

Expand All @@ -12,6 +12,17 @@

### 🛠 Improvements

- [](https://github.com/vegaprotocol/vega/issues/xxx)

### 🐛 Fixes

- [](https://github.com/vegaprotocol/vega/issues/xxx)


## 0.78.0

### 🛠 Improvements

- [11428](https://github.com/vegaprotocol/vega/issues/11428) - Add buy back and treasury fee and separate discount/reward factors.
- [11468](https://github.com/vegaprotocol/vega/issues/11468) - Added support for volume rebate program.
- [11523](https://github.com/vegaprotocol/vega/issues/11523) - Change method of caching to improve `AMM` snapshot performance.
Expand All @@ -29,7 +40,7 @@
- [11533](https://github.com/vegaprotocol/vega/issues/11533) - Suppose per party fee discounts in fee estimation.
- [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.
- [11624](https://github.com/vegaprotocol/vega/issues/11624) - prevent creation of rewards with no payout, but with high computational cost.

### 🐛 Fixes

Expand Down
8 changes: 0 additions & 8 deletions cmd/vega/commands/verify/genesis_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ import (
"code.vegaprotocol.io/vega/cmd/vega/commands/verify"
"code.vegaprotocol.io/vega/core/assets"
"code.vegaprotocol.io/vega/core/genesis"
"code.vegaprotocol.io/vega/core/netparams"
"code.vegaprotocol.io/vega/core/validators"

"github.com/stretchr/testify/assert"
Expand Down Expand Up @@ -151,13 +150,6 @@ func testVerifyNetworkParams(t *testing.T) {
gs = genesis.DefaultState()
gs.NetParamsOverwrite = []string{"NOTREAL"}
assert.Error(t, cmd.Execute([]string{writeGenesisFileWithState(t, gs)}))

// Check for deprecated parameter in genesis
gs = genesis.DefaultState()
for k := range netparams.Deprecated {
gs.NetParams[k] = "hello"
}
assert.Error(t, cmd.Execute([]string{writeGenesisFileWithState(t, gs)}))
}

func TestVerifyValidators(t *testing.T) {
Expand Down
11 changes: 5 additions & 6 deletions protos/blockexplorer/api/v1/blockexplorer.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

23 changes: 11 additions & 12 deletions protos/data-node/api/v2/trading_data.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion protos/sources/blockexplorer/api/v1/blockexplorer.proto
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ option go_package = "code.vegaprotocol.io/vega/protos/blockexplorer/api/v1";
option (grpc.gateway.protoc_gen_openapiv2.options.openapiv2_swagger) = {
info: {
title: "Vega block explorer APIs";
version: "v0.78.0-dev";
version: "v0.78.0";
}
schemes: [
HTTP,
Expand Down
2 changes: 1 addition & 1 deletion protos/sources/data-node/api/v2/trading_data.proto
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ option go_package = "code.vegaprotocol.io/vega/protos/data-node/api/v2";
option (grpc.gateway.protoc_gen_openapiv2.options.openapiv2_swagger) = {
info: {
title: "Vega data node APIs";
version: "v0.78.0-dev";
version: "v0.78.0";
}
schemes: [
HTTP,
Expand Down
2 changes: 1 addition & 1 deletion protos/sources/vega/api/v1/core.proto
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ option go_package = "code.vegaprotocol.io/vega/protos/vega/api/v1";
option (grpc.gateway.protoc_gen_openapiv2.options.openapiv2_swagger) = {
info: {
title: "Vega core APIs";
version: "v0.78.0-dev";
version: "v0.78.0";
}
schemes: [
HTTP,
Expand Down
2 changes: 1 addition & 1 deletion protos/sources/vega/api/v1/corestate.proto
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ option go_package = "code.vegaprotocol.io/vega/protos/vega/api/v1";
option (grpc.gateway.protoc_gen_openapiv2.options.openapiv2_swagger) = {
info: {
title: "Vega core state APIs";
version: "v0.78.0-dev";
version: "v0.78.0";
}
schemes: [
HTTP,
Expand Down
12 changes: 6 additions & 6 deletions protos/vega/api/v1/core.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 6 additions & 6 deletions protos/vega/api/v1/corestate.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion version/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ import (

var (
cliVersionHash = ""
cliVersion = "v0.78.0-dev"
cliVersion = "v0.78.0"
)

func init() {
Expand Down

0 comments on commit 26ea1ab

Please sign in to comment.