Skip to content

Commit ef64726

Browse files
authored
Merge pull request #61 from AxonIQ/feature/dcb
feature/dcb
2 parents 74d41d5 + e491826 commit ef64726

File tree

4 files changed

+406
-2
lines changed

4 files changed

+406
-2
lines changed

.github/workflows/maven.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ on:
55
branches:
66
- master
77
- axon-server-api-*.*.x
8+
- feature/dcb
89
workflow_dispatch:
910

1011
jobs:
@@ -26,7 +27,7 @@ jobs:
2627
server-password: MAVEN_PASSWORD
2728

2829
- name: Cache .m2
29-
uses: actions/cache@v2.1.3
30+
uses: actions/cache@v4.2.3
3031
with:
3132
path: ~/.m2/repository
3233
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
<modelVersion>4.0.0</modelVersion>
2020
<groupId>io.axoniq</groupId>
2121
<artifactId>axon-server-api</artifactId>
22-
<version>2024.2.0-SNAPSHOT</version>
22+
<version>2025.1.0-SNAPSHOT</version>
2323
<name>Axon Server API</name>
2424
<description>Public API for communication with AxonServer</description>
2525

src/main/proto/admin.proto

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@ message CreateContextRequest {
4444
string name = 1;
4545
string replicationGroupName = 2;
4646
map<string, string> meta_data = 3;
47+
bool dcbContext = 4;
4748
}
4849

4950
message UpdateContextPropertiesRequest {
@@ -66,6 +67,7 @@ message ContextOverview {
6667
map<string, string> meta_data = 3;
6768
int64 pendingSince = 4;
6869
bool changePending = 5;
70+
bool dcbContext = 6;
6971
}
7072

7173
message ContextUpdate {

0 commit comments

Comments
 (0)