diff --git a/core/datasource/spec/engine.go b/core/datasource/spec/engine.go index 66735bf09a7..7adedfae2c8 100644 --- a/core/datasource/spec/engine.go +++ b/core/datasource/spec/engine.go @@ -200,7 +200,7 @@ func (e *Engine) sendNewSpecSubscription(ctx context.Context, update updatedSubs proto.Spec.CreatedAt = update.specActivatedAt.UnixNano() proto.Spec.Status = vegapb.DataSourceSpec_STATUS_ACTIVE - if vgcontext.InProgressUpgradeFrom(ctx, "v0.73.13") { + if vgcontext.InProgressUpgradeFrom(ctx, "v0.73.14") { def := update.spec.GetDefinition() switch def.DataSourceType.(type) { case ethcallcommon.Spec: diff --git a/core/evtforward/forwarder_test.go b/core/evtforward/forwarder_test.go index badd6c6f8ab..49ddbc697c4 100644 --- a/core/evtforward/forwarder_test.go +++ b/core/evtforward/forwarder_test.go @@ -220,7 +220,7 @@ func getTestChainEvent(txid string) *commandspb.ChainEvent { func TestMigrationTo74(t *testing.T) { evtFwd := getTestEvtFwd(t) - ctx := vgcontext.WithSnapshotInfo(context.Background(), "v0.73.13", true) + ctx := vgcontext.WithSnapshotInfo(context.Background(), "v0.73.14", true) evtFwd.top.EXPECT().AllNodeIDs().AnyTimes().Return(testAllPubKeys) hashes := []string{ diff --git a/core/evtforward/snapshot.go b/core/evtforward/snapshot.go index d7ddec17c28..1ab370bae49 100644 --- a/core/evtforward/snapshot.go +++ b/core/evtforward/snapshot.go @@ -101,7 +101,7 @@ func (f *Forwarder) restore(ctx context.Context, p *types.PayloadEventForwarder) } // upgrading from 73.12, we need to load previous snapshot format - if vgcontext.InProgressUpgradeFrom(ctx, "v0.73.13") { + if vgcontext.InProgressUpgradeFrom(ctx, "v0.73.14") { // add at 0 time, so it's always way in the past. bucket := &ackedEvtBucket{ ts: 0, diff --git a/core/execution/engine_snapshot.go b/core/execution/engine_snapshot.go index ca455c1de7a..ac05bb6a4c7 100644 --- a/core/execution/engine_snapshot.go +++ b/core/execution/engine_snapshot.go @@ -166,7 +166,7 @@ func (e *Engine) restoreSpotMarket(ctx context.Context, em *types.ExecSpotMarket func (e *Engine) restoreMarket(ctx context.Context, em *types.ExecMarket) (*future.Market, error) { marketConfig := em.Market // ensure the default chain ID is set, can be removed after protocol upgrade - if vgcontext.InProgressUpgradeFrom(ctx, "v0.73.13") { + if vgcontext.InProgressUpgradeFrom(ctx, "v0.73.14") { e.ensureChainIDSet(marketConfig) } diff --git a/core/execution/future/market_snapshot.go b/core/execution/future/market_snapshot.go index 0a9a1a4808b..0ff5491cece 100644 --- a/core/execution/future/market_snapshot.go +++ b/core/execution/future/market_snapshot.go @@ -84,7 +84,7 @@ func NewMarketFromSnapshot( as := monitor.NewAuctionStateFromSnapshot(mkt, em.AuctionState) - if vgcontext.InProgressUpgradeFrom(ctx, "v0.73.13") { + if vgcontext.InProgressUpgradeFrom(ctx, "v0.73.14") { // protocol upgrade from v0.73.12, lets populate the new liquidity-fee-settings with a default marginal-cost method log.Info("migrating liquidity fee settings for existing market", logging.String("mid", mkt.ID)) mkt.Fees.LiquidityFeeSettings = &types.LiquidityFeeSettings{ diff --git a/core/execution/future/market_snapshot_test.go b/core/execution/future/market_snapshot_test.go index 5d7ebdbac4b..9518b06fcd5 100644 --- a/core/execution/future/market_snapshot_test.go +++ b/core/execution/future/market_snapshot_test.go @@ -180,7 +180,7 @@ func TestRestoreMarketUpgradeV0_73_2(t *testing.T) { em.Market.Fees.LiquidityFeeSettings = nil // and set in the context the information that says we are upgrading - ctx := vegacontext.WithSnapshotInfo(context.Background(), "v0.73.13", true) + ctx := vegacontext.WithSnapshotInfo(context.Background(), "v0.73.14", true) snap, err := newMarketFromSnapshot(t, ctx, ctrl, em, oracleEngine) require.NoError(t, err) require.NotEmpty(t, snap) diff --git a/core/governance/snapshot.go b/core/governance/snapshot.go index 1c9781a498a..5c6128cfb26 100644 --- a/core/governance/snapshot.go +++ b/core/governance/snapshot.go @@ -255,7 +255,7 @@ func (e *Engine) restoreActiveProposals(ctx context.Context, active *types.Gover vevts := []events.Event{} e.log.Debug("restoring active proposals snapshot", logging.Int("nproposals", len(active.Proposals))) for _, p := range active.Proposals { - if vgcontext.InProgressUpgradeFrom(ctx, "v0.73.13") { + if vgcontext.InProgressUpgradeFrom(ctx, "v0.73.14") { e.ensureChainIDSet(p.Proposal) } pp := &proposal{ @@ -265,7 +265,7 @@ func (e *Engine) restoreActiveProposals(ctx context.Context, active *types.Gover invalidVotes: votesAsMap(p.Invalid), } - if vgcontext.InProgressUpgradeFrom(ctx, "v0.73.13") { + if vgcontext.InProgressUpgradeFrom(ctx, "v0.73.14") { if nm := pp.Proposal.Terms.GetNewMarket(); nm != nil { e.log.Info("migrating liquidity fee settings for new market proposal", logging.String("pid", pp.ID)) nm.Changes.LiquidityFeeSettings = &types.LiquidityFeeSettings{ @@ -279,7 +279,7 @@ func (e *Engine) restoreActiveProposals(ctx context.Context, active *types.Gover } } } - if vgcontext.InProgressUpgradeFrom(ctx, "v0.73.13") { + if vgcontext.InProgressUpgradeFrom(ctx, "v0.73.14") { if pp.Terms.IsNewMarket() { pp.Terms.GetNewMarket().Changes.MarkPriceConfiguration = defaultMarkPriceConfig.DeepClone() } @@ -324,7 +324,7 @@ func (e *Engine) restoreBatchActiveProposals(ctx context.Context, active *types. e.log.Debug("restoring active proposals snapshot", logging.Int("nproposals", len(active.BatchProposals))) for _, bpp := range active.BatchProposals { bpt := types.BatchProposalFromSnapshotProto(bpp.BatchProposal.Proposal, bpp.Proposals) - if vgcontext.InProgressUpgradeFrom(ctx, "v0.73.13") { + if vgcontext.InProgressUpgradeFrom(ctx, "v0.73.14") { e.ensureChainIDSet(bpt.Proposals...) } bp := &batchProposal{ @@ -336,7 +336,7 @@ func (e *Engine) restoreBatchActiveProposals(ctx context.Context, active *types. evts = append(evts, events.NewProposalEventFromProto(ctx, bp.BatchProposal.ToProto())) for _, p := range bp.BatchProposal.Proposals { - if vgcontext.InProgressUpgradeFrom(ctx, "v0.73.13") { + if vgcontext.InProgressUpgradeFrom(ctx, "v0.73.14") { if p.Terms.IsNewMarket() { p.Terms.GetNewMarket().Changes.MarkPriceConfiguration = defaultMarkPriceConfig.DeepClone() } @@ -380,7 +380,7 @@ func (e *Engine) restoreEnactedProposals(ctx context.Context, enacted *types.Gov vevts := []events.Event{} e.log.Debug("restoring enacted proposals snapshot", logging.Int("nproposals", len(enacted.Proposals))) for _, p := range enacted.Proposals { - if vgcontext.InProgressUpgradeFrom(ctx, "v0.73.13") { + if vgcontext.InProgressUpgradeFrom(ctx, "v0.73.14") { e.ensureChainIDSet(p.Proposal) } pp := &proposal{ diff --git a/core/products/perpetual_snapshot.go b/core/products/perpetual_snapshot.go index 9da7443ac4e..cd8594aac6a 100644 --- a/core/products/perpetual_snapshot.go +++ b/core/products/perpetual_snapshot.go @@ -84,7 +84,7 @@ func NewPerpetualFromSnapshot( perps.startedAt = state.StartedAt perps.seq = state.Seq - if vgcontext.InProgressUpgradeFrom(ctx, "v0.73.13") { + if vgcontext.InProgressUpgradeFrom(ctx, "v0.73.14") { // do it the old way where we'd regenerate the cached values by adding the points again perps.externalTWAP = NewCachedTWAP(log, state.StartedAt, perps.auctions) perps.internalTWAP = NewCachedTWAP(log, state.StartedAt, perps.auctions) diff --git a/protos/blockexplorer/api/v1/blockexplorer.pb.go b/protos/blockexplorer/api/v1/blockexplorer.pb.go index 432f60260d9..547a379127c 100644 --- a/protos/blockexplorer/api/v1/blockexplorer.pb.go +++ b/protos/blockexplorer/api/v1/blockexplorer.pb.go @@ -650,15 +650,16 @@ var file_blockexplorer_api_v1_blockexplorer_proto_rawDesc = []byte{ 0x6c, 0x6f, 0x72, 0x65, 0x72, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x22, 0x2e, 0x62, 0x6c, 0x6f, 0x63, 0x6b, 0x65, 0x78, 0x70, 0x6c, 0x6f, 0x72, 0x65, 0x72, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, - 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x42, 0x78, 0x5a, 0x35, - 0x63, 0x6f, 0x64, 0x65, 0x2e, 0x76, 0x65, 0x67, 0x61, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x63, 0x6f, - 0x6c, 0x2e, 0x69, 0x6f, 0x2f, 0x76, 0x65, 0x67, 0x61, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x73, - 0x2f, 0x62, 0x6c, 0x6f, 0x63, 0x6b, 0x65, 0x78, 0x70, 0x6c, 0x6f, 0x72, 0x65, 0x72, 0x2f, 0x61, - 0x70, 0x69, 0x2f, 0x76, 0x31, 0x92, 0x41, 0x3e, 0x12, 0x23, 0x0a, 0x18, 0x56, 0x65, 0x67, 0x61, - 0x20, 0x62, 0x6c, 0x6f, 0x63, 0x6b, 0x20, 0x65, 0x78, 0x70, 0x6c, 0x6f, 0x72, 0x65, 0x72, 0x20, - 0x41, 0x50, 0x49, 0x73, 0x32, 0x07, 0x76, 0x30, 0x2e, 0x37, 0x34, 0x2e, 0x32, 0x1a, 0x13, 0x6c, - 0x62, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x6e, 0x65, 0x74, 0x2e, 0x76, 0x65, 0x67, 0x61, 0x2e, 0x78, - 0x79, 0x7a, 0x2a, 0x02, 0x01, 0x02, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, + 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x42, 0x82, 0x01, 0x5a, + 0x35, 0x63, 0x6f, 0x64, 0x65, 0x2e, 0x76, 0x65, 0x67, 0x61, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x63, + 0x6f, 0x6c, 0x2e, 0x69, 0x6f, 0x2f, 0x76, 0x65, 0x67, 0x61, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, + 0x73, 0x2f, 0x62, 0x6c, 0x6f, 0x63, 0x6b, 0x65, 0x78, 0x70, 0x6c, 0x6f, 0x72, 0x65, 0x72, 0x2f, + 0x61, 0x70, 0x69, 0x2f, 0x76, 0x31, 0x92, 0x41, 0x48, 0x12, 0x2d, 0x0a, 0x18, 0x56, 0x65, 0x67, + 0x61, 0x20, 0x62, 0x6c, 0x6f, 0x63, 0x6b, 0x20, 0x65, 0x78, 0x70, 0x6c, 0x6f, 0x72, 0x65, 0x72, + 0x20, 0x41, 0x50, 0x49, 0x73, 0x32, 0x11, 0x76, 0x30, 0x2e, 0x37, 0x34, 0x2e, 0x33, 0x2d, 0x70, + 0x72, 0x65, 0x76, 0x69, 0x65, 0x77, 0x2e, 0x31, 0x1a, 0x13, 0x6c, 0x62, 0x2e, 0x74, 0x65, 0x73, + 0x74, 0x6e, 0x65, 0x74, 0x2e, 0x76, 0x65, 0x67, 0x61, 0x2e, 0x78, 0x79, 0x7a, 0x2a, 0x02, 0x01, + 0x02, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, } var ( diff --git a/protos/data-node/api/v2/trading_data.pb.go b/protos/data-node/api/v2/trading_data.pb.go index 957454da880..c42131201e1 100644 --- a/protos/data-node/api/v2/trading_data.pb.go +++ b/protos/data-node/api/v2/trading_data.pb.go @@ -30160,20 +30160,20 @@ var file_data_node_api_v2_trading_data_proto_rawDesc = []byte{ 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1d, 0x2e, 0x64, 0x61, 0x74, 0x61, 0x6e, 0x6f, 0x64, 0x65, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x32, 0x2e, 0x50, 0x69, 0x6e, 0x67, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x09, 0x92, 0x41, 0x06, 0x0a, 0x04, 0x4d, 0x69, 0x73, - 0x63, 0x42, 0xc6, 0x01, 0x5a, 0x31, 0x63, 0x6f, 0x64, 0x65, 0x2e, 0x76, 0x65, 0x67, 0x61, 0x70, + 0x63, 0x42, 0xd0, 0x01, 0x5a, 0x31, 0x63, 0x6f, 0x64, 0x65, 0x2e, 0x76, 0x65, 0x67, 0x61, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x63, 0x6f, 0x6c, 0x2e, 0x69, 0x6f, 0x2f, 0x76, 0x65, 0x67, 0x61, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x73, 0x2f, 0x64, 0x61, 0x74, 0x61, 0x2d, 0x6e, 0x6f, 0x64, 0x65, - 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x76, 0x32, 0x92, 0x41, 0x8f, 0x01, 0x12, 0x1e, 0x0a, 0x13, 0x56, + 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x76, 0x32, 0x92, 0x41, 0x99, 0x01, 0x12, 0x28, 0x0a, 0x13, 0x56, 0x65, 0x67, 0x61, 0x20, 0x64, 0x61, 0x74, 0x61, 0x20, 0x6e, 0x6f, 0x64, 0x65, 0x20, 0x41, 0x50, - 0x49, 0x73, 0x32, 0x07, 0x76, 0x30, 0x2e, 0x37, 0x34, 0x2e, 0x32, 0x1a, 0x1c, 0x68, 0x74, 0x74, - 0x70, 0x73, 0x3a, 0x2f, 0x2f, 0x61, 0x70, 0x69, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x6e, 0x65, 0x74, - 0x2e, 0x76, 0x65, 0x67, 0x61, 0x2e, 0x78, 0x79, 0x7a, 0x2a, 0x02, 0x01, 0x02, 0x32, 0x10, 0x61, - 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2f, 0x6a, 0x73, 0x6f, 0x6e, 0x52, - 0x39, 0x0a, 0x03, 0x35, 0x30, 0x30, 0x12, 0x32, 0x0a, 0x18, 0x41, 0x6e, 0x20, 0x69, 0x6e, 0x74, - 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x20, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x20, 0x65, 0x72, 0x72, - 0x6f, 0x72, 0x12, 0x16, 0x0a, 0x14, 0x1a, 0x12, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, - 0x72, 0x70, 0x63, 0x2e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, - 0x6f, 0x33, + 0x49, 0x73, 0x32, 0x11, 0x76, 0x30, 0x2e, 0x37, 0x34, 0x2e, 0x33, 0x2d, 0x70, 0x72, 0x65, 0x76, + 0x69, 0x65, 0x77, 0x2e, 0x31, 0x1a, 0x1c, 0x68, 0x74, 0x74, 0x70, 0x73, 0x3a, 0x2f, 0x2f, 0x61, + 0x70, 0x69, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x6e, 0x65, 0x74, 0x2e, 0x76, 0x65, 0x67, 0x61, 0x2e, + 0x78, 0x79, 0x7a, 0x2a, 0x02, 0x01, 0x02, 0x32, 0x10, 0x61, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, + 0x74, 0x69, 0x6f, 0x6e, 0x2f, 0x6a, 0x73, 0x6f, 0x6e, 0x52, 0x39, 0x0a, 0x03, 0x35, 0x30, 0x30, + 0x12, 0x32, 0x0a, 0x18, 0x41, 0x6e, 0x20, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x20, + 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x20, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x16, 0x0a, 0x14, + 0x1a, 0x12, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x72, 0x70, 0x63, 0x2e, 0x53, 0x74, + 0x61, 0x74, 0x75, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, } var ( diff --git a/protos/sources/blockexplorer/api/v1/blockexplorer.proto b/protos/sources/blockexplorer/api/v1/blockexplorer.proto index c7ece74a7ce..cc7323376e1 100644 --- a/protos/sources/blockexplorer/api/v1/blockexplorer.proto +++ b/protos/sources/blockexplorer/api/v1/blockexplorer.proto @@ -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.74.2"; + version: "v0.74.3-preview.1"; } schemes: [ HTTP, diff --git a/protos/sources/data-node/api/v2/trading_data.proto b/protos/sources/data-node/api/v2/trading_data.proto index 1b11d30e359..4b490a42bc4 100644 --- a/protos/sources/data-node/api/v2/trading_data.proto +++ b/protos/sources/data-node/api/v2/trading_data.proto @@ -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.74.2"; + version: "v0.74.3-preview.1"; } schemes: [ HTTP, diff --git a/protos/sources/vega/api/v1/core.proto b/protos/sources/vega/api/v1/core.proto index 87b4e02369b..8fd63e2ea88 100644 --- a/protos/sources/vega/api/v1/core.proto +++ b/protos/sources/vega/api/v1/core.proto @@ -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.74.2"; + version: "v0.74.3-preview.1"; } schemes: [ HTTP, diff --git a/protos/sources/vega/api/v1/corestate.proto b/protos/sources/vega/api/v1/corestate.proto index e20e752a65b..69cfcf81dc7 100644 --- a/protos/sources/vega/api/v1/corestate.proto +++ b/protos/sources/vega/api/v1/corestate.proto @@ -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.74.2"; + version: "v0.74.3-preview.1"; } schemes: [ HTTP, diff --git a/protos/vega/api/v1/core.pb.go b/protos/vega/api/v1/core.pb.go index e22b795f1f1..a06b9bf3448 100644 --- a/protos/vega/api/v1/core.pb.go +++ b/protos/vega/api/v1/core.pb.go @@ -2791,14 +2791,15 @@ var file_vega_api_v1_core_proto_rawDesc = []byte{ 0x53, 0x70, 0x61, 0x6d, 0x53, 0x74, 0x61, 0x74, 0x69, 0x73, 0x74, 0x69, 0x63, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x26, 0x2e, 0x76, 0x65, 0x67, 0x61, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x53, 0x70, 0x61, 0x6d, 0x53, 0x74, 0x61, 0x74, 0x69, - 0x73, 0x74, 0x69, 0x63, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x42, 0x65, 0x5a, + 0x73, 0x74, 0x69, 0x63, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x42, 0x6f, 0x5a, 0x2c, 0x63, 0x6f, 0x64, 0x65, 0x2e, 0x76, 0x65, 0x67, 0x61, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x63, 0x6f, 0x6c, 0x2e, 0x69, 0x6f, 0x2f, 0x76, 0x65, 0x67, 0x61, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, - 0x73, 0x2f, 0x76, 0x65, 0x67, 0x61, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x76, 0x31, 0x92, 0x41, 0x34, - 0x12, 0x19, 0x0a, 0x0e, 0x56, 0x65, 0x67, 0x61, 0x20, 0x63, 0x6f, 0x72, 0x65, 0x20, 0x41, 0x50, - 0x49, 0x73, 0x32, 0x07, 0x76, 0x30, 0x2e, 0x37, 0x34, 0x2e, 0x32, 0x1a, 0x13, 0x6c, 0x62, 0x2e, - 0x74, 0x65, 0x73, 0x74, 0x6e, 0x65, 0x74, 0x2e, 0x76, 0x65, 0x67, 0x61, 0x2e, 0x78, 0x79, 0x7a, - 0x2a, 0x02, 0x01, 0x02, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, + 0x73, 0x2f, 0x76, 0x65, 0x67, 0x61, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x76, 0x31, 0x92, 0x41, 0x3e, + 0x12, 0x23, 0x0a, 0x0e, 0x56, 0x65, 0x67, 0x61, 0x20, 0x63, 0x6f, 0x72, 0x65, 0x20, 0x41, 0x50, + 0x49, 0x73, 0x32, 0x11, 0x76, 0x30, 0x2e, 0x37, 0x34, 0x2e, 0x33, 0x2d, 0x70, 0x72, 0x65, 0x76, + 0x69, 0x65, 0x77, 0x2e, 0x31, 0x1a, 0x13, 0x6c, 0x62, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x6e, 0x65, + 0x74, 0x2e, 0x76, 0x65, 0x67, 0x61, 0x2e, 0x78, 0x79, 0x7a, 0x2a, 0x02, 0x01, 0x02, 0x62, 0x06, + 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, } var ( diff --git a/protos/vega/api/v1/corestate.pb.go b/protos/vega/api/v1/corestate.pb.go index 3c6bef18b50..c9a9d91c991 100644 --- a/protos/vega/api/v1/corestate.pb.go +++ b/protos/vega/api/v1/corestate.pb.go @@ -1506,15 +1506,15 @@ var file_vega_api_v1_corestate_proto_rawDesc = []byte{ 0x31, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x44, 0x65, 0x6c, 0x65, 0x67, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x24, 0x2e, 0x76, 0x65, 0x67, 0x61, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x44, 0x65, 0x6c, 0x65, 0x67, - 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x42, 0x6b, + 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x42, 0x75, 0x5a, 0x2c, 0x63, 0x6f, 0x64, 0x65, 0x2e, 0x76, 0x65, 0x67, 0x61, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x63, 0x6f, 0x6c, 0x2e, 0x69, 0x6f, 0x2f, 0x76, 0x65, 0x67, 0x61, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x73, 0x2f, 0x76, 0x65, 0x67, 0x61, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x76, 0x31, 0x92, 0x41, - 0x3a, 0x12, 0x1f, 0x0a, 0x14, 0x56, 0x65, 0x67, 0x61, 0x20, 0x63, 0x6f, 0x72, 0x65, 0x20, 0x73, - 0x74, 0x61, 0x74, 0x65, 0x20, 0x41, 0x50, 0x49, 0x73, 0x32, 0x07, 0x76, 0x30, 0x2e, 0x37, 0x34, - 0x2e, 0x32, 0x1a, 0x13, 0x6c, 0x62, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x6e, 0x65, 0x74, 0x2e, 0x76, - 0x65, 0x67, 0x61, 0x2e, 0x78, 0x79, 0x7a, 0x2a, 0x02, 0x01, 0x02, 0x62, 0x06, 0x70, 0x72, 0x6f, - 0x74, 0x6f, 0x33, + 0x44, 0x12, 0x29, 0x0a, 0x14, 0x56, 0x65, 0x67, 0x61, 0x20, 0x63, 0x6f, 0x72, 0x65, 0x20, 0x73, + 0x74, 0x61, 0x74, 0x65, 0x20, 0x41, 0x50, 0x49, 0x73, 0x32, 0x11, 0x76, 0x30, 0x2e, 0x37, 0x34, + 0x2e, 0x33, 0x2d, 0x70, 0x72, 0x65, 0x76, 0x69, 0x65, 0x77, 0x2e, 0x31, 0x1a, 0x13, 0x6c, 0x62, + 0x2e, 0x74, 0x65, 0x73, 0x74, 0x6e, 0x65, 0x74, 0x2e, 0x76, 0x65, 0x67, 0x61, 0x2e, 0x78, 0x79, + 0x7a, 0x2a, 0x02, 0x01, 0x02, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, } var ( diff --git a/version/version.go b/version/version.go index e0a23f7807d..bcae6c13798 100644 --- a/version/version.go +++ b/version/version.go @@ -22,7 +22,7 @@ import ( var ( cliVersionHash = "" - cliVersion = "v0.74.2" + cliVersion = "v0.74.3-preview.1" ) func init() {