From 493abb6b62585d7b3be3e4286f0aee6c322ed7de Mon Sep 17 00:00:00 2001 From: preslav-anev Date: Tue, 12 Sep 2017 11:37:26 +0300 Subject: [PATCH] Version 7.0.0 --- RELEASE-NOTES.md | 8 ++++++++ src/Kount/Ris/Request/Update.php | 5 ++--- src/settings.ini | 4 ++-- 3 files changed, 12 insertions(+), 5 deletions(-) diff --git a/RELEASE-NOTES.md b/RELEASE-NOTES.md index e9e8e74..0ae580d 100644 --- a/RELEASE-NOTES.md +++ b/RELEASE-NOTES.md @@ -1,3 +1,11 @@ +Version 7.0.0 +===================== +09/12/2017 +1. Introduced configuration key - this breaks backward compatibility with older releases. +2. Removed the SALT phrase. +3. Introduced base85 encoding and decoding. +4. Added sha256 validation for the config key. + Version 6.5.4 ===================== 08/14/2017 diff --git a/src/Kount/Ris/Request/Update.php b/src/Kount/Ris/Request/Update.php index 36c2861..8e450e2 100644 --- a/src/Kount/Ris/Request/Update.php +++ b/src/Kount/Ris/Request/Update.php @@ -76,10 +76,9 @@ class Kount_Ris_Request_Update extends Kount_Ris_Request { /** * Update constructor, sets the "Inquiry" mode to "U". * @param Kount_Ris_Settings $settings Configuration settings - * @param string $customSettings path to custom settings file. */ - public function __construct ($customSettings = null, $settings = null) { - parent::__construct($customSettings, $settings); + public function __construct ($settings = null) { + parent::__construct($settings); // defaults $this->setMode(self::MODE_U); } diff --git a/src/settings.ini b/src/settings.ini index fb4f881..4c1b076 100644 --- a/src/settings.ini +++ b/src/settings.ini @@ -12,7 +12,7 @@ VERSION_NUMBER=0695 ; SDK release version ; Set the sdk release version which will be used for git tagging in github -SDK_VERSION=6.5.4 +SDK_VERSION=7.0.0 ; Kount Ris config key ; Set the config key and surround it with single or double quotation @@ -65,5 +65,5 @@ SIMPLE_LOG_PATH= ;Logging variable to configure the logging of client-side timing metrics. ;Default value is OFF. Can be set to ON which will enable the logging when creating a RIS Request to Kount. -SIMPLE_LOG_RIS_METRICS=ON +SIMPLE_LOG_RIS_METRICS=OFF