Skip to content

Commit 280b6ff

Browse files
Add log runtime id, replay event to listener and indexer commands (#110)
Co-authored-by: santhosh <santhosh.kotha@hmcts.net>
1 parent 11b4e5d commit 280b6ff

File tree

102 files changed

+1268
-313
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

102 files changed

+1268
-313
lines changed

CHANGELOG.md

Lines changed: 13 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,11 @@ on [Keep a CHANGELOG](http://keepachangelog.com/). This project adheres to
55

66
[Unreleased]
77

8+
## [17.4.3-M1] - 2024-04-23
9+
### Added
10+
- Add LOG_RUNTIME_ID system command and it's handler to log command runtime id
11+
- Add REPLAY_EVENT_TO_EVENT_LISTENER and REPLAY_EVENT_TO_EVENT_INDEXER system commands to replay single event
12+
813
## [17.4.2] - 2024-02-08
914
### Changed
1015
- Add jobstore retry migration liquibase via framework-libraries
@@ -17,7 +22,7 @@ on [Keep a CHANGELOG](http://keepachangelog.com/). This project adheres to
1722
### Added
1823
- Add '-f' '--force' switch to the JmxCommandClient to bypass COMMAND_IN_PROGRESS check
1924
### Removed
20-
- Remove CDI and Weld container from JmxCommandClient
25+
- Remove CDI and Weld container from JmxCommandClient
2126

2227
## [17.3.1] - 2023-11-27
2328
### Changed
@@ -53,17 +58,17 @@ on [Keep a CHANGELOG](http://keepachangelog.com/). This project adheres to
5358
## [17.0.1] - 2023-05-10
5459
### Changed
5560
- Update framework-libraries to 17.0.1 in order to:
56-
- Remove unnecessary logging of 'skipping generation' message in pojo generator
61+
- Remove unnecessary logging of 'skipping generation' message in pojo generator
5762

5863
## [17.0.0] - 2023-05-05
5964
### Changed
6065
- Update to Java 17
61-
- Make pojo generator to perform null safe assignment of additionalProperties inside constructor
66+
- Make pojo generator to perform null safe assignment of additionalProperties inside constructor
6267
- Update common-bom to 17.0.0 in order to:
63-
- Add byte-buddy 1.12.22 as a replacement for cglib
64-
- Downgrade h2 to 1.4.196 as 2.x.x is too strict for the tests
68+
- Add byte-buddy 1.12.22 as a replacement for cglib
69+
- Downgrade h2 to 1.4.196 as 2.x.x is too strict for the tests
6570
- Update framework-libraries to 17.0.0 in order to:
66-
- Change 'additionalProperties' Map in generated pojos to HashMap to allow serialization
71+
- Change 'additionalProperties' Map in generated pojos to HashMap to allow serialization
6772
### Removed
6873
- Remove illegal-access argument from surefire plugin from plugin management (through maven-parent-pom 17.0.0-M6)
6974
- Remove illegal-access argument from surefire plugin
@@ -77,7 +82,7 @@ on [Keep a CHANGELOG](http://keepachangelog.com/). This project adheres to
7782
### Changed
7883
- Update to OpenJDK 11
7984
- Update to JEE 8
80-
- Improve testability of DefaultRestClientProcessor by extracting WebTargetFactory creation to separate class
85+
- Improve testability of DefaultRestClientProcessor by extracting WebTargetFactory creation to separate class
8186
- Close the client in DefaultRestClientProcessor
8287
- Updated slf4j/log4j bridge jar from slf4j-log4j12 to slf4j-reload4j
8388
- MessageProducerClient is now idempotent when calling `startProducer(...)`
@@ -105,7 +110,7 @@ on [Keep a CHANGELOG](http://keepachangelog.com/). This project adheres to
105110
- wildfly to version 26.1.2.Final
106111
- artemis to version 2.20.0
107112
- resteasy-client to version 4.7.7.Final
108-
113+
109114
## [7.2.23] - 2021-03-29
110115
### Changed
111116
- RestClientProcessor now handles bad request (400) responses by throwing a BadRequestException

aggregate/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>microservice-framework</artifactId>
77
<groupId>uk.gov.justice.services</groupId>
8-
<version>17.4.3-SNAPSHOT</version>
8+
<version>17.4.3-M1-SNAPSHOT</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

common-rest/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>microservice-framework</artifactId>
77
<groupId>uk.gov.justice.services</groupId>
8-
<version>17.4.3-SNAPSHOT</version>
8+
<version>17.4.3-M1-SNAPSHOT</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

common/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>microservice-framework</artifactId>
77
<groupId>uk.gov.justice.services</groupId>
8-
<version>17.4.3-SNAPSHOT</version>
8+
<version>17.4.3-M1-SNAPSHOT</version>
99
</parent>
1010

1111
<modelVersion>4.0.0</modelVersion>

components/custom/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>components</artifactId>
77
<groupId>uk.gov.justice.services</groupId>
8-
<version>17.4.3-SNAPSHOT</version>
8+
<version>17.4.3-M1-SNAPSHOT</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

components/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>microservice-framework</artifactId>
77
<groupId>uk.gov.justice.services</groupId>
8-
<version>17.4.3-SNAPSHOT</version>
8+
<version>17.4.3-M1-SNAPSHOT</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

core/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>microservice-framework</artifactId>
77
<groupId>uk.gov.justice.services</groupId>
8-
<version>17.4.3-SNAPSHOT</version>
8+
<version>17.4.3-M1-SNAPSHOT</version>
99
</parent>
1010

1111
<modelVersion>4.0.0</modelVersion>

event-subscription-test-utils/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>microservice-framework</artifactId>
77
<groupId>uk.gov.justice.services</groupId>
8-
<version>17.4.3-SNAPSHOT</version>
8+
<version>17.4.3-M1-SNAPSHOT</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

event-subscription/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>microservice-framework</artifactId>
77
<groupId>uk.gov.justice.services</groupId>
8-
<version>17.4.3-SNAPSHOT</version>
8+
<version>17.4.3-M1-SNAPSHOT</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

framework-bom/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>microservice-framework</artifactId>
77
<groupId>uk.gov.justice.services</groupId>
8-
<version>17.4.3-SNAPSHOT</version>
8+
<version>17.4.3-M1-SNAPSHOT</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

0 commit comments

Comments
 (0)