From f74ecea5201fc5c346978e92771b1e4aef75895b Mon Sep 17 00:00:00 2001 From: "corda-jenkins-ci02[bot]" <102248257+corda-jenkins-ci02[bot]@users.noreply.github.com> Date: Mon, 20 Nov 2023 10:17:06 +0000 Subject: [PATCH] CORE-18390: Allow old version of SetOwnRegistrationStatus in the command (#1342) (#1347) Co-authored-by: Yiftach Kaplan <67583323+yift-r3@users.noreply.github.com> Co-authored-by: Yiftach Kaplan --- .../registration/member/PersistMemberRegistrationState.avsc | 5 ++++- gradle.properties | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/data/avro-schema/src/main/resources/avro/net/corda/data/membership/command/registration/member/PersistMemberRegistrationState.avsc b/data/avro-schema/src/main/resources/avro/net/corda/data/membership/command/registration/member/PersistMemberRegistrationState.avsc index 5a4e606f66..e0799f683d 100644 --- a/data/avro-schema/src/main/resources/avro/net/corda/data/membership/command/registration/member/PersistMemberRegistrationState.avsc +++ b/data/avro-schema/src/main/resources/avro/net/corda/data/membership/command/registration/member/PersistMemberRegistrationState.avsc @@ -12,7 +12,10 @@ { "name": "setStatusRequest", "doc" : "The request to set the status.", - "type": "net.corda.data.membership.p2p.v2.SetOwnRegistrationStatus" + "type": [ + "net.corda.data.membership.p2p.v2.SetOwnRegistrationStatus", + "net.corda.data.membership.p2p.SetOwnRegistrationStatus" + ] } ] } \ No newline at end of file diff --git a/gradle.properties b/gradle.properties index 73a8e517ee..b4d1cfbcc3 100644 --- a/gradle.properties +++ b/gradle.properties @@ -9,7 +9,7 @@ cordaProductVersion = 5.2.0 # NOTE: update this each time this module contains a breaking change ## NOTE: currently this is a top level revision, so all API versions will line up, but this could be moved to ## a per module property in which case module versions can change independently. -cordaApiRevision = 2 +cordaApiRevision = 3 # Main kotlinVersion = 1.8.21