aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPawel <pawel.kasperkiewicz@nokia.com>2021-02-03 12:55:03 +0100
committerPawel <pawel.kasperkiewicz@nokia.com>2021-02-10 11:25:51 +0100
commit206e79a04c502953f38c19d0752a21019521a4b5 (patch)
tree7444d6a9634c338aebaefcfb15dad80562e22a72
parent9a790361938ffffc719df013f22fda8c6dd3f093 (diff)
Add initial changelog
Issue-ID: DCAEGEN2-2557 Signed-off-by: Pawel <pawel.kasperkiewicz@nokia.com> Change-Id: I4b19defd50a3ddacf05f8dbf65d46d6f3f6d5866
-rw-r--r--Changelog.md131
1 files changed, 131 insertions, 0 deletions
diff --git a/Changelog.md b/Changelog.md
new file mode 100644
index 00000000..619ed7ba
--- /dev/null
+++ b/Changelog.md
@@ -0,0 +1,131 @@
+# Change Log
+All notable changes to this project will be documented in this file.
+
+The format is based on [Keep a Changelog](http://keepachangelog.com/)
+and this project adheres to [Semantic Versioning](http://semver.org/).
+
+## [1.7.0] - 10/02/2021
+### Added
+ - [DCAEGEN2-1483] (https://jira.onap.org/browse/DCAEGEN2-1483) - VESCollector Event ordering
+ - Add possibility to modify the configuration for persistent connection
+
+## [1.6.0] ##
+ - Add configurable timeout in dmaap-client
+ - Add configurable retry mechanism in dmaap-client
+
+## [1.5.0] ##
+ - Update spring boot to version: 2.4.0
+ - Update reactor to version: 2020.0.1
+ - Update testcontainers to version: 1.15.0
+
+## [1.4.4] ##
+ - Fix CbsClientFactory to allow retry on Mono from createCbsClient
+
+## [1.4.3] ##
+ - Change parameters of external-schema-manager to JSON notation
+
+## [1.4.2] ##
+ - Update spring boot to version: 2.3.3.RELEASE
+
+## [1.4.1] ##
+ - Update spring boot to version: 2.2.9.RELEASE
+ - Update testcontainers version: 1.14.3
+ - Fix deprecation warnings
+
+## [1.4.0] ##
+ - Add new component external-schema-manager for json validation with schema stored in local cache
+
+## [1.3.5] ##
+ - Create jar without dependencies for crypt-password module
+
+## [1.3.4] ##
+ - Usage of Java 11
+
+## [1.3.3] ##
+ - Upgrade CBS to support SSL
+ - Fix static code vulnerabilities
+ - Exclude IT from tests
+ - Remove AAI client from SDK
+
+## [1.3.2] ##
+ - Restructure AAI client
+ - Get rid of common-dependency module
+ - Rearrange files in packages inside rest-services
+
+## [1.3.1] ##
+ - Bugfix release: AAI client
+ - Make AaiGetServiceInstanceClient build correct path to the service resource in AAI
+
+## [1.3.0] (ElAlto - under development) ##
+ - All El-Alto work noted under 1.2.0-SNAPSHOT will roll into this version
+ - Version update was done for tracking global-jjb migration work and corresponding submission - https://gerrit.onap.org/r/#/c/dcaegen2/services/sdk/+/89902/
+
+## [1.2.0] (replaced by 1.3.0) ##
+ - WARNING: This is a work in progress. Do not use unless you know what you are doing!
+
+ - DMaaP client
+ - Change the factory so it's more configurable
+ - Old DMaaP client is now deprecated
+ - Integration tests are now using TestContainers with an actual DMaaP in order to confirm compatibility with a particular DMaaP version.
+ - Breaking change: MessageRouterSubscribeResponse now contains list of JsonElement instead of JsonArray
+ - CBS client
+ - Use new, simplified CBS lookup method
+ - Breaking change: CbsClientConfiguration replaces old EnvProperties. This way the class reflects overall SDK naming convention.
+ - Crypt Password
+ - Additional command line usage options (read password from stdin)
+ - Enhanced test coverage
+ - Internals/others
+ - Remove CloudHttpClient and use RxHttpClient instead which should unify REST API consumption across client libraries
+ - Moher (MOnitoring and HEalthcheck Rest API)
+ - This API is in incubation stage. Do not use it yet.
+ - Initial PoC for new module which should help when implementing these features in a DCAE service
+ - Expose Prometheus-compliant monitoring endpoint
+
+## [1.1.6] ##
+ - Bugfix release: (Old) DMaaP client:
+ - Security keys was always loaded from JAR instead of given file system path. Only code using SecurityKeysUtil class had been affected. If you do not use SecurityKeysUtil class or you are using the new DMaaP MR client API (org.onap.dcaegen2.services.sdk.rest.services.dmaap.client.{api, model} packages) then you are safe and the update is not required.
+
+## [1.1.5] ##
+ - DMaaP client
+ - Force non-chunked transfer encoding, because DMaaP MR does not support chunks.
+ - DMaaP MR client API should be used in new code. Some minor incompatible changes can occur but it's more or less done.
+
+## [1.1.4] ##
+ - Config Binding Service client
+ - predefined parsers for input and output streams
+ - remove the need for a DCAE application to manually interpret streams_publishes (Sinks) and streams_subscribes (Sources) parts of the configuration
+ - available parsers for DMaaP Message Router and DMaaP Data Router streams
+ - experimental support for Kafka streams
+ - support for other CBS endpoints besides get-configuration: get-by-key, get-all (introduces minor but breaking changes)
+ - DMaaP client
+ - New, experimental DMaaP client. It's not ready for use yet (not integration tested with DMaaP instance). However, you can use this API if you target El Alto release (note that some minor interface changes might be introduced).
+ - Internals:
+ - Improved http client: RxHttpClient
+ - RxHttpClient uses chunked transfer-encoding only when content-length is NOT specified.
+
+Migration guide
+
+All CbsClient methods gets CbsRequest as a first parameter instead of RequestDiagnosticContext. The CbsRequest may be created by calling CbsRequests factory methods. For existing code to work you will need to do the following change:
+
+.. code-block:: java
+
+ // From this:
+ CbsClientFactory.createCbsClient(env)
+ .flatMap(cbsClient -> cbsClient.get(diagnosticContext))
+ ...
+
+ // To this:
+ final CbsRequest request = CbsRequests.getConfiguration(diagnosticContext);
+ CbsClientFactory.createCbsClient(env)
+ .flatMap(cbsClient -> cbsClient.get(request))
+ ...
+
+The similar changes will be required for other CbsClient methods (periodic get and periodic updates).
+
+## [1.1.3] (initial release) ##
+ - Config Binding Service client
+ - basic functionality
+ - CBS service discovery
+ - get application configuration as JsonObject
+ - periodic query + periodic updates query
+ - BCrypt password utility \ No newline at end of file