-
Notifications
You must be signed in to change notification settings - Fork 4
ChangeLog
Leon Rosenberg edited this page Mar 19, 2024
·
8 revisions
- Added getServicesRegisteredInRegistry to RegistryUtil to retrieve all services in a remote registry.
- handling for jvmversion 21, setting security manager now in ServerSideUtils
- the above provides runtime support for JVM 17++
- Initial version with Java11+ support
- Update dependencies to remove JAX-RS
- Remove obsolete generators like WebService and JAX-RS.
- Updated moskito dependency to 3.0.0
- Maintenance version, mainly removed checkstyle / spotbugs / PMD Warnings, especially in generated code.
- added configuration property to be able to provide a name when registering in central registry.
- made RemoveConsumerWrapper.ERROR_COUNT configurable
- added equals method to RemoteConsumerWrapper to prevent double event sending
- Adjustments to moskito dynamic intervals, hence changing dependency to 2.9.1 and using LoggerUtil to support only and all configured intervals.
- Added monitorability to distributeme-registry and a specific dashboard.
- Added moskito-control-agent to distributeme.
- https://github.com/anotheria/distributeme/pull/20 - adds moskito routing stats
- https://github.com/anotheria/distributeme/pull/19 - BlacklistingStrategy for FailOverServices
- https://github.com/anotheria/distributeme/pull/18 - Adds new configureable router for services with fail over instances.
2.3.1 - 2016-08-06
- DISTRIBUTEME-35 - Authenticate to see issue details Make context name and protocol configureable
- Added support for Java8, migrated from deprecated apt.
- See also: https://github.com/anotheria/distributeme/pull/4
- For generation pom.xml should be changed:
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.5.1</version>
<configuration>
<source>${source-version}</source>
<target>${target-version}</target>
<annotationProcessors>
<annotationProcessor>
org.distributeme.processors.GeneratorProcessorFactory
</annotationProcessor>
</annotationProcessors>
</configuration>
</plugin>