Skip to content
This repository was archived by the owner on Aug 13, 2020. It is now read-only.

Commit 2e66975

Browse files
authored
Merge pull request #459 from CJSCommonPlatform/json-fix-2.2.x
Upgrade utilities and file service libraries
2 parents 3c3df08 + 55a29cc commit 2e66975

File tree

2 files changed

+29
-14
lines changed

2 files changed

+29
-14
lines changed

CHANGELOG.md

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

66
## [Unreleased]
77

8-
## [2.2.0] 2017-08-02
8+
### Changed
9+
- Utilities library upgraded to 1.8.1 and file service to 1.11.1 to pick up JSON logging fix
10+
11+
## [2.2.1] - 2017-09-01
12+
13+
### Changed
14+
- Converted to release to bintray
15+
- Converted example context to run as a single war by default
16+
17+
### Fixed
18+
- Class conflicts between generated clients in a single war
19+
20+
## [2.2.0] - 2017-08-02
921

1022
### Changed
1123
- Use maven-framework-parent-pom 1.6.1, which simply changes the wildfly-maven-plugin to 1.2.0.Alpha6 and stops adding it to every build
1224
- example-it: move the wildfly operations to the pre/post-integration-test phases (where they belong)
1325
- Switch to bintray for release processes
1426
- Cleaned up some unnecessary version overrides
1527

16-
## [2.1.0] 2017-07-17
28+
## [2.1.0] - 2017-07-17
1729

1830
### Added
1931
- New test matcher for checking schema properties
@@ -22,7 +34,7 @@ on [Keep a CHANGELOG](http://keepachangelog.com/). This project adheres to
2234
- Aggregate snapshot repository did not use aggregate class when retrieving snapshots, so services that use multiple aggregate classes
2335
on the same stream could get class cast exceptions
2436

25-
## [2.0.0] 2017-06-23
37+
## [2.0.0] - 2017-06-23
2638

2739
### Changed
2840
- Refactor all framework components that are not internal so that they are provided as interfaces
@@ -91,15 +103,15 @@ class will need to change the class name of their override to match.
91103
### Removed
92104
- Precondition class marked as deprecated - will be removed in 3.0.0 unless a differen tuse case is found for it
93105

94-
## [2.0.0-rc2] 2017-06-06
106+
## [2.0.0-rc2] - 2017-06-06
95107

96108
### Changed
97109
- Interceptor chain now adds the component name to the context so it can be used by the access control interceptor or anything else that needs it
98110

99111
### Removed
100112
- Access control Provider annotation and annotation scanning; this functionality has moved to the access control library
101113

102-
## [2.0.0-rc1] 2017-05-31
114+
## [2.0.0-rc1] - 2017-05-31
103115

104116
### Changed
105117
- Refactor all framework components that are not internal so that they are provided as interfaces
@@ -121,28 +133,28 @@ be provided, typically by generating one from the destination RAML.
121133
- Support for generating and discovering direct adapters, if a message destination exists locally
122134
a service component in the same application
123135

124-
## [1.7.1] 2017-05-16
136+
## [1.7.1] - 2017-05-16
125137

126138
### Added
127139
- Utility for browsing and deleting DLQ messages, backported from separate test utils library
128140
- Support for adding additional fields when building metadata
129141

130-
## [1.7.0] 2017-05-16
142+
## [1.7.0] - 2017-05-16
131143

132144
### Added
133145
- Add test event log repository to the test-utils-core module
134146

135-
## [1.6.0] 2017-05-05
147+
## [1.6.0] - 2017-05-05
136148

137149
### Added
138150
- Support for PDF generation in Alfresco interface
139151

140-
## [1.5.2] 2017-04-07
152+
## [1.5.2] - 2017-04-07
141153

142154
###
143155
- Service names with hyphens were also breaking other adapters and clients
144156

145-
## [1.5.1] 2017-04-05
157+
## [1.5.1] - 2017-04-05
146158

147159
### Fixed
148160
- Event listeners for services with a hyphen in the name generated invalid class names
@@ -709,7 +721,10 @@ turned off by default
709721

710722
- Initial release with basic dispatcher, handler and adapter generation
711723

712-
[Unreleased]: https://github.com/CJSCommonPlatform/microservice_framework/compare/release-2.1.0...HEAD
724+
[Unreleased]: https://github.com/CJSCommonPlatform/microservice_framework/compare/release-2.2.1...HEAD
725+
[2.2.1]: https://github.com/CJSCommonPlatform/microservice_framework/compare/release-2.2.0...release-2.2.1
726+
[2.2.0]: https://github.com/CJSCommonPlatform/microservice_framework/compare/release-2.1.0...release-2.2.0
727+
[2.1.0]: https://github.com/CJSCommonPlatform/microservice_framework/compare/release-2.0.0...release-2.1.0
713728
[2.1.0]: https://github.com/CJSCommonPlatform/microservice_framework/compare/release-2.0.0...release-2.1.0
714729
[2.0.0]: https://github.com/CJSCommonPlatform/microservice_framework/compare/release-1.7.0...release-2.0.0
715730
[2.0.0-rc8]: https://github.com/CJSCommonPlatform/microservice_framework/compare/release-2.0.0-rc7...release-2.0.0-rc8

pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,9 +49,9 @@
4949
<common-bom.version>1.17.0</common-bom.version>
5050
<embedded-artemis.version>1.1.0</embedded-artemis.version>
5151
<raml-maven-plugin.version>1.6.0</raml-maven-plugin.version>
52-
<file.service.version>1.9.0</file.service.version>
53-
<utilities.version>1.7.0</utilities.version>
54-
<test-utils.version>1.5.0</test-utils.version>
52+
<file.service.version>1.11.1</file.service.version>
53+
<utilities.version>1.8.1</utilities.version>
54+
<test-utils.version>1.7.0</test-utils.version>
5555
<jboss-ejb3-ext-api.version>2.2.0.Final</jboss-ejb3-ext-api.version>
5656

5757
<cpp.repo.name>microservice_framework</cpp.repo.name>

0 commit comments

Comments
 (0)