Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Note

Preview

CoreOne Admin User Interface

  • JS Libraries such as JQuery have been updated to the newest version to fix known vulnerabilities

CoreOne Self-Service Portal

  • JS Libraries such as JQuery have been updated to the newest version to fix known vulnerabilities

CoreOne Application Services

  • The employment state history entries are now being preserved correctly if an employment is being deleted

  • Fixed an issue when importing values for checking and updating the serialized value even the explizit value is set or the serialized value is NULL. The what-if mode output is corrected as well.

CoreOne Authentication Services

  • JS Libraries have been updated to fix known vulnerabilities

  • The performance of many API calls has been improved which should increase performance

CoreOne Database Services

  • The default charset will be changed from latin1 to utf8mb4. This will be executed automatically with the installer, but on bigger installations, it’s recommended to execute the queries beforehand.

Expand
Code Block
languagesql
ALTER TABLE security_entity_type MODIFY COLUMN assembly_qualified_name varchar(768) CHARACTER SET latin1 COLLATE latin1_general_ci NOT NULL;
ALTER TABLE api_action MODIFY COLUMN assembly_name varchar(768) CHARACTER SET latin1 COLLATE latin1_general_ci NOT NULL;


ALTER TABLE servicecorelogin_client MODIFY COLUMN allowed_cors_origins TEXT CHARACTER SET latin1 COLLATE latin1_general_ci DEFAULT NULL NULL;
ALTER TABLE servicecorelogin_client MODIFY COLUMN uri TEXT CHARACTER SET latin1 COLLATE latin1_general_ci DEFAULT NULL NULL;
ALTER TABLE servicecorelogin_client MODIFY COLUMN logout_uri TEXT CHARACTER SET latin1 COLLATE latin1_general_ci DEFAULT NULL NULL;
ALTER TABLE servicecorelogin_client MODIFY COLUMN post_logout_redirect_uris TEXT CHARACTER SET latin1 COLLATE latin1_general_ci DEFAULT NULL NULL;
ALTER TABLE servicecorelogin_client MODIFY COLUMN identity_provider_restrictions TEXT CHARACTER SET latin1 COLLATE latin1_general_ci DEFAULT NULL NULL;
ALTER TABLE servicecorelogin_client MODIFY COLUMN email_verification_redirect_uri TEXT CHARACTER SET latin1 COLLATE latin1_general_ci DEFAULT NULL NULL;
ALTER TABLE servicecorelogin_client MODIFY COLUMN redirect_uri TEXT CHARACTER SET latin1 COLLATE latin1_general_ci NOT NULL;

ALTER TABLE servicedmcore_reporting_powershell_report MODIFY COLUMN description TEXT CHARACTER SET latin1 COLLATE latin1_general_ci DEFAULT NULL NULL;
ALTER TABLE servicedmcore_reporting_powershell_report MODIFY COLUMN powershell_modules TEXT CHARACTER SET latin1 COLLATE latin1_general_ci DEFAULT NULL NULL;
ALTER TABLE servicedmcore_reporting_powershell_report MODIFY COLUMN powerhsell_snapins TEXT CHARACTER SET latin1 COLLATE latin1_general_ci DEFAULT NULL NULL;
ALTER TABLE servicedmcore_reporting_powershell_report MODIFY COLUMN powershell_script_file_path TEXT CHARACTER SET latin1 COLLATE latin1_general_ci NOT NULL;

DELIMITER //
CREATE PROCEDURE ConvertToUtf8mb4MultipleDatabases()
BEGIN
    DECLARE done INT DEFAULT 0;
    DECLARE stmt_str VARCHAR(1000);
    DECLARE cur CURSOR FOR 
        SELECT CONCAT('ALTER TABLE `', table_schema, '`.`', table_name, '` CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;')
        FROM information_schema.tables
        WHERE table_schema IN ('moving_appcustomer_900000', 'moving_global', 'moving_site') 
        AND (table_collation LIKE 'latin1%' OR table_collation LIKE 'utf8%')
        AND table_collation NOT LIKE 'utf8mb4%';
    DECLARE CONTINUE HANDLER FOR NOT FOUND SET done = 1;
    
    OPEN cur;
    
    read_loop: LOOP
        FETCH cur INTO stmt_str;
        IF done THEN
            LEAVE read_loop;
        END IF;
        SET @s = stmt_str;
        PREPARE stmt FROM @s;
        EXECUTE stmt;
        DEALLOCATE PREPARE stmt;
    END LOOP;
    
    CLOSE cur;
END //
DELIMITER ;

CALL ConvertToUtf8mb4MultipleDatabases();

DROP PROCEDURE ConvertToUtf8mb4MultipleDatabases;

ALTER DATABASE moving_appcustomer_900000 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci;
ALTER DATABASE moving_global CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci;
ALTER DATABASE moving_site CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci;

SET GLOBAL character_set_server = 'utf8mb4';
SET GLOBAL collation_server = 'utf8mb4_unicode_ci';

...

  • performanceCoreOne System Connectors

  • Resource owners are now manageable for Azure resources

CoreOne System Connector (Needs to be updated with this release!)

  • When organizational unit parents where being imported from SAP via a System Connector, there was a IOC resolution error that has been addressed.

  • The provision password flag for the Azure Active Directory is now being correctly provisioned

CoreOne Universal Connectors

...