From 601dfa071bbecadcee3588c31c79a33940844bf4 Mon Sep 17 00:00:00 2001 From: User Date: Thu, 19 Jan 2023 13:27:56 +0530 Subject: [PATCH 01/31] Introduce config to disable account activation confirmation email notification --- .../recovery/IdentityRecoveryConstants.java | 2 ++ .../connector/UserEmailVerificationConfigImpl.java | 13 +++++++++++++ .../NotificationPasswordRecoveryManager.java | 7 ++++++- .../UserEmailVerificationConfigImplTest.java | 9 +++++++++ 4 files changed, 30 insertions(+), 1 deletion(-) diff --git a/components/org.wso2.carbon.identity.recovery/src/main/java/org/wso2/carbon/identity/recovery/IdentityRecoveryConstants.java b/components/org.wso2.carbon.identity.recovery/src/main/java/org/wso2/carbon/identity/recovery/IdentityRecoveryConstants.java index f97e87033d..0964b2f21a 100644 --- a/components/org.wso2.carbon.identity.recovery/src/main/java/org/wso2/carbon/identity/recovery/IdentityRecoveryConstants.java +++ b/components/org.wso2.carbon.identity.recovery/src/main/java/org/wso2/carbon/identity/recovery/IdentityRecoveryConstants.java @@ -571,6 +571,8 @@ public static class ConnectorConfig { ".DisableRandomValueForCredentials"; public static final String EMAIL_ACCOUNT_LOCK_ON_CREATION = "EmailVerification.LockOnCreation"; public static final String EMAIL_VERIFICATION_NOTIFICATION_INTERNALLY_MANAGE = "EmailVerification.Notification.InternallyManage"; + public static final String EMAIL_VERIFICATION_NOTIFICATION_ACCOUNT_ACTIVATION = "EmailVerification.AskPassword" + + ".AccountActivation"; public static final String TENANT_ADMIN_ASK_PASSWORD_EXPIRY_TIME = "TenantRegistrationVerification." + "AskPassword.ExpiryTime"; diff --git a/components/org.wso2.carbon.identity.recovery/src/main/java/org/wso2/carbon/identity/recovery/connector/UserEmailVerificationConfigImpl.java b/components/org.wso2.carbon.identity.recovery/src/main/java/org/wso2/carbon/identity/recovery/connector/UserEmailVerificationConfigImpl.java index b7ada6f2b9..8d054ead35 100644 --- a/components/org.wso2.carbon.identity.recovery/src/main/java/org/wso2/carbon/identity/recovery/connector/UserEmailVerificationConfigImpl.java +++ b/components/org.wso2.carbon.identity.recovery/src/main/java/org/wso2/carbon/identity/recovery/connector/UserEmailVerificationConfigImpl.java @@ -90,6 +90,8 @@ public Map getPropertyNameMapping() { "Enable account lock on creation"); nameMapping.put(IdentityRecoveryConstants.ConnectorConfig.EMAIL_VERIFICATION_NOTIFICATION_INTERNALLY_MANAGE, "Manage notifications sending internally"); + nameMapping.put(IdentityRecoveryConstants.ConnectorConfig.EMAIL_VERIFICATION_NOTIFICATION_ACCOUNT_ACTIVATION, + "Send account activation email"); nameMapping.put(IdentityRecoveryConstants.ConnectorConfig.EMAIL_VERIFICATION_EXPIRY_TIME, "Email verification code expiry time"); nameMapping.put(IdentityRecoveryConstants.ConnectorConfig.ASK_PASSWORD_EXPIRY_TIME, @@ -110,6 +112,8 @@ public Map getPropertyDescriptionMapping() { "The user account will be locked during user creation."); descriptionMapping.put(IdentityRecoveryConstants.ConnectorConfig.EMAIL_VERIFICATION_NOTIFICATION_INTERNALLY_MANAGE, "Disable if the client application handles notification sending."); + descriptionMapping.put(IdentityRecoveryConstants.ConnectorConfig.EMAIL_VERIFICATION_NOTIFICATION_ACCOUNT_ACTIVATION, + "Disable if account activation confirmation email is not required."); descriptionMapping.put(IdentityRecoveryConstants.ConnectorConfig.EMAIL_VERIFICATION_EXPIRY_TIME, "Set the time span that the verification e-mail would be valid, in minutes. (For infinite validity " + "period, set -1)"); @@ -130,6 +134,7 @@ public String[] getPropertyNames() { properties.add(IdentityRecoveryConstants.ConnectorConfig.ENABLE_EMAIL_VERIFICATION); properties.add(IdentityRecoveryConstants.ConnectorConfig.EMAIL_ACCOUNT_LOCK_ON_CREATION); properties.add(IdentityRecoveryConstants.ConnectorConfig.EMAIL_VERIFICATION_NOTIFICATION_INTERNALLY_MANAGE); + properties.add(IdentityRecoveryConstants.ConnectorConfig.EMAIL_VERIFICATION_NOTIFICATION_ACCOUNT_ACTIVATION); properties.add(IdentityRecoveryConstants.ConnectorConfig.EMAIL_VERIFICATION_EXPIRY_TIME); properties.add(IdentityRecoveryConstants.ConnectorConfig.ASK_PASSWORD_EXPIRY_TIME); properties.add(IdentityRecoveryConstants.ConnectorConfig.ASK_PASSWORD_TEMP_PASSWORD_GENERATOR); @@ -144,6 +149,7 @@ public Properties getDefaultPropertyValues(String tenantDomain) throws IdentityG String enableEmailVerification = "false"; String enableEmailAccountLockOnCreation = "true"; String enableNotificationInternallyManage = "true"; + String sentNotificationOnAccountActivation = "true"; String emailVerificationCodeExpiry = "1440"; String askPasswordCodeExpiry = "1440"; String askPasswordTempPassExtension = "org.wso2.carbon.user.mgt.common.DefaultPasswordGenerator"; @@ -160,6 +166,8 @@ public Properties getDefaultPropertyValues(String tenantDomain) throws IdentityG IdentityRecoveryConstants.ConnectorConfig.EMAIL_ACCOUNT_LOCK_ON_CREATION); String notificationInternallyManagedProperty = IdentityUtil.getProperty( IdentityRecoveryConstants.ConnectorConfig.EMAIL_VERIFICATION_NOTIFICATION_INTERNALLY_MANAGE); + String notificationOnAccountActivationProperty = IdentityUtil.getProperty( + IdentityRecoveryConstants.ConnectorConfig.EMAIL_VERIFICATION_NOTIFICATION_ACCOUNT_ACTIVATION); if (StringUtils.isNotEmpty(emailVerificationProperty)) { enableEmailVerification = emailVerificationProperty; @@ -170,6 +178,9 @@ public Properties getDefaultPropertyValues(String tenantDomain) throws IdentityG if (StringUtils.isNotEmpty(notificationInternallyManagedProperty)) { enableNotificationInternallyManage = notificationInternallyManagedProperty; } + if (StringUtils.isNotEmpty(notificationOnAccountActivationProperty)) { + sentNotificationOnAccountActivation = notificationOnAccountActivationProperty; + } if (StringUtils.isNotEmpty(emailVerificationCodeExpiryProperty)) { emailVerificationCodeExpiry = emailVerificationCodeExpiryProperty; } @@ -191,6 +202,8 @@ public Properties getDefaultPropertyValues(String tenantDomain) throws IdentityG enableEmailAccountLockOnCreation); defaultProperties.put(IdentityRecoveryConstants.ConnectorConfig.EMAIL_VERIFICATION_NOTIFICATION_INTERNALLY_MANAGE, enableNotificationInternallyManage); + defaultProperties.put(IdentityRecoveryConstants.ConnectorConfig.EMAIL_VERIFICATION_NOTIFICATION_ACCOUNT_ACTIVATION, + sentNotificationOnAccountActivation); defaultProperties.put(IdentityRecoveryConstants.ConnectorConfig.ASK_PASSWORD_TEMP_PASSWORD_GENERATOR, askPasswordTempPassExtension); try { diff --git a/components/org.wso2.carbon.identity.recovery/src/main/java/org/wso2/carbon/identity/recovery/password/NotificationPasswordRecoveryManager.java b/components/org.wso2.carbon.identity.recovery/src/main/java/org/wso2/carbon/identity/recovery/password/NotificationPasswordRecoveryManager.java index 137258a499..2c1f4227f1 100644 --- a/components/org.wso2.carbon.identity.recovery/src/main/java/org/wso2/carbon/identity/recovery/password/NotificationPasswordRecoveryManager.java +++ b/components/org.wso2.carbon.identity.recovery/src/main/java/org/wso2/carbon/identity/recovery/password/NotificationPasswordRecoveryManager.java @@ -552,6 +552,9 @@ public User updateUserPassword(String code, String password, Property[] properti boolean isNotificationSendWhenSuccess = Boolean.parseBoolean(Utils.getRecoveryConfigs( IdentityRecoveryConstants.ConnectorConfig.NOTIFICATION_SEND_RECOVERY_NOTIFICATION_SUCCESS, userRecoveryData.getUser().getTenantDomain())); + boolean isNotificationSendOnAccountActivation = Boolean.parseBoolean(Utils.getRecoveryConfigs( + IdentityRecoveryConstants.ConnectorConfig.EMAIL_VERIFICATION_NOTIFICATION_ACCOUNT_ACTIVATION, + userRecoveryData.getUser().getTenantDomain())); String domainQualifiedName = IdentityUtil.addDomainToName(userRecoveryData.getUser().getUserName(), userRecoveryData.getUser().getUserStoreDomain()); @@ -564,7 +567,9 @@ public User updateUserPassword(String code, String password, Property[] properti String emailTemplate = null; if (isAskPasswordFlow(userRecoveryData) && isAskPasswordEmailTemplateTypeExists(userRecoveryData.getUser().getTenantDomain())) { - emailTemplate = IdentityRecoveryConstants.ACCOUNT_ACTIVATION_SUCCESS; + if (isNotificationSendOnAccountActivation) { + emailTemplate = IdentityRecoveryConstants.ACCOUNT_ACTIVATION_SUCCESS; + } } else if (isNotificationSendWhenSuccess) { emailTemplate = IdentityRecoveryConstants.NOTIFICATION_TYPE_PASSWORD_RESET_SUCCESS; } diff --git a/components/org.wso2.carbon.identity.recovery/src/test/java/org/wso2/carbon/identity/recovery/connector/UserEmailVerificationConfigImplTest.java b/components/org.wso2.carbon.identity.recovery/src/test/java/org/wso2/carbon/identity/recovery/connector/UserEmailVerificationConfigImplTest.java index 04c4fde14f..06c42146a0 100644 --- a/components/org.wso2.carbon.identity.recovery/src/test/java/org/wso2/carbon/identity/recovery/connector/UserEmailVerificationConfigImplTest.java +++ b/components/org.wso2.carbon.identity.recovery/src/test/java/org/wso2/carbon/identity/recovery/connector/UserEmailVerificationConfigImplTest.java @@ -96,6 +96,8 @@ public void testGetPropertyNameMapping() { "Enable account lock on creation"); nameMappingExpected.put(IdentityRecoveryConstants.ConnectorConfig.EMAIL_VERIFICATION_NOTIFICATION_INTERNALLY_MANAGE, "Manage notifications sending internally"); + nameMappingExpected.put(IdentityRecoveryConstants.ConnectorConfig.EMAIL_VERIFICATION_NOTIFICATION_ACCOUNT_ACTIVATION, + "Send account activation email"); nameMappingExpected.put(IdentityRecoveryConstants.ConnectorConfig.EMAIL_VERIFICATION_EXPIRY_TIME, "Email verification code expiry time"); nameMappingExpected.put(IdentityRecoveryConstants.ConnectorConfig.ASK_PASSWORD_EXPIRY_TIME, @@ -119,6 +121,9 @@ public void testGetPropertyDescriptionMapping() { descriptionMappingExpected.put(IdentityRecoveryConstants.ConnectorConfig. EMAIL_VERIFICATION_NOTIFICATION_INTERNALLY_MANAGE, "Disable if the client application handles notification sending."); + descriptionMappingExpected.put(IdentityRecoveryConstants.ConnectorConfig. + EMAIL_VERIFICATION_NOTIFICATION_ACCOUNT_ACTIVATION, + "Disable if account activation confirmation email is not required."); descriptionMappingExpected.put(IdentityRecoveryConstants.ConnectorConfig.EMAIL_VERIFICATION_EXPIRY_TIME, "Set the time span that the verification e-mail would be valid, in minutes. (For infinite validity " + "period, set -1)"); @@ -142,6 +147,7 @@ public void testGetPropertyNames() { propertiesExpected.add(IdentityRecoveryConstants.ConnectorConfig.ENABLE_EMAIL_VERIFICATION); propertiesExpected.add(IdentityRecoveryConstants.ConnectorConfig.EMAIL_ACCOUNT_LOCK_ON_CREATION); propertiesExpected.add(IdentityRecoveryConstants.ConnectorConfig.EMAIL_VERIFICATION_NOTIFICATION_INTERNALLY_MANAGE); + propertiesExpected.add(IdentityRecoveryConstants.ConnectorConfig.EMAIL_VERIFICATION_NOTIFICATION_ACCOUNT_ACTIVATION); propertiesExpected.add(IdentityRecoveryConstants.ConnectorConfig.EMAIL_VERIFICATION_EXPIRY_TIME); propertiesExpected.add(IdentityRecoveryConstants.ConnectorConfig.ASK_PASSWORD_EXPIRY_TIME); String[] propertiesArrayExpected = propertiesExpected.toArray(new String[0]); @@ -159,6 +165,7 @@ public void testGetDefaultPropertyValues() throws IdentityGovernanceException { String testEnableEmailVerification = "false"; String testEnableEmailAccountLockOnCreation = "true"; String testEnableNotificationInternallyManage = "true"; + String testSentNotificationOnAccountActivation = "true"; String testEmailVerificationCodeExpiry = "1440"; String testAskPasswordCodeExpiry = "1440"; String testAskPasswordTempPassExtension = "org.wso2.carbon.user.mgt.common.DefaultPasswordGenerator"; @@ -174,6 +181,8 @@ public void testGetDefaultPropertyValues() throws IdentityGovernanceException { testEnableEmailAccountLockOnCreation); defaultPropertiesExpected.put(IdentityRecoveryConstants.ConnectorConfig.EMAIL_VERIFICATION_NOTIFICATION_INTERNALLY_MANAGE, testEnableNotificationInternallyManage); + defaultPropertiesExpected.put(IdentityRecoveryConstants.ConnectorConfig.EMAIL_VERIFICATION_NOTIFICATION_ACCOUNT_ACTIVATION, + testSentNotificationOnAccountActivation); defaultPropertiesExpected.put(IdentityRecoveryConstants.ConnectorConfig.ASK_PASSWORD_TEMP_PASSWORD_GENERATOR, testAskPasswordTempPassExtension); try { From 18b1658747520cb400f6dd084eee58ba31534a73 Mon Sep 17 00:00:00 2001 From: Thumimku Date: Fri, 4 Aug 2023 13:30:45 +0530 Subject: [PATCH 02/31] disable password policy validation handler --- .../constants/PasswordPolicyConstants.java | 1 + .../IdentityPasswordPolicyServiceComponent.java | 14 ++++++++++---- .../IdentityPasswordPolicyServiceDataHolder.java | 16 ++++++++++++++++ 3 files changed, 27 insertions(+), 4 deletions(-) diff --git a/components/org.wso2.carbon.identity.password.policy/src/main/java/org/wso2/carbon/identity/password/policy/constants/PasswordPolicyConstants.java b/components/org.wso2.carbon.identity.password.policy/src/main/java/org/wso2/carbon/identity/password/policy/constants/PasswordPolicyConstants.java index 7bfbe740fc..25ce59e216 100644 --- a/components/org.wso2.carbon.identity.password.policy/src/main/java/org/wso2/carbon/identity/password/policy/constants/PasswordPolicyConstants.java +++ b/components/org.wso2.carbon.identity.password.policy/src/main/java/org/wso2/carbon/identity/password/policy/constants/PasswordPolicyConstants.java @@ -26,6 +26,7 @@ public class PasswordPolicyConstants { public static final String PW_POLICY_LENGTH_CLASS = "passwordPolicy.class.PasswordLengthPolicy"; public static final String PW_POLICY_NAME_CLASS = "passwordPolicy.class.PasswordNamePolicy"; public static final String PW_POLICY_PATTERN_CLASS = "passwordPolicy.class.PasswordPatternPolicy"; + public static final String PW_POLICY_HANDLER_ENABLED = "PasswordPolicy.PasswordPolicyValidationHandler.Enable"; public enum ErrorMessages { diff --git a/components/org.wso2.carbon.identity.password.policy/src/main/java/org/wso2/carbon/identity/password/policy/internal/IdentityPasswordPolicyServiceComponent.java b/components/org.wso2.carbon.identity.password.policy/src/main/java/org/wso2/carbon/identity/password/policy/internal/IdentityPasswordPolicyServiceComponent.java index abacfe7821..6edaba1956 100644 --- a/components/org.wso2.carbon.identity.password.policy/src/main/java/org/wso2/carbon/identity/password/policy/internal/IdentityPasswordPolicyServiceComponent.java +++ b/components/org.wso2.carbon.identity.password.policy/src/main/java/org/wso2/carbon/identity/password/policy/internal/IdentityPasswordPolicyServiceComponent.java @@ -43,10 +43,16 @@ protected void activate(ComponentContext context) { if (log.isDebugEnabled()) { log.debug("Password Policy Service component is enabled"); } - BundleContext bundleContext = context.getBundleContext(); - IdentityPasswordPolicyServiceDataHolder.getInstance().setBundleContext(bundleContext); - PasswordPolicyValidationHandler handler = new PasswordPolicyValidationHandler(); - context.getBundleContext().registerService(AbstractEventHandler.class.getName(), handler, null); + if (IdentityPasswordPolicyServiceDataHolder.getInstance().isPasswordPolicyHandlerEnabled()) { + BundleContext bundleContext = context.getBundleContext(); + IdentityPasswordPolicyServiceDataHolder.getInstance().setBundleContext(bundleContext); + PasswordPolicyValidationHandler handler = new PasswordPolicyValidationHandler(); + context.getBundleContext().registerService(AbstractEventHandler.class.getName(), handler, null); + } else { + if (log.isDebugEnabled()) { + log.debug("Password Policy Validation Handler is disabled."); + } + } } catch (Exception e) { log.error("Error while activating password policy component.", e); } diff --git a/components/org.wso2.carbon.identity.password.policy/src/main/java/org/wso2/carbon/identity/password/policy/internal/IdentityPasswordPolicyServiceDataHolder.java b/components/org.wso2.carbon.identity.password.policy/src/main/java/org/wso2/carbon/identity/password/policy/internal/IdentityPasswordPolicyServiceDataHolder.java index db9b22894a..79780c7cc0 100644 --- a/components/org.wso2.carbon.identity.password.policy/src/main/java/org/wso2/carbon/identity/password/policy/internal/IdentityPasswordPolicyServiceDataHolder.java +++ b/components/org.wso2.carbon.identity.password.policy/src/main/java/org/wso2/carbon/identity/password/policy/internal/IdentityPasswordPolicyServiceDataHolder.java @@ -16,8 +16,11 @@ package org.wso2.carbon.identity.password.policy.internal; +import org.apache.commons.lang.StringUtils; import org.osgi.framework.BundleContext; +import org.wso2.carbon.identity.core.util.IdentityUtil; import org.wso2.carbon.identity.governance.IdentityGovernanceService; +import org.wso2.carbon.identity.password.policy.constants.PasswordPolicyConstants; public class IdentityPasswordPolicyServiceDataHolder { @@ -33,6 +36,19 @@ public static IdentityPasswordPolicyServiceDataHolder getInstance() { return instance; } + public boolean isPasswordPolicyHandlerEnabled() { + + String passwordPolicyHandlerEnabled = + IdentityUtil.getProperty(PasswordPolicyConstants.PW_POLICY_HANDLER_ENABLED); + if (StringUtils.isBlank(passwordPolicyHandlerEnabled)) { + /* + This indicates config not in the identity.xml. In that case, we need to maintain default behaviour. + */ + return false; + } + return Boolean.parseBoolean(passwordPolicyHandlerEnabled); + } + public IdentityGovernanceService getIdentityGovernanceService() { return identityGovernanceService; } From 96615201ddc7e1a3a9def3259d01e7bf73c04225 Mon Sep 17 00:00:00 2001 From: SujanSanjula96 Date: Mon, 28 Aug 2023 10:47:19 +0530 Subject: [PATCH 03/31] Reissue confirmation code for Ask Password and Self Registration --- .../recovery/IdentityRecoveryConstants.java | 8 + .../carbon/identity/recovery/util/Utils.java | 155 +++++++++++++++++- 2 files changed, 154 insertions(+), 9 deletions(-) diff --git a/components/org.wso2.carbon.identity.recovery/src/main/java/org/wso2/carbon/identity/recovery/IdentityRecoveryConstants.java b/components/org.wso2.carbon.identity.recovery/src/main/java/org/wso2/carbon/identity/recovery/IdentityRecoveryConstants.java index d39cf8b974..ad4565fe69 100644 --- a/components/org.wso2.carbon.identity.recovery/src/main/java/org/wso2/carbon/identity/recovery/IdentityRecoveryConstants.java +++ b/components/org.wso2.carbon.identity.recovery/src/main/java/org/wso2/carbon/identity/recovery/IdentityRecoveryConstants.java @@ -174,7 +174,15 @@ public class IdentityRecoveryConstants { "Recovery.Question.Password.SkipOnInsufficientAnswers"; public static final String RECOVERY_CONFIRMATION_CODE_TOLERANCE_PERIOD = "Recovery.Notification.Password.Email.ConfirmationCodeTolerancePeriod"; + public static final String ASK_PASSWORD_CONFIRMATION_CODE_TOLERANCE_PERIOD = + "EmailVerification.AskPassword.Notification.ConfirmationCodeTolerancePeriod"; + public static final String SELF_SIGN_UP_EMAIL_CONFIRMATION_CODE_TOLERANCE_PERIOD = + "SelfRegistration.Notification.Email.ConfirmationCodeTolerancePeriod"; + public static final String SELF_SIGN_UP_SMS_CONFIRMATION_CODE_TOLERANCE_PERIOD = + "SelfRegistration.Notification.SMS.ConfirmationCodeTolerancePeriod"; public static final int RECOVERY_CONFIRMATION_CODE_DEFAULT_TOLERANCE = 0; + public static final int ASK_PASSWORD_CODE_DEFAULT_TOLERANCE = 0; + public static final int SELF_SIGN_UP_CODE_DEFAULT_TOLERANCE = 0; public static final String EMAIL_TEMPLATE_PATH = "/identity/email"; // Workflow constants. diff --git a/components/org.wso2.carbon.identity.recovery/src/main/java/org/wso2/carbon/identity/recovery/util/Utils.java b/components/org.wso2.carbon.identity.recovery/src/main/java/org/wso2/carbon/identity/recovery/util/Utils.java index e88dc6ef23..bff5db30b8 100644 --- a/components/org.wso2.carbon.identity.recovery/src/main/java/org/wso2/carbon/identity/recovery/util/Utils.java +++ b/components/org.wso2.carbon.identity.recovery/src/main/java/org/wso2/carbon/identity/recovery/util/Utils.java @@ -1297,21 +1297,46 @@ private static Map cloneMap(Map map) { * Checks whether the existing confirmation code can be reused based on the configured email confirmation code * tolerance period. * - * @param recoveryDataDO Recovery data of the corresponding user. + * @param recoveryDataDO Recovery data of the corresponding user. * @param notificationChannel Method which is used to send the recovery code. eg:- EMAIL, SMS. * @return True if the existing confirmation code can be used. Otherwise false. */ public static boolean reIssueExistingConfirmationCode(UserRecoveryData recoveryDataDO, String notificationChannel) { - int codeToleranceInMinutes = getEmailCodeToleranceInMinutes(); - if (recoveryDataDO != null && codeToleranceInMinutes != 0) { - if (RecoveryScenarios.NOTIFICATION_BASED_PW_RECOVERY.toString(). - equals(recoveryDataDO.getRecoveryScenario().toString())) { - long codeToleranceTimeInMillis = recoveryDataDO.getTimeCreated().getTime() + - TimeUnit.MINUTES.toMillis(codeToleranceInMinutes); - return System.currentTimeMillis() < codeToleranceTimeInMillis; - } + if (recoveryDataDO == null) { + return false; + } + + int codeToleranceInMinutes = 0; + long codeToleranceTimeInMillis = 0; + String recoveryScenario = recoveryDataDO.getRecoveryScenario().toString(); + if (RecoveryScenarios.NOTIFICATION_BASED_PW_RECOVERY.toString().equals(recoveryScenario)) { + codeToleranceInMinutes = getEmailCodeToleranceInMinutes(); + codeToleranceTimeInMillis = recoveryDataDO.getTimeCreated().getTime() + + TimeUnit.MINUTES.toMillis(codeToleranceInMinutes); + return System.currentTimeMillis() < codeToleranceTimeInMillis; } + + User user = recoveryDataDO.getUser(); + if (user == null) { + return false; + } + String tenantDomain = user.getTenantDomain(); + if (StringUtils.isEmpty(tenantDomain)) { + tenantDomain = MultitenantConstants.SUPER_TENANT_DOMAIN_NAME; + } + if (RecoveryScenarios.SELF_SIGN_UP.toString().equals(recoveryScenario)) { + codeToleranceInMinutes = getSelfRegistrationCodeToleranceInMinutes(tenantDomain, notificationChannel); + codeToleranceTimeInMillis = recoveryDataDO.getTimeCreated().getTime() + + TimeUnit.MINUTES.toMillis(codeToleranceInMinutes); + return System.currentTimeMillis() < codeToleranceTimeInMillis; + } else if (RecoveryScenarios.ASK_PASSWORD.toString().equals(recoveryDataDO.getRecoveryScenario().toString())) { + codeToleranceInMinutes = getAskPasswordCodeExpiryTime(tenantDomain); + codeToleranceTimeInMillis = recoveryDataDO.getTimeCreated().getTime() + + TimeUnit.MINUTES.toMillis(codeToleranceInMinutes); + return System.currentTimeMillis() < codeToleranceTimeInMillis; + } + return false; } @@ -1392,6 +1417,118 @@ private static int getRecoveryCodeExpiryTime() { } } + /** + * Retrieves the self registration confirmation code tolerance period in minutes. + * + * @param tenantDomain Tenant domain of the user. + * @param notificationChannel Method which is used to send the recovery code. eg:- EMAIL, SMS, EXTERNAL. + * @return The self registration confirmation code tolerance in minutes. + */ + private static int getSelfRegistrationCodeToleranceInMinutes(String tenantDomain, String notificationChannel) { + + String selfRegistrationCodeTolerance = null; + String selfRegistrationCodeExpiryTime = null; + try { + // Getting the self registration confirmation code expiry time and tolerance period for the given channel. + if (NotificationChannels.EMAIL_CHANNEL.getChannelType().equalsIgnoreCase(notificationChannel)) { + selfRegistrationCodeTolerance = IdentityUtil. + getProperty(IdentityRecoveryConstants.SELF_SIGN_UP_EMAIL_CONFIRMATION_CODE_TOLERANCE_PERIOD); + selfRegistrationCodeExpiryTime = getRecoveryConfigs( + IdentityRecoveryConstants.ConnectorConfig.SELF_REGISTRATION_VERIFICATION_CODE_EXPIRY_TIME, + tenantDomain); + } else if (NotificationChannels.SMS_CHANNEL.getChannelType().equalsIgnoreCase(notificationChannel)) { + selfRegistrationCodeTolerance = IdentityUtil. + getProperty(IdentityRecoveryConstants.SELF_SIGN_UP_SMS_CONFIRMATION_CODE_TOLERANCE_PERIOD); + selfRegistrationCodeExpiryTime = getRecoveryConfigs( + IdentityRecoveryConstants.ConnectorConfig + .SELF_REGISTRATION_SMSOTP_VERIFICATION_CODE_EXPIRY_TIME, tenantDomain); + } else { + selfRegistrationCodeTolerance = IdentityUtil. + getProperty(IdentityRecoveryConstants.SELF_SIGN_UP_EMAIL_CONFIRMATION_CODE_TOLERANCE_PERIOD); + selfRegistrationCodeExpiryTime = getRecoveryConfigs( + IdentityRecoveryConstants.ConnectorConfig.SELF_REGISTRATION_VERIFICATION_CODE_EXPIRY_TIME, + tenantDomain); + } + } catch (IdentityRecoveryServerException e) { + log.error("Error while retrieving self registration code recovery time.", e); + return IdentityRecoveryConstants.SELF_SIGN_UP_CODE_DEFAULT_TOLERANCE; + } + + if (StringUtils.isEmpty(selfRegistrationCodeTolerance) || StringUtils.isEmpty(selfRegistrationCodeExpiryTime)) { + return IdentityRecoveryConstants.SELF_SIGN_UP_CODE_DEFAULT_TOLERANCE; + } + + try { + int codeTolerance = Integer.parseInt(selfRegistrationCodeTolerance); + int codeExpiryTime = Integer.parseInt(selfRegistrationCodeExpiryTime); + // If the code expiry time is less than zero, code has infinite validity. Hence, we only need this + // condition to check whether the code expiry time is less than code tolerance when code expiry time is + // greater than or equal zero. + if (codeExpiryTime >= 0 && codeExpiryTime < codeTolerance) { + String message = String.format("Self registration code expiry time is less than code tolerance. " + + "Therefore setting the DEFAULT time : %s minutes", + IdentityRecoveryConstants.SELF_SIGN_UP_CODE_DEFAULT_TOLERANCE); + log.warn(message); + return IdentityRecoveryConstants.SELF_SIGN_UP_CODE_DEFAULT_TOLERANCE; + } + return codeTolerance; + } catch (NumberFormatException e) { + String message = String.format("Self registration confirmation code tolerance parsing is failed. " + + "Therefore setting the DEFAULT time : %s minutes", + IdentityRecoveryConstants.SELF_SIGN_UP_CODE_DEFAULT_TOLERANCE); + log.error(message); + return IdentityRecoveryConstants.SELF_SIGN_UP_CODE_DEFAULT_TOLERANCE; + } + } + + /** + * Retrieves the ask password confirmation code tolerance period in minutes. + * + * @param tenantDomain Tenant domain of the user. + * @return The ask password confirmation code tolerance in minutes. + */ + private static int getAskPasswordCodeExpiryTime(String tenantDomain) { + + String askPasswordCodeTolerance = null; + String askPasswordCodeExpiryTime = null; + try { + askPasswordCodeTolerance = IdentityUtil. + getProperty(IdentityRecoveryConstants.ASK_PASSWORD_CONFIRMATION_CODE_TOLERANCE_PERIOD); + askPasswordCodeExpiryTime = getRecoveryConfigs( + IdentityRecoveryConstants.ConnectorConfig.ASK_PASSWORD_EXPIRY_TIME, + tenantDomain); + } catch (IdentityRecoveryServerException e) { + log.error("Error while retrieving ask password code recovery time.", e); + return IdentityRecoveryConstants.ASK_PASSWORD_CODE_DEFAULT_TOLERANCE; + } + + if (StringUtils.isEmpty(askPasswordCodeTolerance) || StringUtils.isEmpty(askPasswordCodeExpiryTime)) { + return IdentityRecoveryConstants.ASK_PASSWORD_CODE_DEFAULT_TOLERANCE; + } + + try { + int codeTolerance = Integer.parseInt(askPasswordCodeTolerance); + int codeExpiryTime = Integer.parseInt(askPasswordCodeExpiryTime); + // If the code expiry time is less than zero, code has infinite validity. Hence, we only need this + // condition to check whether the code expiry time is less than code tolerance when code expiry time is + // greater than or equal zero. + if (codeExpiryTime >= 0 && codeExpiryTime < codeTolerance) { + String message = String.format("Ask password code expiry time is less than code tolerance. " + + "Therefore setting the DEFAULT time : %s minutes", + IdentityRecoveryConstants.ASK_PASSWORD_CODE_DEFAULT_TOLERANCE); + log.warn(message); + return IdentityRecoveryConstants.ASK_PASSWORD_CODE_DEFAULT_TOLERANCE; + } + return codeTolerance; + } catch (NumberFormatException e) { + String message = String.format("Ask password confirmation code tolerance parsing is failed. " + + "Therefore setting the DEFAULT time : %s minutes", + IdentityRecoveryConstants.ASK_PASSWORD_CODE_DEFAULT_TOLERANCE); + log.error(message); + return IdentityRecoveryConstants.ASK_PASSWORD_CODE_DEFAULT_TOLERANCE; + } + } + /** * Handle the auth attribution validation failure. * From 4579647fb3d98edbd13afa581deab921f1041cd2 Mon Sep 17 00:00:00 2001 From: SujanSanjula96 Date: Mon, 28 Aug 2023 14:53:13 +0530 Subject: [PATCH 04/31] Fix test failures --- .../UserSelfRegistrationManagerTest.java | 25 +++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/components/org.wso2.carbon.identity.recovery/src/test/java/org/wso2/carbon/identity/recovery/signup/UserSelfRegistrationManagerTest.java b/components/org.wso2.carbon.identity.recovery/src/test/java/org/wso2/carbon/identity/recovery/signup/UserSelfRegistrationManagerTest.java index 9c33c0e2f9..d18ee7e959 100644 --- a/components/org.wso2.carbon.identity.recovery/src/test/java/org/wso2/carbon/identity/recovery/signup/UserSelfRegistrationManagerTest.java +++ b/components/org.wso2.carbon.identity.recovery/src/test/java/org/wso2/carbon/identity/recovery/signup/UserSelfRegistrationManagerTest.java @@ -67,6 +67,8 @@ import org.wso2.carbon.idp.mgt.IdentityProviderManager; import org.wso2.carbon.user.api.Claim; +import java.sql.Timestamp; + import static org.mockito.ArgumentMatchers.anyBoolean; import static org.mockito.ArgumentMatchers.anyInt; import static org.mockito.ArgumentMatchers.anyMap; @@ -76,7 +78,9 @@ import static org.testng.Assert.assertEquals; import static org.wso2.carbon.identity.auth.attribute.handler.AuthAttributeHandlerConstants.ErrorMessages.ERROR_CODE_AUTH_ATTRIBUTE_HANDLER_NOT_FOUND; import static org.wso2.carbon.identity.recovery.IdentityRecoveryConstants.ConnectorConfig.ENABLE_SELF_SIGNUP; +import static org.wso2.carbon.identity.recovery.IdentityRecoveryConstants.ConnectorConfig.SELF_REGISTRATION_SMSOTP_VERIFICATION_CODE_EXPIRY_TIME; import static org.wso2.carbon.identity.recovery.IdentityRecoveryConstants.ConnectorConfig.SELF_REGISTRATION_SMS_OTP_REGEX; +import static org.wso2.carbon.identity.recovery.IdentityRecoveryConstants.ConnectorConfig.SELF_REGISTRATION_VERIFICATION_CODE_EXPIRY_TIME; import static org.wso2.carbon.identity.recovery.IdentityRecoveryConstants.ConnectorConfig.SIGN_UP_NOTIFICATION_INTERNALLY_MANAGE; import static org.wso2.carbon.identity.recovery.IdentityRecoveryConstants.ErrorMessages.ERROR_CODE_INVALID_REGISTRATION_OPTION; import static org.wso2.carbon.identity.recovery.IdentityRecoveryConstants.ErrorMessages.ERROR_CODE_INVALID_USER_ATTRIBUTES_FOR_REGISTRATION; @@ -180,6 +184,7 @@ public void testResendConfirmationCode(String username, String userstore, String .SELF_SIGN_UP, RecoverySteps.CONFIRM_SIGN_UP); // Storing preferred notification channel in remaining set ids. userRecoveryData.setRemainingSetIds(preferredChannel); + userRecoveryData.setTimeCreated(new Timestamp(System.currentTimeMillis())); mockConfigurations("true", enableInternalNotificationManagement); mockJDBCRecoveryDataStore(userRecoveryData); @@ -242,6 +247,16 @@ private void mockConfigurations(String enableSelfSignUp, String enableInternalNo smsOTPConfig.setName(SELF_REGISTRATION_SMS_OTP_REGEX); smsOTPConfig.setValue(""); + org.wso2.carbon.identity.application.common.model.Property selfRegistrationCodeExpiryConfig = + new org.wso2.carbon.identity.application.common.model.Property(); + selfRegistrationCodeExpiryConfig.setName(SELF_REGISTRATION_VERIFICATION_CODE_EXPIRY_TIME); + selfRegistrationCodeExpiryConfig.setValue("1440"); + + org.wso2.carbon.identity.application.common.model.Property selfRegistrationSMSCodeExpiryConfig = + new org.wso2.carbon.identity.application.common.model.Property(); + selfRegistrationSMSCodeExpiryConfig.setName(SELF_REGISTRATION_SMSOTP_VERIFICATION_CODE_EXPIRY_TIME); + selfRegistrationSMSCodeExpiryConfig.setValue("1"); + when(identityGovernanceService .getConfiguration(new String[]{ENABLE_SELF_SIGNUP}, TEST_TENANT_DOMAIN_NAME)) .thenReturn(new org.wso2.carbon.identity.application.common.model.Property[]{signupConfig}); @@ -251,6 +266,16 @@ private void mockConfigurations(String enableSelfSignUp, String enableInternalNo when(identityGovernanceService .getConfiguration(new String[]{SELF_REGISTRATION_SMS_OTP_REGEX}, TEST_TENANT_DOMAIN_NAME)) .thenReturn(new org.wso2.carbon.identity.application.common.model.Property[]{smsOTPConfig}); + when(identityGovernanceService + .getConfiguration( + new String[]{SELF_REGISTRATION_VERIFICATION_CODE_EXPIRY_TIME}, TEST_TENANT_DOMAIN_NAME)) + .thenReturn(new org.wso2.carbon.identity.application.common.model.Property[] + {selfRegistrationCodeExpiryConfig}); + when(identityGovernanceService + .getConfiguration( + new String[]{SELF_REGISTRATION_SMSOTP_VERIFICATION_CODE_EXPIRY_TIME}, TEST_TENANT_DOMAIN_NAME)) + .thenReturn(new org.wso2.carbon.identity.application.common.model.Property[] + {selfRegistrationSMSCodeExpiryConfig}); when(otpGenerator.generateOTP(anyBoolean(), anyBoolean(), anyBoolean(), anyInt(), anyString())) .thenReturn("1234-4567-890"); mockedIdentityUtil.when(IdentityUtil::getPrimaryDomainName).thenReturn(TEST_USERSTORE_DOMAIN); From c3e29774b91dfd91abcfdadb578897b82b14744d Mon Sep 17 00:00:00 2001 From: Thisara-Welmilla Date: Mon, 21 Aug 2023 11:30:11 +0530 Subject: [PATCH 05/31] Add service to identify password expired users. --- .../service/IdentityDataStoreService.java | 12 ++ .../service/IdentityDataStoreServiceImpl.java | 7 + .../store/JDBCIdentityDataStore.java | 29 +++ .../store/UserIdentityDataStore.java | 16 ++ .../pom.xml | 6 + .../constants/PasswordPolicyConstants.java | 5 +- ...PasswordIdentificationClientException.java | 70 +++++++ ...xpiredPasswordIdentificationException.java | 107 ++++++++++ ...PasswordIdentificationServerException.java | 58 ++++++ .../EnforcePasswordResetComponent.java | 22 ++ ...forcePasswordResetComponentDataHolder.java | 11 + .../models/PasswordExpiredUserModel.java | 83 ++++++++ .../ExpiredPasswordIdentificationService.java | 42 ++++ ...iredPasswordIdentificationServiceImpl.java | 190 ++++++++++++++++++ .../expiry/util/PasswordPolicyUtils.java | 2 +- 15 files changed, 658 insertions(+), 2 deletions(-) create mode 100644 components/org.wso2.carbon.identity.password.expiry/src/main/java/org/wso2/carbon/identity/password/expiry/exceptions/ExpiredPasswordIdentificationClientException.java create mode 100644 components/org.wso2.carbon.identity.password.expiry/src/main/java/org/wso2/carbon/identity/password/expiry/exceptions/ExpiredPasswordIdentificationException.java create mode 100644 components/org.wso2.carbon.identity.password.expiry/src/main/java/org/wso2/carbon/identity/password/expiry/exceptions/ExpiredPasswordIdentificationServerException.java create mode 100644 components/org.wso2.carbon.identity.password.expiry/src/main/java/org/wso2/carbon/identity/password/expiry/models/PasswordExpiredUserModel.java create mode 100644 components/org.wso2.carbon.identity.password.expiry/src/main/java/org/wso2/carbon/identity/password/expiry/services/ExpiredPasswordIdentificationService.java create mode 100644 components/org.wso2.carbon.identity.password.expiry/src/main/java/org/wso2/carbon/identity/password/expiry/services/impl/ExpiredPasswordIdentificationServiceImpl.java diff --git a/components/org.wso2.carbon.identity.governance/src/main/java/org/wso2/carbon/identity/governance/service/IdentityDataStoreService.java b/components/org.wso2.carbon.identity.governance/src/main/java/org/wso2/carbon/identity/governance/service/IdentityDataStoreService.java index 8485c4611f..a1e0e9333a 100644 --- a/components/org.wso2.carbon.identity.governance/src/main/java/org/wso2/carbon/identity/governance/service/IdentityDataStoreService.java +++ b/components/org.wso2.carbon.identity.governance/src/main/java/org/wso2/carbon/identity/governance/service/IdentityDataStoreService.java @@ -104,6 +104,18 @@ List listPaginatedUsersByClaimURIAndValue(List expr List getUserNamesLessThanProvidedClaimValue(String claimURI, String claimValue, int tenantId) throws IdentityException; + /** + * Get the list of usernames who have the claim value more than the provided claim value for a given claim URI. + * + * @param claimURI Claim URI. + * @param claimValue Claim value. + * @param tenantId Tenant ID. + * @return List of usernames. + * @throws IdentityException Identity exception. + */ + List getUserNamesMoreThanProvidedClaimValue(String claimURI, String claimValue, + int tenantId) throws IdentityException; + /** * Get the list of usernames who have the claim value between the provided claim values for a given claim URI. * @param claimURI Claim URI. diff --git a/components/org.wso2.carbon.identity.governance/src/main/java/org/wso2/carbon/identity/governance/service/IdentityDataStoreServiceImpl.java b/components/org.wso2.carbon.identity.governance/src/main/java/org/wso2/carbon/identity/governance/service/IdentityDataStoreServiceImpl.java index 0426aa909c..17386d45a5 100644 --- a/components/org.wso2.carbon.identity.governance/src/main/java/org/wso2/carbon/identity/governance/service/IdentityDataStoreServiceImpl.java +++ b/components/org.wso2.carbon.identity.governance/src/main/java/org/wso2/carbon/identity/governance/service/IdentityDataStoreServiceImpl.java @@ -165,6 +165,13 @@ public List getUserNamesLessThanProvidedClaimValue(String claimURI, Stri return identityDataStore.getUserNamesLessThanProvidedClaimValue(claimURI, claimValue, tenantId); } + @Override + public List getUserNamesMoreThanProvidedClaimValue(String claimURI, String claimValue, int tenantId) + throws IdentityException { + + return identityDataStore.getUserNamesMoreThanProvidedClaimValue(claimURI, claimValue, tenantId); + } + @Override public List getUserNamesBetweenProvidedClaimValues(String claimURI, String startValue, String endValue, int tenantId) throws IdentityException { diff --git a/components/org.wso2.carbon.identity.governance/src/main/java/org/wso2/carbon/identity/governance/store/JDBCIdentityDataStore.java b/components/org.wso2.carbon.identity.governance/src/main/java/org/wso2/carbon/identity/governance/store/JDBCIdentityDataStore.java index fe04e4ebfe..a836d819b8 100644 --- a/components/org.wso2.carbon.identity.governance/src/main/java/org/wso2/carbon/identity/governance/store/JDBCIdentityDataStore.java +++ b/components/org.wso2.carbon.identity.governance/src/main/java/org/wso2/carbon/identity/governance/store/JDBCIdentityDataStore.java @@ -412,6 +412,31 @@ public List getUserNamesLessThanProvidedClaimValue(String claimURI, Stri } } + @Override + public List getUserNamesMoreThanProvidedClaimValue(String claimURI, String claimValue, int tenantId) + throws IdentityException { + + String sqlStmt = SQLQuery.FILTER_USERS_BY_DATA_KEY_MORE_THAN_DATA_VALUE; + List userNames = new ArrayList<>(); + try (Connection connection = IdentityDatabaseUtil.getDBConnection(true)) { + try (PreparedStatement prepStmt = connection.prepareStatement(sqlStmt)) { + prepStmt.setString(1, claimURI); + prepStmt.setInt(2, tenantId); + prepStmt.setString(3, claimValue); + try (ResultSet resultSet = prepStmt.executeQuery()) { + while (resultSet.next()) { + String username = resultSet.getString(1); + userNames.add(username); + } + } + IdentityDatabaseUtil.commitTransaction(connection); + return userNames; + } + } catch (SQLException e) { + throw new IdentityException("Error occurred while retrieving users from Identity Store.", e); + } + } + @Override public List getUserNamesBetweenProvidedClaimValues(String claimURI, String startValue, String endValue, int tenantId) throws IdentityException { @@ -615,6 +640,10 @@ private static class SQLQuery { "SELECT USER_NAME, DATA_VALUE FROM IDN_IDENTITY_USER_DATA WHERE " + "DATA_KEY = ? AND TENANT_ID = ? AND DATA_VALUE < ?"; + public static final String FILTER_USERS_BY_DATA_KEY_MORE_THAN_DATA_VALUE = + "SELECT USER_NAME, DATA_VALUE FROM IDN_IDENTITY_USER_DATA WHERE " + + "DATA_KEY = ? AND TENANT_ID = ? AND DATA_VALUE > ?"; + public static final String FILTER_USERS_BY_DATA_KEY_LESS_THAN_AND_GREATER_THAN_DATA_VALUES = "SELECT USER_NAME, DATA_VALUE FROM IDN_IDENTITY_USER_DATA WHERE " + "DATA_KEY = ? AND TENANT_ID = ? AND DATA_VALUE < ? AND DATA_VALUE > ?"; diff --git a/components/org.wso2.carbon.identity.governance/src/main/java/org/wso2/carbon/identity/governance/store/UserIdentityDataStore.java b/components/org.wso2.carbon.identity.governance/src/main/java/org/wso2/carbon/identity/governance/store/UserIdentityDataStore.java index 1e2c821c5b..96b5af2c15 100644 --- a/components/org.wso2.carbon.identity.governance/src/main/java/org/wso2/carbon/identity/governance/store/UserIdentityDataStore.java +++ b/components/org.wso2.carbon.identity.governance/src/main/java/org/wso2/carbon/identity/governance/store/UserIdentityDataStore.java @@ -130,6 +130,22 @@ public List getUserNamesLessThanProvidedClaimValue(String claimURI, Stri return Collections.emptyList(); } + /** + * Get the list of usernames who have the claim value more than the provided claim value for a given claim URI. + * + * @param claimURI Claim URI. + * @param claimValue Claim value. + * @param tenantId Tenant ID. + * @return List of usernames. + * @throws IdentityException Identity exception. + */ + public List getUserNamesMoreThanProvidedClaimValue(String claimURI, String claimValue, int tenantId) + throws IdentityException { + + // Return an immutable empty list if subclasses do not have any overrides. + return Collections.emptyList(); + } + /** * Get the list of usernames who have the claim value between the provided claim values for a given claim URI. * @param claimURI Claim URI. diff --git a/components/org.wso2.carbon.identity.password.expiry/pom.xml b/components/org.wso2.carbon.identity.password.expiry/pom.xml index 55afccf1e2..d4771388f0 100644 --- a/components/org.wso2.carbon.identity.password.expiry/pom.xml +++ b/components/org.wso2.carbon.identity.password.expiry/pom.xml @@ -74,6 +74,10 @@ com.google.code.findbugs annotations + + org.wso2.carbon.identity.framework + org.wso2.carbon.identity.base + org.testng @@ -178,6 +182,8 @@ version="${carbon.identity.framework.imp.pkg.version.range}", org.wso2.carbon.identity.event; version="${carbon.identity.framework.imp.pkg.version.range}", + org.wso2.carbon.identity.base; + version="${carbon.identity.framework.imp.pkg.version.range}", org.wso2.carbon.identity.governance.*; version="${identity.governance.imp.pkg.version.range}", org.wso2.carbon.identity.recovery.*; version="${identity.governance.imp.pkg.version.range}", diff --git a/components/org.wso2.carbon.identity.password.expiry/src/main/java/org/wso2/carbon/identity/password/expiry/constants/PasswordPolicyConstants.java b/components/org.wso2.carbon.identity.password.expiry/src/main/java/org/wso2/carbon/identity/password/expiry/constants/PasswordPolicyConstants.java index bfeba346be..f31d2f2597 100644 --- a/components/org.wso2.carbon.identity.password.expiry/src/main/java/org/wso2/carbon/identity/password/expiry/constants/PasswordPolicyConstants.java +++ b/components/org.wso2.carbon.identity.password.expiry/src/main/java/org/wso2/carbon/identity/password/expiry/constants/PasswordPolicyConstants.java @@ -67,7 +67,10 @@ public enum ErrorMessages { ERROR_WHILE_GENERATING_CONFIRMATION_CODE("80008", "Error while generating the confirmation code"), ERROR_PASSWORD_EXPIRED("80009", "Password has expired"), ERROR_WHILE_PASSWORD_EXPIRY_VALIDATION("80010", "Error while validating password expiry"), - ERROR_WHILE_UPDATING_PASSWORD("80011", "Error while updating the password"); + ERROR_WHILE_UPDATING_PASSWORD("80011", "Error while updating the password"), + ERROR_RETRIEVE_PASSWORD_EXPIRED_USERS_FROM_DB("80012", "" + + "Error while retrieving password expired users from database."), + ERROR_RETRIEVE_USER_STORE_MANAGER("80013", "Error while retrieving user store manager."); private final String code; private final String message; diff --git a/components/org.wso2.carbon.identity.password.expiry/src/main/java/org/wso2/carbon/identity/password/expiry/exceptions/ExpiredPasswordIdentificationClientException.java b/components/org.wso2.carbon.identity.password.expiry/src/main/java/org/wso2/carbon/identity/password/expiry/exceptions/ExpiredPasswordIdentificationClientException.java new file mode 100644 index 0000000000..6e50fb3a36 --- /dev/null +++ b/components/org.wso2.carbon.identity.password.expiry/src/main/java/org/wso2/carbon/identity/password/expiry/exceptions/ExpiredPasswordIdentificationClientException.java @@ -0,0 +1,70 @@ +/* + * Copyright (c) 2023, WSO2 LLC. (http://www.wso2.com). + * + * WSO2 LLC. licenses this file to you under the Apache License, + * Version 2.0 (the "License"); you may not use this file except + * in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +package org.wso2.carbon.identity.password.expiry.exceptions; + +/** + * Password expired user identification related client exceptions. + */ +public class ExpiredPasswordIdentificationClientException extends ExpiredPasswordIdentificationException { + + /** + * Constructor with error code and message. + * + * @param errorCode Error Code. + * @param message Message. + */ + public ExpiredPasswordIdentificationClientException(String errorCode, String message) { + + super(errorCode, message); + } + + /** + * Constructor with error code, message and description. + * + * @param errorCode Error Code. + * @param message Message. + * @param description Description. + */ + public ExpiredPasswordIdentificationClientException(String errorCode, String message, String description) { + + super(errorCode, message, description); + } + + /** + * Constructor with error code, message and cause. + * + * @param errorCode Error Code. + * @param message Error message. + * @param cause If any error occurred when accessing the tenant. + */ + public ExpiredPasswordIdentificationClientException(String errorCode, String message, Throwable cause) { + + super(message, errorCode, cause); + } + +/** + * Constructor with cause. + * + * @param cause If any error occurred when accessing the tenant. + */ + public ExpiredPasswordIdentificationClientException(Throwable cause) { + + super(cause); + } +} diff --git a/components/org.wso2.carbon.identity.password.expiry/src/main/java/org/wso2/carbon/identity/password/expiry/exceptions/ExpiredPasswordIdentificationException.java b/components/org.wso2.carbon.identity.password.expiry/src/main/java/org/wso2/carbon/identity/password/expiry/exceptions/ExpiredPasswordIdentificationException.java new file mode 100644 index 0000000000..6bf7633d8b --- /dev/null +++ b/components/org.wso2.carbon.identity.password.expiry/src/main/java/org/wso2/carbon/identity/password/expiry/exceptions/ExpiredPasswordIdentificationException.java @@ -0,0 +1,107 @@ +/* + * Copyright (c) 2023, WSO2 LLC. (http://www.wso2.com). + * + * WSO2 LLC. licenses this file to you under the Apache License, + * Version 2.0 (the "License"); you may not use this file except + * in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +package org.wso2.carbon.identity.password.expiry.exceptions; + +/** + * Base exception for password expired users identification feature. + */ +public class ExpiredPasswordIdentificationException extends Exception { + + private String errorCode; + private String description; + + /** + * Constructor with error code and message. + * + * @param errorCode Error Code. + * @param message Error message. + */ + public ExpiredPasswordIdentificationException(String errorCode, String message) { + + super(message); + this.errorCode = errorCode; + } + + /** + * Constructor with errorCode, message and description. + * + * @param errorCode Error Code. + * @param message Error Message. + * @param description Error Description. + */ + public ExpiredPasswordIdentificationException(String errorCode, String message, String description) { + + super(message); + this.errorCode = errorCode; + this.description = description; + } + + /** + * Constructor with error code, message and cause. + * + * @param errorCode Error Code. + * @param message Error message. + * @param cause If any error occurred when accessing the tenant. + */ + public ExpiredPasswordIdentificationException(String errorCode, String message, Throwable cause) { + + super(message, cause); + this.errorCode = errorCode; + } + + /** + * Constructor with cause. + * + * @param cause If any error occurred when accessing the tenant. + */ + public ExpiredPasswordIdentificationException(Throwable cause) { + + super(cause); + } + + /** + * Method to get error code. + * + * @return errorCode. + */ + public String getErrorCode() { + + return errorCode; + } + + /** + * Method to get error description. + * + * @return description. + */ + public String getDescription() { + + return description; + } + + /** + * Method to set error code. + * + * @param errorCode Error code. + */ + protected void setErrorCode(String errorCode) { + + this.errorCode = errorCode; + } +} diff --git a/components/org.wso2.carbon.identity.password.expiry/src/main/java/org/wso2/carbon/identity/password/expiry/exceptions/ExpiredPasswordIdentificationServerException.java b/components/org.wso2.carbon.identity.password.expiry/src/main/java/org/wso2/carbon/identity/password/expiry/exceptions/ExpiredPasswordIdentificationServerException.java new file mode 100644 index 0000000000..609df5d3f2 --- /dev/null +++ b/components/org.wso2.carbon.identity.password.expiry/src/main/java/org/wso2/carbon/identity/password/expiry/exceptions/ExpiredPasswordIdentificationServerException.java @@ -0,0 +1,58 @@ +/* + * Copyright (c) 2023, WSO2 LLC. (http://www.wso2.com). + * + * WSO2 LLC. licenses this file to you under the Apache License, + * Version 2.0 (the "License"); you may not use this file except + * in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +package org.wso2.carbon.identity.password.expiry.exceptions; + +/** + * Password expired user identification related server exceptions. + */ +public class ExpiredPasswordIdentificationServerException extends ExpiredPasswordIdentificationException { + + /** + * Constructor with error code and message. + * + * @param errorCode Error Code. + * @param message Message. + */ + public ExpiredPasswordIdentificationServerException(String errorCode, String message) { + + super(errorCode, message); + } + + /** + * Constructor with error code, message and cause. + * + * @param errorCode Error Code. + * @param message Error message. + * @param cause If any error occurred when accessing the tenant. + */ + public ExpiredPasswordIdentificationServerException(String errorCode, String message, Throwable cause) { + + super(errorCode, message, cause); + } + + /** + * Constructor with cause. + * + * @param cause If any error occurred when accessing the tenant. + */ + public ExpiredPasswordIdentificationServerException(Throwable cause) { + + super(cause); + } +} diff --git a/components/org.wso2.carbon.identity.password.expiry/src/main/java/org/wso2/carbon/identity/password/expiry/internal/EnforcePasswordResetComponent.java b/components/org.wso2.carbon.identity.password.expiry/src/main/java/org/wso2/carbon/identity/password/expiry/internal/EnforcePasswordResetComponent.java index 741d67904b..6c11a3951a 100644 --- a/components/org.wso2.carbon.identity.password.expiry/src/main/java/org/wso2/carbon/identity/password/expiry/internal/EnforcePasswordResetComponent.java +++ b/components/org.wso2.carbon.identity.password.expiry/src/main/java/org/wso2/carbon/identity/password/expiry/internal/EnforcePasswordResetComponent.java @@ -18,6 +18,7 @@ package org.wso2.carbon.identity.password.expiry.internal; +import org.wso2.carbon.identity.governance.service.IdentityDataStoreService; import org.wso2.carbon.identity.password.expiry.EnforcePasswordResetAuthenticationHandler; import org.wso2.carbon.identity.password.expiry.PasswordChangeHandler; import org.wso2.carbon.identity.password.expiry.PasswordExpiryConfigImpl; @@ -34,6 +35,8 @@ import org.wso2.carbon.identity.event.handler.AbstractEventHandler; import org.wso2.carbon.identity.governance.IdentityGovernanceService; import org.wso2.carbon.identity.governance.common.IdentityConnectorConfig; +import org.wso2.carbon.identity.password.expiry.services.ExpiredPasswordIdentificationService; +import org.wso2.carbon.identity.password.expiry.services.impl.ExpiredPasswordIdentificationServiceImpl; import org.wso2.carbon.user.core.service.RealmService; /** @@ -64,6 +67,8 @@ protected void activate(ComponentContext context) { new PasswordExpiryConfigImpl(), null); context.getBundleContext().registerService(PostAuthenticationHandler.class.getName(), enforcePasswordResetAuthenticationHandler, null); + bundleContext.registerService(ExpiredPasswordIdentificationService.class.getName(), + new ExpiredPasswordIdentificationServiceImpl(), null); } catch (Throwable e) { log.error("Error while activating EnforcePasswordResetAuthenticationHandler.", e); @@ -106,4 +111,21 @@ protected void unsetIdentityGovernanceService(IdentityGovernanceService idpManag EnforcePasswordResetComponentDataHolder.getInstance().setIdentityGovernanceService(null); } + + @Reference( + name = "identity.governance.service", + service = IdentityDataStoreService.class, + cardinality = ReferenceCardinality.MANDATORY, + policy = ReferencePolicy.DYNAMIC, + unbind = "unsetIdentityDataStoreService" + ) + protected void setIdentityDataStoreService(IdentityDataStoreService identityDataStoreService) { + + EnforcePasswordResetComponentDataHolder.getInstance().setIdentityDataStoreService(identityDataStoreService); + } + + protected void unsetIdentityDataStoreService(IdentityDataStoreService identityDataStoreService) { + + EnforcePasswordResetComponentDataHolder.getInstance().setIdentityDataStoreService(null); + } } diff --git a/components/org.wso2.carbon.identity.password.expiry/src/main/java/org/wso2/carbon/identity/password/expiry/internal/EnforcePasswordResetComponentDataHolder.java b/components/org.wso2.carbon.identity.password.expiry/src/main/java/org/wso2/carbon/identity/password/expiry/internal/EnforcePasswordResetComponentDataHolder.java index 036e549127..129b02b9af 100644 --- a/components/org.wso2.carbon.identity.password.expiry/src/main/java/org/wso2/carbon/identity/password/expiry/internal/EnforcePasswordResetComponentDataHolder.java +++ b/components/org.wso2.carbon.identity.password.expiry/src/main/java/org/wso2/carbon/identity/password/expiry/internal/EnforcePasswordResetComponentDataHolder.java @@ -20,6 +20,7 @@ import org.osgi.framework.BundleContext; import org.wso2.carbon.identity.governance.IdentityGovernanceService; +import org.wso2.carbon.identity.governance.service.IdentityDataStoreService; import org.wso2.carbon.user.core.service.RealmService; /** @@ -32,6 +33,7 @@ public class EnforcePasswordResetComponentDataHolder { private BundleContext bundleContext = null; private RealmService realmService = null; private IdentityGovernanceService identityGovernanceService; + private IdentityDataStoreService identityDataStoreService; private EnforcePasswordResetComponentDataHolder() { @@ -71,4 +73,13 @@ public IdentityGovernanceService getIdentityGovernanceService() { return this.identityGovernanceService; } + public IdentityDataStoreService getIdentityDataStoreService() { + + return identityDataStoreService; + } + + public void setIdentityDataStoreService(IdentityDataStoreService identityDataStoreService) { + + this.identityDataStoreService = identityDataStoreService; + } } diff --git a/components/org.wso2.carbon.identity.password.expiry/src/main/java/org/wso2/carbon/identity/password/expiry/models/PasswordExpiredUserModel.java b/components/org.wso2.carbon.identity.password.expiry/src/main/java/org/wso2/carbon/identity/password/expiry/models/PasswordExpiredUserModel.java new file mode 100644 index 0000000000..c61f5fcbe1 --- /dev/null +++ b/components/org.wso2.carbon.identity.password.expiry/src/main/java/org/wso2/carbon/identity/password/expiry/models/PasswordExpiredUserModel.java @@ -0,0 +1,83 @@ +/* + * Copyright (c) 2023, WSO2 LLC. (http://www.wso2.com). + * + * WSO2 LLC. licenses this file to you under the Apache License, + * Version 2.0 (the "License"); you may not use this file except + * in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +package org.wso2.carbon.identity.password.expiry.models; + +/** + * Object for password expired user model. + */ +public class PasswordExpiredUserModel { + + private String userId; + private String username; + private String userStoreDomain; + + /** + * Method to get userId. + * + * @return userId. + */ + public String getUserId() { + + return userId; + } + + /** + * Method to set userId. + */ + public void setUserId(String userId) { + + this.userId = userId; + } + + /** + * Method to get username. + * + * @return username. + */ + public String getUsername() { + + return username; + } + + /** + * Method to set username. + */ + public void setUsername(String username) { + + this.username = username; + } + + /** + * Method to get userStore domain. + * + * @return userStore domain. + */ + public String getUserStoreDomain() { + + return userStoreDomain; + } + + /** + * Method to set userStore domain. + */ + public void setUserStoreDomain(String userStoreDomain) { + + this.userStoreDomain = userStoreDomain; + } +} diff --git a/components/org.wso2.carbon.identity.password.expiry/src/main/java/org/wso2/carbon/identity/password/expiry/services/ExpiredPasswordIdentificationService.java b/components/org.wso2.carbon.identity.password.expiry/src/main/java/org/wso2/carbon/identity/password/expiry/services/ExpiredPasswordIdentificationService.java new file mode 100644 index 0000000000..3bbcf276c0 --- /dev/null +++ b/components/org.wso2.carbon.identity.password.expiry/src/main/java/org/wso2/carbon/identity/password/expiry/services/ExpiredPasswordIdentificationService.java @@ -0,0 +1,42 @@ +package org.wso2.carbon.identity.password.expiry.services; + + +import org.wso2.carbon.identity.password.expiry.exceptions.ExpiredPasswordIdentificationException; +import org.wso2.carbon.identity.password.expiry.models.PasswordExpiredUserModel; + +import java.time.LocalDateTime; +import java.util.List; + +/** + * Service interface for expired password identification. + */ +public interface ExpiredPasswordIdentificationService { + + /** + * Get password expired users from a specific date. + * (Example: Providing date object of 2023-01-31 as value for 'expiredAfter' parameter will return all users whose + * password will expire on or after 2023-01-31 00:00:00.000) + * + * @param expiredAfter The date after which passwords will expire. + * @param tenantDomain Tenant domain. + * @return List of password expired users. + * @throws ExpiredPasswordIdentificationException Exception when retrieving password expired users from database. + */ + List getPasswordExpiredUsersFromSpecificDate(LocalDateTime expiredAfter, String tenantDomain) + throws ExpiredPasswordIdentificationException; + + /** + * Get password expired users between specific dats. + * (Example: Providing date object of 2023-01-01 as value for 'expiredAfter' parameter and date object of + * 2023-01-31 as value for 'excludeAfter' parameter will return all users whose password will expire after + * 2023-01-01 00:00:00.000, but excluding after 2023-01-31 00:00:00.000) + * + * @param expiredAfter The date after which passwords will expire. + * @param excludeBefore The date after which the user should be excluded. + * @param tenantDomain Tenant domain. + * @return List of password expired users. + * @throws ExpiredPasswordIdentificationException Exception when retrieving password expired users from database. + */ + List getPasswordExpiredUsersBetweenSpecificDates(LocalDateTime expiredAfter, + LocalDateTime excludeBefore, String tenantDomain) throws ExpiredPasswordIdentificationException; +} diff --git a/components/org.wso2.carbon.identity.password.expiry/src/main/java/org/wso2/carbon/identity/password/expiry/services/impl/ExpiredPasswordIdentificationServiceImpl.java b/components/org.wso2.carbon.identity.password.expiry/src/main/java/org/wso2/carbon/identity/password/expiry/services/impl/ExpiredPasswordIdentificationServiceImpl.java new file mode 100644 index 0000000000..697f4e7800 --- /dev/null +++ b/components/org.wso2.carbon.identity.password.expiry/src/main/java/org/wso2/carbon/identity/password/expiry/services/impl/ExpiredPasswordIdentificationServiceImpl.java @@ -0,0 +1,190 @@ +/* + * Copyright (c) 2023, WSO2 LLC. (http://www.wso2.com). + * + * WSO2 LLC. licenses this file to you under the Apache License, + * Version 2.0 (the "License"); you may not use this file except + * in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +package org.wso2.carbon.identity.password.expiry.services.impl; + +import org.apache.commons.lang.StringUtils; +import org.wso2.carbon.identity.base.IdentityException; +import org.wso2.carbon.identity.core.util.IdentityTenantUtil; +import org.wso2.carbon.identity.core.util.IdentityUtil; +import org.wso2.carbon.identity.password.expiry.exceptions.ExpiredPasswordIdentificationException; +import org.wso2.carbon.identity.password.expiry.exceptions.ExpiredPasswordIdentificationServerException; +import org.wso2.carbon.identity.password.expiry.internal.EnforcePasswordResetComponentDataHolder; +import org.wso2.carbon.identity.password.expiry.models.PasswordExpiredUserModel; +import org.wso2.carbon.identity.password.expiry.services.ExpiredPasswordIdentificationService; +import org.wso2.carbon.identity.password.expiry.constants.PasswordPolicyConstants; +import org.wso2.carbon.identity.password.expiry.util.PasswordPolicyUtils; +import org.wso2.carbon.identity.recovery.internal.IdentityRecoveryServiceDataHolder; +import org.wso2.carbon.user.api.UserStoreException; +import org.wso2.carbon.user.core.UserRealm; +import org.wso2.carbon.user.core.UserStoreManager; +import org.wso2.carbon.user.core.common.AbstractUserStoreManager; +import org.wso2.carbon.user.core.service.RealmService; +import org.wso2.carbon.user.core.util.UserCoreUtil; + +import java.time.LocalDateTime; +import java.time.ZoneOffset; +import java.util.ArrayList; +import java.util.List; + +import static org.wso2.carbon.identity.password.expiry.util.PasswordPolicyUtils.getPasswordExpiryInDays; + +/** + * Implementation of the service interface for password expired user identification. + */ +public class ExpiredPasswordIdentificationServiceImpl implements ExpiredPasswordIdentificationService { + + @Override + public List getPasswordExpiredUsersFromSpecificDate( + LocalDateTime expiredAfter, String tenantDomain) throws ExpiredPasswordIdentificationException { + + List passwordExpiredUsers = new ArrayList<>(); + try { + int tenantId = IdentityTenantUtil.getTenantId(tenantDomain); + LocalDateTime expireDate = expiredAfter.minusDays(getPasswordExpiryInDays(tenantDomain)); + String expireDateEpoch = Long.toString(expireDate.toEpochSecond(ZoneOffset.UTC)); + + List usernames = EnforcePasswordResetComponentDataHolder.getInstance().getIdentityDataStoreService() + .getUserNamesMoreThanProvidedClaimValue( + PasswordPolicyConstants.LAST_CREDENTIAL_UPDATE_TIMESTAMP_CLAIM, expireDateEpoch, tenantId); + if (!usernames.isEmpty()) { + passwordExpiredUsers = buildPasswordExpiredUsers(usernames, tenantDomain); + } + } catch (IdentityException e) { + PasswordPolicyConstants.ErrorMessages errorEnum = + PasswordPolicyConstants.ErrorMessages.ERROR_RETRIEVE_PASSWORD_EXPIRED_USERS_FROM_DB; + throw new ExpiredPasswordIdentificationServerException(errorEnum.getCode(), errorEnum.getMessage()); + } + return passwordExpiredUsers; + } + + @Override + public List getPasswordExpiredUsersBetweenSpecificDates(LocalDateTime expiredAfter, + LocalDateTime excludeAfter, String tenantDomain) throws ExpiredPasswordIdentificationException { + + List passwordExpiredUsers = new ArrayList<>(); + int tenantId = IdentityTenantUtil.getTenantId(tenantDomain); + + try { + LocalDateTime expiredDate = expiredAfter.minusDays(getPasswordExpiryInDays(tenantDomain)); + LocalDateTime excludeDate = excludeAfter.minusDays(getPasswordExpiryInDays(tenantDomain) - 1); + + String expiredDateEpoch = Long.toString(expiredDate.toEpochSecond(ZoneOffset.UTC)); + String excludeDateEpoch = Long.toString(excludeDate.toEpochSecond(ZoneOffset.UTC)); + + List usernames = EnforcePasswordResetComponentDataHolder.getInstance().getIdentityDataStoreService() + .getUserNamesBetweenProvidedClaimValues( + PasswordPolicyConstants.LAST_CREDENTIAL_UPDATE_TIMESTAMP_CLAIM, expiredDateEpoch, + excludeDateEpoch, tenantId); + if (!usernames.isEmpty()) { + passwordExpiredUsers = buildPasswordExpiredUsers(usernames, tenantDomain); + } + } catch (IdentityException e) { + PasswordPolicyConstants.ErrorMessages errorEnum = + PasswordPolicyConstants.ErrorMessages.ERROR_RETRIEVE_PASSWORD_EXPIRED_USERS_FROM_DB; + throw new ExpiredPasswordIdentificationServerException(errorEnum.getCode(), errorEnum.getMessage()); + } + return passwordExpiredUsers; + } + + /** + * Build a list of password expired users. + * + * @param usernames list of usernames. + * @return list of password expired user objects. + */ + private List buildPasswordExpiredUsers(List usernames, String tenantDomain) + throws ExpiredPasswordIdentificationServerException { + + List passwordExpiredUsers = new ArrayList<>(); + for (String username : usernames) { + String userId = fetchUserId(username, tenantDomain); + if (StringUtils.isNotBlank(userId)) { + PasswordExpiredUserModel passwordExpiredUser = new PasswordExpiredUserModel(); + passwordExpiredUser.setUsername(username); + passwordExpiredUser.setUserId(userId); + passwordExpiredUser.setUserStoreDomain(UserCoreUtil.extractDomainFromName(username)); + passwordExpiredUsers.add(passwordExpiredUser); + } + } + return passwordExpiredUsers; + } + + /** + * Fetch UUID of the user. + * + * @param username username of the user. + * @return UUID of the user + */ + public String fetchUserId(String username, String tenantDomain) + throws ExpiredPasswordIdentificationServerException { + + UserStoreManager userStoreManager = getUserStoreManager( + UserCoreUtil.extractDomainFromName(username), tenantDomain); + try { + if (userStoreManager instanceof AbstractUserStoreManager) { + return ((AbstractUserStoreManager) userStoreManager).getUserIDFromUserName(username); + } + } catch (UserStoreException e) { + PasswordPolicyConstants.ErrorMessages errorEnum = + PasswordPolicyConstants.ErrorMessages.ERROR_WHILE_GETTING_USERID_FOR_USERNAME; + throw new ExpiredPasswordIdentificationServerException(errorEnum.getCode(), errorEnum.getMessage()); + } + return null; + } + + /** + * Get user store manager. + * + * @return UserStoreManager. + * @throws ExpiredPasswordIdentificationServerException Exception when getting user store manager. + */ + private UserStoreManager getUserStoreManager(String userStoreDomainName, String tenantDomain) + throws ExpiredPasswordIdentificationServerException { + + try { + RealmService realmService = IdentityRecoveryServiceDataHolder.getInstance().getRealmService(); + UserRealm realm; + realm = (UserRealm) realmService.getTenantUserRealm(IdentityTenantUtil.getTenantId(tenantDomain)); + + if (realm == null) { + PasswordPolicyConstants.ErrorMessages errorEnum = + PasswordPolicyConstants.ErrorMessages.ERROR_RETRIEVE_USER_STORE_MANAGER; + throw new ExpiredPasswordIdentificationServerException(errorEnum.getCode(), errorEnum.getMessage()); + } + if (realm.getUserStoreManager() == null) { + PasswordPolicyConstants.ErrorMessages errorEnum = + PasswordPolicyConstants.ErrorMessages.ERROR_RETRIEVE_USER_STORE_MANAGER; + throw new ExpiredPasswordIdentificationServerException(errorEnum.getCode(), errorEnum.getMessage()); + } + if (IdentityUtil.getPrimaryDomainName().equals(userStoreDomainName)) { + return realm.getUserStoreManager(); + } + if (realm.getUserStoreManager().getSecondaryUserStoreManager(userStoreDomainName) != null) { + return realm.getUserStoreManager().getSecondaryUserStoreManager(userStoreDomainName); + } + PasswordPolicyConstants.ErrorMessages errorEnum = + PasswordPolicyConstants.ErrorMessages.ERROR_RETRIEVE_USER_STORE_MANAGER; + throw new ExpiredPasswordIdentificationServerException(errorEnum.getCode(), errorEnum.getMessage()); + } catch (UserStoreException e) { + PasswordPolicyConstants.ErrorMessages errorEnum = + PasswordPolicyConstants.ErrorMessages.ERROR_RETRIEVE_USER_STORE_MANAGER; + throw new ExpiredPasswordIdentificationServerException(errorEnum.getCode(), errorEnum.getMessage()); + } + } +} diff --git a/components/org.wso2.carbon.identity.password.expiry/src/main/java/org/wso2/carbon/identity/password/expiry/util/PasswordPolicyUtils.java b/components/org.wso2.carbon.identity.password.expiry/src/main/java/org/wso2/carbon/identity/password/expiry/util/PasswordPolicyUtils.java index 4adac3bb82..cde691f135 100644 --- a/components/org.wso2.carbon.identity.password.expiry/src/main/java/org/wso2/carbon/identity/password/expiry/util/PasswordPolicyUtils.java +++ b/components/org.wso2.carbon.identity.password.expiry/src/main/java/org/wso2/carbon/identity/password/expiry/util/PasswordPolicyUtils.java @@ -165,7 +165,7 @@ private static UserRealm getUserRealm(String tenantDomain) throws PostAuthentica * @return The password expiry in days. * @throws PostAuthenticationFailedException If an error occurs while retrieving the password expiry configuration. */ - private static int getPasswordExpiryInDays(String tenantDomain) throws PostAuthenticationFailedException { + public static int getPasswordExpiryInDays(String tenantDomain) throws PostAuthenticationFailedException { try { String passwordExpiryInDaysConfiguredValue = getPasswordExpiryConfig(tenantDomain, From 34f0424b61d1a55134fd7454520f0d25ddda7416 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 1 Sep 2023 04:02:19 +0000 Subject: [PATCH 06/31] [WSO2 Release] [Jenkins #2529] [Release 1.8.61] prepare release v1.8.61 --- .../pom.xml | 2 +- .../org.wso2.carbon.identity.api.user.governance/pom.xml | 4 ++-- components/org.wso2.carbon.identity.api.user.recovery/pom.xml | 4 ++-- .../org.wso2.carbon.identity.auth.attribute.handler/pom.xml | 2 +- components/org.wso2.carbon.identity.captcha/pom.xml | 2 +- components/org.wso2.carbon.identity.governance/pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../org.wso2.carbon.identity.multi.attribute.login/pom.xml | 2 +- components/org.wso2.carbon.identity.password.expiry/pom.xml | 2 +- components/org.wso2.carbon.identity.password.history/pom.xml | 2 +- components/org.wso2.carbon.identity.password.policy/pom.xml | 2 +- components/org.wso2.carbon.identity.piicontroller/pom.xml | 2 +- components/org.wso2.carbon.identity.recovery.endpoint/pom.xml | 2 +- components/org.wso2.carbon.identity.recovery.ui/pom.xml | 2 +- components/org.wso2.carbon.identity.recovery/pom.xml | 2 +- .../org.wso2.carbon.identity.tenant.resource.manager/pom.xml | 2 +- components/org.wso2.carbon.identity.user.endpoint/pom.xml | 2 +- components/org.wso2.carbon.identity.user.export.core/pom.xml | 2 +- components/org.wso2.carbon.identity.user.rename.core/pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../org.wso2.carbon.identity.captcha.server.feature/pom.xml | 2 +- features/org.wso2.carbon.identity.governance.feature/pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../org.wso2.carbon.identity.recovery.server.feature/pom.xml | 2 +- features/org.wso2.carbon.identity.recovery.ui.feature/pom.xml | 2 +- .../pom.xml | 2 +- features/org.wso2.carbon.identity.user.server.feature/pom.xml | 2 +- pom.xml | 4 ++-- .../identity/org.wso2.carbon.identity.recovery.stub/pom.xml | 2 +- service-stubs/identity/pom.xml | 2 +- 39 files changed, 42 insertions(+), 42 deletions(-) diff --git a/components/org.wso2.carbon.identity.account.suspension.notification.task/pom.xml b/components/org.wso2.carbon.identity.account.suspension.notification.task/pom.xml index 05ca4da425..b37ba09f45 100644 --- a/components/org.wso2.carbon.identity.account.suspension.notification.task/pom.xml +++ b/components/org.wso2.carbon.identity.account.suspension.notification.task/pom.xml @@ -20,7 +20,7 @@ identity-governance org.wso2.carbon.identity.governance - 1.8.61-SNAPSHOT + 1.8.61 ../../pom.xml diff --git a/components/org.wso2.carbon.identity.api.user.governance/pom.xml b/components/org.wso2.carbon.identity.api.user.governance/pom.xml index c94b4ce8e9..85e3fa4af7 100644 --- a/components/org.wso2.carbon.identity.api.user.governance/pom.xml +++ b/components/org.wso2.carbon.identity.api.user.governance/pom.xml @@ -23,12 +23,12 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.61-SNAPSHOT + 1.8.61 ../.. org.wso2.carbon.identity.api.user.governance - 1.8.61-SNAPSHOT + 1.8.61 jar WSO2 Carbon - User Rest Governance API WSO2 Carbon - User Rest Governance API diff --git a/components/org.wso2.carbon.identity.api.user.recovery/pom.xml b/components/org.wso2.carbon.identity.api.user.recovery/pom.xml index 1854335571..31a7828e16 100644 --- a/components/org.wso2.carbon.identity.api.user.recovery/pom.xml +++ b/components/org.wso2.carbon.identity.api.user.recovery/pom.xml @@ -23,12 +23,12 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.61-SNAPSHOT + 1.8.61 ../.. org.wso2.carbon.identity.api.user.recovery - 1.8.61-SNAPSHOT + 1.8.61 jar WSO2 Carbon - Identity Management Recovery Rest API WSO2 Carbon - Identity Management Recovery Rest API diff --git a/components/org.wso2.carbon.identity.auth.attribute.handler/pom.xml b/components/org.wso2.carbon.identity.auth.attribute.handler/pom.xml index a2f90fa87f..8c7ab5c764 100644 --- a/components/org.wso2.carbon.identity.auth.attribute.handler/pom.xml +++ b/components/org.wso2.carbon.identity.auth.attribute.handler/pom.xml @@ -22,7 +22,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.61-SNAPSHOT + 1.8.61 ../../pom.xml diff --git a/components/org.wso2.carbon.identity.captcha/pom.xml b/components/org.wso2.carbon.identity.captcha/pom.xml index 4d725bbcfe..1b496950a1 100644 --- a/components/org.wso2.carbon.identity.captcha/pom.xml +++ b/components/org.wso2.carbon.identity.captcha/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.61-SNAPSHOT + 1.8.61 ../../pom.xml diff --git a/components/org.wso2.carbon.identity.governance/pom.xml b/components/org.wso2.carbon.identity.governance/pom.xml index fa0c905479..117b80f86f 100644 --- a/components/org.wso2.carbon.identity.governance/pom.xml +++ b/components/org.wso2.carbon.identity.governance/pom.xml @@ -18,7 +18,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.61-SNAPSHOT + 1.8.61 ../../pom.xml diff --git a/components/org.wso2.carbon.identity.idle.account.identification/pom.xml b/components/org.wso2.carbon.identity.idle.account.identification/pom.xml index 98b843040f..8f945ef9fa 100644 --- a/components/org.wso2.carbon.identity.idle.account.identification/pom.xml +++ b/components/org.wso2.carbon.identity.idle.account.identification/pom.xml @@ -18,7 +18,7 @@ identity-governance org.wso2.carbon.identity.governance - 1.8.61-SNAPSHOT + 1.8.61 ../../pom.xml 4.0.0 diff --git a/components/org.wso2.carbon.identity.multi.attribute.login/org.wso2.carbon.identity.multi.attribute.login.resolver.regex/pom.xml b/components/org.wso2.carbon.identity.multi.attribute.login/org.wso2.carbon.identity.multi.attribute.login.resolver.regex/pom.xml index b2288317d3..163ee239b2 100644 --- a/components/org.wso2.carbon.identity.multi.attribute.login/org.wso2.carbon.identity.multi.attribute.login.resolver.regex/pom.xml +++ b/components/org.wso2.carbon.identity.multi.attribute.login/org.wso2.carbon.identity.multi.attribute.login.resolver.regex/pom.xml @@ -21,7 +21,7 @@ identity-governance org.wso2.carbon.identity.governance - 1.8.61-SNAPSHOT + 1.8.61 ../../../pom.xml 4.0.0 diff --git a/components/org.wso2.carbon.identity.multi.attribute.login/org.wso2.carbon.identity.multi.attribute.login.service/pom.xml b/components/org.wso2.carbon.identity.multi.attribute.login/org.wso2.carbon.identity.multi.attribute.login.service/pom.xml index a9ef166527..1f9aef2cf9 100644 --- a/components/org.wso2.carbon.identity.multi.attribute.login/org.wso2.carbon.identity.multi.attribute.login.service/pom.xml +++ b/components/org.wso2.carbon.identity.multi.attribute.login/org.wso2.carbon.identity.multi.attribute.login.service/pom.xml @@ -21,7 +21,7 @@ identity-governance org.wso2.carbon.identity.governance - 1.8.61-SNAPSHOT + 1.8.61 ../../../pom.xml 4.0.0 diff --git a/components/org.wso2.carbon.identity.multi.attribute.login/pom.xml b/components/org.wso2.carbon.identity.multi.attribute.login/pom.xml index 7a2179d3d9..41808cc3fc 100644 --- a/components/org.wso2.carbon.identity.multi.attribute.login/pom.xml +++ b/components/org.wso2.carbon.identity.multi.attribute.login/pom.xml @@ -21,7 +21,7 @@ identity-governance org.wso2.carbon.identity.governance - 1.8.61-SNAPSHOT + 1.8.61 ../../pom.xml 4.0.0 diff --git a/components/org.wso2.carbon.identity.password.expiry/pom.xml b/components/org.wso2.carbon.identity.password.expiry/pom.xml index 621f6a96e1..434d8f3c6c 100644 --- a/components/org.wso2.carbon.identity.password.expiry/pom.xml +++ b/components/org.wso2.carbon.identity.password.expiry/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.61-SNAPSHOT + 1.8.61 ../../pom.xml diff --git a/components/org.wso2.carbon.identity.password.history/pom.xml b/components/org.wso2.carbon.identity.password.history/pom.xml index 85b7236473..6638cd8b55 100644 --- a/components/org.wso2.carbon.identity.password.history/pom.xml +++ b/components/org.wso2.carbon.identity.password.history/pom.xml @@ -18,7 +18,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.61-SNAPSHOT + 1.8.61 ../../pom.xml diff --git a/components/org.wso2.carbon.identity.password.policy/pom.xml b/components/org.wso2.carbon.identity.password.policy/pom.xml index 6b3107eca0..fbd562a835 100644 --- a/components/org.wso2.carbon.identity.password.policy/pom.xml +++ b/components/org.wso2.carbon.identity.password.policy/pom.xml @@ -18,7 +18,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.61-SNAPSHOT + 1.8.61 ../../pom.xml diff --git a/components/org.wso2.carbon.identity.piicontroller/pom.xml b/components/org.wso2.carbon.identity.piicontroller/pom.xml index 95f89bd977..41e765381c 100644 --- a/components/org.wso2.carbon.identity.piicontroller/pom.xml +++ b/components/org.wso2.carbon.identity.piicontroller/pom.xml @@ -19,7 +19,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.61-SNAPSHOT + 1.8.61 ../../pom.xml diff --git a/components/org.wso2.carbon.identity.recovery.endpoint/pom.xml b/components/org.wso2.carbon.identity.recovery.endpoint/pom.xml index 4f78a26c73..3b3044699d 100644 --- a/components/org.wso2.carbon.identity.recovery.endpoint/pom.xml +++ b/components/org.wso2.carbon.identity.recovery.endpoint/pom.xml @@ -5,7 +5,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.61-SNAPSHOT + 1.8.61 ../../pom.xml diff --git a/components/org.wso2.carbon.identity.recovery.ui/pom.xml b/components/org.wso2.carbon.identity.recovery.ui/pom.xml index 163a322d51..da3b077fbf 100644 --- a/components/org.wso2.carbon.identity.recovery.ui/pom.xml +++ b/components/org.wso2.carbon.identity.recovery.ui/pom.xml @@ -18,7 +18,7 @@ identity-governance org.wso2.carbon.identity.governance - 1.8.61-SNAPSHOT + 1.8.61 ../../pom.xml diff --git a/components/org.wso2.carbon.identity.recovery/pom.xml b/components/org.wso2.carbon.identity.recovery/pom.xml index 10a7bf0c7b..5729e84b04 100644 --- a/components/org.wso2.carbon.identity.recovery/pom.xml +++ b/components/org.wso2.carbon.identity.recovery/pom.xml @@ -18,7 +18,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.61-SNAPSHOT + 1.8.61 ../../pom.xml diff --git a/components/org.wso2.carbon.identity.tenant.resource.manager/pom.xml b/components/org.wso2.carbon.identity.tenant.resource.manager/pom.xml index 16fe690149..ea19e89870 100644 --- a/components/org.wso2.carbon.identity.tenant.resource.manager/pom.xml +++ b/components/org.wso2.carbon.identity.tenant.resource.manager/pom.xml @@ -22,7 +22,7 @@ identity-governance org.wso2.carbon.identity.governance - 1.8.61-SNAPSHOT + 1.8.61 ../../pom.xml diff --git a/components/org.wso2.carbon.identity.user.endpoint/pom.xml b/components/org.wso2.carbon.identity.user.endpoint/pom.xml index 9188564f60..6d620b45ed 100644 --- a/components/org.wso2.carbon.identity.user.endpoint/pom.xml +++ b/components/org.wso2.carbon.identity.user.endpoint/pom.xml @@ -5,7 +5,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.61-SNAPSHOT + 1.8.61 ../../pom.xml diff --git a/components/org.wso2.carbon.identity.user.export.core/pom.xml b/components/org.wso2.carbon.identity.user.export.core/pom.xml index 49c95c8965..3ddf303e72 100644 --- a/components/org.wso2.carbon.identity.user.export.core/pom.xml +++ b/components/org.wso2.carbon.identity.user.export.core/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.61-SNAPSHOT + 1.8.61 ../../pom.xml diff --git a/components/org.wso2.carbon.identity.user.rename.core/pom.xml b/components/org.wso2.carbon.identity.user.rename.core/pom.xml index b834cec856..b7bc0d874c 100644 --- a/components/org.wso2.carbon.identity.user.rename.core/pom.xml +++ b/components/org.wso2.carbon.identity.user.rename.core/pom.xml @@ -20,7 +20,7 @@ identity-governance org.wso2.carbon.identity.governance - 1.8.61-SNAPSHOT + 1.8.61 ../../pom.xml 4.0.0 diff --git a/features/org.wso2.carbon.identity.account.suspension.notification.task.server.feature/pom.xml b/features/org.wso2.carbon.identity.account.suspension.notification.task.server.feature/pom.xml index 34faff5acc..3cde0e879d 100644 --- a/features/org.wso2.carbon.identity.account.suspension.notification.task.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.account.suspension.notification.task.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance ../../pom.xml - 1.8.61-SNAPSHOT + 1.8.61 4.0.0 diff --git a/features/org.wso2.carbon.identity.auth.attribute.handler.server.feature/pom.xml b/features/org.wso2.carbon.identity.auth.attribute.handler.server.feature/pom.xml index d8d7561490..4df125c531 100644 --- a/features/org.wso2.carbon.identity.auth.attribute.handler.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.auth.attribute.handler.server.feature/pom.xml @@ -22,7 +22,7 @@ org.wso2.carbon.identity.governance identity-governance ../../pom.xml - 1.8.61-SNAPSHOT + 1.8.61 4.0.0 diff --git a/features/org.wso2.carbon.identity.captcha.server.feature/pom.xml b/features/org.wso2.carbon.identity.captcha.server.feature/pom.xml index 4a98d2bd37..e0c8861335 100644 --- a/features/org.wso2.carbon.identity.captcha.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.captcha.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance ../../pom.xml - 1.8.61-SNAPSHOT + 1.8.61 4.0.0 diff --git a/features/org.wso2.carbon.identity.governance.feature/pom.xml b/features/org.wso2.carbon.identity.governance.feature/pom.xml index acf3054135..0df7e5d7a0 100644 --- a/features/org.wso2.carbon.identity.governance.feature/pom.xml +++ b/features/org.wso2.carbon.identity.governance.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.61-SNAPSHOT + 1.8.61 ../../pom.xml diff --git a/features/org.wso2.carbon.identity.governance.server.feature/pom.xml b/features/org.wso2.carbon.identity.governance.server.feature/pom.xml index 201f9562b4..748a1b5ab6 100644 --- a/features/org.wso2.carbon.identity.governance.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.governance.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance ../../pom.xml - 1.8.61-SNAPSHOT + 1.8.61 4.0.0 diff --git a/features/org.wso2.carbon.identity.idle.account.identification.server.feature/pom.xml b/features/org.wso2.carbon.identity.idle.account.identification.server.feature/pom.xml index f80faed8be..2efe86305f 100644 --- a/features/org.wso2.carbon.identity.idle.account.identification.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.idle.account.identification.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance ../../pom.xml - 1.8.61-SNAPSHOT + 1.8.61 4.0.0 diff --git a/features/org.wso2.carbon.identity.multi.attribute.login.service.server.feature/pom.xml b/features/org.wso2.carbon.identity.multi.attribute.login.service.server.feature/pom.xml index e5e2f25a92..707fdc2823 100644 --- a/features/org.wso2.carbon.identity.multi.attribute.login.service.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.multi.attribute.login.service.server.feature/pom.xml @@ -3,7 +3,7 @@ identity-governance org.wso2.carbon.identity.governance - 1.8.61-SNAPSHOT + 1.8.61 ../../pom.xml 4.0.0 diff --git a/features/org.wso2.carbon.identity.password.expiry.server.feature/pom.xml b/features/org.wso2.carbon.identity.password.expiry.server.feature/pom.xml index ced26989fc..5165ee324c 100644 --- a/features/org.wso2.carbon.identity.password.expiry.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.password.expiry.server.feature/pom.xml @@ -22,7 +22,7 @@ org.wso2.carbon.identity.governance identity-governance ../../pom.xml - 1.8.61-SNAPSHOT + 1.8.61 4.0.0 diff --git a/features/org.wso2.carbon.identity.password.history.server.feature/pom.xml b/features/org.wso2.carbon.identity.password.history.server.feature/pom.xml index a700131900..c949c0b675 100644 --- a/features/org.wso2.carbon.identity.password.history.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.password.history.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance ../../pom.xml - 1.8.61-SNAPSHOT + 1.8.61 4.0.0 diff --git a/features/org.wso2.carbon.identity.password.policy.server.feature/pom.xml b/features/org.wso2.carbon.identity.password.policy.server.feature/pom.xml index 0134be32a2..336d64e70c 100644 --- a/features/org.wso2.carbon.identity.password.policy.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.password.policy.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance ../../pom.xml - 1.8.61-SNAPSHOT + 1.8.61 4.0.0 diff --git a/features/org.wso2.carbon.identity.piicontroller.server.feature/pom.xml b/features/org.wso2.carbon.identity.piicontroller.server.feature/pom.xml index efda83b6a2..0eb64bf3df 100644 --- a/features/org.wso2.carbon.identity.piicontroller.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.piicontroller.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance ../../pom.xml - 1.8.61-SNAPSHOT + 1.8.61 4.0.0 diff --git a/features/org.wso2.carbon.identity.recovery.server.feature/pom.xml b/features/org.wso2.carbon.identity.recovery.server.feature/pom.xml index 72b8d40b26..00a62c4290 100644 --- a/features/org.wso2.carbon.identity.recovery.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.recovery.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance ../../pom.xml - 1.8.61-SNAPSHOT + 1.8.61 4.0.0 diff --git a/features/org.wso2.carbon.identity.recovery.ui.feature/pom.xml b/features/org.wso2.carbon.identity.recovery.ui.feature/pom.xml index 0458dffae9..a56c81aa7b 100644 --- a/features/org.wso2.carbon.identity.recovery.ui.feature/pom.xml +++ b/features/org.wso2.carbon.identity.recovery.ui.feature/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.61-SNAPSHOT + 1.8.61 ../../pom.xml diff --git a/features/org.wso2.carbon.identity.tenant.resource.manager.feature/pom.xml b/features/org.wso2.carbon.identity.tenant.resource.manager.feature/pom.xml index f7b18bac3a..faa98c18c9 100644 --- a/features/org.wso2.carbon.identity.tenant.resource.manager.feature/pom.xml +++ b/features/org.wso2.carbon.identity.tenant.resource.manager.feature/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.61-SNAPSHOT + 1.8.61 ../../pom.xml diff --git a/features/org.wso2.carbon.identity.user.server.feature/pom.xml b/features/org.wso2.carbon.identity.user.server.feature/pom.xml index 9b4cc7ccf0..7f922cf8a7 100644 --- a/features/org.wso2.carbon.identity.user.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.user.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance ../../pom.xml - 1.8.61-SNAPSHOT + 1.8.61 4.0.0 diff --git a/pom.xml b/pom.xml index 7032e29831..c7ce6b83d0 100644 --- a/pom.xml +++ b/pom.xml @@ -18,7 +18,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.61-SNAPSHOT + 1.8.61 4.0.0 pom WSO2 Carbon - Governance Module @@ -37,7 +37,7 @@ https://github.com/wso2-extensions/identity-governance.git scm:git:https://github.com/wso2-extensions/identity-governance.git scm:git:https://github.com/wso2-extensions/identity-governance.git - v1.1.0-SNAPSHOT + v1.8.61 diff --git a/service-stubs/identity/org.wso2.carbon.identity.recovery.stub/pom.xml b/service-stubs/identity/org.wso2.carbon.identity.recovery.stub/pom.xml index 621b5f1980..288f5adfc7 100644 --- a/service-stubs/identity/org.wso2.carbon.identity.recovery.stub/pom.xml +++ b/service-stubs/identity/org.wso2.carbon.identity.recovery.stub/pom.xml @@ -19,7 +19,7 @@ org.wso2.carbon.identity.governance carbon-service-stubs - 1.8.61-SNAPSHOT + 1.8.61 ../pom.xml diff --git a/service-stubs/identity/pom.xml b/service-stubs/identity/pom.xml index 6d0bd198d7..1b8ea25d7a 100644 --- a/service-stubs/identity/pom.xml +++ b/service-stubs/identity/pom.xml @@ -19,7 +19,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.61-SNAPSHOT + 1.8.61 ../../pom.xml From eacd764c8182adddde24f32164a9fe6b5b991a38 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 1 Sep 2023 04:02:21 +0000 Subject: [PATCH 07/31] [WSO2 Release] [Jenkins #2529] [Release 1.8.61] prepare for next development iteration --- .../pom.xml | 2 +- .../org.wso2.carbon.identity.api.user.governance/pom.xml | 4 ++-- components/org.wso2.carbon.identity.api.user.recovery/pom.xml | 4 ++-- .../org.wso2.carbon.identity.auth.attribute.handler/pom.xml | 2 +- components/org.wso2.carbon.identity.captcha/pom.xml | 2 +- components/org.wso2.carbon.identity.governance/pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../org.wso2.carbon.identity.multi.attribute.login/pom.xml | 2 +- components/org.wso2.carbon.identity.password.expiry/pom.xml | 2 +- components/org.wso2.carbon.identity.password.history/pom.xml | 2 +- components/org.wso2.carbon.identity.password.policy/pom.xml | 2 +- components/org.wso2.carbon.identity.piicontroller/pom.xml | 2 +- components/org.wso2.carbon.identity.recovery.endpoint/pom.xml | 2 +- components/org.wso2.carbon.identity.recovery.ui/pom.xml | 2 +- components/org.wso2.carbon.identity.recovery/pom.xml | 2 +- .../org.wso2.carbon.identity.tenant.resource.manager/pom.xml | 2 +- components/org.wso2.carbon.identity.user.endpoint/pom.xml | 2 +- components/org.wso2.carbon.identity.user.export.core/pom.xml | 2 +- components/org.wso2.carbon.identity.user.rename.core/pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../org.wso2.carbon.identity.captcha.server.feature/pom.xml | 2 +- features/org.wso2.carbon.identity.governance.feature/pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../org.wso2.carbon.identity.recovery.server.feature/pom.xml | 2 +- features/org.wso2.carbon.identity.recovery.ui.feature/pom.xml | 2 +- .../pom.xml | 2 +- features/org.wso2.carbon.identity.user.server.feature/pom.xml | 2 +- pom.xml | 4 ++-- .../identity/org.wso2.carbon.identity.recovery.stub/pom.xml | 2 +- service-stubs/identity/pom.xml | 2 +- 39 files changed, 42 insertions(+), 42 deletions(-) diff --git a/components/org.wso2.carbon.identity.account.suspension.notification.task/pom.xml b/components/org.wso2.carbon.identity.account.suspension.notification.task/pom.xml index b37ba09f45..ecadaf98c2 100644 --- a/components/org.wso2.carbon.identity.account.suspension.notification.task/pom.xml +++ b/components/org.wso2.carbon.identity.account.suspension.notification.task/pom.xml @@ -20,7 +20,7 @@ identity-governance org.wso2.carbon.identity.governance - 1.8.61 + 1.8.62-SNAPSHOT ../../pom.xml diff --git a/components/org.wso2.carbon.identity.api.user.governance/pom.xml b/components/org.wso2.carbon.identity.api.user.governance/pom.xml index 85e3fa4af7..1f259902e9 100644 --- a/components/org.wso2.carbon.identity.api.user.governance/pom.xml +++ b/components/org.wso2.carbon.identity.api.user.governance/pom.xml @@ -23,12 +23,12 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.61 + 1.8.62-SNAPSHOT ../.. org.wso2.carbon.identity.api.user.governance - 1.8.61 + 1.8.62-SNAPSHOT jar WSO2 Carbon - User Rest Governance API WSO2 Carbon - User Rest Governance API diff --git a/components/org.wso2.carbon.identity.api.user.recovery/pom.xml b/components/org.wso2.carbon.identity.api.user.recovery/pom.xml index 31a7828e16..7d6e328810 100644 --- a/components/org.wso2.carbon.identity.api.user.recovery/pom.xml +++ b/components/org.wso2.carbon.identity.api.user.recovery/pom.xml @@ -23,12 +23,12 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.61 + 1.8.62-SNAPSHOT ../.. org.wso2.carbon.identity.api.user.recovery - 1.8.61 + 1.8.62-SNAPSHOT jar WSO2 Carbon - Identity Management Recovery Rest API WSO2 Carbon - Identity Management Recovery Rest API diff --git a/components/org.wso2.carbon.identity.auth.attribute.handler/pom.xml b/components/org.wso2.carbon.identity.auth.attribute.handler/pom.xml index 8c7ab5c764..40aaebf580 100644 --- a/components/org.wso2.carbon.identity.auth.attribute.handler/pom.xml +++ b/components/org.wso2.carbon.identity.auth.attribute.handler/pom.xml @@ -22,7 +22,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.61 + 1.8.62-SNAPSHOT ../../pom.xml diff --git a/components/org.wso2.carbon.identity.captcha/pom.xml b/components/org.wso2.carbon.identity.captcha/pom.xml index 1b496950a1..f32416f2d5 100644 --- a/components/org.wso2.carbon.identity.captcha/pom.xml +++ b/components/org.wso2.carbon.identity.captcha/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.61 + 1.8.62-SNAPSHOT ../../pom.xml diff --git a/components/org.wso2.carbon.identity.governance/pom.xml b/components/org.wso2.carbon.identity.governance/pom.xml index 117b80f86f..3d2d09e1d2 100644 --- a/components/org.wso2.carbon.identity.governance/pom.xml +++ b/components/org.wso2.carbon.identity.governance/pom.xml @@ -18,7 +18,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.61 + 1.8.62-SNAPSHOT ../../pom.xml diff --git a/components/org.wso2.carbon.identity.idle.account.identification/pom.xml b/components/org.wso2.carbon.identity.idle.account.identification/pom.xml index 8f945ef9fa..a7bd3844c1 100644 --- a/components/org.wso2.carbon.identity.idle.account.identification/pom.xml +++ b/components/org.wso2.carbon.identity.idle.account.identification/pom.xml @@ -18,7 +18,7 @@ identity-governance org.wso2.carbon.identity.governance - 1.8.61 + 1.8.62-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/components/org.wso2.carbon.identity.multi.attribute.login/org.wso2.carbon.identity.multi.attribute.login.resolver.regex/pom.xml b/components/org.wso2.carbon.identity.multi.attribute.login/org.wso2.carbon.identity.multi.attribute.login.resolver.regex/pom.xml index 163ee239b2..a6aaaa35f7 100644 --- a/components/org.wso2.carbon.identity.multi.attribute.login/org.wso2.carbon.identity.multi.attribute.login.resolver.regex/pom.xml +++ b/components/org.wso2.carbon.identity.multi.attribute.login/org.wso2.carbon.identity.multi.attribute.login.resolver.regex/pom.xml @@ -21,7 +21,7 @@ identity-governance org.wso2.carbon.identity.governance - 1.8.61 + 1.8.62-SNAPSHOT ../../../pom.xml 4.0.0 diff --git a/components/org.wso2.carbon.identity.multi.attribute.login/org.wso2.carbon.identity.multi.attribute.login.service/pom.xml b/components/org.wso2.carbon.identity.multi.attribute.login/org.wso2.carbon.identity.multi.attribute.login.service/pom.xml index 1f9aef2cf9..8c987eb4c3 100644 --- a/components/org.wso2.carbon.identity.multi.attribute.login/org.wso2.carbon.identity.multi.attribute.login.service/pom.xml +++ b/components/org.wso2.carbon.identity.multi.attribute.login/org.wso2.carbon.identity.multi.attribute.login.service/pom.xml @@ -21,7 +21,7 @@ identity-governance org.wso2.carbon.identity.governance - 1.8.61 + 1.8.62-SNAPSHOT ../../../pom.xml 4.0.0 diff --git a/components/org.wso2.carbon.identity.multi.attribute.login/pom.xml b/components/org.wso2.carbon.identity.multi.attribute.login/pom.xml index 41808cc3fc..8459d90457 100644 --- a/components/org.wso2.carbon.identity.multi.attribute.login/pom.xml +++ b/components/org.wso2.carbon.identity.multi.attribute.login/pom.xml @@ -21,7 +21,7 @@ identity-governance org.wso2.carbon.identity.governance - 1.8.61 + 1.8.62-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/components/org.wso2.carbon.identity.password.expiry/pom.xml b/components/org.wso2.carbon.identity.password.expiry/pom.xml index 434d8f3c6c..893a1ab93f 100644 --- a/components/org.wso2.carbon.identity.password.expiry/pom.xml +++ b/components/org.wso2.carbon.identity.password.expiry/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.61 + 1.8.62-SNAPSHOT ../../pom.xml diff --git a/components/org.wso2.carbon.identity.password.history/pom.xml b/components/org.wso2.carbon.identity.password.history/pom.xml index 6638cd8b55..9afa5bea59 100644 --- a/components/org.wso2.carbon.identity.password.history/pom.xml +++ b/components/org.wso2.carbon.identity.password.history/pom.xml @@ -18,7 +18,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.61 + 1.8.62-SNAPSHOT ../../pom.xml diff --git a/components/org.wso2.carbon.identity.password.policy/pom.xml b/components/org.wso2.carbon.identity.password.policy/pom.xml index fbd562a835..83f672f6b0 100644 --- a/components/org.wso2.carbon.identity.password.policy/pom.xml +++ b/components/org.wso2.carbon.identity.password.policy/pom.xml @@ -18,7 +18,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.61 + 1.8.62-SNAPSHOT ../../pom.xml diff --git a/components/org.wso2.carbon.identity.piicontroller/pom.xml b/components/org.wso2.carbon.identity.piicontroller/pom.xml index 41e765381c..d5e51d6cdf 100644 --- a/components/org.wso2.carbon.identity.piicontroller/pom.xml +++ b/components/org.wso2.carbon.identity.piicontroller/pom.xml @@ -19,7 +19,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.61 + 1.8.62-SNAPSHOT ../../pom.xml diff --git a/components/org.wso2.carbon.identity.recovery.endpoint/pom.xml b/components/org.wso2.carbon.identity.recovery.endpoint/pom.xml index 3b3044699d..3c6f80d26c 100644 --- a/components/org.wso2.carbon.identity.recovery.endpoint/pom.xml +++ b/components/org.wso2.carbon.identity.recovery.endpoint/pom.xml @@ -5,7 +5,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.61 + 1.8.62-SNAPSHOT ../../pom.xml diff --git a/components/org.wso2.carbon.identity.recovery.ui/pom.xml b/components/org.wso2.carbon.identity.recovery.ui/pom.xml index da3b077fbf..6d7aad29d1 100644 --- a/components/org.wso2.carbon.identity.recovery.ui/pom.xml +++ b/components/org.wso2.carbon.identity.recovery.ui/pom.xml @@ -18,7 +18,7 @@ identity-governance org.wso2.carbon.identity.governance - 1.8.61 + 1.8.62-SNAPSHOT ../../pom.xml diff --git a/components/org.wso2.carbon.identity.recovery/pom.xml b/components/org.wso2.carbon.identity.recovery/pom.xml index 5729e84b04..15455e0a5b 100644 --- a/components/org.wso2.carbon.identity.recovery/pom.xml +++ b/components/org.wso2.carbon.identity.recovery/pom.xml @@ -18,7 +18,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.61 + 1.8.62-SNAPSHOT ../../pom.xml diff --git a/components/org.wso2.carbon.identity.tenant.resource.manager/pom.xml b/components/org.wso2.carbon.identity.tenant.resource.manager/pom.xml index ea19e89870..43fea4137f 100644 --- a/components/org.wso2.carbon.identity.tenant.resource.manager/pom.xml +++ b/components/org.wso2.carbon.identity.tenant.resource.manager/pom.xml @@ -22,7 +22,7 @@ identity-governance org.wso2.carbon.identity.governance - 1.8.61 + 1.8.62-SNAPSHOT ../../pom.xml diff --git a/components/org.wso2.carbon.identity.user.endpoint/pom.xml b/components/org.wso2.carbon.identity.user.endpoint/pom.xml index 6d620b45ed..6940da24dc 100644 --- a/components/org.wso2.carbon.identity.user.endpoint/pom.xml +++ b/components/org.wso2.carbon.identity.user.endpoint/pom.xml @@ -5,7 +5,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.61 + 1.8.62-SNAPSHOT ../../pom.xml diff --git a/components/org.wso2.carbon.identity.user.export.core/pom.xml b/components/org.wso2.carbon.identity.user.export.core/pom.xml index 3ddf303e72..4b056e410e 100644 --- a/components/org.wso2.carbon.identity.user.export.core/pom.xml +++ b/components/org.wso2.carbon.identity.user.export.core/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.61 + 1.8.62-SNAPSHOT ../../pom.xml diff --git a/components/org.wso2.carbon.identity.user.rename.core/pom.xml b/components/org.wso2.carbon.identity.user.rename.core/pom.xml index b7bc0d874c..330680a4f0 100644 --- a/components/org.wso2.carbon.identity.user.rename.core/pom.xml +++ b/components/org.wso2.carbon.identity.user.rename.core/pom.xml @@ -20,7 +20,7 @@ identity-governance org.wso2.carbon.identity.governance - 1.8.61 + 1.8.62-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/features/org.wso2.carbon.identity.account.suspension.notification.task.server.feature/pom.xml b/features/org.wso2.carbon.identity.account.suspension.notification.task.server.feature/pom.xml index 3cde0e879d..860a3eac4c 100644 --- a/features/org.wso2.carbon.identity.account.suspension.notification.task.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.account.suspension.notification.task.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance ../../pom.xml - 1.8.61 + 1.8.62-SNAPSHOT 4.0.0 diff --git a/features/org.wso2.carbon.identity.auth.attribute.handler.server.feature/pom.xml b/features/org.wso2.carbon.identity.auth.attribute.handler.server.feature/pom.xml index 4df125c531..7ff63ce63c 100644 --- a/features/org.wso2.carbon.identity.auth.attribute.handler.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.auth.attribute.handler.server.feature/pom.xml @@ -22,7 +22,7 @@ org.wso2.carbon.identity.governance identity-governance ../../pom.xml - 1.8.61 + 1.8.62-SNAPSHOT 4.0.0 diff --git a/features/org.wso2.carbon.identity.captcha.server.feature/pom.xml b/features/org.wso2.carbon.identity.captcha.server.feature/pom.xml index e0c8861335..fd3d2a6227 100644 --- a/features/org.wso2.carbon.identity.captcha.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.captcha.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance ../../pom.xml - 1.8.61 + 1.8.62-SNAPSHOT 4.0.0 diff --git a/features/org.wso2.carbon.identity.governance.feature/pom.xml b/features/org.wso2.carbon.identity.governance.feature/pom.xml index 0df7e5d7a0..91885e66b7 100644 --- a/features/org.wso2.carbon.identity.governance.feature/pom.xml +++ b/features/org.wso2.carbon.identity.governance.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.61 + 1.8.62-SNAPSHOT ../../pom.xml diff --git a/features/org.wso2.carbon.identity.governance.server.feature/pom.xml b/features/org.wso2.carbon.identity.governance.server.feature/pom.xml index 748a1b5ab6..65f65eb4ea 100644 --- a/features/org.wso2.carbon.identity.governance.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.governance.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance ../../pom.xml - 1.8.61 + 1.8.62-SNAPSHOT 4.0.0 diff --git a/features/org.wso2.carbon.identity.idle.account.identification.server.feature/pom.xml b/features/org.wso2.carbon.identity.idle.account.identification.server.feature/pom.xml index 2efe86305f..3085840cd5 100644 --- a/features/org.wso2.carbon.identity.idle.account.identification.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.idle.account.identification.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance ../../pom.xml - 1.8.61 + 1.8.62-SNAPSHOT 4.0.0 diff --git a/features/org.wso2.carbon.identity.multi.attribute.login.service.server.feature/pom.xml b/features/org.wso2.carbon.identity.multi.attribute.login.service.server.feature/pom.xml index 707fdc2823..59a3b09b19 100644 --- a/features/org.wso2.carbon.identity.multi.attribute.login.service.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.multi.attribute.login.service.server.feature/pom.xml @@ -3,7 +3,7 @@ identity-governance org.wso2.carbon.identity.governance - 1.8.61 + 1.8.62-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/features/org.wso2.carbon.identity.password.expiry.server.feature/pom.xml b/features/org.wso2.carbon.identity.password.expiry.server.feature/pom.xml index 5165ee324c..aed3f0e1fb 100644 --- a/features/org.wso2.carbon.identity.password.expiry.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.password.expiry.server.feature/pom.xml @@ -22,7 +22,7 @@ org.wso2.carbon.identity.governance identity-governance ../../pom.xml - 1.8.61 + 1.8.62-SNAPSHOT 4.0.0 diff --git a/features/org.wso2.carbon.identity.password.history.server.feature/pom.xml b/features/org.wso2.carbon.identity.password.history.server.feature/pom.xml index c949c0b675..8e55a12e86 100644 --- a/features/org.wso2.carbon.identity.password.history.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.password.history.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance ../../pom.xml - 1.8.61 + 1.8.62-SNAPSHOT 4.0.0 diff --git a/features/org.wso2.carbon.identity.password.policy.server.feature/pom.xml b/features/org.wso2.carbon.identity.password.policy.server.feature/pom.xml index 336d64e70c..d1b3107185 100644 --- a/features/org.wso2.carbon.identity.password.policy.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.password.policy.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance ../../pom.xml - 1.8.61 + 1.8.62-SNAPSHOT 4.0.0 diff --git a/features/org.wso2.carbon.identity.piicontroller.server.feature/pom.xml b/features/org.wso2.carbon.identity.piicontroller.server.feature/pom.xml index 0eb64bf3df..4af2035ca5 100644 --- a/features/org.wso2.carbon.identity.piicontroller.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.piicontroller.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance ../../pom.xml - 1.8.61 + 1.8.62-SNAPSHOT 4.0.0 diff --git a/features/org.wso2.carbon.identity.recovery.server.feature/pom.xml b/features/org.wso2.carbon.identity.recovery.server.feature/pom.xml index 00a62c4290..530654a1a0 100644 --- a/features/org.wso2.carbon.identity.recovery.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.recovery.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance ../../pom.xml - 1.8.61 + 1.8.62-SNAPSHOT 4.0.0 diff --git a/features/org.wso2.carbon.identity.recovery.ui.feature/pom.xml b/features/org.wso2.carbon.identity.recovery.ui.feature/pom.xml index a56c81aa7b..97f9393a54 100644 --- a/features/org.wso2.carbon.identity.recovery.ui.feature/pom.xml +++ b/features/org.wso2.carbon.identity.recovery.ui.feature/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.61 + 1.8.62-SNAPSHOT ../../pom.xml diff --git a/features/org.wso2.carbon.identity.tenant.resource.manager.feature/pom.xml b/features/org.wso2.carbon.identity.tenant.resource.manager.feature/pom.xml index faa98c18c9..3ce8987b46 100644 --- a/features/org.wso2.carbon.identity.tenant.resource.manager.feature/pom.xml +++ b/features/org.wso2.carbon.identity.tenant.resource.manager.feature/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.61 + 1.8.62-SNAPSHOT ../../pom.xml diff --git a/features/org.wso2.carbon.identity.user.server.feature/pom.xml b/features/org.wso2.carbon.identity.user.server.feature/pom.xml index 7f922cf8a7..2843ecaae3 100644 --- a/features/org.wso2.carbon.identity.user.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.user.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance ../../pom.xml - 1.8.61 + 1.8.62-SNAPSHOT 4.0.0 diff --git a/pom.xml b/pom.xml index c7ce6b83d0..b062e3bbe0 100644 --- a/pom.xml +++ b/pom.xml @@ -18,7 +18,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.61 + 1.8.62-SNAPSHOT 4.0.0 pom WSO2 Carbon - Governance Module @@ -37,7 +37,7 @@ https://github.com/wso2-extensions/identity-governance.git scm:git:https://github.com/wso2-extensions/identity-governance.git scm:git:https://github.com/wso2-extensions/identity-governance.git - v1.8.61 + v1.1.0-SNAPSHOT diff --git a/service-stubs/identity/org.wso2.carbon.identity.recovery.stub/pom.xml b/service-stubs/identity/org.wso2.carbon.identity.recovery.stub/pom.xml index 288f5adfc7..ed718b1cbc 100644 --- a/service-stubs/identity/org.wso2.carbon.identity.recovery.stub/pom.xml +++ b/service-stubs/identity/org.wso2.carbon.identity.recovery.stub/pom.xml @@ -19,7 +19,7 @@ org.wso2.carbon.identity.governance carbon-service-stubs - 1.8.61 + 1.8.62-SNAPSHOT ../pom.xml diff --git a/service-stubs/identity/pom.xml b/service-stubs/identity/pom.xml index 1b8ea25d7a..b72b33bd48 100644 --- a/service-stubs/identity/pom.xml +++ b/service-stubs/identity/pom.xml @@ -19,7 +19,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.61 + 1.8.62-SNAPSHOT ../../pom.xml From c565d2bb7987cbed7db5a10ce4da8c036fc4ceb8 Mon Sep 17 00:00:00 2001 From: Thisara-Welmilla Date: Sun, 3 Sep 2023 19:35:48 +0530 Subject: [PATCH 08/31] Refactored code --- .../services/impl/ExpiredPasswordIdentificationServiceImpl.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/org.wso2.carbon.identity.password.expiry/src/main/java/org/wso2/carbon/identity/password/expiry/services/impl/ExpiredPasswordIdentificationServiceImpl.java b/components/org.wso2.carbon.identity.password.expiry/src/main/java/org/wso2/carbon/identity/password/expiry/services/impl/ExpiredPasswordIdentificationServiceImpl.java index 697f4e7800..e91429f942 100644 --- a/components/org.wso2.carbon.identity.password.expiry/src/main/java/org/wso2/carbon/identity/password/expiry/services/impl/ExpiredPasswordIdentificationServiceImpl.java +++ b/components/org.wso2.carbon.identity.password.expiry/src/main/java/org/wso2/carbon/identity/password/expiry/services/impl/ExpiredPasswordIdentificationServiceImpl.java @@ -131,7 +131,7 @@ private List buildPasswordExpiredUsers(List us * @param username username of the user. * @return UUID of the user */ - public String fetchUserId(String username, String tenantDomain) + private String fetchUserId(String username, String tenantDomain) throws ExpiredPasswordIdentificationServerException { UserStoreManager userStoreManager = getUserStoreManager( From 63b810f9028a98598f8f1b2551b3517293007ace Mon Sep 17 00:00:00 2001 From: SujanSanjula96 Date: Tue, 5 Sep 2023 09:32:27 +0530 Subject: [PATCH 09/31] Fix invailid tenant domain error --- .../recaptcha/EmailOTPCaptchaConnector.java | 20 ++----------------- 1 file changed, 2 insertions(+), 18 deletions(-) diff --git a/components/org.wso2.carbon.identity.captcha/src/main/java/org/wso2/carbon/identity/captcha/connector/recaptcha/EmailOTPCaptchaConnector.java b/components/org.wso2.carbon.identity.captcha/src/main/java/org/wso2/carbon/identity/captcha/connector/recaptcha/EmailOTPCaptchaConnector.java index 3ac978df4f..66d00cff97 100644 --- a/components/org.wso2.carbon.identity.captcha/src/main/java/org/wso2/carbon/identity/captcha/connector/recaptcha/EmailOTPCaptchaConnector.java +++ b/components/org.wso2.carbon.identity.captcha/src/main/java/org/wso2/carbon/identity/captcha/connector/recaptcha/EmailOTPCaptchaConnector.java @@ -127,7 +127,7 @@ public CaptchaPreValidationResponse preValidate(ServletRequest servletRequest, S String sessionDataKey = servletRequest.getParameter(FrameworkUtils.SESSION_DATA_KEY); AuthenticationContext context = FrameworkUtils.getAuthenticationContextFromCache(sessionDataKey); String username = context.getLastAuthenticatedUser().getUserName(); - String tenantDomain = getTenant(context, username); + String tenantDomain = context.getLastAuthenticatedUser().getTenantDomain(); Property[] connectorConfigs = null; try { @@ -223,7 +223,7 @@ public boolean isEmailRecaptchaEnabled(ServletRequest servletRequest) throws Cap } String username = context.getLastAuthenticatedUser().getUserName(); - String tenantDomain = getTenant(context, username); + String tenantDomain = context.getLastAuthenticatedUser().getTenantDomain(); Property[] connectorConfigs; try { @@ -256,22 +256,6 @@ public boolean isEmailRecaptchaEnabled(ServletRequest servletRequest) throws Cap return CaptchaDataHolder.getInstance().isReCaptchaEnabled(); } - /** - * Get tenant from authentication context or username. - * - * @param context Authentication context. - * @param username Username. - * @return Derived tenant domain. - */ - private String getTenant(AuthenticationContext context, String username) { - - if (IdentityTenantUtil.isTenantedSessionsEnabled() || IdentityTenantUtil.isTenantQualifiedUrlsEnabled()) { - return context.getUserTenantDomain(); - } else { - return MultitenantUtils.getTenantDomain(username); - } - } - /** * This method checks if all the authentication steps up to now have been performed by authenticators that * implements AuthenticationFlowHandler interface. If so, it returns true. From 03da238eaaedc2aadac568d72963680819dc477a Mon Sep 17 00:00:00 2001 From: SujanSanjula96 Date: Tue, 5 Sep 2023 09:56:42 +0530 Subject: [PATCH 10/31] Fix recaptcha not validating issue in email otp --- .../captcha/connector/recaptcha/EmailOTPCaptchaConnector.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/org.wso2.carbon.identity.captcha/src/main/java/org/wso2/carbon/identity/captcha/connector/recaptcha/EmailOTPCaptchaConnector.java b/components/org.wso2.carbon.identity.captcha/src/main/java/org/wso2/carbon/identity/captcha/connector/recaptcha/EmailOTPCaptchaConnector.java index 3ac978df4f..f0be6dcf59 100644 --- a/components/org.wso2.carbon.identity.captcha/src/main/java/org/wso2/carbon/identity/captcha/connector/recaptcha/EmailOTPCaptchaConnector.java +++ b/components/org.wso2.carbon.identity.captcha/src/main/java/org/wso2/carbon/identity/captcha/connector/recaptcha/EmailOTPCaptchaConnector.java @@ -58,7 +58,7 @@ public class EmailOTPCaptchaConnector extends AbstractReCaptchaConnector { private static final Log log = LogFactory.getLog(EmailOTPCaptchaConnector.class); private static final String SECURED_DESTINATIONS = "/commonauth"; - public static final String EMAIL_OTP_AUTHENTICATOR_NAME = "email-otp-authenticator"; + public static final String EMAIL_OTP_AUTHENTICATOR_NAME = "EmailOTP"; public static final String IS_REDIRECT_TO_EMAIL_OTP = "isRedirectToEmailOTP"; public static final String RESEND_CODE = "resendCode"; private static final String ON_FAIL_REDIRECT_URL = "/authenticationendpoint/login.do"; From 93c5d6be11c78f9afe9ec3452b883074925b66d0 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 5 Sep 2023 09:57:09 +0000 Subject: [PATCH 11/31] [WSO2 Release] [Jenkins #2531] [Release 1.8.62] prepare release v1.8.62 --- .../pom.xml | 2 +- .../org.wso2.carbon.identity.api.user.governance/pom.xml | 4 ++-- components/org.wso2.carbon.identity.api.user.recovery/pom.xml | 4 ++-- .../org.wso2.carbon.identity.auth.attribute.handler/pom.xml | 2 +- components/org.wso2.carbon.identity.captcha/pom.xml | 2 +- components/org.wso2.carbon.identity.governance/pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../org.wso2.carbon.identity.multi.attribute.login/pom.xml | 2 +- components/org.wso2.carbon.identity.password.expiry/pom.xml | 2 +- components/org.wso2.carbon.identity.password.history/pom.xml | 2 +- components/org.wso2.carbon.identity.password.policy/pom.xml | 2 +- components/org.wso2.carbon.identity.piicontroller/pom.xml | 2 +- components/org.wso2.carbon.identity.recovery.endpoint/pom.xml | 2 +- components/org.wso2.carbon.identity.recovery.ui/pom.xml | 2 +- components/org.wso2.carbon.identity.recovery/pom.xml | 2 +- .../org.wso2.carbon.identity.tenant.resource.manager/pom.xml | 2 +- components/org.wso2.carbon.identity.user.endpoint/pom.xml | 2 +- components/org.wso2.carbon.identity.user.export.core/pom.xml | 2 +- components/org.wso2.carbon.identity.user.rename.core/pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../org.wso2.carbon.identity.captcha.server.feature/pom.xml | 2 +- features/org.wso2.carbon.identity.governance.feature/pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../org.wso2.carbon.identity.recovery.server.feature/pom.xml | 2 +- features/org.wso2.carbon.identity.recovery.ui.feature/pom.xml | 2 +- .../pom.xml | 2 +- features/org.wso2.carbon.identity.user.server.feature/pom.xml | 2 +- pom.xml | 4 ++-- .../identity/org.wso2.carbon.identity.recovery.stub/pom.xml | 2 +- service-stubs/identity/pom.xml | 2 +- 39 files changed, 42 insertions(+), 42 deletions(-) diff --git a/components/org.wso2.carbon.identity.account.suspension.notification.task/pom.xml b/components/org.wso2.carbon.identity.account.suspension.notification.task/pom.xml index ecadaf98c2..7ed423f7e4 100644 --- a/components/org.wso2.carbon.identity.account.suspension.notification.task/pom.xml +++ b/components/org.wso2.carbon.identity.account.suspension.notification.task/pom.xml @@ -20,7 +20,7 @@ identity-governance org.wso2.carbon.identity.governance - 1.8.62-SNAPSHOT + 1.8.62 ../../pom.xml diff --git a/components/org.wso2.carbon.identity.api.user.governance/pom.xml b/components/org.wso2.carbon.identity.api.user.governance/pom.xml index 1f259902e9..381cedda4f 100644 --- a/components/org.wso2.carbon.identity.api.user.governance/pom.xml +++ b/components/org.wso2.carbon.identity.api.user.governance/pom.xml @@ -23,12 +23,12 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.62-SNAPSHOT + 1.8.62 ../.. org.wso2.carbon.identity.api.user.governance - 1.8.62-SNAPSHOT + 1.8.62 jar WSO2 Carbon - User Rest Governance API WSO2 Carbon - User Rest Governance API diff --git a/components/org.wso2.carbon.identity.api.user.recovery/pom.xml b/components/org.wso2.carbon.identity.api.user.recovery/pom.xml index 7d6e328810..6ff0917d61 100644 --- a/components/org.wso2.carbon.identity.api.user.recovery/pom.xml +++ b/components/org.wso2.carbon.identity.api.user.recovery/pom.xml @@ -23,12 +23,12 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.62-SNAPSHOT + 1.8.62 ../.. org.wso2.carbon.identity.api.user.recovery - 1.8.62-SNAPSHOT + 1.8.62 jar WSO2 Carbon - Identity Management Recovery Rest API WSO2 Carbon - Identity Management Recovery Rest API diff --git a/components/org.wso2.carbon.identity.auth.attribute.handler/pom.xml b/components/org.wso2.carbon.identity.auth.attribute.handler/pom.xml index 40aaebf580..35b6a3b619 100644 --- a/components/org.wso2.carbon.identity.auth.attribute.handler/pom.xml +++ b/components/org.wso2.carbon.identity.auth.attribute.handler/pom.xml @@ -22,7 +22,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.62-SNAPSHOT + 1.8.62 ../../pom.xml diff --git a/components/org.wso2.carbon.identity.captcha/pom.xml b/components/org.wso2.carbon.identity.captcha/pom.xml index f32416f2d5..d1bea85988 100644 --- a/components/org.wso2.carbon.identity.captcha/pom.xml +++ b/components/org.wso2.carbon.identity.captcha/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.62-SNAPSHOT + 1.8.62 ../../pom.xml diff --git a/components/org.wso2.carbon.identity.governance/pom.xml b/components/org.wso2.carbon.identity.governance/pom.xml index 3d2d09e1d2..a6f826072a 100644 --- a/components/org.wso2.carbon.identity.governance/pom.xml +++ b/components/org.wso2.carbon.identity.governance/pom.xml @@ -18,7 +18,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.62-SNAPSHOT + 1.8.62 ../../pom.xml diff --git a/components/org.wso2.carbon.identity.idle.account.identification/pom.xml b/components/org.wso2.carbon.identity.idle.account.identification/pom.xml index a7bd3844c1..93707a15d7 100644 --- a/components/org.wso2.carbon.identity.idle.account.identification/pom.xml +++ b/components/org.wso2.carbon.identity.idle.account.identification/pom.xml @@ -18,7 +18,7 @@ identity-governance org.wso2.carbon.identity.governance - 1.8.62-SNAPSHOT + 1.8.62 ../../pom.xml 4.0.0 diff --git a/components/org.wso2.carbon.identity.multi.attribute.login/org.wso2.carbon.identity.multi.attribute.login.resolver.regex/pom.xml b/components/org.wso2.carbon.identity.multi.attribute.login/org.wso2.carbon.identity.multi.attribute.login.resolver.regex/pom.xml index a6aaaa35f7..391e882f49 100644 --- a/components/org.wso2.carbon.identity.multi.attribute.login/org.wso2.carbon.identity.multi.attribute.login.resolver.regex/pom.xml +++ b/components/org.wso2.carbon.identity.multi.attribute.login/org.wso2.carbon.identity.multi.attribute.login.resolver.regex/pom.xml @@ -21,7 +21,7 @@ identity-governance org.wso2.carbon.identity.governance - 1.8.62-SNAPSHOT + 1.8.62 ../../../pom.xml 4.0.0 diff --git a/components/org.wso2.carbon.identity.multi.attribute.login/org.wso2.carbon.identity.multi.attribute.login.service/pom.xml b/components/org.wso2.carbon.identity.multi.attribute.login/org.wso2.carbon.identity.multi.attribute.login.service/pom.xml index 8c987eb4c3..1386353c13 100644 --- a/components/org.wso2.carbon.identity.multi.attribute.login/org.wso2.carbon.identity.multi.attribute.login.service/pom.xml +++ b/components/org.wso2.carbon.identity.multi.attribute.login/org.wso2.carbon.identity.multi.attribute.login.service/pom.xml @@ -21,7 +21,7 @@ identity-governance org.wso2.carbon.identity.governance - 1.8.62-SNAPSHOT + 1.8.62 ../../../pom.xml 4.0.0 diff --git a/components/org.wso2.carbon.identity.multi.attribute.login/pom.xml b/components/org.wso2.carbon.identity.multi.attribute.login/pom.xml index 8459d90457..d3777e769e 100644 --- a/components/org.wso2.carbon.identity.multi.attribute.login/pom.xml +++ b/components/org.wso2.carbon.identity.multi.attribute.login/pom.xml @@ -21,7 +21,7 @@ identity-governance org.wso2.carbon.identity.governance - 1.8.62-SNAPSHOT + 1.8.62 ../../pom.xml 4.0.0 diff --git a/components/org.wso2.carbon.identity.password.expiry/pom.xml b/components/org.wso2.carbon.identity.password.expiry/pom.xml index cb583cd77b..287ab42a48 100644 --- a/components/org.wso2.carbon.identity.password.expiry/pom.xml +++ b/components/org.wso2.carbon.identity.password.expiry/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.62-SNAPSHOT + 1.8.62 ../../pom.xml diff --git a/components/org.wso2.carbon.identity.password.history/pom.xml b/components/org.wso2.carbon.identity.password.history/pom.xml index 9afa5bea59..f3c9346a4f 100644 --- a/components/org.wso2.carbon.identity.password.history/pom.xml +++ b/components/org.wso2.carbon.identity.password.history/pom.xml @@ -18,7 +18,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.62-SNAPSHOT + 1.8.62 ../../pom.xml diff --git a/components/org.wso2.carbon.identity.password.policy/pom.xml b/components/org.wso2.carbon.identity.password.policy/pom.xml index 83f672f6b0..02d46ca590 100644 --- a/components/org.wso2.carbon.identity.password.policy/pom.xml +++ b/components/org.wso2.carbon.identity.password.policy/pom.xml @@ -18,7 +18,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.62-SNAPSHOT + 1.8.62 ../../pom.xml diff --git a/components/org.wso2.carbon.identity.piicontroller/pom.xml b/components/org.wso2.carbon.identity.piicontroller/pom.xml index d5e51d6cdf..3c26bf5ee7 100644 --- a/components/org.wso2.carbon.identity.piicontroller/pom.xml +++ b/components/org.wso2.carbon.identity.piicontroller/pom.xml @@ -19,7 +19,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.62-SNAPSHOT + 1.8.62 ../../pom.xml diff --git a/components/org.wso2.carbon.identity.recovery.endpoint/pom.xml b/components/org.wso2.carbon.identity.recovery.endpoint/pom.xml index 3c6f80d26c..e160657145 100644 --- a/components/org.wso2.carbon.identity.recovery.endpoint/pom.xml +++ b/components/org.wso2.carbon.identity.recovery.endpoint/pom.xml @@ -5,7 +5,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.62-SNAPSHOT + 1.8.62 ../../pom.xml diff --git a/components/org.wso2.carbon.identity.recovery.ui/pom.xml b/components/org.wso2.carbon.identity.recovery.ui/pom.xml index 6d7aad29d1..0e57dfdd1b 100644 --- a/components/org.wso2.carbon.identity.recovery.ui/pom.xml +++ b/components/org.wso2.carbon.identity.recovery.ui/pom.xml @@ -18,7 +18,7 @@ identity-governance org.wso2.carbon.identity.governance - 1.8.62-SNAPSHOT + 1.8.62 ../../pom.xml diff --git a/components/org.wso2.carbon.identity.recovery/pom.xml b/components/org.wso2.carbon.identity.recovery/pom.xml index 15455e0a5b..9aa85d427b 100644 --- a/components/org.wso2.carbon.identity.recovery/pom.xml +++ b/components/org.wso2.carbon.identity.recovery/pom.xml @@ -18,7 +18,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.62-SNAPSHOT + 1.8.62 ../../pom.xml diff --git a/components/org.wso2.carbon.identity.tenant.resource.manager/pom.xml b/components/org.wso2.carbon.identity.tenant.resource.manager/pom.xml index 43fea4137f..4adedb3350 100644 --- a/components/org.wso2.carbon.identity.tenant.resource.manager/pom.xml +++ b/components/org.wso2.carbon.identity.tenant.resource.manager/pom.xml @@ -22,7 +22,7 @@ identity-governance org.wso2.carbon.identity.governance - 1.8.62-SNAPSHOT + 1.8.62 ../../pom.xml diff --git a/components/org.wso2.carbon.identity.user.endpoint/pom.xml b/components/org.wso2.carbon.identity.user.endpoint/pom.xml index 6940da24dc..854e4e187f 100644 --- a/components/org.wso2.carbon.identity.user.endpoint/pom.xml +++ b/components/org.wso2.carbon.identity.user.endpoint/pom.xml @@ -5,7 +5,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.62-SNAPSHOT + 1.8.62 ../../pom.xml diff --git a/components/org.wso2.carbon.identity.user.export.core/pom.xml b/components/org.wso2.carbon.identity.user.export.core/pom.xml index 4b056e410e..e8cf912d5a 100644 --- a/components/org.wso2.carbon.identity.user.export.core/pom.xml +++ b/components/org.wso2.carbon.identity.user.export.core/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.62-SNAPSHOT + 1.8.62 ../../pom.xml diff --git a/components/org.wso2.carbon.identity.user.rename.core/pom.xml b/components/org.wso2.carbon.identity.user.rename.core/pom.xml index 330680a4f0..e8c8d3a05a 100644 --- a/components/org.wso2.carbon.identity.user.rename.core/pom.xml +++ b/components/org.wso2.carbon.identity.user.rename.core/pom.xml @@ -20,7 +20,7 @@ identity-governance org.wso2.carbon.identity.governance - 1.8.62-SNAPSHOT + 1.8.62 ../../pom.xml 4.0.0 diff --git a/features/org.wso2.carbon.identity.account.suspension.notification.task.server.feature/pom.xml b/features/org.wso2.carbon.identity.account.suspension.notification.task.server.feature/pom.xml index 860a3eac4c..c0a3ff2135 100644 --- a/features/org.wso2.carbon.identity.account.suspension.notification.task.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.account.suspension.notification.task.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance ../../pom.xml - 1.8.62-SNAPSHOT + 1.8.62 4.0.0 diff --git a/features/org.wso2.carbon.identity.auth.attribute.handler.server.feature/pom.xml b/features/org.wso2.carbon.identity.auth.attribute.handler.server.feature/pom.xml index 7ff63ce63c..059ae2f019 100644 --- a/features/org.wso2.carbon.identity.auth.attribute.handler.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.auth.attribute.handler.server.feature/pom.xml @@ -22,7 +22,7 @@ org.wso2.carbon.identity.governance identity-governance ../../pom.xml - 1.8.62-SNAPSHOT + 1.8.62 4.0.0 diff --git a/features/org.wso2.carbon.identity.captcha.server.feature/pom.xml b/features/org.wso2.carbon.identity.captcha.server.feature/pom.xml index fd3d2a6227..8bd3d6a2d0 100644 --- a/features/org.wso2.carbon.identity.captcha.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.captcha.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance ../../pom.xml - 1.8.62-SNAPSHOT + 1.8.62 4.0.0 diff --git a/features/org.wso2.carbon.identity.governance.feature/pom.xml b/features/org.wso2.carbon.identity.governance.feature/pom.xml index 91885e66b7..5038b98cfc 100644 --- a/features/org.wso2.carbon.identity.governance.feature/pom.xml +++ b/features/org.wso2.carbon.identity.governance.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.62-SNAPSHOT + 1.8.62 ../../pom.xml diff --git a/features/org.wso2.carbon.identity.governance.server.feature/pom.xml b/features/org.wso2.carbon.identity.governance.server.feature/pom.xml index 65f65eb4ea..2065f6be1e 100644 --- a/features/org.wso2.carbon.identity.governance.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.governance.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance ../../pom.xml - 1.8.62-SNAPSHOT + 1.8.62 4.0.0 diff --git a/features/org.wso2.carbon.identity.idle.account.identification.server.feature/pom.xml b/features/org.wso2.carbon.identity.idle.account.identification.server.feature/pom.xml index 3085840cd5..0dbb62b271 100644 --- a/features/org.wso2.carbon.identity.idle.account.identification.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.idle.account.identification.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance ../../pom.xml - 1.8.62-SNAPSHOT + 1.8.62 4.0.0 diff --git a/features/org.wso2.carbon.identity.multi.attribute.login.service.server.feature/pom.xml b/features/org.wso2.carbon.identity.multi.attribute.login.service.server.feature/pom.xml index 59a3b09b19..3608da90b2 100644 --- a/features/org.wso2.carbon.identity.multi.attribute.login.service.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.multi.attribute.login.service.server.feature/pom.xml @@ -3,7 +3,7 @@ identity-governance org.wso2.carbon.identity.governance - 1.8.62-SNAPSHOT + 1.8.62 ../../pom.xml 4.0.0 diff --git a/features/org.wso2.carbon.identity.password.expiry.server.feature/pom.xml b/features/org.wso2.carbon.identity.password.expiry.server.feature/pom.xml index aed3f0e1fb..2236ab3625 100644 --- a/features/org.wso2.carbon.identity.password.expiry.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.password.expiry.server.feature/pom.xml @@ -22,7 +22,7 @@ org.wso2.carbon.identity.governance identity-governance ../../pom.xml - 1.8.62-SNAPSHOT + 1.8.62 4.0.0 diff --git a/features/org.wso2.carbon.identity.password.history.server.feature/pom.xml b/features/org.wso2.carbon.identity.password.history.server.feature/pom.xml index 8e55a12e86..aa67e70cc3 100644 --- a/features/org.wso2.carbon.identity.password.history.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.password.history.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance ../../pom.xml - 1.8.62-SNAPSHOT + 1.8.62 4.0.0 diff --git a/features/org.wso2.carbon.identity.password.policy.server.feature/pom.xml b/features/org.wso2.carbon.identity.password.policy.server.feature/pom.xml index d1b3107185..7bcfaad245 100644 --- a/features/org.wso2.carbon.identity.password.policy.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.password.policy.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance ../../pom.xml - 1.8.62-SNAPSHOT + 1.8.62 4.0.0 diff --git a/features/org.wso2.carbon.identity.piicontroller.server.feature/pom.xml b/features/org.wso2.carbon.identity.piicontroller.server.feature/pom.xml index 4af2035ca5..be06964b7d 100644 --- a/features/org.wso2.carbon.identity.piicontroller.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.piicontroller.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance ../../pom.xml - 1.8.62-SNAPSHOT + 1.8.62 4.0.0 diff --git a/features/org.wso2.carbon.identity.recovery.server.feature/pom.xml b/features/org.wso2.carbon.identity.recovery.server.feature/pom.xml index 530654a1a0..f0523c392e 100644 --- a/features/org.wso2.carbon.identity.recovery.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.recovery.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance ../../pom.xml - 1.8.62-SNAPSHOT + 1.8.62 4.0.0 diff --git a/features/org.wso2.carbon.identity.recovery.ui.feature/pom.xml b/features/org.wso2.carbon.identity.recovery.ui.feature/pom.xml index 97f9393a54..2952184e18 100644 --- a/features/org.wso2.carbon.identity.recovery.ui.feature/pom.xml +++ b/features/org.wso2.carbon.identity.recovery.ui.feature/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.62-SNAPSHOT + 1.8.62 ../../pom.xml diff --git a/features/org.wso2.carbon.identity.tenant.resource.manager.feature/pom.xml b/features/org.wso2.carbon.identity.tenant.resource.manager.feature/pom.xml index 3ce8987b46..fb3d4ed105 100644 --- a/features/org.wso2.carbon.identity.tenant.resource.manager.feature/pom.xml +++ b/features/org.wso2.carbon.identity.tenant.resource.manager.feature/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.62-SNAPSHOT + 1.8.62 ../../pom.xml diff --git a/features/org.wso2.carbon.identity.user.server.feature/pom.xml b/features/org.wso2.carbon.identity.user.server.feature/pom.xml index 2843ecaae3..e94c51fff4 100644 --- a/features/org.wso2.carbon.identity.user.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.user.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance ../../pom.xml - 1.8.62-SNAPSHOT + 1.8.62 4.0.0 diff --git a/pom.xml b/pom.xml index b062e3bbe0..ea4bb11a83 100644 --- a/pom.xml +++ b/pom.xml @@ -18,7 +18,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.62-SNAPSHOT + 1.8.62 4.0.0 pom WSO2 Carbon - Governance Module @@ -37,7 +37,7 @@ https://github.com/wso2-extensions/identity-governance.git scm:git:https://github.com/wso2-extensions/identity-governance.git scm:git:https://github.com/wso2-extensions/identity-governance.git - v1.1.0-SNAPSHOT + v1.8.62 diff --git a/service-stubs/identity/org.wso2.carbon.identity.recovery.stub/pom.xml b/service-stubs/identity/org.wso2.carbon.identity.recovery.stub/pom.xml index ed718b1cbc..5d218a1a9d 100644 --- a/service-stubs/identity/org.wso2.carbon.identity.recovery.stub/pom.xml +++ b/service-stubs/identity/org.wso2.carbon.identity.recovery.stub/pom.xml @@ -19,7 +19,7 @@ org.wso2.carbon.identity.governance carbon-service-stubs - 1.8.62-SNAPSHOT + 1.8.62 ../pom.xml diff --git a/service-stubs/identity/pom.xml b/service-stubs/identity/pom.xml index b72b33bd48..92731fcb2d 100644 --- a/service-stubs/identity/pom.xml +++ b/service-stubs/identity/pom.xml @@ -19,7 +19,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.62-SNAPSHOT + 1.8.62 ../../pom.xml From 4cfb3d19eec3b2a2717af1312f6febc05cc04eea Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 5 Sep 2023 09:57:11 +0000 Subject: [PATCH 12/31] [WSO2 Release] [Jenkins #2531] [Release 1.8.62] prepare for next development iteration --- .../pom.xml | 2 +- .../org.wso2.carbon.identity.api.user.governance/pom.xml | 4 ++-- components/org.wso2.carbon.identity.api.user.recovery/pom.xml | 4 ++-- .../org.wso2.carbon.identity.auth.attribute.handler/pom.xml | 2 +- components/org.wso2.carbon.identity.captcha/pom.xml | 2 +- components/org.wso2.carbon.identity.governance/pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../org.wso2.carbon.identity.multi.attribute.login/pom.xml | 2 +- components/org.wso2.carbon.identity.password.expiry/pom.xml | 2 +- components/org.wso2.carbon.identity.password.history/pom.xml | 2 +- components/org.wso2.carbon.identity.password.policy/pom.xml | 2 +- components/org.wso2.carbon.identity.piicontroller/pom.xml | 2 +- components/org.wso2.carbon.identity.recovery.endpoint/pom.xml | 2 +- components/org.wso2.carbon.identity.recovery.ui/pom.xml | 2 +- components/org.wso2.carbon.identity.recovery/pom.xml | 2 +- .../org.wso2.carbon.identity.tenant.resource.manager/pom.xml | 2 +- components/org.wso2.carbon.identity.user.endpoint/pom.xml | 2 +- components/org.wso2.carbon.identity.user.export.core/pom.xml | 2 +- components/org.wso2.carbon.identity.user.rename.core/pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../org.wso2.carbon.identity.captcha.server.feature/pom.xml | 2 +- features/org.wso2.carbon.identity.governance.feature/pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../org.wso2.carbon.identity.recovery.server.feature/pom.xml | 2 +- features/org.wso2.carbon.identity.recovery.ui.feature/pom.xml | 2 +- .../pom.xml | 2 +- features/org.wso2.carbon.identity.user.server.feature/pom.xml | 2 +- pom.xml | 4 ++-- .../identity/org.wso2.carbon.identity.recovery.stub/pom.xml | 2 +- service-stubs/identity/pom.xml | 2 +- 39 files changed, 42 insertions(+), 42 deletions(-) diff --git a/components/org.wso2.carbon.identity.account.suspension.notification.task/pom.xml b/components/org.wso2.carbon.identity.account.suspension.notification.task/pom.xml index 7ed423f7e4..6a7fc27e5a 100644 --- a/components/org.wso2.carbon.identity.account.suspension.notification.task/pom.xml +++ b/components/org.wso2.carbon.identity.account.suspension.notification.task/pom.xml @@ -20,7 +20,7 @@ identity-governance org.wso2.carbon.identity.governance - 1.8.62 + 1.8.63-SNAPSHOT ../../pom.xml diff --git a/components/org.wso2.carbon.identity.api.user.governance/pom.xml b/components/org.wso2.carbon.identity.api.user.governance/pom.xml index 381cedda4f..25d05cc63e 100644 --- a/components/org.wso2.carbon.identity.api.user.governance/pom.xml +++ b/components/org.wso2.carbon.identity.api.user.governance/pom.xml @@ -23,12 +23,12 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.62 + 1.8.63-SNAPSHOT ../.. org.wso2.carbon.identity.api.user.governance - 1.8.62 + 1.8.63-SNAPSHOT jar WSO2 Carbon - User Rest Governance API WSO2 Carbon - User Rest Governance API diff --git a/components/org.wso2.carbon.identity.api.user.recovery/pom.xml b/components/org.wso2.carbon.identity.api.user.recovery/pom.xml index 6ff0917d61..10fe40d4d9 100644 --- a/components/org.wso2.carbon.identity.api.user.recovery/pom.xml +++ b/components/org.wso2.carbon.identity.api.user.recovery/pom.xml @@ -23,12 +23,12 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.62 + 1.8.63-SNAPSHOT ../.. org.wso2.carbon.identity.api.user.recovery - 1.8.62 + 1.8.63-SNAPSHOT jar WSO2 Carbon - Identity Management Recovery Rest API WSO2 Carbon - Identity Management Recovery Rest API diff --git a/components/org.wso2.carbon.identity.auth.attribute.handler/pom.xml b/components/org.wso2.carbon.identity.auth.attribute.handler/pom.xml index 35b6a3b619..8b2e5240eb 100644 --- a/components/org.wso2.carbon.identity.auth.attribute.handler/pom.xml +++ b/components/org.wso2.carbon.identity.auth.attribute.handler/pom.xml @@ -22,7 +22,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.62 + 1.8.63-SNAPSHOT ../../pom.xml diff --git a/components/org.wso2.carbon.identity.captcha/pom.xml b/components/org.wso2.carbon.identity.captcha/pom.xml index d1bea85988..6838966728 100644 --- a/components/org.wso2.carbon.identity.captcha/pom.xml +++ b/components/org.wso2.carbon.identity.captcha/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.62 + 1.8.63-SNAPSHOT ../../pom.xml diff --git a/components/org.wso2.carbon.identity.governance/pom.xml b/components/org.wso2.carbon.identity.governance/pom.xml index a6f826072a..cf0fb22763 100644 --- a/components/org.wso2.carbon.identity.governance/pom.xml +++ b/components/org.wso2.carbon.identity.governance/pom.xml @@ -18,7 +18,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.62 + 1.8.63-SNAPSHOT ../../pom.xml diff --git a/components/org.wso2.carbon.identity.idle.account.identification/pom.xml b/components/org.wso2.carbon.identity.idle.account.identification/pom.xml index 93707a15d7..1b709887fd 100644 --- a/components/org.wso2.carbon.identity.idle.account.identification/pom.xml +++ b/components/org.wso2.carbon.identity.idle.account.identification/pom.xml @@ -18,7 +18,7 @@ identity-governance org.wso2.carbon.identity.governance - 1.8.62 + 1.8.63-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/components/org.wso2.carbon.identity.multi.attribute.login/org.wso2.carbon.identity.multi.attribute.login.resolver.regex/pom.xml b/components/org.wso2.carbon.identity.multi.attribute.login/org.wso2.carbon.identity.multi.attribute.login.resolver.regex/pom.xml index 391e882f49..c43f2b0328 100644 --- a/components/org.wso2.carbon.identity.multi.attribute.login/org.wso2.carbon.identity.multi.attribute.login.resolver.regex/pom.xml +++ b/components/org.wso2.carbon.identity.multi.attribute.login/org.wso2.carbon.identity.multi.attribute.login.resolver.regex/pom.xml @@ -21,7 +21,7 @@ identity-governance org.wso2.carbon.identity.governance - 1.8.62 + 1.8.63-SNAPSHOT ../../../pom.xml 4.0.0 diff --git a/components/org.wso2.carbon.identity.multi.attribute.login/org.wso2.carbon.identity.multi.attribute.login.service/pom.xml b/components/org.wso2.carbon.identity.multi.attribute.login/org.wso2.carbon.identity.multi.attribute.login.service/pom.xml index 1386353c13..25f6adc08a 100644 --- a/components/org.wso2.carbon.identity.multi.attribute.login/org.wso2.carbon.identity.multi.attribute.login.service/pom.xml +++ b/components/org.wso2.carbon.identity.multi.attribute.login/org.wso2.carbon.identity.multi.attribute.login.service/pom.xml @@ -21,7 +21,7 @@ identity-governance org.wso2.carbon.identity.governance - 1.8.62 + 1.8.63-SNAPSHOT ../../../pom.xml 4.0.0 diff --git a/components/org.wso2.carbon.identity.multi.attribute.login/pom.xml b/components/org.wso2.carbon.identity.multi.attribute.login/pom.xml index d3777e769e..9088a390f6 100644 --- a/components/org.wso2.carbon.identity.multi.attribute.login/pom.xml +++ b/components/org.wso2.carbon.identity.multi.attribute.login/pom.xml @@ -21,7 +21,7 @@ identity-governance org.wso2.carbon.identity.governance - 1.8.62 + 1.8.63-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/components/org.wso2.carbon.identity.password.expiry/pom.xml b/components/org.wso2.carbon.identity.password.expiry/pom.xml index 287ab42a48..091c73d978 100644 --- a/components/org.wso2.carbon.identity.password.expiry/pom.xml +++ b/components/org.wso2.carbon.identity.password.expiry/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.62 + 1.8.63-SNAPSHOT ../../pom.xml diff --git a/components/org.wso2.carbon.identity.password.history/pom.xml b/components/org.wso2.carbon.identity.password.history/pom.xml index f3c9346a4f..d375b691a3 100644 --- a/components/org.wso2.carbon.identity.password.history/pom.xml +++ b/components/org.wso2.carbon.identity.password.history/pom.xml @@ -18,7 +18,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.62 + 1.8.63-SNAPSHOT ../../pom.xml diff --git a/components/org.wso2.carbon.identity.password.policy/pom.xml b/components/org.wso2.carbon.identity.password.policy/pom.xml index 02d46ca590..5b0de91d2c 100644 --- a/components/org.wso2.carbon.identity.password.policy/pom.xml +++ b/components/org.wso2.carbon.identity.password.policy/pom.xml @@ -18,7 +18,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.62 + 1.8.63-SNAPSHOT ../../pom.xml diff --git a/components/org.wso2.carbon.identity.piicontroller/pom.xml b/components/org.wso2.carbon.identity.piicontroller/pom.xml index 3c26bf5ee7..3becb0a79c 100644 --- a/components/org.wso2.carbon.identity.piicontroller/pom.xml +++ b/components/org.wso2.carbon.identity.piicontroller/pom.xml @@ -19,7 +19,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.62 + 1.8.63-SNAPSHOT ../../pom.xml diff --git a/components/org.wso2.carbon.identity.recovery.endpoint/pom.xml b/components/org.wso2.carbon.identity.recovery.endpoint/pom.xml index e160657145..750b577770 100644 --- a/components/org.wso2.carbon.identity.recovery.endpoint/pom.xml +++ b/components/org.wso2.carbon.identity.recovery.endpoint/pom.xml @@ -5,7 +5,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.62 + 1.8.63-SNAPSHOT ../../pom.xml diff --git a/components/org.wso2.carbon.identity.recovery.ui/pom.xml b/components/org.wso2.carbon.identity.recovery.ui/pom.xml index 0e57dfdd1b..5017711096 100644 --- a/components/org.wso2.carbon.identity.recovery.ui/pom.xml +++ b/components/org.wso2.carbon.identity.recovery.ui/pom.xml @@ -18,7 +18,7 @@ identity-governance org.wso2.carbon.identity.governance - 1.8.62 + 1.8.63-SNAPSHOT ../../pom.xml diff --git a/components/org.wso2.carbon.identity.recovery/pom.xml b/components/org.wso2.carbon.identity.recovery/pom.xml index 9aa85d427b..93307e6b4b 100644 --- a/components/org.wso2.carbon.identity.recovery/pom.xml +++ b/components/org.wso2.carbon.identity.recovery/pom.xml @@ -18,7 +18,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.62 + 1.8.63-SNAPSHOT ../../pom.xml diff --git a/components/org.wso2.carbon.identity.tenant.resource.manager/pom.xml b/components/org.wso2.carbon.identity.tenant.resource.manager/pom.xml index 4adedb3350..0ae72e875c 100644 --- a/components/org.wso2.carbon.identity.tenant.resource.manager/pom.xml +++ b/components/org.wso2.carbon.identity.tenant.resource.manager/pom.xml @@ -22,7 +22,7 @@ identity-governance org.wso2.carbon.identity.governance - 1.8.62 + 1.8.63-SNAPSHOT ../../pom.xml diff --git a/components/org.wso2.carbon.identity.user.endpoint/pom.xml b/components/org.wso2.carbon.identity.user.endpoint/pom.xml index 854e4e187f..bfd50bbd06 100644 --- a/components/org.wso2.carbon.identity.user.endpoint/pom.xml +++ b/components/org.wso2.carbon.identity.user.endpoint/pom.xml @@ -5,7 +5,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.62 + 1.8.63-SNAPSHOT ../../pom.xml diff --git a/components/org.wso2.carbon.identity.user.export.core/pom.xml b/components/org.wso2.carbon.identity.user.export.core/pom.xml index e8cf912d5a..26f678c1cb 100644 --- a/components/org.wso2.carbon.identity.user.export.core/pom.xml +++ b/components/org.wso2.carbon.identity.user.export.core/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.62 + 1.8.63-SNAPSHOT ../../pom.xml diff --git a/components/org.wso2.carbon.identity.user.rename.core/pom.xml b/components/org.wso2.carbon.identity.user.rename.core/pom.xml index e8c8d3a05a..84a5611c28 100644 --- a/components/org.wso2.carbon.identity.user.rename.core/pom.xml +++ b/components/org.wso2.carbon.identity.user.rename.core/pom.xml @@ -20,7 +20,7 @@ identity-governance org.wso2.carbon.identity.governance - 1.8.62 + 1.8.63-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/features/org.wso2.carbon.identity.account.suspension.notification.task.server.feature/pom.xml b/features/org.wso2.carbon.identity.account.suspension.notification.task.server.feature/pom.xml index c0a3ff2135..ea8a62b6bd 100644 --- a/features/org.wso2.carbon.identity.account.suspension.notification.task.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.account.suspension.notification.task.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance ../../pom.xml - 1.8.62 + 1.8.63-SNAPSHOT 4.0.0 diff --git a/features/org.wso2.carbon.identity.auth.attribute.handler.server.feature/pom.xml b/features/org.wso2.carbon.identity.auth.attribute.handler.server.feature/pom.xml index 059ae2f019..e57149ff11 100644 --- a/features/org.wso2.carbon.identity.auth.attribute.handler.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.auth.attribute.handler.server.feature/pom.xml @@ -22,7 +22,7 @@ org.wso2.carbon.identity.governance identity-governance ../../pom.xml - 1.8.62 + 1.8.63-SNAPSHOT 4.0.0 diff --git a/features/org.wso2.carbon.identity.captcha.server.feature/pom.xml b/features/org.wso2.carbon.identity.captcha.server.feature/pom.xml index 8bd3d6a2d0..fcffedce41 100644 --- a/features/org.wso2.carbon.identity.captcha.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.captcha.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance ../../pom.xml - 1.8.62 + 1.8.63-SNAPSHOT 4.0.0 diff --git a/features/org.wso2.carbon.identity.governance.feature/pom.xml b/features/org.wso2.carbon.identity.governance.feature/pom.xml index 5038b98cfc..2025ddbfea 100644 --- a/features/org.wso2.carbon.identity.governance.feature/pom.xml +++ b/features/org.wso2.carbon.identity.governance.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.62 + 1.8.63-SNAPSHOT ../../pom.xml diff --git a/features/org.wso2.carbon.identity.governance.server.feature/pom.xml b/features/org.wso2.carbon.identity.governance.server.feature/pom.xml index 2065f6be1e..c33c38adb0 100644 --- a/features/org.wso2.carbon.identity.governance.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.governance.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance ../../pom.xml - 1.8.62 + 1.8.63-SNAPSHOT 4.0.0 diff --git a/features/org.wso2.carbon.identity.idle.account.identification.server.feature/pom.xml b/features/org.wso2.carbon.identity.idle.account.identification.server.feature/pom.xml index 0dbb62b271..b1b0d55891 100644 --- a/features/org.wso2.carbon.identity.idle.account.identification.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.idle.account.identification.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance ../../pom.xml - 1.8.62 + 1.8.63-SNAPSHOT 4.0.0 diff --git a/features/org.wso2.carbon.identity.multi.attribute.login.service.server.feature/pom.xml b/features/org.wso2.carbon.identity.multi.attribute.login.service.server.feature/pom.xml index 3608da90b2..edf68697e6 100644 --- a/features/org.wso2.carbon.identity.multi.attribute.login.service.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.multi.attribute.login.service.server.feature/pom.xml @@ -3,7 +3,7 @@ identity-governance org.wso2.carbon.identity.governance - 1.8.62 + 1.8.63-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/features/org.wso2.carbon.identity.password.expiry.server.feature/pom.xml b/features/org.wso2.carbon.identity.password.expiry.server.feature/pom.xml index 2236ab3625..e8e5ea72fd 100644 --- a/features/org.wso2.carbon.identity.password.expiry.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.password.expiry.server.feature/pom.xml @@ -22,7 +22,7 @@ org.wso2.carbon.identity.governance identity-governance ../../pom.xml - 1.8.62 + 1.8.63-SNAPSHOT 4.0.0 diff --git a/features/org.wso2.carbon.identity.password.history.server.feature/pom.xml b/features/org.wso2.carbon.identity.password.history.server.feature/pom.xml index aa67e70cc3..6ce2d2f838 100644 --- a/features/org.wso2.carbon.identity.password.history.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.password.history.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance ../../pom.xml - 1.8.62 + 1.8.63-SNAPSHOT 4.0.0 diff --git a/features/org.wso2.carbon.identity.password.policy.server.feature/pom.xml b/features/org.wso2.carbon.identity.password.policy.server.feature/pom.xml index 7bcfaad245..54dda341b4 100644 --- a/features/org.wso2.carbon.identity.password.policy.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.password.policy.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance ../../pom.xml - 1.8.62 + 1.8.63-SNAPSHOT 4.0.0 diff --git a/features/org.wso2.carbon.identity.piicontroller.server.feature/pom.xml b/features/org.wso2.carbon.identity.piicontroller.server.feature/pom.xml index be06964b7d..46af7956b9 100644 --- a/features/org.wso2.carbon.identity.piicontroller.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.piicontroller.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance ../../pom.xml - 1.8.62 + 1.8.63-SNAPSHOT 4.0.0 diff --git a/features/org.wso2.carbon.identity.recovery.server.feature/pom.xml b/features/org.wso2.carbon.identity.recovery.server.feature/pom.xml index f0523c392e..fd12db8eb6 100644 --- a/features/org.wso2.carbon.identity.recovery.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.recovery.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance ../../pom.xml - 1.8.62 + 1.8.63-SNAPSHOT 4.0.0 diff --git a/features/org.wso2.carbon.identity.recovery.ui.feature/pom.xml b/features/org.wso2.carbon.identity.recovery.ui.feature/pom.xml index 2952184e18..e35434313a 100644 --- a/features/org.wso2.carbon.identity.recovery.ui.feature/pom.xml +++ b/features/org.wso2.carbon.identity.recovery.ui.feature/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.62 + 1.8.63-SNAPSHOT ../../pom.xml diff --git a/features/org.wso2.carbon.identity.tenant.resource.manager.feature/pom.xml b/features/org.wso2.carbon.identity.tenant.resource.manager.feature/pom.xml index fb3d4ed105..7c5162499b 100644 --- a/features/org.wso2.carbon.identity.tenant.resource.manager.feature/pom.xml +++ b/features/org.wso2.carbon.identity.tenant.resource.manager.feature/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.62 + 1.8.63-SNAPSHOT ../../pom.xml diff --git a/features/org.wso2.carbon.identity.user.server.feature/pom.xml b/features/org.wso2.carbon.identity.user.server.feature/pom.xml index e94c51fff4..e6b39ecd96 100644 --- a/features/org.wso2.carbon.identity.user.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.user.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance ../../pom.xml - 1.8.62 + 1.8.63-SNAPSHOT 4.0.0 diff --git a/pom.xml b/pom.xml index ea4bb11a83..4542511117 100644 --- a/pom.xml +++ b/pom.xml @@ -18,7 +18,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.62 + 1.8.63-SNAPSHOT 4.0.0 pom WSO2 Carbon - Governance Module @@ -37,7 +37,7 @@ https://github.com/wso2-extensions/identity-governance.git scm:git:https://github.com/wso2-extensions/identity-governance.git scm:git:https://github.com/wso2-extensions/identity-governance.git - v1.8.62 + v1.1.0-SNAPSHOT diff --git a/service-stubs/identity/org.wso2.carbon.identity.recovery.stub/pom.xml b/service-stubs/identity/org.wso2.carbon.identity.recovery.stub/pom.xml index 5d218a1a9d..d096f18e5a 100644 --- a/service-stubs/identity/org.wso2.carbon.identity.recovery.stub/pom.xml +++ b/service-stubs/identity/org.wso2.carbon.identity.recovery.stub/pom.xml @@ -19,7 +19,7 @@ org.wso2.carbon.identity.governance carbon-service-stubs - 1.8.62 + 1.8.63-SNAPSHOT ../pom.xml diff --git a/service-stubs/identity/pom.xml b/service-stubs/identity/pom.xml index 92731fcb2d..d40d6847c3 100644 --- a/service-stubs/identity/pom.xml +++ b/service-stubs/identity/pom.xml @@ -19,7 +19,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.62 + 1.8.63-SNAPSHOT ../../pom.xml From 14c70f8eb7b018cbaba6e9fc8e457e8a46898f7d Mon Sep 17 00:00:00 2001 From: Maduranga Siriwardena Date: Wed, 6 Sep 2023 14:59:34 +0530 Subject: [PATCH 13/31] Add improved user profile export functionality --- .../pom.xml | 1 + .../internal/UserProfileExportDataHolder.java | 111 ++++++++ .../UserProfileExportServiceComponent.java | 169 ++++++++++++ .../impl/AbstractUserInformationProvider.java | 33 ++- .../impl/BasicUserInformationProvider.java | 56 +--- .../impl/ConsentInformationProvider.java | 74 +----- .../impl/SecurityInformationProvider.java | 39 +-- .../impl/UserInformationServiceImpl.java | 38 +-- .../user/export/core/model/LinkedAccount.java | 84 ++++++ .../service/impl/LinkedAccountsProvider.java | 99 +++++++ .../impl/UserProfileInformationProvider.java | 143 ++++++++++ .../user/export/core/utils/Utils.java | 51 +++- .../BasicUserInformationProviderTest.java | 18 +- .../impl/ConsentInformationProviderTest.java | 33 ++- .../impl/MockUserInformationProvider.java | 5 +- .../impl/UserInformationServiceImplTest.java | 7 +- .../impl/LinkedAccountsProviderTest.java | 207 +++++++++++++++ .../UserProfileInformationProviderTest.java | 245 ++++++++++++++++++ .../src/test/resources/testng.xml | 2 + 19 files changed, 1204 insertions(+), 211 deletions(-) create mode 100644 components/org.wso2.carbon.identity.user.export.core/src/main/java/org/wso2/carbon/identity/user/export/core/internal/UserProfileExportDataHolder.java create mode 100644 components/org.wso2.carbon.identity.user.export.core/src/main/java/org/wso2/carbon/identity/user/export/core/internal/UserProfileExportServiceComponent.java create mode 100644 components/org.wso2.carbon.identity.user.export.core/src/main/java/org/wso2/carbon/identity/user/export/core/model/LinkedAccount.java create mode 100644 components/org.wso2.carbon.identity.user.export.core/src/main/java/org/wso2/carbon/identity/user/export/core/service/impl/LinkedAccountsProvider.java create mode 100644 components/org.wso2.carbon.identity.user.export.core/src/main/java/org/wso2/carbon/identity/user/export/core/service/impl/UserProfileInformationProvider.java create mode 100644 components/org.wso2.carbon.identity.user.export.core/src/test/java/org/wso2/carbon/identity/user/export/core/service/impl/LinkedAccountsProviderTest.java create mode 100644 components/org.wso2.carbon.identity.user.export.core/src/test/java/org/wso2/carbon/identity/user/export/core/service/impl/UserProfileInformationProviderTest.java diff --git a/components/org.wso2.carbon.identity.user.export.core/pom.xml b/components/org.wso2.carbon.identity.user.export.core/pom.xml index 4b056e410e..b3a6656b99 100644 --- a/components/org.wso2.carbon.identity.user.export.core/pom.xml +++ b/components/org.wso2.carbon.identity.user.export.core/pom.xml @@ -140,6 +140,7 @@ org.wso2.carbon.user.core.*; version="${carbon.kernel.package.import.version.range}", org.wso2.carbon.context; version="${carbon.kernel.package.import.version.range}", org.wso2.carbon.consent.mgt.core.*; version="${carbon.consent.mgt.version.range}", + org.wso2.carbon.identity.user.profile.mgt.*; version="${carbon.identity.framework.imp.pkg.version.range}", !org.wso2.carbon.identity.user.export.core.internal, diff --git a/components/org.wso2.carbon.identity.user.export.core/src/main/java/org/wso2/carbon/identity/user/export/core/internal/UserProfileExportDataHolder.java b/components/org.wso2.carbon.identity.user.export.core/src/main/java/org/wso2/carbon/identity/user/export/core/internal/UserProfileExportDataHolder.java new file mode 100644 index 0000000000..ae6141338e --- /dev/null +++ b/components/org.wso2.carbon.identity.user.export.core/src/main/java/org/wso2/carbon/identity/user/export/core/internal/UserProfileExportDataHolder.java @@ -0,0 +1,111 @@ +/* + * Copyright (c) 2023, WSO2 LLC. (http://www.wso2.com). + * + * WSO2 LLC. licenses this file to you under the Apache License, + * Version 2.0 (the "License"); you may not use this file except + * in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +package org.wso2.carbon.identity.user.export.core.internal; + +import org.wso2.carbon.consent.mgt.core.ConsentManager; +import org.wso2.carbon.identity.user.export.core.service.UserInformationProvider; +import org.wso2.carbon.identity.user.profile.mgt.association.federation.FederatedAssociationManager; +import org.wso2.carbon.user.core.service.RealmService; + +import java.util.ArrayList; +import java.util.List; + +/** + * Data holder for User Profile Export service. + */ +public class UserProfileExportDataHolder { + + private static RealmService realmService; + private static FederatedAssociationManager federatedAssociationManager; + private static ConsentManager consentManager; + + public static List getUserInformationProviders() { + + return userInformationProviders; + } + + public static void setUserInformationProviders( + List userInformationProviders) { + + UserProfileExportDataHolder.userInformationProviders = userInformationProviders; + } + + private static List userInformationProviders = new ArrayList<>(); + + + /** + * Get RealmService instance. + * + * @return RealmService instance. + */ + public static RealmService getRealmService() { + + return realmService; + } + + /** + * Set RealmService instance. + * + * @param realmService RealmService instance. + */ + public static void setRealmService(RealmService realmService) { + + UserProfileExportDataHolder.realmService = realmService; + } + + /** + * Set FederatedAssociationManager instance. + * + * @param federatedAssociationManager FederatedAssociationManager instance. + */ + public static void setFederatedAssociationManager(FederatedAssociationManager federatedAssociationManager) { + + UserProfileExportDataHolder.federatedAssociationManager = federatedAssociationManager; + } + + /** + * Get FederatedAssociationManager instance. + * + * @return FederatedAssociationManager instance. + */ + public static FederatedAssociationManager getFederatedAssociationManager() { + + return federatedAssociationManager; + } + + /** + * Get consent manager instance. + * + * @return Consent Manager + */ + public static ConsentManager getConsentManager() { + + return consentManager; + } + + /** + * Set consent manager instance. + * + * @param consentManager consent manager + */ + public static void setConsentManager(ConsentManager consentManager) { + + UserProfileExportDataHolder.consentManager = consentManager; + } +} diff --git a/components/org.wso2.carbon.identity.user.export.core/src/main/java/org/wso2/carbon/identity/user/export/core/internal/UserProfileExportServiceComponent.java b/components/org.wso2.carbon.identity.user.export.core/src/main/java/org/wso2/carbon/identity/user/export/core/internal/UserProfileExportServiceComponent.java new file mode 100644 index 0000000000..6bc4f6fd85 --- /dev/null +++ b/components/org.wso2.carbon.identity.user.export.core/src/main/java/org/wso2/carbon/identity/user/export/core/internal/UserProfileExportServiceComponent.java @@ -0,0 +1,169 @@ +/* + * Copyright (c) 2023, WSO2 LLC. (http://www.wso2.com). + * + * WSO2 LLC. licenses this file to you under the Apache License, + * Version 2.0 (the "License"); you may not use this file except + * in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +package org.wso2.carbon.identity.user.export.core.internal; + +import org.apache.commons.logging.Log; +import org.apache.commons.logging.LogFactory; +import org.osgi.service.component.ComponentContext; +import org.osgi.service.component.annotations.Activate; +import org.osgi.service.component.annotations.Component; +import org.osgi.service.component.annotations.Deactivate; +import org.osgi.service.component.annotations.Reference; +import org.osgi.service.component.annotations.ReferenceCardinality; +import org.osgi.service.component.annotations.ReferencePolicy; +import org.wso2.carbon.consent.mgt.core.ConsentManager; +import org.wso2.carbon.identity.user.export.core.internal.service.impl.BasicUserInformationProvider; +import org.wso2.carbon.identity.user.export.core.internal.service.impl.ConsentInformationProvider; +import org.wso2.carbon.identity.user.export.core.internal.service.impl.SecurityInformationProvider; +import org.wso2.carbon.identity.user.export.core.internal.service.impl.UserInformationServiceImpl; +import org.wso2.carbon.identity.user.export.core.service.UserInformationProvider; +import org.wso2.carbon.identity.user.export.core.service.UserInformationService; +import org.wso2.carbon.identity.user.export.core.service.impl.LinkedAccountsProvider; +import org.wso2.carbon.identity.user.export.core.service.impl.UserProfileInformationProvider; +import org.wso2.carbon.identity.user.profile.mgt.association.federation.FederatedAssociationManager; +import org.wso2.carbon.user.core.service.RealmService; + +/** + * User profile export service component. + */ +@Component( + name = "user.profile.export.service", + immediate = true +) +public class UserProfileExportServiceComponent { + + private static final Log LOG = LogFactory.getLog(UserProfileExportServiceComponent.class); + + @Activate + protected void activate(ComponentContext ctxt) { + + try { + UserInformationServiceImpl userInformationService = new UserInformationServiceImpl(); + ctxt.getBundleContext().registerService(UserInformationService.class.getName(), userInformationService, + null); + + UserProfileInformationProvider userProfileInfoProvider = new UserProfileInformationProvider(); + ctxt.getBundleContext().registerService(UserInformationProvider.class.getName(), userProfileInfoProvider, + null); + + LinkedAccountsProvider federatedAccountsProvider = new LinkedAccountsProvider(); + ctxt.getBundleContext().registerService(UserInformationProvider.class.getName(), federatedAccountsProvider, + null); + + BasicUserInformationProvider basicUserInformationProvider = new BasicUserInformationProvider(); + ctxt.getBundleContext().registerService(UserInformationProvider.class.getName(), basicUserInformationProvider, + null); + + ConsentInformationProvider consentInformationProvider = new ConsentInformationProvider(); + ctxt.getBundleContext().registerService(UserInformationProvider.class.getName(), consentInformationProvider, + null); + + SecurityInformationProvider securityInformationProvider = new SecurityInformationProvider(); + ctxt.getBundleContext().registerService(UserInformationProvider.class.getName(), securityInformationProvider, + null); + } catch (Exception e) { + LOG.error(e.getMessage(), e); + } + } + + @Deactivate + protected void deactivate(ComponentContext ctxt) { + + LOG.debug("User profile export service bundle is deactivated."); + } + + @Reference( + name = "user.realm.service", + service = RealmService.class, + cardinality = ReferenceCardinality.MANDATORY, + policy = ReferencePolicy.DYNAMIC, + unbind = "unsetRealmService" + ) + protected void setRealmService(RealmService rlmService) { + + if (rlmService != null) { + LOG.debug("Realm service initialized."); + } + UserProfileExportDataHolder.setRealmService(rlmService); + } + + protected void unsetRealmService(RealmService realmService) { + + UserProfileExportDataHolder.setRealmService(null); + } + + + @Reference( + name = "federation.association.manager.component", + service = FederatedAssociationManager.class, + cardinality = ReferenceCardinality.MANDATORY, + policy = ReferencePolicy.DYNAMIC, + unbind = "unsetFederatedAssociationManagerService" + ) + protected void setFederatedAssociationManagerService(FederatedAssociationManager + federatedAssociationManagerService) { + + UserProfileExportDataHolder.setFederatedAssociationManager(federatedAssociationManagerService); + } + + protected void unsetFederatedAssociationManagerService(FederatedAssociationManager + federatedAssociationManagerService) { + + UserProfileExportDataHolder.setFederatedAssociationManager(null); + } + + + @Reference( + name = "consent.manager", + service = ConsentManager.class, + cardinality = ReferenceCardinality.MANDATORY, + policy = ReferencePolicy.DYNAMIC, + unbind = "unsetConsentManager") + public void setConsentManager(ConsentManager consentManager) { + + if (LOG.isDebugEnabled()) { + LOG.debug("Setting the ConsentManager Service"); + } + UserProfileExportDataHolder.setConsentManager(consentManager); + } + + public void unsetConsentManager(ConsentManager consentManager) { + + if (LOG.isDebugEnabled()) { + LOG.debug("Unsetting the ConsentManager Service"); + } + UserProfileExportDataHolder.setConsentManager(null); + } + + @Reference( + name = "user.export.attribute.provider", + service = UserInformationProvider.class, + cardinality = ReferenceCardinality.MULTIPLE, + policy = ReferencePolicy.DYNAMIC, + unbind = "unsetUserAttributeProvider" + ) + public void setUserAttributeProvider(UserInformationProvider userInformationProvider) { + UserProfileExportDataHolder.getUserInformationProviders().add(userInformationProvider); + } + + public void unsetUserAttributeProvider(UserInformationProvider userInformationProvider) { + UserProfileExportDataHolder.getUserInformationProviders().remove(userInformationProvider); + } + +} diff --git a/components/org.wso2.carbon.identity.user.export.core/src/main/java/org/wso2/carbon/identity/user/export/core/internal/service/impl/AbstractUserInformationProvider.java b/components/org.wso2.carbon.identity.user.export.core/src/main/java/org/wso2/carbon/identity/user/export/core/internal/service/impl/AbstractUserInformationProvider.java index 9af9866d5e..50b257b948 100644 --- a/components/org.wso2.carbon.identity.user.export.core/src/main/java/org/wso2/carbon/identity/user/export/core/internal/service/impl/AbstractUserInformationProvider.java +++ b/components/org.wso2.carbon.identity.user.export.core/src/main/java/org/wso2/carbon/identity/user/export/core/internal/service/impl/AbstractUserInformationProvider.java @@ -1,7 +1,7 @@ /* - * Copyright (c) 2018, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. + * Copyright (c) 2023, WSO2 LLC. (http://www.wso2.com). * - * WSO2 Inc. licenses this file to you under the Apache License, + * WSO2 LLC. licenses this file to you under the Apache License, * Version 2.0 (the "License"); you may not use this file except * in compliance with the License. * You may obtain a copy of the License at @@ -19,9 +19,38 @@ package org.wso2.carbon.identity.user.export.core.internal.service.impl; import org.wso2.carbon.identity.core.handler.AbstractIdentityHandler; +import org.wso2.carbon.identity.user.export.core.UserExportException; +import org.wso2.carbon.identity.user.export.core.internal.UserProfileExportDataHolder; import org.wso2.carbon.identity.user.export.core.service.UserInformationProvider; +import org.wso2.carbon.user.api.UserRealm; +import org.wso2.carbon.user.api.UserStoreException; +import org.wso2.carbon.user.core.UserStoreManager; +import org.wso2.carbon.user.core.common.AbstractUserStoreManager; +import org.wso2.carbon.user.core.service.RealmService; public abstract class AbstractUserInformationProvider extends AbstractIdentityHandler implements UserInformationProvider { + + protected static final String WSO2_CLAIM_URI = "http://wso2.org/claims/"; + protected static final String WSO2_IDENTITY_CLAIM_URI = "http://wso2.org/claims/identity/"; + protected static final String WSO2_RUN_TIME_CLAIM_URI = "http://wso2.org/claims/runtime/"; + + protected UserStoreManager getUserStoreManager(int tenantId, String userStoreDomain) throws UserExportException { + + AbstractUserStoreManager userStoreManager; + try { + RealmService realmService = UserProfileExportDataHolder.getRealmService(); + UserRealm userRealm = realmService.getTenantUserRealm(tenantId); + userStoreManager = (AbstractUserStoreManager) userRealm.getUserStoreManager(); + } catch (UserStoreException e) { + throw new UserExportException("Error while getting userstore", e); + } + return userStoreManager.getSecondaryUserStoreManager(userStoreDomain); + } + + protected String getTenantDomain(int tenantId) throws UserStoreException { + + return UserProfileExportDataHolder.getRealmService().getTenantManager().getDomain(tenantId); + } } diff --git a/components/org.wso2.carbon.identity.user.export.core/src/main/java/org/wso2/carbon/identity/user/export/core/internal/service/impl/BasicUserInformationProvider.java b/components/org.wso2.carbon.identity.user.export.core/src/main/java/org/wso2/carbon/identity/user/export/core/internal/service/impl/BasicUserInformationProvider.java index f0aa3ae716..6f59487521 100644 --- a/components/org.wso2.carbon.identity.user.export.core/src/main/java/org/wso2/carbon/identity/user/export/core/internal/service/impl/BasicUserInformationProvider.java +++ b/components/org.wso2.carbon.identity.user.export.core/src/main/java/org/wso2/carbon/identity/user/export/core/internal/service/impl/BasicUserInformationProvider.java @@ -21,19 +21,13 @@ import org.apache.commons.lang.StringUtils; import org.apache.commons.logging.Log; import org.apache.commons.logging.LogFactory; -import org.osgi.service.component.annotations.Component; -import org.osgi.service.component.annotations.Reference; -import org.osgi.service.component.annotations.ReferenceCardinality; -import org.osgi.service.component.annotations.ReferencePolicy; import org.wso2.carbon.identity.core.util.IdentityUtil; import org.wso2.carbon.identity.user.export.core.UserExportException; import org.wso2.carbon.identity.user.export.core.dto.UserInformationDTO; -import org.wso2.carbon.identity.user.export.core.service.UserInformationProvider; +import org.wso2.carbon.identity.user.export.core.internal.UserProfileExportDataHolder; import org.wso2.carbon.user.api.Claim; import org.wso2.carbon.user.api.UserStoreException; -import org.wso2.carbon.user.api.UserStoreManager; import org.wso2.carbon.user.core.UserRealm; -import org.wso2.carbon.user.core.service.RealmService; import java.util.ArrayList; import java.util.Arrays; @@ -44,18 +38,12 @@ /** * Provide basic information of user. */ -@Component( - name = "org.wso2.carbon.user.export.basic", - immediate = true, - service = UserInformationProvider.class -) public class BasicUserInformationProvider extends AbstractUserInformationProvider { private static final Log log = LogFactory.getLog(BasicUserInformationProvider.class); protected static final String CHALLENGE_QUESTION_URIS_CLAIM = "http://wso2.org/claims/challengeQuestionUris"; protected static final String QUESTION_CHALLENGE_SEPARATOR = "Recovery.Question.Password.Separator"; protected static final String DEFAULT_CHALLENGE_QUESTION_SEPARATOR = "!"; - protected RealmService realmService; @Override public UserInformationDTO getRetainedUserInformation(String username, String userStoreDomain, int tenantId) @@ -109,28 +97,12 @@ protected List getChallengeQuestionUris(String challengeQuestionUrisClai } } - protected UserStoreManager getUserStoreManager(int tenantId, String userStoreDomain) throws UserExportException { - - UserStoreManager userStoreManager; - try { - String tenantDomain = realmService.getTenantManager().getDomain(tenantId); - userStoreManager = getUserRealm(tenantDomain).getUserStoreManager().getSecondaryUserStoreManager - (userStoreDomain); - } catch (UserStoreException e) { - throw new UserExportException("Error while retrieving the user store manager.", e); - } - if (log.isDebugEnabled()) { - log.debug("Retrieved user store manager for tenant id: " + tenantId); - } - return userStoreManager; - } - protected UserRealm getUserRealm(String tenantDomain) throws UserExportException { UserRealm realm; try { - int tenantId = realmService.getTenantManager().getTenantId(tenantDomain); - realm = (UserRealm) realmService.getTenantUserRealm(tenantId); + int tenantId = UserProfileExportDataHolder.getRealmService().getTenantManager().getTenantId(tenantDomain); + realm = (UserRealm) UserProfileExportDataHolder.getRealmService().getTenantUserRealm(tenantId); } catch (UserStoreException e) { throw new UserExportException( "Error occurred while retrieving the Realm for " + tenantDomain + " to handle claims", e); @@ -147,26 +119,4 @@ protected String challengeQuestionSeparator() { } return challengeQuestionSeparator; } - - @Reference( - name = "user.realmservice.default", - service = org.wso2.carbon.user.core.service.RealmService.class, - cardinality = ReferenceCardinality.MANDATORY, - policy = ReferencePolicy.DYNAMIC, - unbind = "unsetRealmService") - public void setRealmService(RealmService realmService) { - - if (log.isDebugEnabled()) { - log.debug("Setting the Realm Service"); - } - this.realmService = realmService; - } - - public void unsetRealmService(RealmService realmService) { - - if (log.isDebugEnabled()) { - log.debug("Unsetting the Realm Service"); - } - this.realmService = null; - } } diff --git a/components/org.wso2.carbon.identity.user.export.core/src/main/java/org/wso2/carbon/identity/user/export/core/internal/service/impl/ConsentInformationProvider.java b/components/org.wso2.carbon.identity.user.export.core/src/main/java/org/wso2/carbon/identity/user/export/core/internal/service/impl/ConsentInformationProvider.java index 47bca09c85..9fb8bea886 100644 --- a/components/org.wso2.carbon.identity.user.export.core/src/main/java/org/wso2/carbon/identity/user/export/core/internal/service/impl/ConsentInformationProvider.java +++ b/components/org.wso2.carbon.identity.user.export.core/src/main/java/org/wso2/carbon/identity/user/export/core/internal/service/impl/ConsentInformationProvider.java @@ -1,7 +1,7 @@ /* - * Copyright (c) 2018, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. + * Copyright (c) 2018, WSO2 LLC. (http://www.wso2.com). * - * WSO2 Inc. licenses this file to you under the Apache License, + * WSO2 LLC. licenses this file to you under the Apache License, * Version 2.0 (the "License"); you may not use this file except * in compliance with the License. * You may obtain a copy of the License at @@ -20,11 +20,6 @@ import org.apache.commons.logging.Log; import org.apache.commons.logging.LogFactory; -import org.osgi.service.component.annotations.Component; -import org.osgi.service.component.annotations.Reference; -import org.osgi.service.component.annotations.ReferenceCardinality; -import org.osgi.service.component.annotations.ReferencePolicy; -import org.wso2.carbon.consent.mgt.core.ConsentManager; import org.wso2.carbon.consent.mgt.core.constant.ConsentConstants; import org.wso2.carbon.consent.mgt.core.exception.ConsentManagementException; import org.wso2.carbon.consent.mgt.core.model.Receipt; @@ -32,10 +27,9 @@ import org.wso2.carbon.identity.user.export.core.UserExportException; import org.wso2.carbon.identity.user.export.core.dto.ConsentReceiptDTO; import org.wso2.carbon.identity.user.export.core.dto.UserInformationDTO; -import org.wso2.carbon.identity.user.export.core.service.UserInformationProvider; +import org.wso2.carbon.identity.user.export.core.internal.UserProfileExportDataHolder; import org.wso2.carbon.identity.user.export.core.utils.Utils; import org.wso2.carbon.user.api.UserStoreException; -import org.wso2.carbon.user.core.service.RealmService; import org.wso2.carbon.user.core.util.UserCoreUtil; import java.util.ArrayList; @@ -44,16 +38,9 @@ /** * Provide consent related information of user */ -@Component( - name = "org.wso2.carbon.user.export.consent", - immediate = true, - service = UserInformationProvider.class -) public class ConsentInformationProvider extends AbstractUserInformationProvider { - private static final Log log = LogFactory.getLog(ConsentInformationProvider.class); - private ConsentManager consentManager; - private RealmService realmService; + private static final Log LOG = LogFactory.getLog(ConsentInformationProvider.class); @Override public UserInformationDTO getRetainedUserInformation(String username, String userStoreDomain, int tenantId) @@ -63,17 +50,17 @@ public UserInformationDTO getRetainedUserInformation(String username, String use List receipts = new ArrayList<>(); int limit = 100; int offset = 0; - String tenantDomain = realmService.getTenantManager().getDomain(tenantId); + String tenantDomain = UserProfileExportDataHolder.getRealmService().getTenantManager().getDomain(tenantId); List receiptListResponses; do { - receiptListResponses = consentManager.searchReceipts(limit, offset, UserCoreUtil - .addDomainToName(username, userStoreDomain), tenantDomain, - null, ConsentConstants.ACTIVE_STATE); + receiptListResponses = UserProfileExportDataHolder.getConsentManager() + .searchReceipts(limit, offset, UserCoreUtil.addDomainToName(username, userStoreDomain), + tenantDomain, null, ConsentConstants.ACTIVE_STATE); for (ReceiptListResponse receiptListResponse : receiptListResponses) { String receiptId = receiptListResponse.getConsentReceiptId(); - Receipt receipt = consentManager.getReceipt(receiptId); + Receipt receipt = UserProfileExportDataHolder.getConsentManager().getReceipt(receiptId); receipts.add(Utils.getConsentReceiptDTO(receipt)); } offset += limit; @@ -96,47 +83,4 @@ public String getType() { return "consents"; } - @Reference( - name = "user.realmservice.default", - service = org.wso2.carbon.user.core.service.RealmService.class, - cardinality = ReferenceCardinality.MANDATORY, - policy = ReferencePolicy.DYNAMIC, - unbind = "unsetRealmService") - public void setRealmService(RealmService realmService) { - - if (log.isDebugEnabled()) { - log.info("Setting the Realm Service"); - } - this.realmService = realmService; - } - - public void unsetRealmService(RealmService realmService) { - - if (log.isDebugEnabled()) { - log.info("Unsetting the Realm Service"); - } - this.realmService = null; - } - - @Reference( - name = "consent.manager", - service = ConsentManager.class, - cardinality = ReferenceCardinality.MANDATORY, - policy = ReferencePolicy.DYNAMIC, - unbind = "unsetConsentManager") - public void setConsentManager(ConsentManager consentManager) { - - if (log.isDebugEnabled()) { - log.debug("Setting the ConsentManager Service"); - } - this.consentManager = consentManager; - } - - public void unsetConsentManager(ConsentManager consentManager) { - - if (log.isDebugEnabled()) { - log.debug("Unsetting the ConsentManager Service"); - } - this.consentManager = null; - } } diff --git a/components/org.wso2.carbon.identity.user.export.core/src/main/java/org/wso2/carbon/identity/user/export/core/internal/service/impl/SecurityInformationProvider.java b/components/org.wso2.carbon.identity.user.export.core/src/main/java/org/wso2/carbon/identity/user/export/core/internal/service/impl/SecurityInformationProvider.java index 4539bde636..3ad8b1a59d 100644 --- a/components/org.wso2.carbon.identity.user.export.core/src/main/java/org/wso2/carbon/identity/user/export/core/internal/service/impl/SecurityInformationProvider.java +++ b/components/org.wso2.carbon.identity.user.export.core/src/main/java/org/wso2/carbon/identity/user/export/core/internal/service/impl/SecurityInformationProvider.java @@ -20,18 +20,12 @@ import org.apache.commons.logging.Log; import org.apache.commons.logging.LogFactory; -import org.osgi.service.component.annotations.Component; -import org.osgi.service.component.annotations.Reference; -import org.osgi.service.component.annotations.ReferenceCardinality; -import org.osgi.service.component.annotations.ReferencePolicy; import org.wso2.carbon.identity.user.export.core.UserExportException; import org.wso2.carbon.identity.user.export.core.dto.SecurityInformationDTO; import org.wso2.carbon.identity.user.export.core.dto.UserInformationDTO; -import org.wso2.carbon.identity.user.export.core.service.UserInformationProvider; import org.wso2.carbon.user.api.Claim; import org.wso2.carbon.user.api.UserStoreException; import org.wso2.carbon.user.api.UserStoreManager; -import org.wso2.carbon.user.core.service.RealmService; import java.util.List; import java.util.Map; @@ -39,14 +33,9 @@ /** * Provide basic information of user. */ -@Component( - name = "org.wso2.carbon.user.export.security", - immediate = true, - service = UserInformationProvider.class -) public class SecurityInformationProvider extends BasicUserInformationProvider { - private static final Log log = LogFactory.getLog(SecurityInformationProvider.class); + private static final Log LOG = LogFactory.getLog(SecurityInformationProvider.class); @Override public UserInformationDTO getRetainedUserInformation(String username, String userStoreDomain, int tenantId) @@ -89,8 +78,8 @@ public UserInformationDTO getRetainedUserInformation(String username, String use return new UserInformationDTO(securityInformationDTO); } else { - if (log.isDebugEnabled()) { - log.debug("Challenge question claim is not available in the tenant: " + tenantId); + if (LOG.isDebugEnabled()) { + LOG.debug("Challenge question claim is not available in the tenant: " + tenantId); } } return new UserInformationDTO(); @@ -101,26 +90,4 @@ public String getType() { return "security"; } - @Reference( - name = "user.realmservice.default", - service = org.wso2.carbon.user.core.service.RealmService.class, - cardinality = ReferenceCardinality.MANDATORY, - policy = ReferencePolicy.DYNAMIC, - unbind = "unsetRealmService") - public void setRealmService(RealmService realmService) { - - if (log.isDebugEnabled()) { - log.debug("Setting the Realm Service"); - } - this.realmService = realmService; - } - - public void unsetRealmService(RealmService realmService) { - - if (log.isDebugEnabled()) { - log.debug("Unsetting the Realm Service"); - } - this.realmService = null; - } - } diff --git a/components/org.wso2.carbon.identity.user.export.core/src/main/java/org/wso2/carbon/identity/user/export/core/internal/service/impl/UserInformationServiceImpl.java b/components/org.wso2.carbon.identity.user.export.core/src/main/java/org/wso2/carbon/identity/user/export/core/internal/service/impl/UserInformationServiceImpl.java index 03733c7ff3..db75f6e99c 100644 --- a/components/org.wso2.carbon.identity.user.export.core/src/main/java/org/wso2/carbon/identity/user/export/core/internal/service/impl/UserInformationServiceImpl.java +++ b/components/org.wso2.carbon.identity.user.export.core/src/main/java/org/wso2/carbon/identity/user/export/core/internal/service/impl/UserInformationServiceImpl.java @@ -1,7 +1,7 @@ /* - * Copyright (c) 2018, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. + * Copyright (c) 2018, WSO2 LLC. (http://www.wso2.com). * - * WSO2 Inc. licenses this file to you under the Apache License, + * WSO2 LLC. licenses this file to you under the Apache License, * Version 2.0 (the "License"); you may not use this file except * in compliance with the License. * You may obtain a copy of the License at @@ -18,40 +18,31 @@ package org.wso2.carbon.identity.user.export.core.internal.service.impl; -import org.osgi.service.component.annotations.Component; -import org.osgi.service.component.annotations.Reference; -import org.osgi.service.component.annotations.ReferenceCardinality; -import org.osgi.service.component.annotations.ReferencePolicy; import org.wso2.carbon.identity.user.export.core.UserExportException; import org.wso2.carbon.identity.user.export.core.dto.UserInformationDTO; +import org.wso2.carbon.identity.user.export.core.internal.UserProfileExportDataHolder; import org.wso2.carbon.identity.user.export.core.service.UserInformationProvider; import org.wso2.carbon.identity.user.export.core.service.UserInformationService; -import java.util.ArrayList; import java.util.HashMap; -import java.util.List; import java.util.Map; /** * {@inheritDoc} */ -@Component( - name = "org.wso2.carbon.user.export.service", - immediate = true -) public class UserInformationServiceImpl implements UserInformationService { - private List userInformationProviders = new ArrayList<>(); @Override public Map getRetainedUserInformation(String username, String userStoreDomain, int tenantId) throws UserExportException { Map userInformation = new HashMap<>(); - for (UserInformationProvider userInformationProvider : userInformationProviders) { + for (UserInformationProvider userInformationProvider : + UserProfileExportDataHolder.getUserInformationProviders()) { if (userInformationProvider.isEnabled()) { - UserInformationDTO retainedUserInformation = userInformationProvider.getRetainedUserInformation - (username, userStoreDomain, tenantId); + UserInformationDTO retainedUserInformation = + userInformationProvider.getRetainedUserInformation(username, userStoreDomain, tenantId); if (retainedUserInformation != null && retainedUserInformation.isInformationAvailable()) { String type = userInformationProvider.getType(); userInformation.put(type, retainedUserInformation.getData()); @@ -60,19 +51,4 @@ public Map getRetainedUserInformation(String username, String us } return userInformation; } - - @Reference( - name = "user.export.attribute.provider", - service = UserInformationProvider.class, - cardinality = ReferenceCardinality.MULTIPLE, - policy = ReferencePolicy.DYNAMIC, - unbind = "unsetUserAttributeProvider" - ) - public void setUserAttributeProvider(UserInformationProvider userInformationProvider) { - userInformationProviders.add(userInformationProvider); - } - - public void unsetUserAttributeProvider(UserInformationProvider userInformationProvider) { - userInformationProviders.remove(userInformationProvider); - } } diff --git a/components/org.wso2.carbon.identity.user.export.core/src/main/java/org/wso2/carbon/identity/user/export/core/model/LinkedAccount.java b/components/org.wso2.carbon.identity.user.export.core/src/main/java/org/wso2/carbon/identity/user/export/core/model/LinkedAccount.java new file mode 100644 index 0000000000..38d3d86b1f --- /dev/null +++ b/components/org.wso2.carbon.identity.user.export.core/src/main/java/org/wso2/carbon/identity/user/export/core/model/LinkedAccount.java @@ -0,0 +1,84 @@ +/* + * Copyright (c) 2023, WSO2 LLC. (http://www.wso2.com). + * + * WSO2 LLC. licenses this file to you under the Apache License, + * Version 2.0 (the "License"); you may not use this file except + * in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +package org.wso2.carbon.identity.user.export.core.model; + +/** + * Data model for linked accounts. + */ +public class LinkedAccount { + + private final String connection; + private final String connectionId; + private final String linkedAccountId; + private final boolean isExternalConnection; + + /** + * @param connectionName Name of the IDP. + * @param connectionId Unique Id of the IDP + * @param linkedAccountId User's linked account ID. + * @param isExternalConnection is social connection or not. + */ + public LinkedAccount(String connectionName, String connectionId, String linkedAccountId, + boolean isExternalConnection) { + + this.connection = connectionName; + this.connectionId = connectionId; + this.linkedAccountId = linkedAccountId; + this.isExternalConnection = isExternalConnection; + } + + /** + * Return the IdP name. + * + * @return connection Name; + */ + public String getConnection() { + + return this.connection; + } + + /** + * Return the unique ID of the IdP connection. + * + * @return connection ID. + */ + public String getConnectionId() { + + return this.connectionId; + } + + /** + * Return true if this is an external IdP connection. + * + * @return true if this is an external IdP connection. + */ + public boolean getIsExternalConnection() { + + return this.isExternalConnection; + } + + /** + * Return the userId of the linked account. + * + * @return linkedAccountId + */ + public String getLinkedAccountId() { + + return this.linkedAccountId; + } +} diff --git a/components/org.wso2.carbon.identity.user.export.core/src/main/java/org/wso2/carbon/identity/user/export/core/service/impl/LinkedAccountsProvider.java b/components/org.wso2.carbon.identity.user.export.core/src/main/java/org/wso2/carbon/identity/user/export/core/service/impl/LinkedAccountsProvider.java new file mode 100644 index 0000000000..df578cdaac --- /dev/null +++ b/components/org.wso2.carbon.identity.user.export.core/src/main/java/org/wso2/carbon/identity/user/export/core/service/impl/LinkedAccountsProvider.java @@ -0,0 +1,99 @@ +/* + * Copyright (c) 2023, WSO2 LLC. (http://www.wso2.com). + * + * WSO2 LLC. licenses this file to you under the Apache License, + * Version 2.0 (the "License"); you may not use this file except + * in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +package org.wso2.carbon.identity.user.export.core.service.impl; + +import org.apache.commons.lang.ArrayUtils; +import org.apache.commons.logging.Log; +import org.apache.commons.logging.LogFactory; +import org.wso2.carbon.identity.application.authentication.framework.model.AuthenticatedUser; +import org.wso2.carbon.identity.application.common.model.User; +import org.wso2.carbon.identity.user.export.core.UserExportException; +import org.wso2.carbon.identity.user.export.core.dto.UserInformationDTO; +import org.wso2.carbon.identity.user.export.core.internal.UserProfileExportDataHolder; +import org.wso2.carbon.identity.user.export.core.internal.service.impl.AbstractUserInformationProvider; +import org.wso2.carbon.identity.user.export.core.model.LinkedAccount; +import org.wso2.carbon.identity.user.profile.mgt.association.federation.FederatedAssociationManager; +import org.wso2.carbon.identity.user.profile.mgt.association.federation.exception.FederatedAssociationManagerException; +import org.wso2.carbon.identity.user.profile.mgt.association.federation.model.AssociatedIdentityProvider; +import org.wso2.carbon.identity.user.profile.mgt.association.federation.model.FederatedAssociation; +import org.wso2.carbon.user.api.UserStoreException; + +import java.util.ArrayList; +import java.util.List; + +/** + * This is used to provide the details about the linked accounts of user in the user profile export API. + */ +public class LinkedAccountsProvider extends AbstractUserInformationProvider { + + private static final Log LOG = LogFactory.getLog(LinkedAccountsProvider.class); + + public LinkedAccountsProvider() { + + } + + @Override + public UserInformationDTO getRetainedUserInformation(String username, String userStoreDomain, int tenantId) + throws UserExportException { + + FederatedAssociationManager federatedAssociationManager = UserProfileExportDataHolder + .getFederatedAssociationManager(); + + try { + List linkedAccounts = new ArrayList<>(); + FederatedAssociation[] federatedAssociations = federatedAssociationManager.getFederatedAssociationsOfUser + (getUser(username, userStoreDomain, tenantId)); + + if (ArrayUtils.isEmpty(federatedAssociations)) { + return new UserInformationDTO(); + } + + for (FederatedAssociation federatedAssociation : federatedAssociations) { + if (federatedAssociation == null) { + break; + } + AssociatedIdentityProvider idp = federatedAssociation.getIdp(); + if (idp != null) { + LinkedAccount linkedAccount = new LinkedAccount(idp.getName(), idp.getId(), + federatedAssociation.getFederatedUserId(), true); + linkedAccounts.add(linkedAccount); + } else { + LOG.debug("Linked Connection is null"); + } + } + return new UserInformationDTO(linkedAccounts); + } catch (FederatedAssociationManagerException | UserStoreException e) { + throw new UserExportException("Error while getting federated associations", e); + } + } + + @Override + public String getType() { + + return "linked_accounts"; + } + + private User getUser(String username, String userStoreDomain, int tenantId) throws UserStoreException { + + User user = new AuthenticatedUser(); + user.setUserName(username); + user.setUserStoreDomain(userStoreDomain); + user.setTenantDomain(getTenantDomain(tenantId)); + return user; + } +} diff --git a/components/org.wso2.carbon.identity.user.export.core/src/main/java/org/wso2/carbon/identity/user/export/core/service/impl/UserProfileInformationProvider.java b/components/org.wso2.carbon.identity.user.export.core/src/main/java/org/wso2/carbon/identity/user/export/core/service/impl/UserProfileInformationProvider.java new file mode 100644 index 0000000000..f5d1513be8 --- /dev/null +++ b/components/org.wso2.carbon.identity.user.export.core/src/main/java/org/wso2/carbon/identity/user/export/core/service/impl/UserProfileInformationProvider.java @@ -0,0 +1,143 @@ +/* + * Copyright (c) 2023, WSO2 LLC. (http://www.wso2.com). + * + * WSO2 LLC. licenses this file to you under the Apache License, + * Version 2.0 (the "License"); you may not use this file except + * in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +package org.wso2.carbon.identity.user.export.core.service.impl; + +import org.apache.commons.lang.ArrayUtils; +import org.apache.commons.logging.Log; +import org.apache.commons.logging.LogFactory; +import org.wso2.carbon.identity.user.export.core.UserExportException; +import org.wso2.carbon.identity.user.export.core.dto.UserInformationDTO; +import org.wso2.carbon.identity.user.export.core.internal.UserProfileExportDataHolder; +import org.wso2.carbon.identity.user.export.core.internal.service.impl.AbstractUserInformationProvider; +import org.wso2.carbon.identity.user.export.core.utils.Utils; +import org.wso2.carbon.user.api.Claim; +import org.wso2.carbon.user.api.ClaimMapping; +import org.wso2.carbon.user.core.UserStoreException; +import org.wso2.carbon.user.core.UserStoreManager; + +import java.util.ArrayList; +import java.util.HashMap; +import java.util.List; +import java.util.Map; +import java.util.stream.Collectors; +import java.util.stream.Stream; + +/** + * This is used to provide the profile information of user in the user profile export API. + */ +public class UserProfileInformationProvider extends AbstractUserInformationProvider { + + private static final Log LOG = LogFactory.getLog(UserProfileInformationProvider.class); + private static final String ROLES_URIS_CLAIM = "roles"; + + @Override + public UserInformationDTO getRetainedUserInformation(String username, String userStoreDomain, int tenantId) + throws UserExportException { + + Claim[] userClaimValues; + UserStoreManager userStoreManager; + try { + userStoreManager = getUserStoreManager(tenantId, userStoreDomain); + userClaimValues = userStoreManager.getUserClaimValues(username, null); + } catch (UserStoreException e) { + throw new UserExportException("Error while getting user claims", e); + } + + if (ArrayUtils.isEmpty(userClaimValues)) { + return new UserInformationDTO(); + } + + Map userProfileAttributes = new HashMap<>(); + List claimsToInclude = getClaimsToInclude(tenantId); + List claimsToExclude = Utils.getRestrictedClaims(); + for (Claim claim : userClaimValues) { + String claimURI = claim.getClaimUri(); + String claimValue = claim.getValue(); + String claimName; + if (!claimsToInclude.contains(claimURI) || claimsToExclude.contains(claimURI)) { + // If the claim is not configured as supported by default in the org level or configured in the toml + // config, + // or configured as a restricted claim, + // those won't be exposed in the profile API. + continue; + } + if (!claimURI.contains(WSO2_IDENTITY_CLAIM_URI)) { + claimName = claimURI.replace(WSO2_CLAIM_URI, ""); + } else { + claimName = claimURI.replace(WSO2_IDENTITY_CLAIM_URI, ""); + } + userProfileAttributes.put(claimName, claimValue); + } + return new UserInformationDTO(userProfileAttributes); + } + + + @Override + public String getType() { + + return "user_profile"; + } + + /** + * Get all the claims to include in the user profile export API. This will return the list of the claims that + * are enabled via the toml config and user profile. + * + * @param tenantId tenant Id + * @return list of all the claims to include in the user profile export API + */ + private List getClaimsToInclude(int tenantId) { + + List supportedClaims = getSupportedClaims(tenantId); + List additionalClaimsToInclude = Utils.getAdditionalClaimsToInclude(); + + return Stream.concat(supportedClaims.stream(), additionalClaimsToInclude.stream()) + .distinct() + .collect(Collectors.toList()); + } + + /** + * Get the claims that are enabled in the user profile. + * + * @param tenantId tenant Id. + * @return List of the claims that are enabled in the user profile. + */ + private List getSupportedClaims(int tenantId) { + + ClaimMapping[] claims; + List supportedClaims = new ArrayList<>(); + + try { + claims = UserProfileExportDataHolder.getRealmService().getTenantUserRealm(tenantId).getClaimManager() + .getAllSupportClaimMappingsByDefault(); + for (ClaimMapping claimMapping : claims) { + if (claimMapping.getClaim().getClaimUri().contains(WSO2_IDENTITY_CLAIM_URI) || + claimMapping.getClaim().getClaimUri().contains(WSO2_RUN_TIME_CLAIM_URI)) { + if (LOG.isDebugEnabled()) { + LOG.debug("Claim URI: " + claimMapping.getClaim().getClaimUri() + " is either Identity claim" + + " or a runtime claim. It should be enabled via config. Hence ignoring this claim"); + } + continue; + } + supportedClaims.add(claimMapping.getClaim().getClaimUri()); + } + return supportedClaims; + } catch (org.wso2.carbon.user.api.UserStoreException e) { + throw new RuntimeException(e); + } + } +} diff --git a/components/org.wso2.carbon.identity.user.export.core/src/main/java/org/wso2/carbon/identity/user/export/core/utils/Utils.java b/components/org.wso2.carbon.identity.user.export.core/src/main/java/org/wso2/carbon/identity/user/export/core/utils/Utils.java index 3187902871..063c4773c4 100644 --- a/components/org.wso2.carbon.identity.user.export.core/src/main/java/org/wso2/carbon/identity/user/export/core/utils/Utils.java +++ b/components/org.wso2.carbon.identity.user.export.core/src/main/java/org/wso2/carbon/identity/user/export/core/utils/Utils.java @@ -1,8 +1,8 @@ /* - * Copyright (c) 2018, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. + * Copyright (c) 2018, WSO2 LLC. (http://www.wso2.com). * - * WSO2 Inc. licenses this file to you under the Apache License, - * Version 2.0 (the "License"); you may not use this file except + * WSO2 LLC. licenses this file to you under the Apache License, + * Version 2.0 (the "License"); you may not use this file except * in compliance with the License. * You may obtain a copy of the License at * @@ -19,6 +19,7 @@ package org.wso2.carbon.identity.user.export.core.utils; import org.wso2.carbon.consent.mgt.core.model.Receipt; +import org.wso2.carbon.identity.core.util.IdentityConfigParser; import org.wso2.carbon.identity.user.export.core.dto.AddressDTO; import org.wso2.carbon.identity.user.export.core.dto.ConsentReceiptDTO; import org.wso2.carbon.identity.user.export.core.dto.PiiCategoryDTO; @@ -26,6 +27,10 @@ import org.wso2.carbon.identity.user.export.core.dto.PurposeDTO; import org.wso2.carbon.identity.user.export.core.dto.ServiceDTO; +import java.util.ArrayList; +import java.util.Collections; +import java.util.List; +import java.util.Map; import java.util.stream.Collectors; public class Utils { @@ -99,4 +104,44 @@ public static ConsentReceiptDTO getConsentReceiptDTO(Receipt receipt) { }).collect(Collectors.toList())); return consentReceiptDTO; } + + /** + * Return the additional claims that need to be added in the user profile export API. + * By default, User profile export API shows the claims that are exposed in the user profile UI view. If there are + * any additional claims required in the export API, they can be configured in the server level via this config. + * + * @return The list of additional claims. + */ + public static List getAdditionalClaimsToInclude() { + + return getConfigs("UserProfileExport.AdditionalClaims.AdditionalClaim"); + } + + /** + * Return the claims that need to be restricted in the user profile export API. + * By default, User profile export API shows the claims that are exposed in the user profile UI view. If there are + * any claims required to be excluded in the export API, they can be configured in the server level via this config. + * + * @return The list of restricted claims. + */ + public static List getRestrictedClaims() { + + return getConfigs("UserProfileExport.RestrictedClaims.RestrictedClaim"); + } + + private static List getConfigs(String configPath) { + + Map configuration = IdentityConfigParser.getInstance().getConfiguration(); + Object elements = configuration.get(configPath); + if (elements != null) { + List configValues = new ArrayList<>(); + if (elements instanceof List) { + configValues.addAll((List) elements); + } else { + configValues.add(elements.toString()); + } + return configValues; + } + return Collections.emptyList(); + } } diff --git a/components/org.wso2.carbon.identity.user.export.core/src/test/java/org/wso2/carbon/identity/user/export/core/internal/service/impl/BasicUserInformationProviderTest.java b/components/org.wso2.carbon.identity.user.export.core/src/test/java/org/wso2/carbon/identity/user/export/core/internal/service/impl/BasicUserInformationProviderTest.java index 536696ef5b..dc97b718b2 100644 --- a/components/org.wso2.carbon.identity.user.export.core/src/test/java/org/wso2/carbon/identity/user/export/core/internal/service/impl/BasicUserInformationProviderTest.java +++ b/components/org.wso2.carbon.identity.user.export.core/src/test/java/org/wso2/carbon/identity/user/export/core/internal/service/impl/BasicUserInformationProviderTest.java @@ -22,11 +22,13 @@ import org.testng.annotations.Test; import org.wso2.carbon.identity.user.export.core.UserExportException; import org.wso2.carbon.identity.user.export.core.dto.UserInformationDTO; +import org.wso2.carbon.identity.user.export.core.internal.UserProfileExportDataHolder; import org.wso2.carbon.user.core.UserCoreConstants; import org.wso2.carbon.user.core.UserRealm; import org.wso2.carbon.user.core.UserStoreException; import org.wso2.carbon.user.core.UserStoreManager; import org.wso2.carbon.user.core.claim.Claim; +import org.wso2.carbon.user.core.common.AbstractUserStoreManager; import org.wso2.carbon.user.core.service.RealmService; import org.wso2.carbon.user.core.tenant.TenantManager; import org.wso2.carbon.utils.multitenancy.MultitenantConstants; @@ -57,7 +59,7 @@ public void testGetUserAttributes() throws Exception { when(tenantManager.getDomain(anyInt())).thenReturn(MultitenantConstants.SUPER_TENANT_DOMAIN_NAME); UserRealm userRealm = mock(UserRealm.class); - UserStoreManager userStoreManager = mock(UserStoreManager.class); + AbstractUserStoreManager userStoreManager = mock(AbstractUserStoreManager.class); UserStoreManager secUserStoreManager = mock(UserStoreManager.class); when(userStoreManager.getSecondaryUserStoreManager(anyString())).thenReturn(secUserStoreManager); @@ -69,7 +71,7 @@ public void testGetUserAttributes() throws Exception { when(secUserStoreManager.getUserClaimValues(USERNAME_CLAIM_VALUE, null)).thenReturn(claims); BasicUserInformationProvider basicUserInformationProvider = new BasicUserInformationProvider(); - basicUserInformationProvider.setRealmService(realmService); + UserProfileExportDataHolder.setRealmService(realmService); UserInformationDTO userAttributesObj = basicUserInformationProvider.getRetainedUserInformation(USERNAME_CLAIM_VALUE, UserCoreConstants.PRIMARY_DEFAULT_DOMAIN_NAME, -1234); if (userAttributesObj != null && userAttributesObj.getData() instanceof Map) { @@ -91,7 +93,7 @@ public void testGetUserAttributesEmpty() throws Exception { when(tenantManager.getDomain(anyInt())).thenReturn(MultitenantConstants.SUPER_TENANT_DOMAIN_NAME); UserRealm userRealm = mock(UserRealm.class); - UserStoreManager userStoreManager = mock(UserStoreManager.class); + AbstractUserStoreManager userStoreManager = mock(AbstractUserStoreManager.class); UserStoreManager secUserStoreManager = mock(UserStoreManager.class); when(userStoreManager.getSecondaryUserStoreManager(anyString())).thenReturn(secUserStoreManager); @@ -102,7 +104,7 @@ public void testGetUserAttributesEmpty() throws Exception { when(secUserStoreManager.getUserClaimValues(USERNAME_CLAIM_VALUE, null)).thenReturn(null); BasicUserInformationProvider basicUserInformationProvider = new BasicUserInformationProvider(); - basicUserInformationProvider.setRealmService(realmService); + UserProfileExportDataHolder.setRealmService(realmService); UserInformationDTO userAttributesObj = basicUserInformationProvider.getRetainedUserInformation(USERNAME_CLAIM_VALUE, UserCoreConstants.PRIMARY_DEFAULT_DOMAIN_NAME, -1234); if (userAttributesObj.isInformationAvailable()) { @@ -133,7 +135,7 @@ public void testGetUserAttributesExceptionOnGetRealmByTenantDomain() throws Exce when(secUserStoreManager.getUserClaimValues(USERNAME_CLAIM_VALUE, null)).thenReturn(claims); BasicUserInformationProvider basicUserInformationProvider = new BasicUserInformationProvider(); - basicUserInformationProvider.setRealmService(realmService); + UserProfileExportDataHolder.setRealmService(realmService); basicUserInformationProvider.getRetainedUserInformation(USERNAME_CLAIM_VALUE, UserCoreConstants.PRIMARY_DEFAULT_DOMAIN_NAME, -1234); } @@ -160,7 +162,7 @@ public void testGetUserAttributesExceptionOnGetUserStoreManager() throws Excepti when(secUserStoreManager.getUserClaimValues(USERNAME_CLAIM_VALUE, null)).thenReturn(claims); BasicUserInformationProvider basicUserInformationProvider = new BasicUserInformationProvider(); - basicUserInformationProvider.setRealmService(realmService); + UserProfileExportDataHolder.setRealmService(realmService); basicUserInformationProvider.getRetainedUserInformation(USERNAME_CLAIM_VALUE, UserCoreConstants.PRIMARY_DEFAULT_DOMAIN_NAME, -1234); } @@ -174,7 +176,7 @@ public void testGetUserAttributesExceptionOnGetUserClaimValues() throws Exceptio when(tenantManager.getDomain(anyInt())).thenReturn(MultitenantConstants.SUPER_TENANT_DOMAIN_NAME); UserRealm userRealm = mock(UserRealm.class); - UserStoreManager userStoreManager = mock(UserStoreManager.class); + AbstractUserStoreManager userStoreManager = mock(AbstractUserStoreManager.class); UserStoreManager secUserStoreManager = mock(UserStoreManager.class); when(userStoreManager.getSecondaryUserStoreManager(anyString())).thenReturn(secUserStoreManager); @@ -185,7 +187,7 @@ public void testGetUserAttributesExceptionOnGetUserClaimValues() throws Exceptio when(secUserStoreManager.getUserClaimValues(anyString(), isNull())).thenThrow(new UserStoreException()); BasicUserInformationProvider basicUserInformationProvider = new BasicUserInformationProvider(); - basicUserInformationProvider.setRealmService(realmService); + UserProfileExportDataHolder.setRealmService(realmService); basicUserInformationProvider.getRetainedUserInformation(USERNAME_CLAIM_VALUE, UserCoreConstants.PRIMARY_DEFAULT_DOMAIN_NAME, -1234); } diff --git a/components/org.wso2.carbon.identity.user.export.core/src/test/java/org/wso2/carbon/identity/user/export/core/internal/service/impl/ConsentInformationProviderTest.java b/components/org.wso2.carbon.identity.user.export.core/src/test/java/org/wso2/carbon/identity/user/export/core/internal/service/impl/ConsentInformationProviderTest.java index ddad96bf94..386cdcd4ba 100644 --- a/components/org.wso2.carbon.identity.user.export.core/src/test/java/org/wso2/carbon/identity/user/export/core/internal/service/impl/ConsentInformationProviderTest.java +++ b/components/org.wso2.carbon.identity.user.export.core/src/test/java/org/wso2/carbon/identity/user/export/core/internal/service/impl/ConsentInformationProviderTest.java @@ -1,3 +1,21 @@ +/* + * Copyright (c) 2018, WSO2 LLC. (http://www.wso2.com). + * + * WSO2 LLC. licenses this file to you under the Apache License, + * Version 2.0 (the "License"); you may not use this file except + * in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + package org.wso2.carbon.identity.user.export.core.internal.service.impl; import org.testng.Assert; @@ -9,6 +27,7 @@ import org.wso2.carbon.identity.user.export.core.UserExportException; import org.wso2.carbon.identity.user.export.core.dto.ConsentReceiptDTO; import org.wso2.carbon.identity.user.export.core.dto.UserInformationDTO; +import org.wso2.carbon.identity.user.export.core.internal.UserProfileExportDataHolder; import org.wso2.carbon.user.api.UserStoreException; import org.wso2.carbon.user.core.UserCoreConstants; import org.wso2.carbon.user.core.service.RealmService; @@ -46,14 +65,14 @@ public void testGetRetainedUserInformation() throws Exception { when(consentManager.searchReceipts(eq(100), eq(0), anyString(), anyString(), isNull(), anyString())) .thenReturn(receiptListResponses); when(consentManager.searchReceipts(eq(100), eq(100), anyString(), anyString(), isNull(), anyString())) - .thenReturn(new ArrayList()); + .thenReturn(new ArrayList<>()); Receipt mockReceipt = mock(Receipt.class); when(mockReceipt.getPiiPrincipalId()).thenReturn(USERNAME_CLAIM_VALUE); when(consentManager.getReceipt(anyString())).thenReturn(mockReceipt); ConsentInformationProvider consentInformationProvider = new ConsentInformationProvider(); - consentInformationProvider.setRealmService(realmService); - consentInformationProvider.setConsentManager(consentManager); + UserProfileExportDataHolder.setRealmService(realmService); + UserProfileExportDataHolder.setConsentManager(consentManager); UserInformationDTO retainedUserInformationObj = consentInformationProvider.getRetainedUserInformation (USERNAME_CLAIM_VALUE, UserCoreConstants.PRIMARY_DEFAULT_DOMAIN_NAME, -1234); @@ -89,8 +108,8 @@ public void testGetRetainedUserInformationSearchReceiptsException() throws Excep when(consentManager.getReceipt(anyString())).thenReturn(mockReceipt); ConsentInformationProvider consentInformationProvider = new ConsentInformationProvider(); - consentInformationProvider.setRealmService(realmService); - consentInformationProvider.setConsentManager(consentManager); + UserProfileExportDataHolder.setRealmService(realmService); + UserProfileExportDataHolder.setConsentManager(consentManager); consentInformationProvider.getRetainedUserInformation(USERNAME_CLAIM_VALUE, UserCoreConstants.PRIMARY_DEFAULT_DOMAIN_NAME, -1234); } @@ -117,8 +136,8 @@ public void testGetRetainedUserInformationGetDomainException() throws Exception when(consentManager.getReceipt(anyString())).thenReturn(mockReceipt); ConsentInformationProvider consentInformationProvider = new ConsentInformationProvider(); - consentInformationProvider.setRealmService(realmService); - consentInformationProvider.setConsentManager(consentManager); + UserProfileExportDataHolder.setRealmService(realmService); + UserProfileExportDataHolder.setConsentManager(consentManager); consentInformationProvider.getRetainedUserInformation(USERNAME_CLAIM_VALUE, UserCoreConstants.PRIMARY_DEFAULT_DOMAIN_NAME, -1234); } diff --git a/components/org.wso2.carbon.identity.user.export.core/src/test/java/org/wso2/carbon/identity/user/export/core/internal/service/impl/MockUserInformationProvider.java b/components/org.wso2.carbon.identity.user.export.core/src/test/java/org/wso2/carbon/identity/user/export/core/internal/service/impl/MockUserInformationProvider.java index 45ad0ffde8..55e0449a46 100644 --- a/components/org.wso2.carbon.identity.user.export.core/src/test/java/org/wso2/carbon/identity/user/export/core/internal/service/impl/MockUserInformationProvider.java +++ b/components/org.wso2.carbon.identity.user.export.core/src/test/java/org/wso2/carbon/identity/user/export/core/internal/service/impl/MockUserInformationProvider.java @@ -1,7 +1,7 @@ /* - * Copyright (c) 2018, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. + * Copyright (c) 2018, WSO2 LLC. (http://www.wso2.com). * - * WSO2 Inc. licenses this file to you under the Apache License, + * WSO2 LLC. licenses this file to you under the Apache License, * Version 2.0 (the "License"); you may not use this file except * in compliance with the License. * You may obtain a copy of the License at @@ -21,7 +21,6 @@ import org.apache.commons.logging.Log; import org.apache.commons.logging.LogFactory; import org.wso2.carbon.identity.user.export.core.dto.UserInformationDTO; -import org.wso2.carbon.identity.user.export.core.service.UserInformationProvider; import java.util.HashMap; import java.util.Map; diff --git a/components/org.wso2.carbon.identity.user.export.core/src/test/java/org/wso2/carbon/identity/user/export/core/internal/service/impl/UserInformationServiceImplTest.java b/components/org.wso2.carbon.identity.user.export.core/src/test/java/org/wso2/carbon/identity/user/export/core/internal/service/impl/UserInformationServiceImplTest.java index 4010611cf0..482b283367 100644 --- a/components/org.wso2.carbon.identity.user.export.core/src/test/java/org/wso2/carbon/identity/user/export/core/internal/service/impl/UserInformationServiceImplTest.java +++ b/components/org.wso2.carbon.identity.user.export.core/src/test/java/org/wso2/carbon/identity/user/export/core/internal/service/impl/UserInformationServiceImplTest.java @@ -1,7 +1,7 @@ /* - * Copyright (c) 2018, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. + * Copyright (c) 2018, WSO2 LLC. (http://www.wso2.com). * - * WSO2 Inc. licenses this file to you under the Apache License, + * WSO2 LLC. licenses this file to you under the Apache License, * Version 2.0 (the "License"); you may not use this file except * in compliance with the License. * You may obtain a copy of the License at @@ -20,6 +20,7 @@ import org.testng.Assert; import org.testng.annotations.Test; +import org.wso2.carbon.identity.user.export.core.internal.UserProfileExportDataHolder; import java.util.Map; @@ -28,8 +29,8 @@ public class UserInformationServiceImplTest { @Test public void testGetRetainedUserInformation() throws Exception { + UserProfileExportDataHolder.getUserInformationProviders().add(new MockUserInformationProvider()); UserInformationServiceImpl userInformationService = new UserInformationServiceImpl(); - userInformationService.setUserAttributeProvider(new MockUserInformationProvider()); Map retainedUserInformation = userInformationService.getRetainedUserInformation ("admin", "PRIMARY", -1234); diff --git a/components/org.wso2.carbon.identity.user.export.core/src/test/java/org/wso2/carbon/identity/user/export/core/service/impl/LinkedAccountsProviderTest.java b/components/org.wso2.carbon.identity.user.export.core/src/test/java/org/wso2/carbon/identity/user/export/core/service/impl/LinkedAccountsProviderTest.java new file mode 100644 index 0000000000..d03473a50a --- /dev/null +++ b/components/org.wso2.carbon.identity.user.export.core/src/test/java/org/wso2/carbon/identity/user/export/core/service/impl/LinkedAccountsProviderTest.java @@ -0,0 +1,207 @@ +/* + * Copyright (c) 2023, WSO2 LLC. (http://www.wso2.com). + * + * WSO2 LLC. licenses this file to you under the Apache License, + * Version 2.0 (the "License"); you may not use this file except + * in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +package org.wso2.carbon.identity.user.export.core.service.impl; + +import org.mockito.MockitoAnnotations; +import org.testng.Assert; +import org.testng.annotations.AfterMethod; +import org.testng.annotations.AfterTest; +import org.testng.annotations.BeforeMethod; +import org.testng.annotations.BeforeTest; +import org.testng.annotations.DataProvider; +import org.testng.annotations.Test; +import org.wso2.carbon.identity.application.authentication.framework.model.AuthenticatedUser; +import org.wso2.carbon.identity.application.common.model.User; +import org.wso2.carbon.identity.user.export.core.dto.UserInformationDTO; +import org.wso2.carbon.identity.user.export.core.internal.UserProfileExportDataHolder; +import org.wso2.carbon.identity.user.profile.mgt.association.federation.FederatedAssociationManager; +import org.wso2.carbon.identity.user.profile.mgt.association.federation.model.AssociatedIdentityProvider; +import org.wso2.carbon.identity.user.profile.mgt.association.federation.model.FederatedAssociation; +import org.wso2.carbon.user.api.UserStoreException; +import org.wso2.carbon.user.core.service.RealmService; +import org.wso2.carbon.user.core.tenant.TenantManager; + +import java.util.ArrayList; + +import static org.mockito.ArgumentMatchers.any; +import static org.mockito.ArgumentMatchers.anyInt; +import static org.mockito.Mockito.mock; +import static org.mockito.Mockito.when; + +public class LinkedAccountsProviderTest { + + private static final String USERNAME_CLAIM_VALUE = "tom"; + private static final String USERSTORE_NAME = "primary"; + private static final String TENANT_NAME = "carbon.super"; + private static final int TENANT_ID = -1234; + + private LinkedAccountsProvider linkedAccountsProvider; + private FederatedAssociationManager federatedAssociationManager; + private RealmService realmService; + private TenantManager tenantManager; + + @BeforeTest + public void beforeTest() { + + federatedAssociationManager = mock(FederatedAssociationManager.class); + realmService = mock(RealmService.class); + tenantManager = mock(TenantManager.class); + UserProfileExportDataHolder.setFederatedAssociationManager(federatedAssociationManager); + UserProfileExportDataHolder.setRealmService(realmService); + } + + @AfterTest + public void afterTest() { + + federatedAssociationManager = null; + realmService = null; + tenantManager = null; + UserProfileExportDataHolder.setFederatedAssociationManager(null); + UserProfileExportDataHolder.setRealmService(null); + } + + @BeforeMethod + public void setUp() { + + MockitoAnnotations.openMocks(this); + linkedAccountsProvider = new LinkedAccountsProvider(); + UserProfileExportDataHolder.getUserInformationProviders().add(linkedAccountsProvider); + } + + @AfterMethod + public void tearDown() { + + } + + @DataProvider + public static Object[][] dataProviderWithValidSocialAccounts() { + + User user = new AuthenticatedUser(); + user.setUserName(USERNAME_CLAIM_VALUE); + user.setUserStoreDomain(USERSTORE_NAME); + user.setTenantDomain(TENANT_NAME); + + AssociatedIdentityProvider googleIdp = new AssociatedIdentityProvider(); + googleIdp.setName("google"); + googleIdp.setDisplayName("google"); + googleIdp.setId("uuid-1234"); + + AssociatedIdentityProvider microsoftIdp = new AssociatedIdentityProvider(); + microsoftIdp.setName("microsoft"); + microsoftIdp.setDisplayName("microsoft"); + microsoftIdp.setId("uuid-123456"); + + FederatedAssociation[] federatedAssociations1 = new FederatedAssociation[2]; + federatedAssociations1[0] = new FederatedAssociation("1234", googleIdp, "AAA2345"); + federatedAssociations1[1] = new FederatedAssociation("123456", microsoftIdp, "AAA2345"); + + FederatedAssociation[] federatedAssociations2 = new FederatedAssociation[1]; + federatedAssociations2[0] = new FederatedAssociation("1234", googleIdp, "AAA2345"); + + return new Object[][]{ + {federatedAssociations1, 2}, + {federatedAssociations2, 1} + }; + } + + @Test(dataProvider = "dataProviderWithValidSocialAccounts") + public void testGetLinkedAccounts(FederatedAssociation[] federatedAssociations, int expectedAssociations) + throws Exception { + + mockObject(); + when(federatedAssociationManager.getFederatedAssociationsOfUser(any())).thenReturn(federatedAssociations); + + UserInformationDTO userAttributesObj = linkedAccountsProvider.getRetainedUserInformation(USERNAME_CLAIM_VALUE, + USERSTORE_NAME, TENANT_ID); + + if (!userAttributesObj.isInformationAvailable()) { + Assert.fail(); + } else { + Assert.assertTrue(userAttributesObj.getData() instanceof ArrayList); + if (userAttributesObj.getData() instanceof ArrayList) { + ArrayList userInformation = (ArrayList) userAttributesObj.getData(); + Assert.assertEquals(userInformation.size(), expectedAssociations); + } + } + } + + @DataProvider + public static Object[][] dataProviderWithZeroSocialAccounts() { + + User user = new AuthenticatedUser(); + user.setUserName(USERNAME_CLAIM_VALUE); + user.setUserStoreDomain(USERSTORE_NAME); + user.setTenantDomain(TENANT_NAME); + + FederatedAssociation[] federatedAssociations = {}; + + return new Object[][]{ + {federatedAssociations} + }; + } + + @Test(dataProvider = "dataProviderWithZeroSocialAccounts") + public void testGetLinkedAccountsWithEmptyAccounts(FederatedAssociation[] federatedAssociations) throws Exception { + + mockObject(); + when(federatedAssociationManager.getFederatedAssociationsOfUser(any())).thenReturn(federatedAssociations); + + UserInformationDTO userAttributesObj = linkedAccountsProvider.getRetainedUserInformation(USERNAME_CLAIM_VALUE, + USERSTORE_NAME, TENANT_ID); + + if (userAttributesObj.isInformationAvailable()) { + Assert.fail(); + } + } + + @DataProvider + public static Object[][] dataProviderWithInvalidSocialAccounts() { + + User user = new AuthenticatedUser(); + user.setUserName(USERNAME_CLAIM_VALUE); + user.setUserStoreDomain(USERSTORE_NAME); + user.setTenantDomain(TENANT_NAME); + + FederatedAssociation[] federatedAssociations = null; + + return new Object[][]{ + {federatedAssociations} + }; + } + + @Test(dataProvider = "dataProviderWithInvalidSocialAccounts") + public void testGetLinkedAccountsWithInvalidIdP(FederatedAssociation[] federatedAssociations) throws Exception { + + mockObject(); + when(federatedAssociationManager.getFederatedAssociationsOfUser(any())).thenReturn(federatedAssociations); + + UserInformationDTO userAttributesObj = linkedAccountsProvider.getRetainedUserInformation(USERNAME_CLAIM_VALUE, + USERSTORE_NAME, TENANT_ID); + + if (userAttributesObj.isInformationAvailable()) { + Assert.fail(); + } + } + + private void mockObject() throws UserStoreException { + + when(realmService.getTenantManager()).thenReturn(tenantManager); + when(tenantManager.getDomain(anyInt())).thenReturn(TENANT_NAME); + } +} diff --git a/components/org.wso2.carbon.identity.user.export.core/src/test/java/org/wso2/carbon/identity/user/export/core/service/impl/UserProfileInformationProviderTest.java b/components/org.wso2.carbon.identity.user.export.core/src/test/java/org/wso2/carbon/identity/user/export/core/service/impl/UserProfileInformationProviderTest.java new file mode 100644 index 0000000000..f866667ee2 --- /dev/null +++ b/components/org.wso2.carbon.identity.user.export.core/src/test/java/org/wso2/carbon/identity/user/export/core/service/impl/UserProfileInformationProviderTest.java @@ -0,0 +1,245 @@ +/* + * Copyright (c) 2023, WSO2 LLC. (http://www.wso2.com). + * + * WSO2 LLC. licenses this file to you under the Apache License, + * Version 2.0 (the "License"); you may not use this file except + * in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +package org.wso2.carbon.identity.user.export.core.service.impl; + +import org.mockito.MockedStatic; +import org.mockito.Mockito; +import org.mockito.MockitoAnnotations; +import org.testng.Assert; +import org.testng.annotations.AfterTest; +import org.testng.annotations.BeforeMethod; +import org.testng.annotations.DataProvider; +import org.testng.annotations.Test; +import org.wso2.carbon.identity.user.export.core.UserExportException; +import org.wso2.carbon.identity.user.export.core.dto.UserInformationDTO; +import org.wso2.carbon.identity.user.export.core.internal.UserProfileExportDataHolder; +import org.wso2.carbon.identity.user.export.core.utils.Utils; +import org.wso2.carbon.user.api.ClaimMapping; +import org.wso2.carbon.user.core.UserCoreConstants; +import org.wso2.carbon.user.core.UserRealm; +import org.wso2.carbon.user.core.UserStoreException; +import org.wso2.carbon.user.core.UserStoreManager; +import org.wso2.carbon.user.core.claim.Claim; +import org.wso2.carbon.user.core.claim.ClaimManager; +import org.wso2.carbon.user.core.common.AbstractUserStoreManager; +import org.wso2.carbon.user.core.service.RealmService; + +import java.util.Collections; +import java.util.HashMap; + +import static org.mockito.ArgumentMatchers.anyInt; +import static org.mockito.ArgumentMatchers.anyString; +import static org.mockito.Mockito.mock; +import static org.mockito.Mockito.when; + +public class UserProfileInformationProviderTest { + + private static final String USERNAME_CLAIM_URI = "http://wso2.org/claims/username"; + private static final String GIVEN_NAME_CLAIM_URI = "http://wso2.org/claims/givenname"; + private static final String LAST_NAME_CLAIM_URI = "http://wso2.org/claims/lastname"; + private static final String USERNAME_CLAIM_VALUE = "username1"; + private static final String GIVEN_NAME_CLAIM_VALUE = "givenName1"; + private static final String LAST_NAME_CLAIM_VALUE = "lastName1"; + + private UserProfileInformationProvider userProfileInformationProvider; + private AbstractUserStoreManager userStoreManager; + private UserStoreManager secUserStoreManager; + private RealmService realmService; + private UserRealm userRealm; + private org.wso2.carbon.user.api.UserRealm userRlm; + private ClaimManager claimManager; + + @BeforeMethod + public void setUp() { + + MockitoAnnotations.openMocks(this); + userProfileInformationProvider = new UserProfileInformationProvider(); + UserProfileExportDataHolder.getUserInformationProviders().add(userProfileInformationProvider); + + realmService = mock(RealmService.class); + userRealm = mock(UserRealm.class); + userStoreManager = mock(AbstractUserStoreManager.class); + secUserStoreManager = mock(UserStoreManager.class); + userRlm = mock(org.wso2.carbon.user.api.UserRealm.class); + claimManager = mock(ClaimManager.class); + UserProfileExportDataHolder.setRealmService(realmService); + } + + @AfterTest + public void afterTest() { + + realmService = null; + userRealm = null; + userStoreManager = null; + secUserStoreManager = null; + userRlm = null; + claimManager = null; + UserProfileExportDataHolder.setRealmService(null); + } + + @DataProvider + public static Object[][] dataProviderWithDifferentClaimValues() { + + Claim[] claimsWithTwoInput = new Claim[2]; + Claim[] claimsWithThreeInput = new Claim[3]; + + Claim claim1 = new Claim(); + claim1.setClaimUri(USERNAME_CLAIM_URI); + claim1.setValue(USERNAME_CLAIM_VALUE); + claimsWithTwoInput[0] = claim1; + claimsWithThreeInput[0] = claim1; + + Claim claim2 = new Claim(); + claim2.setClaimUri(GIVEN_NAME_CLAIM_URI); + claim2.setValue(GIVEN_NAME_CLAIM_VALUE); + claimsWithTwoInput[1] = claim2; + claimsWithThreeInput[1] = claim2; + + Claim claim3 = new Claim(); + claim3.setClaimUri(LAST_NAME_CLAIM_URI); + claim3.setValue(LAST_NAME_CLAIM_VALUE); + claimsWithThreeInput[2] = claim3; + + return new Object[][]{ + {claimsWithTwoInput, 2}, + {claimsWithThreeInput, 3} + }; + } + + @Test(dataProvider = "dataProviderWithDifferentClaimValues") + public void testGetUserAttributes(Claim[] claims, int expectedNumberOfClaimsInResponse) throws Exception { + + try (MockedStatic utils = Mockito.mockStatic(Utils.class)) { + utils.when(Utils::getAdditionalClaimsToInclude).thenReturn(Collections.EMPTY_LIST); + mockObjects(claims, getSuppportedClaims()); + UserInformationDTO userAttributesObj = userProfileInformationProvider + .getRetainedUserInformation(USERNAME_CLAIM_VALUE, UserCoreConstants.PRIMARY_DEFAULT_DOMAIN_NAME, -1234); + + if (!userAttributesObj.isInformationAvailable()) { + Assert.fail(); + } else { + Assert.assertTrue(userAttributesObj.getData() instanceof HashMap); + if (userAttributesObj.getData() instanceof HashMap) { + HashMap userInformation = (HashMap) userAttributesObj.getData(); + Assert.assertEquals(userInformation.size(), expectedNumberOfClaimsInResponse); + } + } + } + } + + @Test + public void testGetEmptyUserAttributes() throws Exception { + + try (MockedStatic utils = Mockito.mockStatic(Utils.class)) { + utils.when(Utils::getAdditionalClaimsToInclude).thenReturn(Collections.EMPTY_LIST); + Claim[] claims = {}; + mockObjects(claims, getSuppportedClaims()); + UserInformationDTO userAttributesObj = userProfileInformationProvider + .getRetainedUserInformation(USERNAME_CLAIM_VALUE, UserCoreConstants.PRIMARY_DEFAULT_DOMAIN_NAME, + -1234); + + if (userAttributesObj.isInformationAvailable()) { + Assert.fail(); + } + } + } + + @Test + public void testGetInvalidUserAttributes() throws Exception { + + mockObjects(null, getSuppportedClaims()); + UserInformationDTO userAttributesObj = userProfileInformationProvider + .getRetainedUserInformation(USERNAME_CLAIM_VALUE, UserCoreConstants.PRIMARY_DEFAULT_DOMAIN_NAME, -1234); + + if (userAttributesObj.isInformationAvailable()) { + Assert.fail(); + } + } + + @Test(expectedExceptions = UserExportException.class) + public void testGetUserAttributesExceptionOnGetUserStoreManager() throws Exception { + + Claim[] claims = getClaims(); + + mockObjectsToThrowUserStoreException(claims); + userProfileInformationProvider.getRetainedUserInformation + (USERNAME_CLAIM_VALUE, UserCoreConstants.PRIMARY_DEFAULT_DOMAIN_NAME, -1234); + } + + private Claim[] getClaims() { + + Claim[] claims = new Claim[2]; + Claim claim1 = new Claim(); + claim1.setClaimUri(USERNAME_CLAIM_URI); + claim1.setValue(USERNAME_CLAIM_VALUE); + claims[0] = claim1; + + Claim claim2 = new Claim(); + claim2.setClaimUri(GIVEN_NAME_CLAIM_URI); + claim2.setValue(GIVEN_NAME_CLAIM_VALUE); + claims[1] = claim2; + + return claims; + } + + + private ClaimMapping[] getSuppportedClaims() { + + ClaimMapping[] claimMappings = new ClaimMapping[3]; + Claim claim1 = new Claim(); + claim1.setClaimUri(USERNAME_CLAIM_URI); + claim1.setValue(USERNAME_CLAIM_VALUE); + ClaimMapping claimMapping1 = new ClaimMapping(claim1, "username"); + + Claim claim2 = new Claim(); + claim2.setClaimUri(GIVEN_NAME_CLAIM_URI); + claim2.setValue(GIVEN_NAME_CLAIM_VALUE); + ClaimMapping claimMapping2 = new ClaimMapping(claim2, "given_name"); + + Claim claim3 = new Claim(); + claim3.setClaimUri(LAST_NAME_CLAIM_URI); + claim3.setValue(LAST_NAME_CLAIM_VALUE); + ClaimMapping claimMapping3 = new ClaimMapping(claim3, "last_name"); + + + claimMappings[0] = claimMapping1; + claimMappings[1] = claimMapping2; + claimMappings[2] = claimMapping3; + return claimMappings; + } + + private void mockObjects(Claim[] claims, ClaimMapping[] claimMappings) throws Exception { + + when(realmService.getTenantUserRealm(anyInt())).thenReturn(userRlm); + when(userRlm.getUserStoreManager()).thenReturn(userStoreManager); + when(userStoreManager.getSecondaryUserStoreManager(anyString())).thenReturn(secUserStoreManager); + when(userRlm.getClaimManager()).thenReturn(claimManager); + when(claimManager.getAllSupportClaimMappingsByDefault()).thenReturn(claimMappings); + when(secUserStoreManager.getUserClaimValues(USERNAME_CLAIM_VALUE, null)).thenReturn(claims); + } + + private void mockObjectsToThrowUserStoreException(Claim[] claims) throws Exception { + + when(userStoreManager.getSecondaryUserStoreManager(anyString())).thenReturn(secUserStoreManager); + when(userRealm.getUserStoreManager()).thenThrow(new UserStoreException()); + + when(realmService.getTenantUserRealm(anyInt())).thenReturn(userRealm); + + when(secUserStoreManager.getUserClaimValues(USERNAME_CLAIM_VALUE, null)).thenReturn(claims); + } +} diff --git a/components/org.wso2.carbon.identity.user.export.core/src/test/resources/testng.xml b/components/org.wso2.carbon.identity.user.export.core/src/test/resources/testng.xml index 9e81b97982..434b82bf37 100644 --- a/components/org.wso2.carbon.identity.user.export.core/src/test/resources/testng.xml +++ b/components/org.wso2.carbon.identity.user.export.core/src/test/resources/testng.xml @@ -25,6 +25,8 @@ + + From 0b7e2b2d81cf06dc5a95ef37d0934974b6c71366 Mon Sep 17 00:00:00 2001 From: ZiyamSanthosh Date: Wed, 6 Sep 2023 19:08:34 +0530 Subject: [PATCH 14/31] Lite user registration updated to address parent level request attributes --- .../dto/LiteUserRegistrationRequestDTO.java | 2 +- .../identity/user/endpoint/Constants.java | 4 ++ .../endpoint/impl/LiteApiServiceImpl.java | 2 +- .../identity/user/endpoint/util/Utils.java | 71 +++++++++++++++++++ .../UtilsTest.java | 34 ++++++++- 5 files changed, 110 insertions(+), 3 deletions(-) diff --git a/components/org.wso2.carbon.identity.api.user.governance/src/gen/java/org/wso2/carbon/identity/user/endpoint/dto/LiteUserRegistrationRequestDTO.java b/components/org.wso2.carbon.identity.api.user.governance/src/gen/java/org/wso2/carbon/identity/user/endpoint/dto/LiteUserRegistrationRequestDTO.java index e2a1b8bb48..5eb418a0b2 100644 --- a/components/org.wso2.carbon.identity.api.user.governance/src/gen/java/org/wso2/carbon/identity/user/endpoint/dto/LiteUserRegistrationRequestDTO.java +++ b/components/org.wso2.carbon.identity.api.user.governance/src/gen/java/org/wso2/carbon/identity/user/endpoint/dto/LiteUserRegistrationRequestDTO.java @@ -28,7 +28,7 @@ public class LiteUserRegistrationRequestDTO { private String realm = null; public enum PreferredChannelEnum { - Mobile, Email, + Mobile, Email, SMS }; private PreferredChannelEnum preferredChannel = null; diff --git a/components/org.wso2.carbon.identity.api.user.governance/src/main/java/org/wso2/carbon/identity/user/endpoint/Constants.java b/components/org.wso2.carbon.identity.api.user.governance/src/main/java/org/wso2/carbon/identity/user/endpoint/Constants.java index 5ce20df99f..0ce78ed020 100644 --- a/components/org.wso2.carbon.identity.api.user.governance/src/main/java/org/wso2/carbon/identity/user/endpoint/Constants.java +++ b/components/org.wso2.carbon.identity.api.user.governance/src/main/java/org/wso2/carbon/identity/user/endpoint/Constants.java @@ -45,6 +45,10 @@ public final class Constants { public static final String CORRELATION_ID_MDC = "Correlation-ID"; + public static final String PREFERRED_CHANNEL_CLAIM_URI = "http://wso2.org/claims/identity/preferredChannel"; + public static final String MOBILE_CLAIM_URI = "http://wso2.org/claims/mobile"; + public static final String EMAIL_CLAIM_URI = "http://wso2.org/claims/emailaddress"; + // Response Configurations. public static final String ENABLE_DETAILED_API_RESPONSE = "SelfRegistration.API.EnableDetailedResponseBody"; diff --git a/components/org.wso2.carbon.identity.api.user.governance/src/main/java/org/wso2/carbon/identity/user/endpoint/impl/LiteApiServiceImpl.java b/components/org.wso2.carbon.identity.api.user.governance/src/main/java/org/wso2/carbon/identity/user/endpoint/impl/LiteApiServiceImpl.java index a2a85d5632..09115e30b7 100644 --- a/components/org.wso2.carbon.identity.api.user.governance/src/main/java/org/wso2/carbon/identity/user/endpoint/impl/LiteApiServiceImpl.java +++ b/components/org.wso2.carbon.identity.api.user.governance/src/main/java/org/wso2/carbon/identity/user/endpoint/impl/LiteApiServiceImpl.java @@ -93,7 +93,7 @@ public Response litePost(LiteUserRegistrationRequestDTO liteUserRegistrationRequ try { notificationResponseBean = userSelfRegistrationManager .registerLiteUser(user, - Utils.getClaims(liteUserRegistrationRequestDTO.getClaims()), + Utils.getClaims(liteUserRegistrationRequestDTO), Utils.getProperties(properties)); } catch (IdentityRecoveryClientException e) { if (LOG.isDebugEnabled()) { diff --git a/components/org.wso2.carbon.identity.api.user.governance/src/main/java/org/wso2/carbon/identity/user/endpoint/util/Utils.java b/components/org.wso2.carbon.identity.api.user.governance/src/main/java/org/wso2/carbon/identity/user/endpoint/util/Utils.java index aa971fe85f..89b902f071 100644 --- a/components/org.wso2.carbon.identity.api.user.governance/src/main/java/org/wso2/carbon/identity/user/endpoint/util/Utils.java +++ b/components/org.wso2.carbon.identity.api.user.governance/src/main/java/org/wso2/carbon/identity/user/endpoint/util/Utils.java @@ -39,6 +39,7 @@ import org.wso2.carbon.identity.user.endpoint.dto.ClaimDTO; import org.wso2.carbon.identity.user.endpoint.dto.CodeValidateInfoResponseDTO; import org.wso2.carbon.identity.user.endpoint.dto.ErrorDTO; +import org.wso2.carbon.identity.user.endpoint.dto.LiteUserRegistrationRequestDTO; import org.wso2.carbon.identity.user.endpoint.dto.PropertyDTO; import org.wso2.carbon.identity.user.endpoint.dto.ResendCodeRequestDTO; import org.wso2.carbon.identity.user.endpoint.dto.SelfRegistrationUserDTO; @@ -278,6 +279,76 @@ public static Claim[] getClaims(List claimDTOs) { } } + /** + * This method returns an array of claims generated from LiteUserRegistrationRequestDTO attributes. + * + * @param liteUserRegistrationRequestDTO LiteUserRegistrationRequestDTO + * @return Array of claims + */ + public static Claim[] getClaims(LiteUserRegistrationRequestDTO liteUserRegistrationRequestDTO) { + + List claimDTOs = liteUserRegistrationRequestDTO.getClaims(); + int preferredChannelClaimIndex = -1; + int emailClaimIndex = -1; + int mobileClaimIndex = -1; + + for (int i = 0; i < claimDTOs.size(); i++) { + if (StringUtils.equals(Constants.PREFERRED_CHANNEL_CLAIM_URI, claimDTOs.get(i).getUri())) { + preferredChannelClaimIndex = i; + continue; + } + if (StringUtils.equals(Constants.EMAIL_CLAIM_URI, claimDTOs.get(i).getUri())) { + emailClaimIndex = i; + continue; + } + if (StringUtils.equals(Constants.MOBILE_CLAIM_URI, claimDTOs.get(i).getUri())) { + mobileClaimIndex = i; + } + } + + if (liteUserRegistrationRequestDTO.getPreferredChannel() != null) { + if (preferredChannelClaimIndex == -1) { + // Create Preferred Channel claim if not available in list of claims. + ClaimDTO preferredChannelClaim = new ClaimDTO(); + preferredChannelClaim.setUri(Constants.PREFERRED_CHANNEL_CLAIM_URI); + claimDTOs.add(preferredChannelClaim); + preferredChannelClaimIndex = claimDTOs.size() - 1; + } + // The correct value of the 'Mobile' PreferredChannel should be 'SMS'. The 'Mobile' value is + // still handled by the API to maintain backward compatibility. + if (LiteUserRegistrationRequestDTO.PreferredChannelEnum.Mobile == + liteUserRegistrationRequestDTO.getPreferredChannel()) { + claimDTOs.get(preferredChannelClaimIndex) + .setValue(LiteUserRegistrationRequestDTO.PreferredChannelEnum.SMS.toString()); + } else { + claimDTOs.get(preferredChannelClaimIndex) + .setValue(liteUserRegistrationRequestDTO.getPreferredChannel().toString().toUpperCase()); + } + } + if (StringUtils.isNotBlank(liteUserRegistrationRequestDTO.getEmail())) { + if (emailClaimIndex == -1) { + // Create Email claim if not available in list of claims. + ClaimDTO emailClaim = new ClaimDTO(); + emailClaim.setUri(Constants.EMAIL_CLAIM_URI); + claimDTOs.add(emailClaim); + emailClaimIndex = claimDTOs.size() - 1; + } + claimDTOs.get(emailClaimIndex).setValue(liteUserRegistrationRequestDTO.getEmail()); + } + if (StringUtils.isNotBlank(liteUserRegistrationRequestDTO.getMobile())) { + if (mobileClaimIndex == -1) { + // Create Mobile claim if not available in list of claims. + ClaimDTO mobileClaim = new ClaimDTO(); + mobileClaim.setUri(Constants.MOBILE_CLAIM_URI); + claimDTOs.add(mobileClaim); + mobileClaimIndex = claimDTOs.size() - 1; + } + claimDTOs.get(mobileClaimIndex).setValue(liteUserRegistrationRequestDTO.getMobile()); + } + + return getClaims(claimDTOs); + } + public static String[] getRoles(List roleList) { if (roleList == null) { return new String[0]; diff --git a/components/org.wso2.carbon.identity.api.user.governance/src/test/java/org.wso2.carbon.identity.user.endpoint.Util/UtilsTest.java b/components/org.wso2.carbon.identity.api.user.governance/src/test/java/org.wso2.carbon.identity.user.endpoint.Util/UtilsTest.java index 74680bd5db..dba83ba006 100644 --- a/components/org.wso2.carbon.identity.api.user.governance/src/test/java/org.wso2.carbon.identity.user.endpoint.Util/UtilsTest.java +++ b/components/org.wso2.carbon.identity.api.user.governance/src/test/java/org.wso2.carbon.identity.user.endpoint.Util/UtilsTest.java @@ -19,19 +19,23 @@ package org.wso2.carbon.identity.user.endpoint.Util; import com.beust.jcommander.internal.Lists; +import org.apache.commons.lang.StringUtils; import org.wso2.carbon.identity.application.common.model.User; import static org.testng.Assert.assertNotNull; import static org.testng.Assert.assertEquals; import org.testng.annotations.Test; +import org.wso2.carbon.identity.user.endpoint.Constants; import org.wso2.carbon.identity.user.endpoint.exceptions.BadRequestException; import org.wso2.carbon.identity.user.endpoint.exceptions.ConflictException; import org.wso2.carbon.identity.user.endpoint.dto.ClaimDTO; import org.wso2.carbon.identity.user.endpoint.dto.ErrorDTO; +import org.wso2.carbon.identity.user.endpoint.dto.LiteUserRegistrationRequestDTO; import org.wso2.carbon.identity.user.endpoint.dto.PropertyDTO; import org.wso2.carbon.identity.user.endpoint.dto.SelfRegistrationUserDTO; import org.wso2.carbon.identity.user.endpoint.dto.UserDTO; import org.wso2.carbon.identity.user.endpoint.util.Utils; +import org.wso2.carbon.user.api.Claim; import java.util.ArrayList; import java.util.List; @@ -183,9 +187,28 @@ public void testGetClaims() { assertNotNull(Utils.getClaims(buildClaimDTO()), "Failed returning claims."); assertEquals(Utils.getClaims(buildClaimDTO()).length, 1); - assertEquals(Utils.getClaims(null).length, 0); + assertEquals(Utils.getClaims((List) null).length, 0); } + @Test + public void testGetClaimsFromLiteUserRegistrationDTO() { + + LiteUserRegistrationRequestDTO liteUserRegistrationRequestDTO = buildLiteUserRegistrationDTO(); + Claim[] claims = Utils.getClaims(liteUserRegistrationRequestDTO); + for (Claim claim : claims) { + if (StringUtils.equals(Constants.PREFERRED_CHANNEL_CLAIM_URI, claim.getClaimUri())) { + assertEquals(claim.getValue(), "EMAIL"); + continue; + } + if (StringUtils.equals(Constants.EMAIL_CLAIM_URI, claim.getClaimUri())) { + assertEquals(claim.getValue(), "test@test.com"); + continue; + } + if (StringUtils.equals(Constants.MOBILE_CLAIM_URI, claim.getClaimUri())) { + assertEquals(claim.getValue(), "000000000"); + } + } + } private List buildClaimDTO() { @@ -195,4 +218,13 @@ private List buildClaimDTO() { List claimDTOs = Lists.newArrayList(claimDTO); return claimDTOs; } + + private LiteUserRegistrationRequestDTO buildLiteUserRegistrationDTO() { + + LiteUserRegistrationRequestDTO liteUserRegistrationRequestDTO = new LiteUserRegistrationRequestDTO(); + liteUserRegistrationRequestDTO.setEmail("test@test.com"); + liteUserRegistrationRequestDTO.setMobile("000000000"); + liteUserRegistrationRequestDTO.setPreferredChannel(LiteUserRegistrationRequestDTO.PreferredChannelEnum.Email); + return liteUserRegistrationRequestDTO; + } } From 42a5afa9b1df1d5d63a498e9e0732d65ed1162be Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 7 Sep 2023 05:04:48 +0000 Subject: [PATCH 15/31] [WSO2 Release] [Jenkins #2533] [Release 1.8.63] prepare release v1.8.63 --- .../pom.xml | 2 +- .../org.wso2.carbon.identity.api.user.governance/pom.xml | 4 ++-- components/org.wso2.carbon.identity.api.user.recovery/pom.xml | 4 ++-- .../org.wso2.carbon.identity.auth.attribute.handler/pom.xml | 2 +- components/org.wso2.carbon.identity.captcha/pom.xml | 2 +- components/org.wso2.carbon.identity.governance/pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../org.wso2.carbon.identity.multi.attribute.login/pom.xml | 2 +- components/org.wso2.carbon.identity.password.expiry/pom.xml | 2 +- components/org.wso2.carbon.identity.password.history/pom.xml | 2 +- components/org.wso2.carbon.identity.password.policy/pom.xml | 2 +- components/org.wso2.carbon.identity.piicontroller/pom.xml | 2 +- components/org.wso2.carbon.identity.recovery.endpoint/pom.xml | 2 +- components/org.wso2.carbon.identity.recovery.ui/pom.xml | 2 +- components/org.wso2.carbon.identity.recovery/pom.xml | 2 +- .../org.wso2.carbon.identity.tenant.resource.manager/pom.xml | 2 +- components/org.wso2.carbon.identity.user.endpoint/pom.xml | 2 +- components/org.wso2.carbon.identity.user.export.core/pom.xml | 2 +- components/org.wso2.carbon.identity.user.rename.core/pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../org.wso2.carbon.identity.captcha.server.feature/pom.xml | 2 +- features/org.wso2.carbon.identity.governance.feature/pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../org.wso2.carbon.identity.recovery.server.feature/pom.xml | 2 +- features/org.wso2.carbon.identity.recovery.ui.feature/pom.xml | 2 +- .../pom.xml | 2 +- features/org.wso2.carbon.identity.user.server.feature/pom.xml | 2 +- pom.xml | 4 ++-- .../identity/org.wso2.carbon.identity.recovery.stub/pom.xml | 2 +- service-stubs/identity/pom.xml | 2 +- 39 files changed, 42 insertions(+), 42 deletions(-) diff --git a/components/org.wso2.carbon.identity.account.suspension.notification.task/pom.xml b/components/org.wso2.carbon.identity.account.suspension.notification.task/pom.xml index 6a7fc27e5a..efd26172f2 100644 --- a/components/org.wso2.carbon.identity.account.suspension.notification.task/pom.xml +++ b/components/org.wso2.carbon.identity.account.suspension.notification.task/pom.xml @@ -20,7 +20,7 @@ identity-governance org.wso2.carbon.identity.governance - 1.8.63-SNAPSHOT + 1.8.63 ../../pom.xml diff --git a/components/org.wso2.carbon.identity.api.user.governance/pom.xml b/components/org.wso2.carbon.identity.api.user.governance/pom.xml index 25d05cc63e..cc698d9a52 100644 --- a/components/org.wso2.carbon.identity.api.user.governance/pom.xml +++ b/components/org.wso2.carbon.identity.api.user.governance/pom.xml @@ -23,12 +23,12 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.63-SNAPSHOT + 1.8.63 ../.. org.wso2.carbon.identity.api.user.governance - 1.8.63-SNAPSHOT + 1.8.63 jar WSO2 Carbon - User Rest Governance API WSO2 Carbon - User Rest Governance API diff --git a/components/org.wso2.carbon.identity.api.user.recovery/pom.xml b/components/org.wso2.carbon.identity.api.user.recovery/pom.xml index 10fe40d4d9..2a88180715 100644 --- a/components/org.wso2.carbon.identity.api.user.recovery/pom.xml +++ b/components/org.wso2.carbon.identity.api.user.recovery/pom.xml @@ -23,12 +23,12 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.63-SNAPSHOT + 1.8.63 ../.. org.wso2.carbon.identity.api.user.recovery - 1.8.63-SNAPSHOT + 1.8.63 jar WSO2 Carbon - Identity Management Recovery Rest API WSO2 Carbon - Identity Management Recovery Rest API diff --git a/components/org.wso2.carbon.identity.auth.attribute.handler/pom.xml b/components/org.wso2.carbon.identity.auth.attribute.handler/pom.xml index 8b2e5240eb..e54e01d6af 100644 --- a/components/org.wso2.carbon.identity.auth.attribute.handler/pom.xml +++ b/components/org.wso2.carbon.identity.auth.attribute.handler/pom.xml @@ -22,7 +22,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.63-SNAPSHOT + 1.8.63 ../../pom.xml diff --git a/components/org.wso2.carbon.identity.captcha/pom.xml b/components/org.wso2.carbon.identity.captcha/pom.xml index 6838966728..bfc11626ff 100644 --- a/components/org.wso2.carbon.identity.captcha/pom.xml +++ b/components/org.wso2.carbon.identity.captcha/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.63-SNAPSHOT + 1.8.63 ../../pom.xml diff --git a/components/org.wso2.carbon.identity.governance/pom.xml b/components/org.wso2.carbon.identity.governance/pom.xml index cf0fb22763..0df9f53f88 100644 --- a/components/org.wso2.carbon.identity.governance/pom.xml +++ b/components/org.wso2.carbon.identity.governance/pom.xml @@ -18,7 +18,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.63-SNAPSHOT + 1.8.63 ../../pom.xml diff --git a/components/org.wso2.carbon.identity.idle.account.identification/pom.xml b/components/org.wso2.carbon.identity.idle.account.identification/pom.xml index 1b709887fd..d0ef4136cf 100644 --- a/components/org.wso2.carbon.identity.idle.account.identification/pom.xml +++ b/components/org.wso2.carbon.identity.idle.account.identification/pom.xml @@ -18,7 +18,7 @@ identity-governance org.wso2.carbon.identity.governance - 1.8.63-SNAPSHOT + 1.8.63 ../../pom.xml 4.0.0 diff --git a/components/org.wso2.carbon.identity.multi.attribute.login/org.wso2.carbon.identity.multi.attribute.login.resolver.regex/pom.xml b/components/org.wso2.carbon.identity.multi.attribute.login/org.wso2.carbon.identity.multi.attribute.login.resolver.regex/pom.xml index c43f2b0328..7f566b3201 100644 --- a/components/org.wso2.carbon.identity.multi.attribute.login/org.wso2.carbon.identity.multi.attribute.login.resolver.regex/pom.xml +++ b/components/org.wso2.carbon.identity.multi.attribute.login/org.wso2.carbon.identity.multi.attribute.login.resolver.regex/pom.xml @@ -21,7 +21,7 @@ identity-governance org.wso2.carbon.identity.governance - 1.8.63-SNAPSHOT + 1.8.63 ../../../pom.xml 4.0.0 diff --git a/components/org.wso2.carbon.identity.multi.attribute.login/org.wso2.carbon.identity.multi.attribute.login.service/pom.xml b/components/org.wso2.carbon.identity.multi.attribute.login/org.wso2.carbon.identity.multi.attribute.login.service/pom.xml index 25f6adc08a..964714c9df 100644 --- a/components/org.wso2.carbon.identity.multi.attribute.login/org.wso2.carbon.identity.multi.attribute.login.service/pom.xml +++ b/components/org.wso2.carbon.identity.multi.attribute.login/org.wso2.carbon.identity.multi.attribute.login.service/pom.xml @@ -21,7 +21,7 @@ identity-governance org.wso2.carbon.identity.governance - 1.8.63-SNAPSHOT + 1.8.63 ../../../pom.xml 4.0.0 diff --git a/components/org.wso2.carbon.identity.multi.attribute.login/pom.xml b/components/org.wso2.carbon.identity.multi.attribute.login/pom.xml index 9088a390f6..57409ccd35 100644 --- a/components/org.wso2.carbon.identity.multi.attribute.login/pom.xml +++ b/components/org.wso2.carbon.identity.multi.attribute.login/pom.xml @@ -21,7 +21,7 @@ identity-governance org.wso2.carbon.identity.governance - 1.8.63-SNAPSHOT + 1.8.63 ../../pom.xml 4.0.0 diff --git a/components/org.wso2.carbon.identity.password.expiry/pom.xml b/components/org.wso2.carbon.identity.password.expiry/pom.xml index 091c73d978..dd3cb4eb09 100644 --- a/components/org.wso2.carbon.identity.password.expiry/pom.xml +++ b/components/org.wso2.carbon.identity.password.expiry/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.63-SNAPSHOT + 1.8.63 ../../pom.xml diff --git a/components/org.wso2.carbon.identity.password.history/pom.xml b/components/org.wso2.carbon.identity.password.history/pom.xml index d375b691a3..bb5e263d24 100644 --- a/components/org.wso2.carbon.identity.password.history/pom.xml +++ b/components/org.wso2.carbon.identity.password.history/pom.xml @@ -18,7 +18,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.63-SNAPSHOT + 1.8.63 ../../pom.xml diff --git a/components/org.wso2.carbon.identity.password.policy/pom.xml b/components/org.wso2.carbon.identity.password.policy/pom.xml index 5b0de91d2c..dc0b099c91 100644 --- a/components/org.wso2.carbon.identity.password.policy/pom.xml +++ b/components/org.wso2.carbon.identity.password.policy/pom.xml @@ -18,7 +18,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.63-SNAPSHOT + 1.8.63 ../../pom.xml diff --git a/components/org.wso2.carbon.identity.piicontroller/pom.xml b/components/org.wso2.carbon.identity.piicontroller/pom.xml index 3becb0a79c..8fcd4bba23 100644 --- a/components/org.wso2.carbon.identity.piicontroller/pom.xml +++ b/components/org.wso2.carbon.identity.piicontroller/pom.xml @@ -19,7 +19,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.63-SNAPSHOT + 1.8.63 ../../pom.xml diff --git a/components/org.wso2.carbon.identity.recovery.endpoint/pom.xml b/components/org.wso2.carbon.identity.recovery.endpoint/pom.xml index 750b577770..a60c15a3f7 100644 --- a/components/org.wso2.carbon.identity.recovery.endpoint/pom.xml +++ b/components/org.wso2.carbon.identity.recovery.endpoint/pom.xml @@ -5,7 +5,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.63-SNAPSHOT + 1.8.63 ../../pom.xml diff --git a/components/org.wso2.carbon.identity.recovery.ui/pom.xml b/components/org.wso2.carbon.identity.recovery.ui/pom.xml index 5017711096..32731c35f8 100644 --- a/components/org.wso2.carbon.identity.recovery.ui/pom.xml +++ b/components/org.wso2.carbon.identity.recovery.ui/pom.xml @@ -18,7 +18,7 @@ identity-governance org.wso2.carbon.identity.governance - 1.8.63-SNAPSHOT + 1.8.63 ../../pom.xml diff --git a/components/org.wso2.carbon.identity.recovery/pom.xml b/components/org.wso2.carbon.identity.recovery/pom.xml index 93307e6b4b..ceaf8f8168 100644 --- a/components/org.wso2.carbon.identity.recovery/pom.xml +++ b/components/org.wso2.carbon.identity.recovery/pom.xml @@ -18,7 +18,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.63-SNAPSHOT + 1.8.63 ../../pom.xml diff --git a/components/org.wso2.carbon.identity.tenant.resource.manager/pom.xml b/components/org.wso2.carbon.identity.tenant.resource.manager/pom.xml index 0ae72e875c..7f69c3fec6 100644 --- a/components/org.wso2.carbon.identity.tenant.resource.manager/pom.xml +++ b/components/org.wso2.carbon.identity.tenant.resource.manager/pom.xml @@ -22,7 +22,7 @@ identity-governance org.wso2.carbon.identity.governance - 1.8.63-SNAPSHOT + 1.8.63 ../../pom.xml diff --git a/components/org.wso2.carbon.identity.user.endpoint/pom.xml b/components/org.wso2.carbon.identity.user.endpoint/pom.xml index bfd50bbd06..d5a0d3788d 100644 --- a/components/org.wso2.carbon.identity.user.endpoint/pom.xml +++ b/components/org.wso2.carbon.identity.user.endpoint/pom.xml @@ -5,7 +5,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.63-SNAPSHOT + 1.8.63 ../../pom.xml diff --git a/components/org.wso2.carbon.identity.user.export.core/pom.xml b/components/org.wso2.carbon.identity.user.export.core/pom.xml index 26f678c1cb..98808fe45a 100644 --- a/components/org.wso2.carbon.identity.user.export.core/pom.xml +++ b/components/org.wso2.carbon.identity.user.export.core/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.63-SNAPSHOT + 1.8.63 ../../pom.xml diff --git a/components/org.wso2.carbon.identity.user.rename.core/pom.xml b/components/org.wso2.carbon.identity.user.rename.core/pom.xml index 84a5611c28..8c9105ffe2 100644 --- a/components/org.wso2.carbon.identity.user.rename.core/pom.xml +++ b/components/org.wso2.carbon.identity.user.rename.core/pom.xml @@ -20,7 +20,7 @@ identity-governance org.wso2.carbon.identity.governance - 1.8.63-SNAPSHOT + 1.8.63 ../../pom.xml 4.0.0 diff --git a/features/org.wso2.carbon.identity.account.suspension.notification.task.server.feature/pom.xml b/features/org.wso2.carbon.identity.account.suspension.notification.task.server.feature/pom.xml index ea8a62b6bd..097ffc8802 100644 --- a/features/org.wso2.carbon.identity.account.suspension.notification.task.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.account.suspension.notification.task.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance ../../pom.xml - 1.8.63-SNAPSHOT + 1.8.63 4.0.0 diff --git a/features/org.wso2.carbon.identity.auth.attribute.handler.server.feature/pom.xml b/features/org.wso2.carbon.identity.auth.attribute.handler.server.feature/pom.xml index e57149ff11..c315fb7514 100644 --- a/features/org.wso2.carbon.identity.auth.attribute.handler.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.auth.attribute.handler.server.feature/pom.xml @@ -22,7 +22,7 @@ org.wso2.carbon.identity.governance identity-governance ../../pom.xml - 1.8.63-SNAPSHOT + 1.8.63 4.0.0 diff --git a/features/org.wso2.carbon.identity.captcha.server.feature/pom.xml b/features/org.wso2.carbon.identity.captcha.server.feature/pom.xml index fcffedce41..c15d86dc90 100644 --- a/features/org.wso2.carbon.identity.captcha.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.captcha.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance ../../pom.xml - 1.8.63-SNAPSHOT + 1.8.63 4.0.0 diff --git a/features/org.wso2.carbon.identity.governance.feature/pom.xml b/features/org.wso2.carbon.identity.governance.feature/pom.xml index 2025ddbfea..8ec6329ccd 100644 --- a/features/org.wso2.carbon.identity.governance.feature/pom.xml +++ b/features/org.wso2.carbon.identity.governance.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.63-SNAPSHOT + 1.8.63 ../../pom.xml diff --git a/features/org.wso2.carbon.identity.governance.server.feature/pom.xml b/features/org.wso2.carbon.identity.governance.server.feature/pom.xml index c33c38adb0..ceaaea591c 100644 --- a/features/org.wso2.carbon.identity.governance.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.governance.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance ../../pom.xml - 1.8.63-SNAPSHOT + 1.8.63 4.0.0 diff --git a/features/org.wso2.carbon.identity.idle.account.identification.server.feature/pom.xml b/features/org.wso2.carbon.identity.idle.account.identification.server.feature/pom.xml index b1b0d55891..44609fd123 100644 --- a/features/org.wso2.carbon.identity.idle.account.identification.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.idle.account.identification.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance ../../pom.xml - 1.8.63-SNAPSHOT + 1.8.63 4.0.0 diff --git a/features/org.wso2.carbon.identity.multi.attribute.login.service.server.feature/pom.xml b/features/org.wso2.carbon.identity.multi.attribute.login.service.server.feature/pom.xml index edf68697e6..894d1e5aaf 100644 --- a/features/org.wso2.carbon.identity.multi.attribute.login.service.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.multi.attribute.login.service.server.feature/pom.xml @@ -3,7 +3,7 @@ identity-governance org.wso2.carbon.identity.governance - 1.8.63-SNAPSHOT + 1.8.63 ../../pom.xml 4.0.0 diff --git a/features/org.wso2.carbon.identity.password.expiry.server.feature/pom.xml b/features/org.wso2.carbon.identity.password.expiry.server.feature/pom.xml index e8e5ea72fd..fabab5462d 100644 --- a/features/org.wso2.carbon.identity.password.expiry.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.password.expiry.server.feature/pom.xml @@ -22,7 +22,7 @@ org.wso2.carbon.identity.governance identity-governance ../../pom.xml - 1.8.63-SNAPSHOT + 1.8.63 4.0.0 diff --git a/features/org.wso2.carbon.identity.password.history.server.feature/pom.xml b/features/org.wso2.carbon.identity.password.history.server.feature/pom.xml index 6ce2d2f838..03ee659113 100644 --- a/features/org.wso2.carbon.identity.password.history.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.password.history.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance ../../pom.xml - 1.8.63-SNAPSHOT + 1.8.63 4.0.0 diff --git a/features/org.wso2.carbon.identity.password.policy.server.feature/pom.xml b/features/org.wso2.carbon.identity.password.policy.server.feature/pom.xml index 54dda341b4..88471bac25 100644 --- a/features/org.wso2.carbon.identity.password.policy.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.password.policy.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance ../../pom.xml - 1.8.63-SNAPSHOT + 1.8.63 4.0.0 diff --git a/features/org.wso2.carbon.identity.piicontroller.server.feature/pom.xml b/features/org.wso2.carbon.identity.piicontroller.server.feature/pom.xml index 46af7956b9..2a381e59d0 100644 --- a/features/org.wso2.carbon.identity.piicontroller.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.piicontroller.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance ../../pom.xml - 1.8.63-SNAPSHOT + 1.8.63 4.0.0 diff --git a/features/org.wso2.carbon.identity.recovery.server.feature/pom.xml b/features/org.wso2.carbon.identity.recovery.server.feature/pom.xml index fd12db8eb6..0de749ff9f 100644 --- a/features/org.wso2.carbon.identity.recovery.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.recovery.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance ../../pom.xml - 1.8.63-SNAPSHOT + 1.8.63 4.0.0 diff --git a/features/org.wso2.carbon.identity.recovery.ui.feature/pom.xml b/features/org.wso2.carbon.identity.recovery.ui.feature/pom.xml index e35434313a..befdfa88f8 100644 --- a/features/org.wso2.carbon.identity.recovery.ui.feature/pom.xml +++ b/features/org.wso2.carbon.identity.recovery.ui.feature/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.63-SNAPSHOT + 1.8.63 ../../pom.xml diff --git a/features/org.wso2.carbon.identity.tenant.resource.manager.feature/pom.xml b/features/org.wso2.carbon.identity.tenant.resource.manager.feature/pom.xml index 7c5162499b..83f9bbd44e 100644 --- a/features/org.wso2.carbon.identity.tenant.resource.manager.feature/pom.xml +++ b/features/org.wso2.carbon.identity.tenant.resource.manager.feature/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.63-SNAPSHOT + 1.8.63 ../../pom.xml diff --git a/features/org.wso2.carbon.identity.user.server.feature/pom.xml b/features/org.wso2.carbon.identity.user.server.feature/pom.xml index e6b39ecd96..5b02659a38 100644 --- a/features/org.wso2.carbon.identity.user.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.user.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance ../../pom.xml - 1.8.63-SNAPSHOT + 1.8.63 4.0.0 diff --git a/pom.xml b/pom.xml index 4542511117..a222df1e5e 100644 --- a/pom.xml +++ b/pom.xml @@ -18,7 +18,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.63-SNAPSHOT + 1.8.63 4.0.0 pom WSO2 Carbon - Governance Module @@ -37,7 +37,7 @@ https://github.com/wso2-extensions/identity-governance.git scm:git:https://github.com/wso2-extensions/identity-governance.git scm:git:https://github.com/wso2-extensions/identity-governance.git - v1.1.0-SNAPSHOT + v1.8.63 diff --git a/service-stubs/identity/org.wso2.carbon.identity.recovery.stub/pom.xml b/service-stubs/identity/org.wso2.carbon.identity.recovery.stub/pom.xml index d096f18e5a..5b902ec76b 100644 --- a/service-stubs/identity/org.wso2.carbon.identity.recovery.stub/pom.xml +++ b/service-stubs/identity/org.wso2.carbon.identity.recovery.stub/pom.xml @@ -19,7 +19,7 @@ org.wso2.carbon.identity.governance carbon-service-stubs - 1.8.63-SNAPSHOT + 1.8.63 ../pom.xml diff --git a/service-stubs/identity/pom.xml b/service-stubs/identity/pom.xml index d40d6847c3..eb355f687e 100644 --- a/service-stubs/identity/pom.xml +++ b/service-stubs/identity/pom.xml @@ -19,7 +19,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.63-SNAPSHOT + 1.8.63 ../../pom.xml From 21fc6dd078bdf720c49acd4cb2d2b07c1740828b Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 7 Sep 2023 05:04:50 +0000 Subject: [PATCH 16/31] [WSO2 Release] [Jenkins #2533] [Release 1.8.63] prepare for next development iteration --- .../pom.xml | 2 +- .../org.wso2.carbon.identity.api.user.governance/pom.xml | 4 ++-- components/org.wso2.carbon.identity.api.user.recovery/pom.xml | 4 ++-- .../org.wso2.carbon.identity.auth.attribute.handler/pom.xml | 2 +- components/org.wso2.carbon.identity.captcha/pom.xml | 2 +- components/org.wso2.carbon.identity.governance/pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../org.wso2.carbon.identity.multi.attribute.login/pom.xml | 2 +- components/org.wso2.carbon.identity.password.expiry/pom.xml | 2 +- components/org.wso2.carbon.identity.password.history/pom.xml | 2 +- components/org.wso2.carbon.identity.password.policy/pom.xml | 2 +- components/org.wso2.carbon.identity.piicontroller/pom.xml | 2 +- components/org.wso2.carbon.identity.recovery.endpoint/pom.xml | 2 +- components/org.wso2.carbon.identity.recovery.ui/pom.xml | 2 +- components/org.wso2.carbon.identity.recovery/pom.xml | 2 +- .../org.wso2.carbon.identity.tenant.resource.manager/pom.xml | 2 +- components/org.wso2.carbon.identity.user.endpoint/pom.xml | 2 +- components/org.wso2.carbon.identity.user.export.core/pom.xml | 2 +- components/org.wso2.carbon.identity.user.rename.core/pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../org.wso2.carbon.identity.captcha.server.feature/pom.xml | 2 +- features/org.wso2.carbon.identity.governance.feature/pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../org.wso2.carbon.identity.recovery.server.feature/pom.xml | 2 +- features/org.wso2.carbon.identity.recovery.ui.feature/pom.xml | 2 +- .../pom.xml | 2 +- features/org.wso2.carbon.identity.user.server.feature/pom.xml | 2 +- pom.xml | 4 ++-- .../identity/org.wso2.carbon.identity.recovery.stub/pom.xml | 2 +- service-stubs/identity/pom.xml | 2 +- 39 files changed, 42 insertions(+), 42 deletions(-) diff --git a/components/org.wso2.carbon.identity.account.suspension.notification.task/pom.xml b/components/org.wso2.carbon.identity.account.suspension.notification.task/pom.xml index efd26172f2..dd6ac74e3f 100644 --- a/components/org.wso2.carbon.identity.account.suspension.notification.task/pom.xml +++ b/components/org.wso2.carbon.identity.account.suspension.notification.task/pom.xml @@ -20,7 +20,7 @@ identity-governance org.wso2.carbon.identity.governance - 1.8.63 + 1.8.64-SNAPSHOT ../../pom.xml diff --git a/components/org.wso2.carbon.identity.api.user.governance/pom.xml b/components/org.wso2.carbon.identity.api.user.governance/pom.xml index cc698d9a52..c94abf91c0 100644 --- a/components/org.wso2.carbon.identity.api.user.governance/pom.xml +++ b/components/org.wso2.carbon.identity.api.user.governance/pom.xml @@ -23,12 +23,12 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.63 + 1.8.64-SNAPSHOT ../.. org.wso2.carbon.identity.api.user.governance - 1.8.63 + 1.8.64-SNAPSHOT jar WSO2 Carbon - User Rest Governance API WSO2 Carbon - User Rest Governance API diff --git a/components/org.wso2.carbon.identity.api.user.recovery/pom.xml b/components/org.wso2.carbon.identity.api.user.recovery/pom.xml index 2a88180715..2a0cb31772 100644 --- a/components/org.wso2.carbon.identity.api.user.recovery/pom.xml +++ b/components/org.wso2.carbon.identity.api.user.recovery/pom.xml @@ -23,12 +23,12 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.63 + 1.8.64-SNAPSHOT ../.. org.wso2.carbon.identity.api.user.recovery - 1.8.63 + 1.8.64-SNAPSHOT jar WSO2 Carbon - Identity Management Recovery Rest API WSO2 Carbon - Identity Management Recovery Rest API diff --git a/components/org.wso2.carbon.identity.auth.attribute.handler/pom.xml b/components/org.wso2.carbon.identity.auth.attribute.handler/pom.xml index e54e01d6af..90a8f40a13 100644 --- a/components/org.wso2.carbon.identity.auth.attribute.handler/pom.xml +++ b/components/org.wso2.carbon.identity.auth.attribute.handler/pom.xml @@ -22,7 +22,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.63 + 1.8.64-SNAPSHOT ../../pom.xml diff --git a/components/org.wso2.carbon.identity.captcha/pom.xml b/components/org.wso2.carbon.identity.captcha/pom.xml index bfc11626ff..2eb887bec3 100644 --- a/components/org.wso2.carbon.identity.captcha/pom.xml +++ b/components/org.wso2.carbon.identity.captcha/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.63 + 1.8.64-SNAPSHOT ../../pom.xml diff --git a/components/org.wso2.carbon.identity.governance/pom.xml b/components/org.wso2.carbon.identity.governance/pom.xml index 0df9f53f88..d8c87c2ec1 100644 --- a/components/org.wso2.carbon.identity.governance/pom.xml +++ b/components/org.wso2.carbon.identity.governance/pom.xml @@ -18,7 +18,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.63 + 1.8.64-SNAPSHOT ../../pom.xml diff --git a/components/org.wso2.carbon.identity.idle.account.identification/pom.xml b/components/org.wso2.carbon.identity.idle.account.identification/pom.xml index d0ef4136cf..41a119723b 100644 --- a/components/org.wso2.carbon.identity.idle.account.identification/pom.xml +++ b/components/org.wso2.carbon.identity.idle.account.identification/pom.xml @@ -18,7 +18,7 @@ identity-governance org.wso2.carbon.identity.governance - 1.8.63 + 1.8.64-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/components/org.wso2.carbon.identity.multi.attribute.login/org.wso2.carbon.identity.multi.attribute.login.resolver.regex/pom.xml b/components/org.wso2.carbon.identity.multi.attribute.login/org.wso2.carbon.identity.multi.attribute.login.resolver.regex/pom.xml index 7f566b3201..536429d8ea 100644 --- a/components/org.wso2.carbon.identity.multi.attribute.login/org.wso2.carbon.identity.multi.attribute.login.resolver.regex/pom.xml +++ b/components/org.wso2.carbon.identity.multi.attribute.login/org.wso2.carbon.identity.multi.attribute.login.resolver.regex/pom.xml @@ -21,7 +21,7 @@ identity-governance org.wso2.carbon.identity.governance - 1.8.63 + 1.8.64-SNAPSHOT ../../../pom.xml 4.0.0 diff --git a/components/org.wso2.carbon.identity.multi.attribute.login/org.wso2.carbon.identity.multi.attribute.login.service/pom.xml b/components/org.wso2.carbon.identity.multi.attribute.login/org.wso2.carbon.identity.multi.attribute.login.service/pom.xml index 964714c9df..4548136baf 100644 --- a/components/org.wso2.carbon.identity.multi.attribute.login/org.wso2.carbon.identity.multi.attribute.login.service/pom.xml +++ b/components/org.wso2.carbon.identity.multi.attribute.login/org.wso2.carbon.identity.multi.attribute.login.service/pom.xml @@ -21,7 +21,7 @@ identity-governance org.wso2.carbon.identity.governance - 1.8.63 + 1.8.64-SNAPSHOT ../../../pom.xml 4.0.0 diff --git a/components/org.wso2.carbon.identity.multi.attribute.login/pom.xml b/components/org.wso2.carbon.identity.multi.attribute.login/pom.xml index 57409ccd35..7e46679175 100644 --- a/components/org.wso2.carbon.identity.multi.attribute.login/pom.xml +++ b/components/org.wso2.carbon.identity.multi.attribute.login/pom.xml @@ -21,7 +21,7 @@ identity-governance org.wso2.carbon.identity.governance - 1.8.63 + 1.8.64-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/components/org.wso2.carbon.identity.password.expiry/pom.xml b/components/org.wso2.carbon.identity.password.expiry/pom.xml index dd3cb4eb09..ff492b2a77 100644 --- a/components/org.wso2.carbon.identity.password.expiry/pom.xml +++ b/components/org.wso2.carbon.identity.password.expiry/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.63 + 1.8.64-SNAPSHOT ../../pom.xml diff --git a/components/org.wso2.carbon.identity.password.history/pom.xml b/components/org.wso2.carbon.identity.password.history/pom.xml index bb5e263d24..71deee81d7 100644 --- a/components/org.wso2.carbon.identity.password.history/pom.xml +++ b/components/org.wso2.carbon.identity.password.history/pom.xml @@ -18,7 +18,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.63 + 1.8.64-SNAPSHOT ../../pom.xml diff --git a/components/org.wso2.carbon.identity.password.policy/pom.xml b/components/org.wso2.carbon.identity.password.policy/pom.xml index dc0b099c91..6f253090ed 100644 --- a/components/org.wso2.carbon.identity.password.policy/pom.xml +++ b/components/org.wso2.carbon.identity.password.policy/pom.xml @@ -18,7 +18,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.63 + 1.8.64-SNAPSHOT ../../pom.xml diff --git a/components/org.wso2.carbon.identity.piicontroller/pom.xml b/components/org.wso2.carbon.identity.piicontroller/pom.xml index 8fcd4bba23..3bd552d566 100644 --- a/components/org.wso2.carbon.identity.piicontroller/pom.xml +++ b/components/org.wso2.carbon.identity.piicontroller/pom.xml @@ -19,7 +19,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.63 + 1.8.64-SNAPSHOT ../../pom.xml diff --git a/components/org.wso2.carbon.identity.recovery.endpoint/pom.xml b/components/org.wso2.carbon.identity.recovery.endpoint/pom.xml index a60c15a3f7..aa17f5b09e 100644 --- a/components/org.wso2.carbon.identity.recovery.endpoint/pom.xml +++ b/components/org.wso2.carbon.identity.recovery.endpoint/pom.xml @@ -5,7 +5,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.63 + 1.8.64-SNAPSHOT ../../pom.xml diff --git a/components/org.wso2.carbon.identity.recovery.ui/pom.xml b/components/org.wso2.carbon.identity.recovery.ui/pom.xml index 32731c35f8..704c04783b 100644 --- a/components/org.wso2.carbon.identity.recovery.ui/pom.xml +++ b/components/org.wso2.carbon.identity.recovery.ui/pom.xml @@ -18,7 +18,7 @@ identity-governance org.wso2.carbon.identity.governance - 1.8.63 + 1.8.64-SNAPSHOT ../../pom.xml diff --git a/components/org.wso2.carbon.identity.recovery/pom.xml b/components/org.wso2.carbon.identity.recovery/pom.xml index ceaf8f8168..af73f22bf9 100644 --- a/components/org.wso2.carbon.identity.recovery/pom.xml +++ b/components/org.wso2.carbon.identity.recovery/pom.xml @@ -18,7 +18,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.63 + 1.8.64-SNAPSHOT ../../pom.xml diff --git a/components/org.wso2.carbon.identity.tenant.resource.manager/pom.xml b/components/org.wso2.carbon.identity.tenant.resource.manager/pom.xml index 7f69c3fec6..9006b3f31d 100644 --- a/components/org.wso2.carbon.identity.tenant.resource.manager/pom.xml +++ b/components/org.wso2.carbon.identity.tenant.resource.manager/pom.xml @@ -22,7 +22,7 @@ identity-governance org.wso2.carbon.identity.governance - 1.8.63 + 1.8.64-SNAPSHOT ../../pom.xml diff --git a/components/org.wso2.carbon.identity.user.endpoint/pom.xml b/components/org.wso2.carbon.identity.user.endpoint/pom.xml index d5a0d3788d..85ee4bd4ae 100644 --- a/components/org.wso2.carbon.identity.user.endpoint/pom.xml +++ b/components/org.wso2.carbon.identity.user.endpoint/pom.xml @@ -5,7 +5,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.63 + 1.8.64-SNAPSHOT ../../pom.xml diff --git a/components/org.wso2.carbon.identity.user.export.core/pom.xml b/components/org.wso2.carbon.identity.user.export.core/pom.xml index 98808fe45a..edaf0ab141 100644 --- a/components/org.wso2.carbon.identity.user.export.core/pom.xml +++ b/components/org.wso2.carbon.identity.user.export.core/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.63 + 1.8.64-SNAPSHOT ../../pom.xml diff --git a/components/org.wso2.carbon.identity.user.rename.core/pom.xml b/components/org.wso2.carbon.identity.user.rename.core/pom.xml index 8c9105ffe2..1622360aaa 100644 --- a/components/org.wso2.carbon.identity.user.rename.core/pom.xml +++ b/components/org.wso2.carbon.identity.user.rename.core/pom.xml @@ -20,7 +20,7 @@ identity-governance org.wso2.carbon.identity.governance - 1.8.63 + 1.8.64-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/features/org.wso2.carbon.identity.account.suspension.notification.task.server.feature/pom.xml b/features/org.wso2.carbon.identity.account.suspension.notification.task.server.feature/pom.xml index 097ffc8802..56194388fe 100644 --- a/features/org.wso2.carbon.identity.account.suspension.notification.task.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.account.suspension.notification.task.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance ../../pom.xml - 1.8.63 + 1.8.64-SNAPSHOT 4.0.0 diff --git a/features/org.wso2.carbon.identity.auth.attribute.handler.server.feature/pom.xml b/features/org.wso2.carbon.identity.auth.attribute.handler.server.feature/pom.xml index c315fb7514..9d6cb4fd2f 100644 --- a/features/org.wso2.carbon.identity.auth.attribute.handler.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.auth.attribute.handler.server.feature/pom.xml @@ -22,7 +22,7 @@ org.wso2.carbon.identity.governance identity-governance ../../pom.xml - 1.8.63 + 1.8.64-SNAPSHOT 4.0.0 diff --git a/features/org.wso2.carbon.identity.captcha.server.feature/pom.xml b/features/org.wso2.carbon.identity.captcha.server.feature/pom.xml index c15d86dc90..646aa31481 100644 --- a/features/org.wso2.carbon.identity.captcha.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.captcha.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance ../../pom.xml - 1.8.63 + 1.8.64-SNAPSHOT 4.0.0 diff --git a/features/org.wso2.carbon.identity.governance.feature/pom.xml b/features/org.wso2.carbon.identity.governance.feature/pom.xml index 8ec6329ccd..f467e4c4cc 100644 --- a/features/org.wso2.carbon.identity.governance.feature/pom.xml +++ b/features/org.wso2.carbon.identity.governance.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.63 + 1.8.64-SNAPSHOT ../../pom.xml diff --git a/features/org.wso2.carbon.identity.governance.server.feature/pom.xml b/features/org.wso2.carbon.identity.governance.server.feature/pom.xml index ceaaea591c..5d0f79f34a 100644 --- a/features/org.wso2.carbon.identity.governance.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.governance.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance ../../pom.xml - 1.8.63 + 1.8.64-SNAPSHOT 4.0.0 diff --git a/features/org.wso2.carbon.identity.idle.account.identification.server.feature/pom.xml b/features/org.wso2.carbon.identity.idle.account.identification.server.feature/pom.xml index 44609fd123..cdac952b73 100644 --- a/features/org.wso2.carbon.identity.idle.account.identification.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.idle.account.identification.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance ../../pom.xml - 1.8.63 + 1.8.64-SNAPSHOT 4.0.0 diff --git a/features/org.wso2.carbon.identity.multi.attribute.login.service.server.feature/pom.xml b/features/org.wso2.carbon.identity.multi.attribute.login.service.server.feature/pom.xml index 894d1e5aaf..1cd601cf40 100644 --- a/features/org.wso2.carbon.identity.multi.attribute.login.service.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.multi.attribute.login.service.server.feature/pom.xml @@ -3,7 +3,7 @@ identity-governance org.wso2.carbon.identity.governance - 1.8.63 + 1.8.64-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/features/org.wso2.carbon.identity.password.expiry.server.feature/pom.xml b/features/org.wso2.carbon.identity.password.expiry.server.feature/pom.xml index fabab5462d..b3405ae271 100644 --- a/features/org.wso2.carbon.identity.password.expiry.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.password.expiry.server.feature/pom.xml @@ -22,7 +22,7 @@ org.wso2.carbon.identity.governance identity-governance ../../pom.xml - 1.8.63 + 1.8.64-SNAPSHOT 4.0.0 diff --git a/features/org.wso2.carbon.identity.password.history.server.feature/pom.xml b/features/org.wso2.carbon.identity.password.history.server.feature/pom.xml index 03ee659113..83c389b4bb 100644 --- a/features/org.wso2.carbon.identity.password.history.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.password.history.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance ../../pom.xml - 1.8.63 + 1.8.64-SNAPSHOT 4.0.0 diff --git a/features/org.wso2.carbon.identity.password.policy.server.feature/pom.xml b/features/org.wso2.carbon.identity.password.policy.server.feature/pom.xml index 88471bac25..d598a6c26d 100644 --- a/features/org.wso2.carbon.identity.password.policy.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.password.policy.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance ../../pom.xml - 1.8.63 + 1.8.64-SNAPSHOT 4.0.0 diff --git a/features/org.wso2.carbon.identity.piicontroller.server.feature/pom.xml b/features/org.wso2.carbon.identity.piicontroller.server.feature/pom.xml index 2a381e59d0..6a9f120c6d 100644 --- a/features/org.wso2.carbon.identity.piicontroller.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.piicontroller.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance ../../pom.xml - 1.8.63 + 1.8.64-SNAPSHOT 4.0.0 diff --git a/features/org.wso2.carbon.identity.recovery.server.feature/pom.xml b/features/org.wso2.carbon.identity.recovery.server.feature/pom.xml index 0de749ff9f..48350c1f9d 100644 --- a/features/org.wso2.carbon.identity.recovery.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.recovery.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance ../../pom.xml - 1.8.63 + 1.8.64-SNAPSHOT 4.0.0 diff --git a/features/org.wso2.carbon.identity.recovery.ui.feature/pom.xml b/features/org.wso2.carbon.identity.recovery.ui.feature/pom.xml index befdfa88f8..19a09a936d 100644 --- a/features/org.wso2.carbon.identity.recovery.ui.feature/pom.xml +++ b/features/org.wso2.carbon.identity.recovery.ui.feature/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.63 + 1.8.64-SNAPSHOT ../../pom.xml diff --git a/features/org.wso2.carbon.identity.tenant.resource.manager.feature/pom.xml b/features/org.wso2.carbon.identity.tenant.resource.manager.feature/pom.xml index 83f9bbd44e..8cb5ebbf73 100644 --- a/features/org.wso2.carbon.identity.tenant.resource.manager.feature/pom.xml +++ b/features/org.wso2.carbon.identity.tenant.resource.manager.feature/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.63 + 1.8.64-SNAPSHOT ../../pom.xml diff --git a/features/org.wso2.carbon.identity.user.server.feature/pom.xml b/features/org.wso2.carbon.identity.user.server.feature/pom.xml index 5b02659a38..b06f91d792 100644 --- a/features/org.wso2.carbon.identity.user.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.user.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance ../../pom.xml - 1.8.63 + 1.8.64-SNAPSHOT 4.0.0 diff --git a/pom.xml b/pom.xml index a222df1e5e..1b7fc66bc2 100644 --- a/pom.xml +++ b/pom.xml @@ -18,7 +18,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.63 + 1.8.64-SNAPSHOT 4.0.0 pom WSO2 Carbon - Governance Module @@ -37,7 +37,7 @@ https://github.com/wso2-extensions/identity-governance.git scm:git:https://github.com/wso2-extensions/identity-governance.git scm:git:https://github.com/wso2-extensions/identity-governance.git - v1.8.63 + v1.1.0-SNAPSHOT diff --git a/service-stubs/identity/org.wso2.carbon.identity.recovery.stub/pom.xml b/service-stubs/identity/org.wso2.carbon.identity.recovery.stub/pom.xml index 5b902ec76b..7c53b67bb1 100644 --- a/service-stubs/identity/org.wso2.carbon.identity.recovery.stub/pom.xml +++ b/service-stubs/identity/org.wso2.carbon.identity.recovery.stub/pom.xml @@ -19,7 +19,7 @@ org.wso2.carbon.identity.governance carbon-service-stubs - 1.8.63 + 1.8.64-SNAPSHOT ../pom.xml diff --git a/service-stubs/identity/pom.xml b/service-stubs/identity/pom.xml index eb355f687e..2d5a4f1428 100644 --- a/service-stubs/identity/pom.xml +++ b/service-stubs/identity/pom.xml @@ -19,7 +19,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.63 + 1.8.64-SNAPSHOT ../../pom.xml From d9b66d2d0c60bd79cc7cd759d30e4b57eaf812fe Mon Sep 17 00:00:00 2001 From: sahandilshan Date: Mon, 11 Sep 2023 08:10:23 +0530 Subject: [PATCH 17/31] Change resend code API error response --- .../user/endpoint/impl/ResendCodeApiServiceImpl.java | 4 ++-- .../user/endpoint/impl/ResendCodeApiServiceImplTest.java | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/components/org.wso2.carbon.identity.api.user.governance/src/main/java/org/wso2/carbon/identity/user/endpoint/impl/ResendCodeApiServiceImpl.java b/components/org.wso2.carbon.identity.api.user.governance/src/main/java/org/wso2/carbon/identity/user/endpoint/impl/ResendCodeApiServiceImpl.java index 2ee0e6e179..98f91e765b 100644 --- a/components/org.wso2.carbon.identity.api.user.governance/src/main/java/org/wso2/carbon/identity/user/endpoint/impl/ResendCodeApiServiceImpl.java +++ b/components/org.wso2.carbon.identity.api.user.governance/src/main/java/org/wso2/carbon/identity/user/endpoint/impl/ResendCodeApiServiceImpl.java @@ -80,8 +80,8 @@ public Response resendCodePost(ResendCodeRequestDTO resendCodeRequestDTO) { if (notificationResponseBean == null) { ErrorDTO errorDTO = new ErrorDTO(); errorDTO.setRef(Utils.getCorrelation()); - errorDTO.setMessage("This service is not yet implemented."); - return Response.status(Response.Status.NOT_IMPLEMENTED).entity(errorDTO).build(); + errorDTO.setMessage("User recovery data is not found. Please re-initiate the recovery flow."); + return Response.status(Response.Status.BAD_REQUEST).entity(errorDTO).build(); } //when notifications internally managed key might not be set. diff --git a/components/org.wso2.carbon.identity.api.user.governance/src/test/java/org/wso2/carbon/identity/user/endpoint/impl/ResendCodeApiServiceImplTest.java b/components/org.wso2.carbon.identity.api.user.governance/src/test/java/org/wso2/carbon/identity/user/endpoint/impl/ResendCodeApiServiceImplTest.java index 1273522aa2..65349ba385 100644 --- a/components/org.wso2.carbon.identity.api.user.governance/src/test/java/org/wso2/carbon/identity/user/endpoint/impl/ResendCodeApiServiceImplTest.java +++ b/components/org.wso2.carbon.identity.api.user.governance/src/test/java/org/wso2/carbon/identity/user/endpoint/impl/ResendCodeApiServiceImplTest.java @@ -95,11 +95,11 @@ public void testResendCodePost() throws IdentityRecoveryException { assertEquals(resendCodeApiService.resendCodePost(multipleResendCodeRequestDTO()).getStatus(), 201); mockedUtils.when(() -> Utils.getUserRecoveryData(recoveryScenarioResendCodeRequestDTO())).thenReturn(null); - assertEquals(resendCodeApiService.resendCodePost(recoveryScenarioResendCodeRequestDTO()).getStatus(), 501); + assertEquals(resendCodeApiService.resendCodePost(recoveryScenarioResendCodeRequestDTO()).getStatus(), 400); mockedUtils.when(() -> Utils.getUserRecoveryData(recoveryScenarioResendCodeRequestDTO())).thenReturn( userRecoveryData); - assertEquals(resendCodeApiService.resendCodePost(recoveryScenarioResendCodeRequestDTO()).getStatus(), 501); + assertEquals(resendCodeApiService.resendCodePost(recoveryScenarioResendCodeRequestDTO()).getStatus(), 400); assertEquals(resendCodeApiService.resendCodePost(duplicateScenarioResendCodeRequestDTO()).getStatus(), 201); } @@ -109,7 +109,7 @@ public void testIdentityRecoveryExceptioninResendCodePost() throws IdentityRecov Mockito.when(userSelfRegistrationManager.resendConfirmationCode( Utils.getUser(resendCodeRequestDTO().getUser()), Utils.getProperties(resendCodeRequestDTO().getProperties()))).thenThrow(new IdentityRecoveryException("Recovery Exception")); - assertEquals(resendCodeApiService.resendCodePost(resendCodeRequestDTO()).getStatus(), 501); + assertEquals(resendCodeApiService.resendCodePost(resendCodeRequestDTO()).getStatus(), 400); } @Test @@ -118,7 +118,7 @@ public void testIdentityRecoveryClientExceptioninResendCodePost() throws Identit Mockito.when(userSelfRegistrationManager.resendConfirmationCode( Utils.getUser(resendCodeRequestDTO().getUser()), Utils.getProperties(resendCodeRequestDTO().getProperties()))).thenThrow(new IdentityRecoveryClientException("Recovery Exception")); - assertEquals(resendCodeApiService.resendCodePost(resendCodeRequestDTO()).getStatus(), 501); + assertEquals(resendCodeApiService.resendCodePost(resendCodeRequestDTO()).getStatus(), 400); } private ResendCodeRequestDTO resendCodeRequestDTO() { From 4a6564fb35ba9314d82dfc6c9d40ffdb55f447c5 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Mon, 11 Sep 2023 04:37:51 +0000 Subject: [PATCH 18/31] [WSO2 Release] [Jenkins #2535] [Release 1.8.64] prepare release v1.8.64 --- .../pom.xml | 2 +- .../org.wso2.carbon.identity.api.user.governance/pom.xml | 4 ++-- components/org.wso2.carbon.identity.api.user.recovery/pom.xml | 4 ++-- .../org.wso2.carbon.identity.auth.attribute.handler/pom.xml | 2 +- components/org.wso2.carbon.identity.captcha/pom.xml | 2 +- components/org.wso2.carbon.identity.governance/pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../org.wso2.carbon.identity.multi.attribute.login/pom.xml | 2 +- components/org.wso2.carbon.identity.password.expiry/pom.xml | 2 +- components/org.wso2.carbon.identity.password.history/pom.xml | 2 +- components/org.wso2.carbon.identity.password.policy/pom.xml | 2 +- components/org.wso2.carbon.identity.piicontroller/pom.xml | 2 +- components/org.wso2.carbon.identity.recovery.endpoint/pom.xml | 2 +- components/org.wso2.carbon.identity.recovery.ui/pom.xml | 2 +- components/org.wso2.carbon.identity.recovery/pom.xml | 2 +- .../org.wso2.carbon.identity.tenant.resource.manager/pom.xml | 2 +- components/org.wso2.carbon.identity.user.endpoint/pom.xml | 2 +- components/org.wso2.carbon.identity.user.export.core/pom.xml | 2 +- components/org.wso2.carbon.identity.user.rename.core/pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../org.wso2.carbon.identity.captcha.server.feature/pom.xml | 2 +- features/org.wso2.carbon.identity.governance.feature/pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../org.wso2.carbon.identity.recovery.server.feature/pom.xml | 2 +- features/org.wso2.carbon.identity.recovery.ui.feature/pom.xml | 2 +- .../pom.xml | 2 +- features/org.wso2.carbon.identity.user.server.feature/pom.xml | 2 +- pom.xml | 4 ++-- .../identity/org.wso2.carbon.identity.recovery.stub/pom.xml | 2 +- service-stubs/identity/pom.xml | 2 +- 39 files changed, 42 insertions(+), 42 deletions(-) diff --git a/components/org.wso2.carbon.identity.account.suspension.notification.task/pom.xml b/components/org.wso2.carbon.identity.account.suspension.notification.task/pom.xml index dd6ac74e3f..8ffee9f25d 100644 --- a/components/org.wso2.carbon.identity.account.suspension.notification.task/pom.xml +++ b/components/org.wso2.carbon.identity.account.suspension.notification.task/pom.xml @@ -20,7 +20,7 @@ identity-governance org.wso2.carbon.identity.governance - 1.8.64-SNAPSHOT + 1.8.64 ../../pom.xml diff --git a/components/org.wso2.carbon.identity.api.user.governance/pom.xml b/components/org.wso2.carbon.identity.api.user.governance/pom.xml index c94abf91c0..639d88267f 100644 --- a/components/org.wso2.carbon.identity.api.user.governance/pom.xml +++ b/components/org.wso2.carbon.identity.api.user.governance/pom.xml @@ -23,12 +23,12 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.64-SNAPSHOT + 1.8.64 ../.. org.wso2.carbon.identity.api.user.governance - 1.8.64-SNAPSHOT + 1.8.64 jar WSO2 Carbon - User Rest Governance API WSO2 Carbon - User Rest Governance API diff --git a/components/org.wso2.carbon.identity.api.user.recovery/pom.xml b/components/org.wso2.carbon.identity.api.user.recovery/pom.xml index 2a0cb31772..2d685aeef5 100644 --- a/components/org.wso2.carbon.identity.api.user.recovery/pom.xml +++ b/components/org.wso2.carbon.identity.api.user.recovery/pom.xml @@ -23,12 +23,12 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.64-SNAPSHOT + 1.8.64 ../.. org.wso2.carbon.identity.api.user.recovery - 1.8.64-SNAPSHOT + 1.8.64 jar WSO2 Carbon - Identity Management Recovery Rest API WSO2 Carbon - Identity Management Recovery Rest API diff --git a/components/org.wso2.carbon.identity.auth.attribute.handler/pom.xml b/components/org.wso2.carbon.identity.auth.attribute.handler/pom.xml index 90a8f40a13..20c92e85a4 100644 --- a/components/org.wso2.carbon.identity.auth.attribute.handler/pom.xml +++ b/components/org.wso2.carbon.identity.auth.attribute.handler/pom.xml @@ -22,7 +22,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.64-SNAPSHOT + 1.8.64 ../../pom.xml diff --git a/components/org.wso2.carbon.identity.captcha/pom.xml b/components/org.wso2.carbon.identity.captcha/pom.xml index 2eb887bec3..0308ee6beb 100644 --- a/components/org.wso2.carbon.identity.captcha/pom.xml +++ b/components/org.wso2.carbon.identity.captcha/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.64-SNAPSHOT + 1.8.64 ../../pom.xml diff --git a/components/org.wso2.carbon.identity.governance/pom.xml b/components/org.wso2.carbon.identity.governance/pom.xml index d8c87c2ec1..d8804f47bf 100644 --- a/components/org.wso2.carbon.identity.governance/pom.xml +++ b/components/org.wso2.carbon.identity.governance/pom.xml @@ -18,7 +18,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.64-SNAPSHOT + 1.8.64 ../../pom.xml diff --git a/components/org.wso2.carbon.identity.idle.account.identification/pom.xml b/components/org.wso2.carbon.identity.idle.account.identification/pom.xml index 41a119723b..dea84bc357 100644 --- a/components/org.wso2.carbon.identity.idle.account.identification/pom.xml +++ b/components/org.wso2.carbon.identity.idle.account.identification/pom.xml @@ -18,7 +18,7 @@ identity-governance org.wso2.carbon.identity.governance - 1.8.64-SNAPSHOT + 1.8.64 ../../pom.xml 4.0.0 diff --git a/components/org.wso2.carbon.identity.multi.attribute.login/org.wso2.carbon.identity.multi.attribute.login.resolver.regex/pom.xml b/components/org.wso2.carbon.identity.multi.attribute.login/org.wso2.carbon.identity.multi.attribute.login.resolver.regex/pom.xml index 536429d8ea..1c1ffe9ac0 100644 --- a/components/org.wso2.carbon.identity.multi.attribute.login/org.wso2.carbon.identity.multi.attribute.login.resolver.regex/pom.xml +++ b/components/org.wso2.carbon.identity.multi.attribute.login/org.wso2.carbon.identity.multi.attribute.login.resolver.regex/pom.xml @@ -21,7 +21,7 @@ identity-governance org.wso2.carbon.identity.governance - 1.8.64-SNAPSHOT + 1.8.64 ../../../pom.xml 4.0.0 diff --git a/components/org.wso2.carbon.identity.multi.attribute.login/org.wso2.carbon.identity.multi.attribute.login.service/pom.xml b/components/org.wso2.carbon.identity.multi.attribute.login/org.wso2.carbon.identity.multi.attribute.login.service/pom.xml index 4548136baf..2542222fa8 100644 --- a/components/org.wso2.carbon.identity.multi.attribute.login/org.wso2.carbon.identity.multi.attribute.login.service/pom.xml +++ b/components/org.wso2.carbon.identity.multi.attribute.login/org.wso2.carbon.identity.multi.attribute.login.service/pom.xml @@ -21,7 +21,7 @@ identity-governance org.wso2.carbon.identity.governance - 1.8.64-SNAPSHOT + 1.8.64 ../../../pom.xml 4.0.0 diff --git a/components/org.wso2.carbon.identity.multi.attribute.login/pom.xml b/components/org.wso2.carbon.identity.multi.attribute.login/pom.xml index 7e46679175..26da9dafe4 100644 --- a/components/org.wso2.carbon.identity.multi.attribute.login/pom.xml +++ b/components/org.wso2.carbon.identity.multi.attribute.login/pom.xml @@ -21,7 +21,7 @@ identity-governance org.wso2.carbon.identity.governance - 1.8.64-SNAPSHOT + 1.8.64 ../../pom.xml 4.0.0 diff --git a/components/org.wso2.carbon.identity.password.expiry/pom.xml b/components/org.wso2.carbon.identity.password.expiry/pom.xml index ff492b2a77..e6ffa5d8f4 100644 --- a/components/org.wso2.carbon.identity.password.expiry/pom.xml +++ b/components/org.wso2.carbon.identity.password.expiry/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.64-SNAPSHOT + 1.8.64 ../../pom.xml diff --git a/components/org.wso2.carbon.identity.password.history/pom.xml b/components/org.wso2.carbon.identity.password.history/pom.xml index 71deee81d7..1f236d3112 100644 --- a/components/org.wso2.carbon.identity.password.history/pom.xml +++ b/components/org.wso2.carbon.identity.password.history/pom.xml @@ -18,7 +18,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.64-SNAPSHOT + 1.8.64 ../../pom.xml diff --git a/components/org.wso2.carbon.identity.password.policy/pom.xml b/components/org.wso2.carbon.identity.password.policy/pom.xml index 6f253090ed..33255c9bff 100644 --- a/components/org.wso2.carbon.identity.password.policy/pom.xml +++ b/components/org.wso2.carbon.identity.password.policy/pom.xml @@ -18,7 +18,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.64-SNAPSHOT + 1.8.64 ../../pom.xml diff --git a/components/org.wso2.carbon.identity.piicontroller/pom.xml b/components/org.wso2.carbon.identity.piicontroller/pom.xml index 3bd552d566..8fa8eb55d5 100644 --- a/components/org.wso2.carbon.identity.piicontroller/pom.xml +++ b/components/org.wso2.carbon.identity.piicontroller/pom.xml @@ -19,7 +19,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.64-SNAPSHOT + 1.8.64 ../../pom.xml diff --git a/components/org.wso2.carbon.identity.recovery.endpoint/pom.xml b/components/org.wso2.carbon.identity.recovery.endpoint/pom.xml index aa17f5b09e..ca6ea4252e 100644 --- a/components/org.wso2.carbon.identity.recovery.endpoint/pom.xml +++ b/components/org.wso2.carbon.identity.recovery.endpoint/pom.xml @@ -5,7 +5,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.64-SNAPSHOT + 1.8.64 ../../pom.xml diff --git a/components/org.wso2.carbon.identity.recovery.ui/pom.xml b/components/org.wso2.carbon.identity.recovery.ui/pom.xml index 704c04783b..f1566a97e1 100644 --- a/components/org.wso2.carbon.identity.recovery.ui/pom.xml +++ b/components/org.wso2.carbon.identity.recovery.ui/pom.xml @@ -18,7 +18,7 @@ identity-governance org.wso2.carbon.identity.governance - 1.8.64-SNAPSHOT + 1.8.64 ../../pom.xml diff --git a/components/org.wso2.carbon.identity.recovery/pom.xml b/components/org.wso2.carbon.identity.recovery/pom.xml index af73f22bf9..11d9a8d2ad 100644 --- a/components/org.wso2.carbon.identity.recovery/pom.xml +++ b/components/org.wso2.carbon.identity.recovery/pom.xml @@ -18,7 +18,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.64-SNAPSHOT + 1.8.64 ../../pom.xml diff --git a/components/org.wso2.carbon.identity.tenant.resource.manager/pom.xml b/components/org.wso2.carbon.identity.tenant.resource.manager/pom.xml index 9006b3f31d..c1a05ef02e 100644 --- a/components/org.wso2.carbon.identity.tenant.resource.manager/pom.xml +++ b/components/org.wso2.carbon.identity.tenant.resource.manager/pom.xml @@ -22,7 +22,7 @@ identity-governance org.wso2.carbon.identity.governance - 1.8.64-SNAPSHOT + 1.8.64 ../../pom.xml diff --git a/components/org.wso2.carbon.identity.user.endpoint/pom.xml b/components/org.wso2.carbon.identity.user.endpoint/pom.xml index 85ee4bd4ae..7874233a08 100644 --- a/components/org.wso2.carbon.identity.user.endpoint/pom.xml +++ b/components/org.wso2.carbon.identity.user.endpoint/pom.xml @@ -5,7 +5,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.64-SNAPSHOT + 1.8.64 ../../pom.xml diff --git a/components/org.wso2.carbon.identity.user.export.core/pom.xml b/components/org.wso2.carbon.identity.user.export.core/pom.xml index edaf0ab141..aa8d19d26a 100644 --- a/components/org.wso2.carbon.identity.user.export.core/pom.xml +++ b/components/org.wso2.carbon.identity.user.export.core/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.64-SNAPSHOT + 1.8.64 ../../pom.xml diff --git a/components/org.wso2.carbon.identity.user.rename.core/pom.xml b/components/org.wso2.carbon.identity.user.rename.core/pom.xml index 1622360aaa..8b2e8005eb 100644 --- a/components/org.wso2.carbon.identity.user.rename.core/pom.xml +++ b/components/org.wso2.carbon.identity.user.rename.core/pom.xml @@ -20,7 +20,7 @@ identity-governance org.wso2.carbon.identity.governance - 1.8.64-SNAPSHOT + 1.8.64 ../../pom.xml 4.0.0 diff --git a/features/org.wso2.carbon.identity.account.suspension.notification.task.server.feature/pom.xml b/features/org.wso2.carbon.identity.account.suspension.notification.task.server.feature/pom.xml index 56194388fe..f1b217cff3 100644 --- a/features/org.wso2.carbon.identity.account.suspension.notification.task.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.account.suspension.notification.task.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance ../../pom.xml - 1.8.64-SNAPSHOT + 1.8.64 4.0.0 diff --git a/features/org.wso2.carbon.identity.auth.attribute.handler.server.feature/pom.xml b/features/org.wso2.carbon.identity.auth.attribute.handler.server.feature/pom.xml index 9d6cb4fd2f..75b9d10845 100644 --- a/features/org.wso2.carbon.identity.auth.attribute.handler.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.auth.attribute.handler.server.feature/pom.xml @@ -22,7 +22,7 @@ org.wso2.carbon.identity.governance identity-governance ../../pom.xml - 1.8.64-SNAPSHOT + 1.8.64 4.0.0 diff --git a/features/org.wso2.carbon.identity.captcha.server.feature/pom.xml b/features/org.wso2.carbon.identity.captcha.server.feature/pom.xml index 646aa31481..4966627227 100644 --- a/features/org.wso2.carbon.identity.captcha.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.captcha.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance ../../pom.xml - 1.8.64-SNAPSHOT + 1.8.64 4.0.0 diff --git a/features/org.wso2.carbon.identity.governance.feature/pom.xml b/features/org.wso2.carbon.identity.governance.feature/pom.xml index f467e4c4cc..96bdb2cfa3 100644 --- a/features/org.wso2.carbon.identity.governance.feature/pom.xml +++ b/features/org.wso2.carbon.identity.governance.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.64-SNAPSHOT + 1.8.64 ../../pom.xml diff --git a/features/org.wso2.carbon.identity.governance.server.feature/pom.xml b/features/org.wso2.carbon.identity.governance.server.feature/pom.xml index 5d0f79f34a..aed59fb1f4 100644 --- a/features/org.wso2.carbon.identity.governance.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.governance.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance ../../pom.xml - 1.8.64-SNAPSHOT + 1.8.64 4.0.0 diff --git a/features/org.wso2.carbon.identity.idle.account.identification.server.feature/pom.xml b/features/org.wso2.carbon.identity.idle.account.identification.server.feature/pom.xml index cdac952b73..e681de477c 100644 --- a/features/org.wso2.carbon.identity.idle.account.identification.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.idle.account.identification.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance ../../pom.xml - 1.8.64-SNAPSHOT + 1.8.64 4.0.0 diff --git a/features/org.wso2.carbon.identity.multi.attribute.login.service.server.feature/pom.xml b/features/org.wso2.carbon.identity.multi.attribute.login.service.server.feature/pom.xml index 1cd601cf40..07a475a679 100644 --- a/features/org.wso2.carbon.identity.multi.attribute.login.service.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.multi.attribute.login.service.server.feature/pom.xml @@ -3,7 +3,7 @@ identity-governance org.wso2.carbon.identity.governance - 1.8.64-SNAPSHOT + 1.8.64 ../../pom.xml 4.0.0 diff --git a/features/org.wso2.carbon.identity.password.expiry.server.feature/pom.xml b/features/org.wso2.carbon.identity.password.expiry.server.feature/pom.xml index b3405ae271..3bf8f79823 100644 --- a/features/org.wso2.carbon.identity.password.expiry.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.password.expiry.server.feature/pom.xml @@ -22,7 +22,7 @@ org.wso2.carbon.identity.governance identity-governance ../../pom.xml - 1.8.64-SNAPSHOT + 1.8.64 4.0.0 diff --git a/features/org.wso2.carbon.identity.password.history.server.feature/pom.xml b/features/org.wso2.carbon.identity.password.history.server.feature/pom.xml index 83c389b4bb..95f553cd3f 100644 --- a/features/org.wso2.carbon.identity.password.history.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.password.history.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance ../../pom.xml - 1.8.64-SNAPSHOT + 1.8.64 4.0.0 diff --git a/features/org.wso2.carbon.identity.password.policy.server.feature/pom.xml b/features/org.wso2.carbon.identity.password.policy.server.feature/pom.xml index d598a6c26d..feeeda87a0 100644 --- a/features/org.wso2.carbon.identity.password.policy.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.password.policy.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance ../../pom.xml - 1.8.64-SNAPSHOT + 1.8.64 4.0.0 diff --git a/features/org.wso2.carbon.identity.piicontroller.server.feature/pom.xml b/features/org.wso2.carbon.identity.piicontroller.server.feature/pom.xml index 6a9f120c6d..dc03d01d19 100644 --- a/features/org.wso2.carbon.identity.piicontroller.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.piicontroller.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance ../../pom.xml - 1.8.64-SNAPSHOT + 1.8.64 4.0.0 diff --git a/features/org.wso2.carbon.identity.recovery.server.feature/pom.xml b/features/org.wso2.carbon.identity.recovery.server.feature/pom.xml index 48350c1f9d..1e88c06e1a 100644 --- a/features/org.wso2.carbon.identity.recovery.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.recovery.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance ../../pom.xml - 1.8.64-SNAPSHOT + 1.8.64 4.0.0 diff --git a/features/org.wso2.carbon.identity.recovery.ui.feature/pom.xml b/features/org.wso2.carbon.identity.recovery.ui.feature/pom.xml index 19a09a936d..1c7fe31e01 100644 --- a/features/org.wso2.carbon.identity.recovery.ui.feature/pom.xml +++ b/features/org.wso2.carbon.identity.recovery.ui.feature/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.64-SNAPSHOT + 1.8.64 ../../pom.xml diff --git a/features/org.wso2.carbon.identity.tenant.resource.manager.feature/pom.xml b/features/org.wso2.carbon.identity.tenant.resource.manager.feature/pom.xml index 8cb5ebbf73..b17c6694ef 100644 --- a/features/org.wso2.carbon.identity.tenant.resource.manager.feature/pom.xml +++ b/features/org.wso2.carbon.identity.tenant.resource.manager.feature/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.64-SNAPSHOT + 1.8.64 ../../pom.xml diff --git a/features/org.wso2.carbon.identity.user.server.feature/pom.xml b/features/org.wso2.carbon.identity.user.server.feature/pom.xml index b06f91d792..c7886c0547 100644 --- a/features/org.wso2.carbon.identity.user.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.user.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance ../../pom.xml - 1.8.64-SNAPSHOT + 1.8.64 4.0.0 diff --git a/pom.xml b/pom.xml index 1b7fc66bc2..67ad5a3dff 100644 --- a/pom.xml +++ b/pom.xml @@ -18,7 +18,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.64-SNAPSHOT + 1.8.64 4.0.0 pom WSO2 Carbon - Governance Module @@ -37,7 +37,7 @@ https://github.com/wso2-extensions/identity-governance.git scm:git:https://github.com/wso2-extensions/identity-governance.git scm:git:https://github.com/wso2-extensions/identity-governance.git - v1.1.0-SNAPSHOT + v1.8.64 diff --git a/service-stubs/identity/org.wso2.carbon.identity.recovery.stub/pom.xml b/service-stubs/identity/org.wso2.carbon.identity.recovery.stub/pom.xml index 7c53b67bb1..c64e6b7547 100644 --- a/service-stubs/identity/org.wso2.carbon.identity.recovery.stub/pom.xml +++ b/service-stubs/identity/org.wso2.carbon.identity.recovery.stub/pom.xml @@ -19,7 +19,7 @@ org.wso2.carbon.identity.governance carbon-service-stubs - 1.8.64-SNAPSHOT + 1.8.64 ../pom.xml diff --git a/service-stubs/identity/pom.xml b/service-stubs/identity/pom.xml index 2d5a4f1428..bb873cc7d8 100644 --- a/service-stubs/identity/pom.xml +++ b/service-stubs/identity/pom.xml @@ -19,7 +19,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.64-SNAPSHOT + 1.8.64 ../../pom.xml From cf42d11395d9def24a0877004a0bed7920a8ec84 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Mon, 11 Sep 2023 04:37:53 +0000 Subject: [PATCH 19/31] [WSO2 Release] [Jenkins #2535] [Release 1.8.64] prepare for next development iteration --- .../pom.xml | 2 +- .../org.wso2.carbon.identity.api.user.governance/pom.xml | 4 ++-- components/org.wso2.carbon.identity.api.user.recovery/pom.xml | 4 ++-- .../org.wso2.carbon.identity.auth.attribute.handler/pom.xml | 2 +- components/org.wso2.carbon.identity.captcha/pom.xml | 2 +- components/org.wso2.carbon.identity.governance/pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../org.wso2.carbon.identity.multi.attribute.login/pom.xml | 2 +- components/org.wso2.carbon.identity.password.expiry/pom.xml | 2 +- components/org.wso2.carbon.identity.password.history/pom.xml | 2 +- components/org.wso2.carbon.identity.password.policy/pom.xml | 2 +- components/org.wso2.carbon.identity.piicontroller/pom.xml | 2 +- components/org.wso2.carbon.identity.recovery.endpoint/pom.xml | 2 +- components/org.wso2.carbon.identity.recovery.ui/pom.xml | 2 +- components/org.wso2.carbon.identity.recovery/pom.xml | 2 +- .../org.wso2.carbon.identity.tenant.resource.manager/pom.xml | 2 +- components/org.wso2.carbon.identity.user.endpoint/pom.xml | 2 +- components/org.wso2.carbon.identity.user.export.core/pom.xml | 2 +- components/org.wso2.carbon.identity.user.rename.core/pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../org.wso2.carbon.identity.captcha.server.feature/pom.xml | 2 +- features/org.wso2.carbon.identity.governance.feature/pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../org.wso2.carbon.identity.recovery.server.feature/pom.xml | 2 +- features/org.wso2.carbon.identity.recovery.ui.feature/pom.xml | 2 +- .../pom.xml | 2 +- features/org.wso2.carbon.identity.user.server.feature/pom.xml | 2 +- pom.xml | 4 ++-- .../identity/org.wso2.carbon.identity.recovery.stub/pom.xml | 2 +- service-stubs/identity/pom.xml | 2 +- 39 files changed, 42 insertions(+), 42 deletions(-) diff --git a/components/org.wso2.carbon.identity.account.suspension.notification.task/pom.xml b/components/org.wso2.carbon.identity.account.suspension.notification.task/pom.xml index 8ffee9f25d..d189bb164c 100644 --- a/components/org.wso2.carbon.identity.account.suspension.notification.task/pom.xml +++ b/components/org.wso2.carbon.identity.account.suspension.notification.task/pom.xml @@ -20,7 +20,7 @@ identity-governance org.wso2.carbon.identity.governance - 1.8.64 + 1.8.65-SNAPSHOT ../../pom.xml diff --git a/components/org.wso2.carbon.identity.api.user.governance/pom.xml b/components/org.wso2.carbon.identity.api.user.governance/pom.xml index 639d88267f..2621ca936d 100644 --- a/components/org.wso2.carbon.identity.api.user.governance/pom.xml +++ b/components/org.wso2.carbon.identity.api.user.governance/pom.xml @@ -23,12 +23,12 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.64 + 1.8.65-SNAPSHOT ../.. org.wso2.carbon.identity.api.user.governance - 1.8.64 + 1.8.65-SNAPSHOT jar WSO2 Carbon - User Rest Governance API WSO2 Carbon - User Rest Governance API diff --git a/components/org.wso2.carbon.identity.api.user.recovery/pom.xml b/components/org.wso2.carbon.identity.api.user.recovery/pom.xml index 2d685aeef5..a5904d4c63 100644 --- a/components/org.wso2.carbon.identity.api.user.recovery/pom.xml +++ b/components/org.wso2.carbon.identity.api.user.recovery/pom.xml @@ -23,12 +23,12 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.64 + 1.8.65-SNAPSHOT ../.. org.wso2.carbon.identity.api.user.recovery - 1.8.64 + 1.8.65-SNAPSHOT jar WSO2 Carbon - Identity Management Recovery Rest API WSO2 Carbon - Identity Management Recovery Rest API diff --git a/components/org.wso2.carbon.identity.auth.attribute.handler/pom.xml b/components/org.wso2.carbon.identity.auth.attribute.handler/pom.xml index 20c92e85a4..96ee6e05b3 100644 --- a/components/org.wso2.carbon.identity.auth.attribute.handler/pom.xml +++ b/components/org.wso2.carbon.identity.auth.attribute.handler/pom.xml @@ -22,7 +22,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.64 + 1.8.65-SNAPSHOT ../../pom.xml diff --git a/components/org.wso2.carbon.identity.captcha/pom.xml b/components/org.wso2.carbon.identity.captcha/pom.xml index 0308ee6beb..efa345d98d 100644 --- a/components/org.wso2.carbon.identity.captcha/pom.xml +++ b/components/org.wso2.carbon.identity.captcha/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.64 + 1.8.65-SNAPSHOT ../../pom.xml diff --git a/components/org.wso2.carbon.identity.governance/pom.xml b/components/org.wso2.carbon.identity.governance/pom.xml index d8804f47bf..0f67e7815c 100644 --- a/components/org.wso2.carbon.identity.governance/pom.xml +++ b/components/org.wso2.carbon.identity.governance/pom.xml @@ -18,7 +18,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.64 + 1.8.65-SNAPSHOT ../../pom.xml diff --git a/components/org.wso2.carbon.identity.idle.account.identification/pom.xml b/components/org.wso2.carbon.identity.idle.account.identification/pom.xml index dea84bc357..df7dbac8dc 100644 --- a/components/org.wso2.carbon.identity.idle.account.identification/pom.xml +++ b/components/org.wso2.carbon.identity.idle.account.identification/pom.xml @@ -18,7 +18,7 @@ identity-governance org.wso2.carbon.identity.governance - 1.8.64 + 1.8.65-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/components/org.wso2.carbon.identity.multi.attribute.login/org.wso2.carbon.identity.multi.attribute.login.resolver.regex/pom.xml b/components/org.wso2.carbon.identity.multi.attribute.login/org.wso2.carbon.identity.multi.attribute.login.resolver.regex/pom.xml index 1c1ffe9ac0..6d5e1709bd 100644 --- a/components/org.wso2.carbon.identity.multi.attribute.login/org.wso2.carbon.identity.multi.attribute.login.resolver.regex/pom.xml +++ b/components/org.wso2.carbon.identity.multi.attribute.login/org.wso2.carbon.identity.multi.attribute.login.resolver.regex/pom.xml @@ -21,7 +21,7 @@ identity-governance org.wso2.carbon.identity.governance - 1.8.64 + 1.8.65-SNAPSHOT ../../../pom.xml 4.0.0 diff --git a/components/org.wso2.carbon.identity.multi.attribute.login/org.wso2.carbon.identity.multi.attribute.login.service/pom.xml b/components/org.wso2.carbon.identity.multi.attribute.login/org.wso2.carbon.identity.multi.attribute.login.service/pom.xml index 2542222fa8..bbd94f6c40 100644 --- a/components/org.wso2.carbon.identity.multi.attribute.login/org.wso2.carbon.identity.multi.attribute.login.service/pom.xml +++ b/components/org.wso2.carbon.identity.multi.attribute.login/org.wso2.carbon.identity.multi.attribute.login.service/pom.xml @@ -21,7 +21,7 @@ identity-governance org.wso2.carbon.identity.governance - 1.8.64 + 1.8.65-SNAPSHOT ../../../pom.xml 4.0.0 diff --git a/components/org.wso2.carbon.identity.multi.attribute.login/pom.xml b/components/org.wso2.carbon.identity.multi.attribute.login/pom.xml index 26da9dafe4..41cd3be926 100644 --- a/components/org.wso2.carbon.identity.multi.attribute.login/pom.xml +++ b/components/org.wso2.carbon.identity.multi.attribute.login/pom.xml @@ -21,7 +21,7 @@ identity-governance org.wso2.carbon.identity.governance - 1.8.64 + 1.8.65-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/components/org.wso2.carbon.identity.password.expiry/pom.xml b/components/org.wso2.carbon.identity.password.expiry/pom.xml index e6ffa5d8f4..e354fbcccd 100644 --- a/components/org.wso2.carbon.identity.password.expiry/pom.xml +++ b/components/org.wso2.carbon.identity.password.expiry/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.64 + 1.8.65-SNAPSHOT ../../pom.xml diff --git a/components/org.wso2.carbon.identity.password.history/pom.xml b/components/org.wso2.carbon.identity.password.history/pom.xml index 1f236d3112..5f7f428e58 100644 --- a/components/org.wso2.carbon.identity.password.history/pom.xml +++ b/components/org.wso2.carbon.identity.password.history/pom.xml @@ -18,7 +18,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.64 + 1.8.65-SNAPSHOT ../../pom.xml diff --git a/components/org.wso2.carbon.identity.password.policy/pom.xml b/components/org.wso2.carbon.identity.password.policy/pom.xml index 33255c9bff..4ba7b53cd4 100644 --- a/components/org.wso2.carbon.identity.password.policy/pom.xml +++ b/components/org.wso2.carbon.identity.password.policy/pom.xml @@ -18,7 +18,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.64 + 1.8.65-SNAPSHOT ../../pom.xml diff --git a/components/org.wso2.carbon.identity.piicontroller/pom.xml b/components/org.wso2.carbon.identity.piicontroller/pom.xml index 8fa8eb55d5..bcb2e9e17a 100644 --- a/components/org.wso2.carbon.identity.piicontroller/pom.xml +++ b/components/org.wso2.carbon.identity.piicontroller/pom.xml @@ -19,7 +19,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.64 + 1.8.65-SNAPSHOT ../../pom.xml diff --git a/components/org.wso2.carbon.identity.recovery.endpoint/pom.xml b/components/org.wso2.carbon.identity.recovery.endpoint/pom.xml index ca6ea4252e..762713c421 100644 --- a/components/org.wso2.carbon.identity.recovery.endpoint/pom.xml +++ b/components/org.wso2.carbon.identity.recovery.endpoint/pom.xml @@ -5,7 +5,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.64 + 1.8.65-SNAPSHOT ../../pom.xml diff --git a/components/org.wso2.carbon.identity.recovery.ui/pom.xml b/components/org.wso2.carbon.identity.recovery.ui/pom.xml index f1566a97e1..8cb399c69e 100644 --- a/components/org.wso2.carbon.identity.recovery.ui/pom.xml +++ b/components/org.wso2.carbon.identity.recovery.ui/pom.xml @@ -18,7 +18,7 @@ identity-governance org.wso2.carbon.identity.governance - 1.8.64 + 1.8.65-SNAPSHOT ../../pom.xml diff --git a/components/org.wso2.carbon.identity.recovery/pom.xml b/components/org.wso2.carbon.identity.recovery/pom.xml index 11d9a8d2ad..2f84b9e437 100644 --- a/components/org.wso2.carbon.identity.recovery/pom.xml +++ b/components/org.wso2.carbon.identity.recovery/pom.xml @@ -18,7 +18,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.64 + 1.8.65-SNAPSHOT ../../pom.xml diff --git a/components/org.wso2.carbon.identity.tenant.resource.manager/pom.xml b/components/org.wso2.carbon.identity.tenant.resource.manager/pom.xml index c1a05ef02e..5e3b10ce22 100644 --- a/components/org.wso2.carbon.identity.tenant.resource.manager/pom.xml +++ b/components/org.wso2.carbon.identity.tenant.resource.manager/pom.xml @@ -22,7 +22,7 @@ identity-governance org.wso2.carbon.identity.governance - 1.8.64 + 1.8.65-SNAPSHOT ../../pom.xml diff --git a/components/org.wso2.carbon.identity.user.endpoint/pom.xml b/components/org.wso2.carbon.identity.user.endpoint/pom.xml index 7874233a08..62ae668691 100644 --- a/components/org.wso2.carbon.identity.user.endpoint/pom.xml +++ b/components/org.wso2.carbon.identity.user.endpoint/pom.xml @@ -5,7 +5,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.64 + 1.8.65-SNAPSHOT ../../pom.xml diff --git a/components/org.wso2.carbon.identity.user.export.core/pom.xml b/components/org.wso2.carbon.identity.user.export.core/pom.xml index aa8d19d26a..bdc588dcdf 100644 --- a/components/org.wso2.carbon.identity.user.export.core/pom.xml +++ b/components/org.wso2.carbon.identity.user.export.core/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.64 + 1.8.65-SNAPSHOT ../../pom.xml diff --git a/components/org.wso2.carbon.identity.user.rename.core/pom.xml b/components/org.wso2.carbon.identity.user.rename.core/pom.xml index 8b2e8005eb..e9c0107ad4 100644 --- a/components/org.wso2.carbon.identity.user.rename.core/pom.xml +++ b/components/org.wso2.carbon.identity.user.rename.core/pom.xml @@ -20,7 +20,7 @@ identity-governance org.wso2.carbon.identity.governance - 1.8.64 + 1.8.65-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/features/org.wso2.carbon.identity.account.suspension.notification.task.server.feature/pom.xml b/features/org.wso2.carbon.identity.account.suspension.notification.task.server.feature/pom.xml index f1b217cff3..6e79133bff 100644 --- a/features/org.wso2.carbon.identity.account.suspension.notification.task.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.account.suspension.notification.task.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance ../../pom.xml - 1.8.64 + 1.8.65-SNAPSHOT 4.0.0 diff --git a/features/org.wso2.carbon.identity.auth.attribute.handler.server.feature/pom.xml b/features/org.wso2.carbon.identity.auth.attribute.handler.server.feature/pom.xml index 75b9d10845..62ffdb5580 100644 --- a/features/org.wso2.carbon.identity.auth.attribute.handler.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.auth.attribute.handler.server.feature/pom.xml @@ -22,7 +22,7 @@ org.wso2.carbon.identity.governance identity-governance ../../pom.xml - 1.8.64 + 1.8.65-SNAPSHOT 4.0.0 diff --git a/features/org.wso2.carbon.identity.captcha.server.feature/pom.xml b/features/org.wso2.carbon.identity.captcha.server.feature/pom.xml index 4966627227..778d1e2e78 100644 --- a/features/org.wso2.carbon.identity.captcha.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.captcha.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance ../../pom.xml - 1.8.64 + 1.8.65-SNAPSHOT 4.0.0 diff --git a/features/org.wso2.carbon.identity.governance.feature/pom.xml b/features/org.wso2.carbon.identity.governance.feature/pom.xml index 96bdb2cfa3..7f1ab3e02f 100644 --- a/features/org.wso2.carbon.identity.governance.feature/pom.xml +++ b/features/org.wso2.carbon.identity.governance.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.64 + 1.8.65-SNAPSHOT ../../pom.xml diff --git a/features/org.wso2.carbon.identity.governance.server.feature/pom.xml b/features/org.wso2.carbon.identity.governance.server.feature/pom.xml index aed59fb1f4..0251fc795f 100644 --- a/features/org.wso2.carbon.identity.governance.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.governance.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance ../../pom.xml - 1.8.64 + 1.8.65-SNAPSHOT 4.0.0 diff --git a/features/org.wso2.carbon.identity.idle.account.identification.server.feature/pom.xml b/features/org.wso2.carbon.identity.idle.account.identification.server.feature/pom.xml index e681de477c..1e16a576b4 100644 --- a/features/org.wso2.carbon.identity.idle.account.identification.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.idle.account.identification.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance ../../pom.xml - 1.8.64 + 1.8.65-SNAPSHOT 4.0.0 diff --git a/features/org.wso2.carbon.identity.multi.attribute.login.service.server.feature/pom.xml b/features/org.wso2.carbon.identity.multi.attribute.login.service.server.feature/pom.xml index 07a475a679..946387a743 100644 --- a/features/org.wso2.carbon.identity.multi.attribute.login.service.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.multi.attribute.login.service.server.feature/pom.xml @@ -3,7 +3,7 @@ identity-governance org.wso2.carbon.identity.governance - 1.8.64 + 1.8.65-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/features/org.wso2.carbon.identity.password.expiry.server.feature/pom.xml b/features/org.wso2.carbon.identity.password.expiry.server.feature/pom.xml index 3bf8f79823..ff45cffd6f 100644 --- a/features/org.wso2.carbon.identity.password.expiry.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.password.expiry.server.feature/pom.xml @@ -22,7 +22,7 @@ org.wso2.carbon.identity.governance identity-governance ../../pom.xml - 1.8.64 + 1.8.65-SNAPSHOT 4.0.0 diff --git a/features/org.wso2.carbon.identity.password.history.server.feature/pom.xml b/features/org.wso2.carbon.identity.password.history.server.feature/pom.xml index 95f553cd3f..7b9e0a2cd6 100644 --- a/features/org.wso2.carbon.identity.password.history.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.password.history.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance ../../pom.xml - 1.8.64 + 1.8.65-SNAPSHOT 4.0.0 diff --git a/features/org.wso2.carbon.identity.password.policy.server.feature/pom.xml b/features/org.wso2.carbon.identity.password.policy.server.feature/pom.xml index feeeda87a0..b8524a40f4 100644 --- a/features/org.wso2.carbon.identity.password.policy.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.password.policy.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance ../../pom.xml - 1.8.64 + 1.8.65-SNAPSHOT 4.0.0 diff --git a/features/org.wso2.carbon.identity.piicontroller.server.feature/pom.xml b/features/org.wso2.carbon.identity.piicontroller.server.feature/pom.xml index dc03d01d19..8bec20348b 100644 --- a/features/org.wso2.carbon.identity.piicontroller.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.piicontroller.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance ../../pom.xml - 1.8.64 + 1.8.65-SNAPSHOT 4.0.0 diff --git a/features/org.wso2.carbon.identity.recovery.server.feature/pom.xml b/features/org.wso2.carbon.identity.recovery.server.feature/pom.xml index 1e88c06e1a..635e7048b4 100644 --- a/features/org.wso2.carbon.identity.recovery.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.recovery.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance ../../pom.xml - 1.8.64 + 1.8.65-SNAPSHOT 4.0.0 diff --git a/features/org.wso2.carbon.identity.recovery.ui.feature/pom.xml b/features/org.wso2.carbon.identity.recovery.ui.feature/pom.xml index 1c7fe31e01..ec8e24fc28 100644 --- a/features/org.wso2.carbon.identity.recovery.ui.feature/pom.xml +++ b/features/org.wso2.carbon.identity.recovery.ui.feature/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.64 + 1.8.65-SNAPSHOT ../../pom.xml diff --git a/features/org.wso2.carbon.identity.tenant.resource.manager.feature/pom.xml b/features/org.wso2.carbon.identity.tenant.resource.manager.feature/pom.xml index b17c6694ef..2503f18961 100644 --- a/features/org.wso2.carbon.identity.tenant.resource.manager.feature/pom.xml +++ b/features/org.wso2.carbon.identity.tenant.resource.manager.feature/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.64 + 1.8.65-SNAPSHOT ../../pom.xml diff --git a/features/org.wso2.carbon.identity.user.server.feature/pom.xml b/features/org.wso2.carbon.identity.user.server.feature/pom.xml index c7886c0547..77dc3ecb82 100644 --- a/features/org.wso2.carbon.identity.user.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.user.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance ../../pom.xml - 1.8.64 + 1.8.65-SNAPSHOT 4.0.0 diff --git a/pom.xml b/pom.xml index 67ad5a3dff..350c731f53 100644 --- a/pom.xml +++ b/pom.xml @@ -18,7 +18,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.64 + 1.8.65-SNAPSHOT 4.0.0 pom WSO2 Carbon - Governance Module @@ -37,7 +37,7 @@ https://github.com/wso2-extensions/identity-governance.git scm:git:https://github.com/wso2-extensions/identity-governance.git scm:git:https://github.com/wso2-extensions/identity-governance.git - v1.8.64 + v1.1.0-SNAPSHOT diff --git a/service-stubs/identity/org.wso2.carbon.identity.recovery.stub/pom.xml b/service-stubs/identity/org.wso2.carbon.identity.recovery.stub/pom.xml index c64e6b7547..a26c5b77bd 100644 --- a/service-stubs/identity/org.wso2.carbon.identity.recovery.stub/pom.xml +++ b/service-stubs/identity/org.wso2.carbon.identity.recovery.stub/pom.xml @@ -19,7 +19,7 @@ org.wso2.carbon.identity.governance carbon-service-stubs - 1.8.64 + 1.8.65-SNAPSHOT ../pom.xml diff --git a/service-stubs/identity/pom.xml b/service-stubs/identity/pom.xml index bb873cc7d8..cf99289e48 100644 --- a/service-stubs/identity/pom.xml +++ b/service-stubs/identity/pom.xml @@ -19,7 +19,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.64 + 1.8.65-SNAPSHOT ../../pom.xml From 9eaebc4754f75bafb7671cf36e40bb2dab3d5aa8 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Mon, 11 Sep 2023 06:35:52 +0000 Subject: [PATCH 20/31] [WSO2 Release] [Jenkins #2537] [Release 1.8.65] prepare release v1.8.65 --- .../pom.xml | 2 +- .../org.wso2.carbon.identity.api.user.governance/pom.xml | 4 ++-- components/org.wso2.carbon.identity.api.user.recovery/pom.xml | 4 ++-- .../org.wso2.carbon.identity.auth.attribute.handler/pom.xml | 2 +- components/org.wso2.carbon.identity.captcha/pom.xml | 2 +- components/org.wso2.carbon.identity.governance/pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../org.wso2.carbon.identity.multi.attribute.login/pom.xml | 2 +- components/org.wso2.carbon.identity.password.expiry/pom.xml | 2 +- components/org.wso2.carbon.identity.password.history/pom.xml | 2 +- components/org.wso2.carbon.identity.password.policy/pom.xml | 2 +- components/org.wso2.carbon.identity.piicontroller/pom.xml | 2 +- components/org.wso2.carbon.identity.recovery.endpoint/pom.xml | 2 +- components/org.wso2.carbon.identity.recovery.ui/pom.xml | 2 +- components/org.wso2.carbon.identity.recovery/pom.xml | 2 +- .../org.wso2.carbon.identity.tenant.resource.manager/pom.xml | 2 +- components/org.wso2.carbon.identity.user.endpoint/pom.xml | 2 +- components/org.wso2.carbon.identity.user.export.core/pom.xml | 2 +- components/org.wso2.carbon.identity.user.rename.core/pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../org.wso2.carbon.identity.captcha.server.feature/pom.xml | 2 +- features/org.wso2.carbon.identity.governance.feature/pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../org.wso2.carbon.identity.recovery.server.feature/pom.xml | 2 +- features/org.wso2.carbon.identity.recovery.ui.feature/pom.xml | 2 +- .../pom.xml | 2 +- features/org.wso2.carbon.identity.user.server.feature/pom.xml | 2 +- pom.xml | 4 ++-- .../identity/org.wso2.carbon.identity.recovery.stub/pom.xml | 2 +- service-stubs/identity/pom.xml | 2 +- 39 files changed, 42 insertions(+), 42 deletions(-) diff --git a/components/org.wso2.carbon.identity.account.suspension.notification.task/pom.xml b/components/org.wso2.carbon.identity.account.suspension.notification.task/pom.xml index d189bb164c..7d407a6430 100644 --- a/components/org.wso2.carbon.identity.account.suspension.notification.task/pom.xml +++ b/components/org.wso2.carbon.identity.account.suspension.notification.task/pom.xml @@ -20,7 +20,7 @@ identity-governance org.wso2.carbon.identity.governance - 1.8.65-SNAPSHOT + 1.8.65 ../../pom.xml diff --git a/components/org.wso2.carbon.identity.api.user.governance/pom.xml b/components/org.wso2.carbon.identity.api.user.governance/pom.xml index 2621ca936d..2247bf2c81 100644 --- a/components/org.wso2.carbon.identity.api.user.governance/pom.xml +++ b/components/org.wso2.carbon.identity.api.user.governance/pom.xml @@ -23,12 +23,12 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.65-SNAPSHOT + 1.8.65 ../.. org.wso2.carbon.identity.api.user.governance - 1.8.65-SNAPSHOT + 1.8.65 jar WSO2 Carbon - User Rest Governance API WSO2 Carbon - User Rest Governance API diff --git a/components/org.wso2.carbon.identity.api.user.recovery/pom.xml b/components/org.wso2.carbon.identity.api.user.recovery/pom.xml index a5904d4c63..f449c9543d 100644 --- a/components/org.wso2.carbon.identity.api.user.recovery/pom.xml +++ b/components/org.wso2.carbon.identity.api.user.recovery/pom.xml @@ -23,12 +23,12 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.65-SNAPSHOT + 1.8.65 ../.. org.wso2.carbon.identity.api.user.recovery - 1.8.65-SNAPSHOT + 1.8.65 jar WSO2 Carbon - Identity Management Recovery Rest API WSO2 Carbon - Identity Management Recovery Rest API diff --git a/components/org.wso2.carbon.identity.auth.attribute.handler/pom.xml b/components/org.wso2.carbon.identity.auth.attribute.handler/pom.xml index 96ee6e05b3..63e32906e3 100644 --- a/components/org.wso2.carbon.identity.auth.attribute.handler/pom.xml +++ b/components/org.wso2.carbon.identity.auth.attribute.handler/pom.xml @@ -22,7 +22,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.65-SNAPSHOT + 1.8.65 ../../pom.xml diff --git a/components/org.wso2.carbon.identity.captcha/pom.xml b/components/org.wso2.carbon.identity.captcha/pom.xml index efa345d98d..7e5c4af94c 100644 --- a/components/org.wso2.carbon.identity.captcha/pom.xml +++ b/components/org.wso2.carbon.identity.captcha/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.65-SNAPSHOT + 1.8.65 ../../pom.xml diff --git a/components/org.wso2.carbon.identity.governance/pom.xml b/components/org.wso2.carbon.identity.governance/pom.xml index 0f67e7815c..cd10652747 100644 --- a/components/org.wso2.carbon.identity.governance/pom.xml +++ b/components/org.wso2.carbon.identity.governance/pom.xml @@ -18,7 +18,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.65-SNAPSHOT + 1.8.65 ../../pom.xml diff --git a/components/org.wso2.carbon.identity.idle.account.identification/pom.xml b/components/org.wso2.carbon.identity.idle.account.identification/pom.xml index df7dbac8dc..e3273ac686 100644 --- a/components/org.wso2.carbon.identity.idle.account.identification/pom.xml +++ b/components/org.wso2.carbon.identity.idle.account.identification/pom.xml @@ -18,7 +18,7 @@ identity-governance org.wso2.carbon.identity.governance - 1.8.65-SNAPSHOT + 1.8.65 ../../pom.xml 4.0.0 diff --git a/components/org.wso2.carbon.identity.multi.attribute.login/org.wso2.carbon.identity.multi.attribute.login.resolver.regex/pom.xml b/components/org.wso2.carbon.identity.multi.attribute.login/org.wso2.carbon.identity.multi.attribute.login.resolver.regex/pom.xml index 6d5e1709bd..e21d3a60f2 100644 --- a/components/org.wso2.carbon.identity.multi.attribute.login/org.wso2.carbon.identity.multi.attribute.login.resolver.regex/pom.xml +++ b/components/org.wso2.carbon.identity.multi.attribute.login/org.wso2.carbon.identity.multi.attribute.login.resolver.regex/pom.xml @@ -21,7 +21,7 @@ identity-governance org.wso2.carbon.identity.governance - 1.8.65-SNAPSHOT + 1.8.65 ../../../pom.xml 4.0.0 diff --git a/components/org.wso2.carbon.identity.multi.attribute.login/org.wso2.carbon.identity.multi.attribute.login.service/pom.xml b/components/org.wso2.carbon.identity.multi.attribute.login/org.wso2.carbon.identity.multi.attribute.login.service/pom.xml index bbd94f6c40..583a605242 100644 --- a/components/org.wso2.carbon.identity.multi.attribute.login/org.wso2.carbon.identity.multi.attribute.login.service/pom.xml +++ b/components/org.wso2.carbon.identity.multi.attribute.login/org.wso2.carbon.identity.multi.attribute.login.service/pom.xml @@ -21,7 +21,7 @@ identity-governance org.wso2.carbon.identity.governance - 1.8.65-SNAPSHOT + 1.8.65 ../../../pom.xml 4.0.0 diff --git a/components/org.wso2.carbon.identity.multi.attribute.login/pom.xml b/components/org.wso2.carbon.identity.multi.attribute.login/pom.xml index 41cd3be926..fde6a52502 100644 --- a/components/org.wso2.carbon.identity.multi.attribute.login/pom.xml +++ b/components/org.wso2.carbon.identity.multi.attribute.login/pom.xml @@ -21,7 +21,7 @@ identity-governance org.wso2.carbon.identity.governance - 1.8.65-SNAPSHOT + 1.8.65 ../../pom.xml 4.0.0 diff --git a/components/org.wso2.carbon.identity.password.expiry/pom.xml b/components/org.wso2.carbon.identity.password.expiry/pom.xml index e354fbcccd..fde4083b5a 100644 --- a/components/org.wso2.carbon.identity.password.expiry/pom.xml +++ b/components/org.wso2.carbon.identity.password.expiry/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.65-SNAPSHOT + 1.8.65 ../../pom.xml diff --git a/components/org.wso2.carbon.identity.password.history/pom.xml b/components/org.wso2.carbon.identity.password.history/pom.xml index 5f7f428e58..078312976c 100644 --- a/components/org.wso2.carbon.identity.password.history/pom.xml +++ b/components/org.wso2.carbon.identity.password.history/pom.xml @@ -18,7 +18,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.65-SNAPSHOT + 1.8.65 ../../pom.xml diff --git a/components/org.wso2.carbon.identity.password.policy/pom.xml b/components/org.wso2.carbon.identity.password.policy/pom.xml index 4ba7b53cd4..87bb0886fc 100644 --- a/components/org.wso2.carbon.identity.password.policy/pom.xml +++ b/components/org.wso2.carbon.identity.password.policy/pom.xml @@ -18,7 +18,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.65-SNAPSHOT + 1.8.65 ../../pom.xml diff --git a/components/org.wso2.carbon.identity.piicontroller/pom.xml b/components/org.wso2.carbon.identity.piicontroller/pom.xml index bcb2e9e17a..74e41f8d6f 100644 --- a/components/org.wso2.carbon.identity.piicontroller/pom.xml +++ b/components/org.wso2.carbon.identity.piicontroller/pom.xml @@ -19,7 +19,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.65-SNAPSHOT + 1.8.65 ../../pom.xml diff --git a/components/org.wso2.carbon.identity.recovery.endpoint/pom.xml b/components/org.wso2.carbon.identity.recovery.endpoint/pom.xml index 762713c421..684225f538 100644 --- a/components/org.wso2.carbon.identity.recovery.endpoint/pom.xml +++ b/components/org.wso2.carbon.identity.recovery.endpoint/pom.xml @@ -5,7 +5,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.65-SNAPSHOT + 1.8.65 ../../pom.xml diff --git a/components/org.wso2.carbon.identity.recovery.ui/pom.xml b/components/org.wso2.carbon.identity.recovery.ui/pom.xml index 8cb399c69e..4db6fe014d 100644 --- a/components/org.wso2.carbon.identity.recovery.ui/pom.xml +++ b/components/org.wso2.carbon.identity.recovery.ui/pom.xml @@ -18,7 +18,7 @@ identity-governance org.wso2.carbon.identity.governance - 1.8.65-SNAPSHOT + 1.8.65 ../../pom.xml diff --git a/components/org.wso2.carbon.identity.recovery/pom.xml b/components/org.wso2.carbon.identity.recovery/pom.xml index 2f84b9e437..39283245d0 100644 --- a/components/org.wso2.carbon.identity.recovery/pom.xml +++ b/components/org.wso2.carbon.identity.recovery/pom.xml @@ -18,7 +18,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.65-SNAPSHOT + 1.8.65 ../../pom.xml diff --git a/components/org.wso2.carbon.identity.tenant.resource.manager/pom.xml b/components/org.wso2.carbon.identity.tenant.resource.manager/pom.xml index 5e3b10ce22..6de26b4429 100644 --- a/components/org.wso2.carbon.identity.tenant.resource.manager/pom.xml +++ b/components/org.wso2.carbon.identity.tenant.resource.manager/pom.xml @@ -22,7 +22,7 @@ identity-governance org.wso2.carbon.identity.governance - 1.8.65-SNAPSHOT + 1.8.65 ../../pom.xml diff --git a/components/org.wso2.carbon.identity.user.endpoint/pom.xml b/components/org.wso2.carbon.identity.user.endpoint/pom.xml index 62ae668691..242fd9682d 100644 --- a/components/org.wso2.carbon.identity.user.endpoint/pom.xml +++ b/components/org.wso2.carbon.identity.user.endpoint/pom.xml @@ -5,7 +5,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.65-SNAPSHOT + 1.8.65 ../../pom.xml diff --git a/components/org.wso2.carbon.identity.user.export.core/pom.xml b/components/org.wso2.carbon.identity.user.export.core/pom.xml index bdc588dcdf..a1dafc1749 100644 --- a/components/org.wso2.carbon.identity.user.export.core/pom.xml +++ b/components/org.wso2.carbon.identity.user.export.core/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.65-SNAPSHOT + 1.8.65 ../../pom.xml diff --git a/components/org.wso2.carbon.identity.user.rename.core/pom.xml b/components/org.wso2.carbon.identity.user.rename.core/pom.xml index e9c0107ad4..4260f25929 100644 --- a/components/org.wso2.carbon.identity.user.rename.core/pom.xml +++ b/components/org.wso2.carbon.identity.user.rename.core/pom.xml @@ -20,7 +20,7 @@ identity-governance org.wso2.carbon.identity.governance - 1.8.65-SNAPSHOT + 1.8.65 ../../pom.xml 4.0.0 diff --git a/features/org.wso2.carbon.identity.account.suspension.notification.task.server.feature/pom.xml b/features/org.wso2.carbon.identity.account.suspension.notification.task.server.feature/pom.xml index 6e79133bff..0e4589abf8 100644 --- a/features/org.wso2.carbon.identity.account.suspension.notification.task.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.account.suspension.notification.task.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance ../../pom.xml - 1.8.65-SNAPSHOT + 1.8.65 4.0.0 diff --git a/features/org.wso2.carbon.identity.auth.attribute.handler.server.feature/pom.xml b/features/org.wso2.carbon.identity.auth.attribute.handler.server.feature/pom.xml index 62ffdb5580..ba0499191e 100644 --- a/features/org.wso2.carbon.identity.auth.attribute.handler.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.auth.attribute.handler.server.feature/pom.xml @@ -22,7 +22,7 @@ org.wso2.carbon.identity.governance identity-governance ../../pom.xml - 1.8.65-SNAPSHOT + 1.8.65 4.0.0 diff --git a/features/org.wso2.carbon.identity.captcha.server.feature/pom.xml b/features/org.wso2.carbon.identity.captcha.server.feature/pom.xml index 778d1e2e78..e795d502f3 100644 --- a/features/org.wso2.carbon.identity.captcha.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.captcha.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance ../../pom.xml - 1.8.65-SNAPSHOT + 1.8.65 4.0.0 diff --git a/features/org.wso2.carbon.identity.governance.feature/pom.xml b/features/org.wso2.carbon.identity.governance.feature/pom.xml index 7f1ab3e02f..5b6b91774a 100644 --- a/features/org.wso2.carbon.identity.governance.feature/pom.xml +++ b/features/org.wso2.carbon.identity.governance.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.65-SNAPSHOT + 1.8.65 ../../pom.xml diff --git a/features/org.wso2.carbon.identity.governance.server.feature/pom.xml b/features/org.wso2.carbon.identity.governance.server.feature/pom.xml index 0251fc795f..729ed320fb 100644 --- a/features/org.wso2.carbon.identity.governance.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.governance.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance ../../pom.xml - 1.8.65-SNAPSHOT + 1.8.65 4.0.0 diff --git a/features/org.wso2.carbon.identity.idle.account.identification.server.feature/pom.xml b/features/org.wso2.carbon.identity.idle.account.identification.server.feature/pom.xml index 1e16a576b4..cec7faebdf 100644 --- a/features/org.wso2.carbon.identity.idle.account.identification.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.idle.account.identification.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance ../../pom.xml - 1.8.65-SNAPSHOT + 1.8.65 4.0.0 diff --git a/features/org.wso2.carbon.identity.multi.attribute.login.service.server.feature/pom.xml b/features/org.wso2.carbon.identity.multi.attribute.login.service.server.feature/pom.xml index 946387a743..979623c65a 100644 --- a/features/org.wso2.carbon.identity.multi.attribute.login.service.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.multi.attribute.login.service.server.feature/pom.xml @@ -3,7 +3,7 @@ identity-governance org.wso2.carbon.identity.governance - 1.8.65-SNAPSHOT + 1.8.65 ../../pom.xml 4.0.0 diff --git a/features/org.wso2.carbon.identity.password.expiry.server.feature/pom.xml b/features/org.wso2.carbon.identity.password.expiry.server.feature/pom.xml index ff45cffd6f..09a1994102 100644 --- a/features/org.wso2.carbon.identity.password.expiry.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.password.expiry.server.feature/pom.xml @@ -22,7 +22,7 @@ org.wso2.carbon.identity.governance identity-governance ../../pom.xml - 1.8.65-SNAPSHOT + 1.8.65 4.0.0 diff --git a/features/org.wso2.carbon.identity.password.history.server.feature/pom.xml b/features/org.wso2.carbon.identity.password.history.server.feature/pom.xml index 7b9e0a2cd6..0916a69dd0 100644 --- a/features/org.wso2.carbon.identity.password.history.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.password.history.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance ../../pom.xml - 1.8.65-SNAPSHOT + 1.8.65 4.0.0 diff --git a/features/org.wso2.carbon.identity.password.policy.server.feature/pom.xml b/features/org.wso2.carbon.identity.password.policy.server.feature/pom.xml index b8524a40f4..855bf785e9 100644 --- a/features/org.wso2.carbon.identity.password.policy.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.password.policy.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance ../../pom.xml - 1.8.65-SNAPSHOT + 1.8.65 4.0.0 diff --git a/features/org.wso2.carbon.identity.piicontroller.server.feature/pom.xml b/features/org.wso2.carbon.identity.piicontroller.server.feature/pom.xml index 8bec20348b..509399d3b4 100644 --- a/features/org.wso2.carbon.identity.piicontroller.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.piicontroller.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance ../../pom.xml - 1.8.65-SNAPSHOT + 1.8.65 4.0.0 diff --git a/features/org.wso2.carbon.identity.recovery.server.feature/pom.xml b/features/org.wso2.carbon.identity.recovery.server.feature/pom.xml index 635e7048b4..5ad388ed71 100644 --- a/features/org.wso2.carbon.identity.recovery.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.recovery.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance ../../pom.xml - 1.8.65-SNAPSHOT + 1.8.65 4.0.0 diff --git a/features/org.wso2.carbon.identity.recovery.ui.feature/pom.xml b/features/org.wso2.carbon.identity.recovery.ui.feature/pom.xml index ec8e24fc28..2e0b87b6ea 100644 --- a/features/org.wso2.carbon.identity.recovery.ui.feature/pom.xml +++ b/features/org.wso2.carbon.identity.recovery.ui.feature/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.65-SNAPSHOT + 1.8.65 ../../pom.xml diff --git a/features/org.wso2.carbon.identity.tenant.resource.manager.feature/pom.xml b/features/org.wso2.carbon.identity.tenant.resource.manager.feature/pom.xml index 2503f18961..4ea3cd331e 100644 --- a/features/org.wso2.carbon.identity.tenant.resource.manager.feature/pom.xml +++ b/features/org.wso2.carbon.identity.tenant.resource.manager.feature/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.65-SNAPSHOT + 1.8.65 ../../pom.xml diff --git a/features/org.wso2.carbon.identity.user.server.feature/pom.xml b/features/org.wso2.carbon.identity.user.server.feature/pom.xml index 77dc3ecb82..c92e237bb8 100644 --- a/features/org.wso2.carbon.identity.user.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.user.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance ../../pom.xml - 1.8.65-SNAPSHOT + 1.8.65 4.0.0 diff --git a/pom.xml b/pom.xml index 350c731f53..3f96826f9c 100644 --- a/pom.xml +++ b/pom.xml @@ -18,7 +18,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.65-SNAPSHOT + 1.8.65 4.0.0 pom WSO2 Carbon - Governance Module @@ -37,7 +37,7 @@ https://github.com/wso2-extensions/identity-governance.git scm:git:https://github.com/wso2-extensions/identity-governance.git scm:git:https://github.com/wso2-extensions/identity-governance.git - v1.1.0-SNAPSHOT + v1.8.65 diff --git a/service-stubs/identity/org.wso2.carbon.identity.recovery.stub/pom.xml b/service-stubs/identity/org.wso2.carbon.identity.recovery.stub/pom.xml index a26c5b77bd..3c964f3f3f 100644 --- a/service-stubs/identity/org.wso2.carbon.identity.recovery.stub/pom.xml +++ b/service-stubs/identity/org.wso2.carbon.identity.recovery.stub/pom.xml @@ -19,7 +19,7 @@ org.wso2.carbon.identity.governance carbon-service-stubs - 1.8.65-SNAPSHOT + 1.8.65 ../pom.xml diff --git a/service-stubs/identity/pom.xml b/service-stubs/identity/pom.xml index cf99289e48..652e53363d 100644 --- a/service-stubs/identity/pom.xml +++ b/service-stubs/identity/pom.xml @@ -19,7 +19,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.65-SNAPSHOT + 1.8.65 ../../pom.xml From 7e6063fe2c791387a328909460abc0c55fa71cbc Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Mon, 11 Sep 2023 06:35:54 +0000 Subject: [PATCH 21/31] [WSO2 Release] [Jenkins #2537] [Release 1.8.65] prepare for next development iteration --- .../pom.xml | 2 +- .../org.wso2.carbon.identity.api.user.governance/pom.xml | 4 ++-- components/org.wso2.carbon.identity.api.user.recovery/pom.xml | 4 ++-- .../org.wso2.carbon.identity.auth.attribute.handler/pom.xml | 2 +- components/org.wso2.carbon.identity.captcha/pom.xml | 2 +- components/org.wso2.carbon.identity.governance/pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../org.wso2.carbon.identity.multi.attribute.login/pom.xml | 2 +- components/org.wso2.carbon.identity.password.expiry/pom.xml | 2 +- components/org.wso2.carbon.identity.password.history/pom.xml | 2 +- components/org.wso2.carbon.identity.password.policy/pom.xml | 2 +- components/org.wso2.carbon.identity.piicontroller/pom.xml | 2 +- components/org.wso2.carbon.identity.recovery.endpoint/pom.xml | 2 +- components/org.wso2.carbon.identity.recovery.ui/pom.xml | 2 +- components/org.wso2.carbon.identity.recovery/pom.xml | 2 +- .../org.wso2.carbon.identity.tenant.resource.manager/pom.xml | 2 +- components/org.wso2.carbon.identity.user.endpoint/pom.xml | 2 +- components/org.wso2.carbon.identity.user.export.core/pom.xml | 2 +- components/org.wso2.carbon.identity.user.rename.core/pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../org.wso2.carbon.identity.captcha.server.feature/pom.xml | 2 +- features/org.wso2.carbon.identity.governance.feature/pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../org.wso2.carbon.identity.recovery.server.feature/pom.xml | 2 +- features/org.wso2.carbon.identity.recovery.ui.feature/pom.xml | 2 +- .../pom.xml | 2 +- features/org.wso2.carbon.identity.user.server.feature/pom.xml | 2 +- pom.xml | 4 ++-- .../identity/org.wso2.carbon.identity.recovery.stub/pom.xml | 2 +- service-stubs/identity/pom.xml | 2 +- 39 files changed, 42 insertions(+), 42 deletions(-) diff --git a/components/org.wso2.carbon.identity.account.suspension.notification.task/pom.xml b/components/org.wso2.carbon.identity.account.suspension.notification.task/pom.xml index 7d407a6430..c9e123172d 100644 --- a/components/org.wso2.carbon.identity.account.suspension.notification.task/pom.xml +++ b/components/org.wso2.carbon.identity.account.suspension.notification.task/pom.xml @@ -20,7 +20,7 @@ identity-governance org.wso2.carbon.identity.governance - 1.8.65 + 1.8.66-SNAPSHOT ../../pom.xml diff --git a/components/org.wso2.carbon.identity.api.user.governance/pom.xml b/components/org.wso2.carbon.identity.api.user.governance/pom.xml index 2247bf2c81..7473f61fa6 100644 --- a/components/org.wso2.carbon.identity.api.user.governance/pom.xml +++ b/components/org.wso2.carbon.identity.api.user.governance/pom.xml @@ -23,12 +23,12 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.65 + 1.8.66-SNAPSHOT ../.. org.wso2.carbon.identity.api.user.governance - 1.8.65 + 1.8.66-SNAPSHOT jar WSO2 Carbon - User Rest Governance API WSO2 Carbon - User Rest Governance API diff --git a/components/org.wso2.carbon.identity.api.user.recovery/pom.xml b/components/org.wso2.carbon.identity.api.user.recovery/pom.xml index f449c9543d..b4d397f681 100644 --- a/components/org.wso2.carbon.identity.api.user.recovery/pom.xml +++ b/components/org.wso2.carbon.identity.api.user.recovery/pom.xml @@ -23,12 +23,12 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.65 + 1.8.66-SNAPSHOT ../.. org.wso2.carbon.identity.api.user.recovery - 1.8.65 + 1.8.66-SNAPSHOT jar WSO2 Carbon - Identity Management Recovery Rest API WSO2 Carbon - Identity Management Recovery Rest API diff --git a/components/org.wso2.carbon.identity.auth.attribute.handler/pom.xml b/components/org.wso2.carbon.identity.auth.attribute.handler/pom.xml index 63e32906e3..ee2d7f0fe1 100644 --- a/components/org.wso2.carbon.identity.auth.attribute.handler/pom.xml +++ b/components/org.wso2.carbon.identity.auth.attribute.handler/pom.xml @@ -22,7 +22,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.65 + 1.8.66-SNAPSHOT ../../pom.xml diff --git a/components/org.wso2.carbon.identity.captcha/pom.xml b/components/org.wso2.carbon.identity.captcha/pom.xml index 7e5c4af94c..c9d676ab82 100644 --- a/components/org.wso2.carbon.identity.captcha/pom.xml +++ b/components/org.wso2.carbon.identity.captcha/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.65 + 1.8.66-SNAPSHOT ../../pom.xml diff --git a/components/org.wso2.carbon.identity.governance/pom.xml b/components/org.wso2.carbon.identity.governance/pom.xml index cd10652747..46b3cb6f7c 100644 --- a/components/org.wso2.carbon.identity.governance/pom.xml +++ b/components/org.wso2.carbon.identity.governance/pom.xml @@ -18,7 +18,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.65 + 1.8.66-SNAPSHOT ../../pom.xml diff --git a/components/org.wso2.carbon.identity.idle.account.identification/pom.xml b/components/org.wso2.carbon.identity.idle.account.identification/pom.xml index e3273ac686..dfa9a09232 100644 --- a/components/org.wso2.carbon.identity.idle.account.identification/pom.xml +++ b/components/org.wso2.carbon.identity.idle.account.identification/pom.xml @@ -18,7 +18,7 @@ identity-governance org.wso2.carbon.identity.governance - 1.8.65 + 1.8.66-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/components/org.wso2.carbon.identity.multi.attribute.login/org.wso2.carbon.identity.multi.attribute.login.resolver.regex/pom.xml b/components/org.wso2.carbon.identity.multi.attribute.login/org.wso2.carbon.identity.multi.attribute.login.resolver.regex/pom.xml index e21d3a60f2..5895c38825 100644 --- a/components/org.wso2.carbon.identity.multi.attribute.login/org.wso2.carbon.identity.multi.attribute.login.resolver.regex/pom.xml +++ b/components/org.wso2.carbon.identity.multi.attribute.login/org.wso2.carbon.identity.multi.attribute.login.resolver.regex/pom.xml @@ -21,7 +21,7 @@ identity-governance org.wso2.carbon.identity.governance - 1.8.65 + 1.8.66-SNAPSHOT ../../../pom.xml 4.0.0 diff --git a/components/org.wso2.carbon.identity.multi.attribute.login/org.wso2.carbon.identity.multi.attribute.login.service/pom.xml b/components/org.wso2.carbon.identity.multi.attribute.login/org.wso2.carbon.identity.multi.attribute.login.service/pom.xml index 583a605242..22ad6fb1ae 100644 --- a/components/org.wso2.carbon.identity.multi.attribute.login/org.wso2.carbon.identity.multi.attribute.login.service/pom.xml +++ b/components/org.wso2.carbon.identity.multi.attribute.login/org.wso2.carbon.identity.multi.attribute.login.service/pom.xml @@ -21,7 +21,7 @@ identity-governance org.wso2.carbon.identity.governance - 1.8.65 + 1.8.66-SNAPSHOT ../../../pom.xml 4.0.0 diff --git a/components/org.wso2.carbon.identity.multi.attribute.login/pom.xml b/components/org.wso2.carbon.identity.multi.attribute.login/pom.xml index fde6a52502..24e6f25394 100644 --- a/components/org.wso2.carbon.identity.multi.attribute.login/pom.xml +++ b/components/org.wso2.carbon.identity.multi.attribute.login/pom.xml @@ -21,7 +21,7 @@ identity-governance org.wso2.carbon.identity.governance - 1.8.65 + 1.8.66-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/components/org.wso2.carbon.identity.password.expiry/pom.xml b/components/org.wso2.carbon.identity.password.expiry/pom.xml index fde4083b5a..a9ad072b74 100644 --- a/components/org.wso2.carbon.identity.password.expiry/pom.xml +++ b/components/org.wso2.carbon.identity.password.expiry/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.65 + 1.8.66-SNAPSHOT ../../pom.xml diff --git a/components/org.wso2.carbon.identity.password.history/pom.xml b/components/org.wso2.carbon.identity.password.history/pom.xml index 078312976c..f371b73506 100644 --- a/components/org.wso2.carbon.identity.password.history/pom.xml +++ b/components/org.wso2.carbon.identity.password.history/pom.xml @@ -18,7 +18,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.65 + 1.8.66-SNAPSHOT ../../pom.xml diff --git a/components/org.wso2.carbon.identity.password.policy/pom.xml b/components/org.wso2.carbon.identity.password.policy/pom.xml index 87bb0886fc..435d9033dd 100644 --- a/components/org.wso2.carbon.identity.password.policy/pom.xml +++ b/components/org.wso2.carbon.identity.password.policy/pom.xml @@ -18,7 +18,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.65 + 1.8.66-SNAPSHOT ../../pom.xml diff --git a/components/org.wso2.carbon.identity.piicontroller/pom.xml b/components/org.wso2.carbon.identity.piicontroller/pom.xml index 74e41f8d6f..2c5aba99c5 100644 --- a/components/org.wso2.carbon.identity.piicontroller/pom.xml +++ b/components/org.wso2.carbon.identity.piicontroller/pom.xml @@ -19,7 +19,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.65 + 1.8.66-SNAPSHOT ../../pom.xml diff --git a/components/org.wso2.carbon.identity.recovery.endpoint/pom.xml b/components/org.wso2.carbon.identity.recovery.endpoint/pom.xml index 684225f538..1bf7e0e95a 100644 --- a/components/org.wso2.carbon.identity.recovery.endpoint/pom.xml +++ b/components/org.wso2.carbon.identity.recovery.endpoint/pom.xml @@ -5,7 +5,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.65 + 1.8.66-SNAPSHOT ../../pom.xml diff --git a/components/org.wso2.carbon.identity.recovery.ui/pom.xml b/components/org.wso2.carbon.identity.recovery.ui/pom.xml index 4db6fe014d..ae38dfd415 100644 --- a/components/org.wso2.carbon.identity.recovery.ui/pom.xml +++ b/components/org.wso2.carbon.identity.recovery.ui/pom.xml @@ -18,7 +18,7 @@ identity-governance org.wso2.carbon.identity.governance - 1.8.65 + 1.8.66-SNAPSHOT ../../pom.xml diff --git a/components/org.wso2.carbon.identity.recovery/pom.xml b/components/org.wso2.carbon.identity.recovery/pom.xml index 39283245d0..96022aca66 100644 --- a/components/org.wso2.carbon.identity.recovery/pom.xml +++ b/components/org.wso2.carbon.identity.recovery/pom.xml @@ -18,7 +18,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.65 + 1.8.66-SNAPSHOT ../../pom.xml diff --git a/components/org.wso2.carbon.identity.tenant.resource.manager/pom.xml b/components/org.wso2.carbon.identity.tenant.resource.manager/pom.xml index 6de26b4429..2f643bce37 100644 --- a/components/org.wso2.carbon.identity.tenant.resource.manager/pom.xml +++ b/components/org.wso2.carbon.identity.tenant.resource.manager/pom.xml @@ -22,7 +22,7 @@ identity-governance org.wso2.carbon.identity.governance - 1.8.65 + 1.8.66-SNAPSHOT ../../pom.xml diff --git a/components/org.wso2.carbon.identity.user.endpoint/pom.xml b/components/org.wso2.carbon.identity.user.endpoint/pom.xml index 242fd9682d..b53d8bfbe3 100644 --- a/components/org.wso2.carbon.identity.user.endpoint/pom.xml +++ b/components/org.wso2.carbon.identity.user.endpoint/pom.xml @@ -5,7 +5,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.65 + 1.8.66-SNAPSHOT ../../pom.xml diff --git a/components/org.wso2.carbon.identity.user.export.core/pom.xml b/components/org.wso2.carbon.identity.user.export.core/pom.xml index a1dafc1749..e10a9d1394 100644 --- a/components/org.wso2.carbon.identity.user.export.core/pom.xml +++ b/components/org.wso2.carbon.identity.user.export.core/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.65 + 1.8.66-SNAPSHOT ../../pom.xml diff --git a/components/org.wso2.carbon.identity.user.rename.core/pom.xml b/components/org.wso2.carbon.identity.user.rename.core/pom.xml index 4260f25929..69987544ac 100644 --- a/components/org.wso2.carbon.identity.user.rename.core/pom.xml +++ b/components/org.wso2.carbon.identity.user.rename.core/pom.xml @@ -20,7 +20,7 @@ identity-governance org.wso2.carbon.identity.governance - 1.8.65 + 1.8.66-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/features/org.wso2.carbon.identity.account.suspension.notification.task.server.feature/pom.xml b/features/org.wso2.carbon.identity.account.suspension.notification.task.server.feature/pom.xml index 0e4589abf8..ac07612d99 100644 --- a/features/org.wso2.carbon.identity.account.suspension.notification.task.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.account.suspension.notification.task.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance ../../pom.xml - 1.8.65 + 1.8.66-SNAPSHOT 4.0.0 diff --git a/features/org.wso2.carbon.identity.auth.attribute.handler.server.feature/pom.xml b/features/org.wso2.carbon.identity.auth.attribute.handler.server.feature/pom.xml index ba0499191e..1dbdc89e9c 100644 --- a/features/org.wso2.carbon.identity.auth.attribute.handler.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.auth.attribute.handler.server.feature/pom.xml @@ -22,7 +22,7 @@ org.wso2.carbon.identity.governance identity-governance ../../pom.xml - 1.8.65 + 1.8.66-SNAPSHOT 4.0.0 diff --git a/features/org.wso2.carbon.identity.captcha.server.feature/pom.xml b/features/org.wso2.carbon.identity.captcha.server.feature/pom.xml index e795d502f3..9718897d9b 100644 --- a/features/org.wso2.carbon.identity.captcha.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.captcha.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance ../../pom.xml - 1.8.65 + 1.8.66-SNAPSHOT 4.0.0 diff --git a/features/org.wso2.carbon.identity.governance.feature/pom.xml b/features/org.wso2.carbon.identity.governance.feature/pom.xml index 5b6b91774a..46cb59d5e0 100644 --- a/features/org.wso2.carbon.identity.governance.feature/pom.xml +++ b/features/org.wso2.carbon.identity.governance.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.65 + 1.8.66-SNAPSHOT ../../pom.xml diff --git a/features/org.wso2.carbon.identity.governance.server.feature/pom.xml b/features/org.wso2.carbon.identity.governance.server.feature/pom.xml index 729ed320fb..21c18debca 100644 --- a/features/org.wso2.carbon.identity.governance.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.governance.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance ../../pom.xml - 1.8.65 + 1.8.66-SNAPSHOT 4.0.0 diff --git a/features/org.wso2.carbon.identity.idle.account.identification.server.feature/pom.xml b/features/org.wso2.carbon.identity.idle.account.identification.server.feature/pom.xml index cec7faebdf..735ad3a8b2 100644 --- a/features/org.wso2.carbon.identity.idle.account.identification.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.idle.account.identification.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance ../../pom.xml - 1.8.65 + 1.8.66-SNAPSHOT 4.0.0 diff --git a/features/org.wso2.carbon.identity.multi.attribute.login.service.server.feature/pom.xml b/features/org.wso2.carbon.identity.multi.attribute.login.service.server.feature/pom.xml index 979623c65a..97b8e8c973 100644 --- a/features/org.wso2.carbon.identity.multi.attribute.login.service.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.multi.attribute.login.service.server.feature/pom.xml @@ -3,7 +3,7 @@ identity-governance org.wso2.carbon.identity.governance - 1.8.65 + 1.8.66-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/features/org.wso2.carbon.identity.password.expiry.server.feature/pom.xml b/features/org.wso2.carbon.identity.password.expiry.server.feature/pom.xml index 09a1994102..b3bb4af55f 100644 --- a/features/org.wso2.carbon.identity.password.expiry.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.password.expiry.server.feature/pom.xml @@ -22,7 +22,7 @@ org.wso2.carbon.identity.governance identity-governance ../../pom.xml - 1.8.65 + 1.8.66-SNAPSHOT 4.0.0 diff --git a/features/org.wso2.carbon.identity.password.history.server.feature/pom.xml b/features/org.wso2.carbon.identity.password.history.server.feature/pom.xml index 0916a69dd0..9678a5f878 100644 --- a/features/org.wso2.carbon.identity.password.history.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.password.history.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance ../../pom.xml - 1.8.65 + 1.8.66-SNAPSHOT 4.0.0 diff --git a/features/org.wso2.carbon.identity.password.policy.server.feature/pom.xml b/features/org.wso2.carbon.identity.password.policy.server.feature/pom.xml index 855bf785e9..8dc54a4ac4 100644 --- a/features/org.wso2.carbon.identity.password.policy.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.password.policy.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance ../../pom.xml - 1.8.65 + 1.8.66-SNAPSHOT 4.0.0 diff --git a/features/org.wso2.carbon.identity.piicontroller.server.feature/pom.xml b/features/org.wso2.carbon.identity.piicontroller.server.feature/pom.xml index 509399d3b4..8d7b94762c 100644 --- a/features/org.wso2.carbon.identity.piicontroller.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.piicontroller.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance ../../pom.xml - 1.8.65 + 1.8.66-SNAPSHOT 4.0.0 diff --git a/features/org.wso2.carbon.identity.recovery.server.feature/pom.xml b/features/org.wso2.carbon.identity.recovery.server.feature/pom.xml index 5ad388ed71..89924e2c3e 100644 --- a/features/org.wso2.carbon.identity.recovery.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.recovery.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance ../../pom.xml - 1.8.65 + 1.8.66-SNAPSHOT 4.0.0 diff --git a/features/org.wso2.carbon.identity.recovery.ui.feature/pom.xml b/features/org.wso2.carbon.identity.recovery.ui.feature/pom.xml index 2e0b87b6ea..b72d678e29 100644 --- a/features/org.wso2.carbon.identity.recovery.ui.feature/pom.xml +++ b/features/org.wso2.carbon.identity.recovery.ui.feature/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.65 + 1.8.66-SNAPSHOT ../../pom.xml diff --git a/features/org.wso2.carbon.identity.tenant.resource.manager.feature/pom.xml b/features/org.wso2.carbon.identity.tenant.resource.manager.feature/pom.xml index 4ea3cd331e..d68b1847d7 100644 --- a/features/org.wso2.carbon.identity.tenant.resource.manager.feature/pom.xml +++ b/features/org.wso2.carbon.identity.tenant.resource.manager.feature/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.65 + 1.8.66-SNAPSHOT ../../pom.xml diff --git a/features/org.wso2.carbon.identity.user.server.feature/pom.xml b/features/org.wso2.carbon.identity.user.server.feature/pom.xml index c92e237bb8..d8dd628eee 100644 --- a/features/org.wso2.carbon.identity.user.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.user.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance ../../pom.xml - 1.8.65 + 1.8.66-SNAPSHOT 4.0.0 diff --git a/pom.xml b/pom.xml index 3f96826f9c..75b8f2f1d3 100644 --- a/pom.xml +++ b/pom.xml @@ -18,7 +18,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.65 + 1.8.66-SNAPSHOT 4.0.0 pom WSO2 Carbon - Governance Module @@ -37,7 +37,7 @@ https://github.com/wso2-extensions/identity-governance.git scm:git:https://github.com/wso2-extensions/identity-governance.git scm:git:https://github.com/wso2-extensions/identity-governance.git - v1.8.65 + v1.1.0-SNAPSHOT diff --git a/service-stubs/identity/org.wso2.carbon.identity.recovery.stub/pom.xml b/service-stubs/identity/org.wso2.carbon.identity.recovery.stub/pom.xml index 3c964f3f3f..0d80e784cb 100644 --- a/service-stubs/identity/org.wso2.carbon.identity.recovery.stub/pom.xml +++ b/service-stubs/identity/org.wso2.carbon.identity.recovery.stub/pom.xml @@ -19,7 +19,7 @@ org.wso2.carbon.identity.governance carbon-service-stubs - 1.8.65 + 1.8.66-SNAPSHOT ../pom.xml diff --git a/service-stubs/identity/pom.xml b/service-stubs/identity/pom.xml index 652e53363d..55352269f5 100644 --- a/service-stubs/identity/pom.xml +++ b/service-stubs/identity/pom.xml @@ -19,7 +19,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.65 + 1.8.66-SNAPSHOT ../../pom.xml From a44fb3136e9d073d6e606d6a5abae3f6af280b39 Mon Sep 17 00:00:00 2001 From: Thumimku Date: Tue, 12 Sep 2023 10:50:14 +0530 Subject: [PATCH 22/31] move service registration to service component --- .../policy/handler/PasswordPolicyValidationHandler.java | 2 -- .../internal/IdentityPasswordPolicyServiceComponent.java | 7 +++++-- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/components/org.wso2.carbon.identity.password.policy/src/main/java/org/wso2/carbon/identity/password/policy/handler/PasswordPolicyValidationHandler.java b/components/org.wso2.carbon.identity.password.policy/src/main/java/org/wso2/carbon/identity/password/policy/handler/PasswordPolicyValidationHandler.java index 7a34f02f00..f31fefdd28 100644 --- a/components/org.wso2.carbon.identity.password.policy/src/main/java/org/wso2/carbon/identity/password/policy/handler/PasswordPolicyValidationHandler.java +++ b/components/org.wso2.carbon.identity.password.policy/src/main/java/org/wso2/carbon/identity/password/policy/handler/PasswordPolicyValidationHandler.java @@ -232,8 +232,6 @@ public Map getPropertyDescriptionMapping() { public void init(InitConfig configuration) throws IdentityRuntimeException { super.init(configuration); - IdentityPasswordPolicyServiceDataHolder.getInstance().getBundleContext().registerService - (IdentityConnectorConfig.class.getName(), this, null); } public String[] getPropertyNames() { diff --git a/components/org.wso2.carbon.identity.password.policy/src/main/java/org/wso2/carbon/identity/password/policy/internal/IdentityPasswordPolicyServiceComponent.java b/components/org.wso2.carbon.identity.password.policy/src/main/java/org/wso2/carbon/identity/password/policy/internal/IdentityPasswordPolicyServiceComponent.java index 6edaba1956..63fc3e21a8 100644 --- a/components/org.wso2.carbon.identity.password.policy/src/main/java/org/wso2/carbon/identity/password/policy/internal/IdentityPasswordPolicyServiceComponent.java +++ b/components/org.wso2.carbon.identity.password.policy/src/main/java/org/wso2/carbon/identity/password/policy/internal/IdentityPasswordPolicyServiceComponent.java @@ -21,6 +21,7 @@ import org.osgi.service.component.ComponentContext; import org.wso2.carbon.identity.event.handler.AbstractEventHandler; import org.wso2.carbon.identity.governance.IdentityGovernanceService; +import org.wso2.carbon.identity.governance.common.IdentityConnectorConfig; import org.wso2.carbon.identity.password.policy.handler.PasswordPolicyValidationHandler; import org.osgi.service.component.annotations.Activate; import org.osgi.service.component.annotations.Component; @@ -43,11 +44,13 @@ protected void activate(ComponentContext context) { if (log.isDebugEnabled()) { log.debug("Password Policy Service component is enabled"); } + BundleContext bundleContext = context.getBundleContext(); + IdentityPasswordPolicyServiceDataHolder.getInstance().setBundleContext(bundleContext); if (IdentityPasswordPolicyServiceDataHolder.getInstance().isPasswordPolicyHandlerEnabled()) { - BundleContext bundleContext = context.getBundleContext(); - IdentityPasswordPolicyServiceDataHolder.getInstance().setBundleContext(bundleContext); + PasswordPolicyValidationHandler handler = new PasswordPolicyValidationHandler(); context.getBundleContext().registerService(AbstractEventHandler.class.getName(), handler, null); + context.getBundleContext().registerService(IdentityConnectorConfig.class.getName(), handler, null); } else { if (log.isDebugEnabled()) { log.debug("Password Policy Validation Handler is disabled."); From 87329ee2cf344a4c3d7d169abc8e867bcea8c350 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 12 Sep 2023 10:50:26 +0000 Subject: [PATCH 23/31] [WSO2 Release] [Jenkins #2539] [Release 1.8.66] prepare release v1.8.66 --- .../pom.xml | 2 +- .../org.wso2.carbon.identity.api.user.governance/pom.xml | 4 ++-- components/org.wso2.carbon.identity.api.user.recovery/pom.xml | 4 ++-- .../org.wso2.carbon.identity.auth.attribute.handler/pom.xml | 2 +- components/org.wso2.carbon.identity.captcha/pom.xml | 2 +- components/org.wso2.carbon.identity.governance/pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../org.wso2.carbon.identity.multi.attribute.login/pom.xml | 2 +- components/org.wso2.carbon.identity.password.expiry/pom.xml | 2 +- components/org.wso2.carbon.identity.password.history/pom.xml | 2 +- components/org.wso2.carbon.identity.password.policy/pom.xml | 2 +- components/org.wso2.carbon.identity.piicontroller/pom.xml | 2 +- components/org.wso2.carbon.identity.recovery.endpoint/pom.xml | 2 +- components/org.wso2.carbon.identity.recovery.ui/pom.xml | 2 +- components/org.wso2.carbon.identity.recovery/pom.xml | 2 +- .../org.wso2.carbon.identity.tenant.resource.manager/pom.xml | 2 +- components/org.wso2.carbon.identity.user.endpoint/pom.xml | 2 +- components/org.wso2.carbon.identity.user.export.core/pom.xml | 2 +- components/org.wso2.carbon.identity.user.rename.core/pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../org.wso2.carbon.identity.captcha.server.feature/pom.xml | 2 +- features/org.wso2.carbon.identity.governance.feature/pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../org.wso2.carbon.identity.recovery.server.feature/pom.xml | 2 +- features/org.wso2.carbon.identity.recovery.ui.feature/pom.xml | 2 +- .../pom.xml | 2 +- features/org.wso2.carbon.identity.user.server.feature/pom.xml | 2 +- pom.xml | 4 ++-- .../identity/org.wso2.carbon.identity.recovery.stub/pom.xml | 2 +- service-stubs/identity/pom.xml | 2 +- 39 files changed, 42 insertions(+), 42 deletions(-) diff --git a/components/org.wso2.carbon.identity.account.suspension.notification.task/pom.xml b/components/org.wso2.carbon.identity.account.suspension.notification.task/pom.xml index c9e123172d..f0e8fb3661 100644 --- a/components/org.wso2.carbon.identity.account.suspension.notification.task/pom.xml +++ b/components/org.wso2.carbon.identity.account.suspension.notification.task/pom.xml @@ -20,7 +20,7 @@ identity-governance org.wso2.carbon.identity.governance - 1.8.66-SNAPSHOT + 1.8.66 ../../pom.xml diff --git a/components/org.wso2.carbon.identity.api.user.governance/pom.xml b/components/org.wso2.carbon.identity.api.user.governance/pom.xml index 7473f61fa6..7a4c960b6a 100644 --- a/components/org.wso2.carbon.identity.api.user.governance/pom.xml +++ b/components/org.wso2.carbon.identity.api.user.governance/pom.xml @@ -23,12 +23,12 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.66-SNAPSHOT + 1.8.66 ../.. org.wso2.carbon.identity.api.user.governance - 1.8.66-SNAPSHOT + 1.8.66 jar WSO2 Carbon - User Rest Governance API WSO2 Carbon - User Rest Governance API diff --git a/components/org.wso2.carbon.identity.api.user.recovery/pom.xml b/components/org.wso2.carbon.identity.api.user.recovery/pom.xml index b4d397f681..211c5ba321 100644 --- a/components/org.wso2.carbon.identity.api.user.recovery/pom.xml +++ b/components/org.wso2.carbon.identity.api.user.recovery/pom.xml @@ -23,12 +23,12 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.66-SNAPSHOT + 1.8.66 ../.. org.wso2.carbon.identity.api.user.recovery - 1.8.66-SNAPSHOT + 1.8.66 jar WSO2 Carbon - Identity Management Recovery Rest API WSO2 Carbon - Identity Management Recovery Rest API diff --git a/components/org.wso2.carbon.identity.auth.attribute.handler/pom.xml b/components/org.wso2.carbon.identity.auth.attribute.handler/pom.xml index ee2d7f0fe1..42c96aea82 100644 --- a/components/org.wso2.carbon.identity.auth.attribute.handler/pom.xml +++ b/components/org.wso2.carbon.identity.auth.attribute.handler/pom.xml @@ -22,7 +22,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.66-SNAPSHOT + 1.8.66 ../../pom.xml diff --git a/components/org.wso2.carbon.identity.captcha/pom.xml b/components/org.wso2.carbon.identity.captcha/pom.xml index c9d676ab82..87005300f3 100644 --- a/components/org.wso2.carbon.identity.captcha/pom.xml +++ b/components/org.wso2.carbon.identity.captcha/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.66-SNAPSHOT + 1.8.66 ../../pom.xml diff --git a/components/org.wso2.carbon.identity.governance/pom.xml b/components/org.wso2.carbon.identity.governance/pom.xml index 46b3cb6f7c..b3283923ba 100644 --- a/components/org.wso2.carbon.identity.governance/pom.xml +++ b/components/org.wso2.carbon.identity.governance/pom.xml @@ -18,7 +18,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.66-SNAPSHOT + 1.8.66 ../../pom.xml diff --git a/components/org.wso2.carbon.identity.idle.account.identification/pom.xml b/components/org.wso2.carbon.identity.idle.account.identification/pom.xml index dfa9a09232..59d4f78dbd 100644 --- a/components/org.wso2.carbon.identity.idle.account.identification/pom.xml +++ b/components/org.wso2.carbon.identity.idle.account.identification/pom.xml @@ -18,7 +18,7 @@ identity-governance org.wso2.carbon.identity.governance - 1.8.66-SNAPSHOT + 1.8.66 ../../pom.xml 4.0.0 diff --git a/components/org.wso2.carbon.identity.multi.attribute.login/org.wso2.carbon.identity.multi.attribute.login.resolver.regex/pom.xml b/components/org.wso2.carbon.identity.multi.attribute.login/org.wso2.carbon.identity.multi.attribute.login.resolver.regex/pom.xml index 5895c38825..8fcd9ce278 100644 --- a/components/org.wso2.carbon.identity.multi.attribute.login/org.wso2.carbon.identity.multi.attribute.login.resolver.regex/pom.xml +++ b/components/org.wso2.carbon.identity.multi.attribute.login/org.wso2.carbon.identity.multi.attribute.login.resolver.regex/pom.xml @@ -21,7 +21,7 @@ identity-governance org.wso2.carbon.identity.governance - 1.8.66-SNAPSHOT + 1.8.66 ../../../pom.xml 4.0.0 diff --git a/components/org.wso2.carbon.identity.multi.attribute.login/org.wso2.carbon.identity.multi.attribute.login.service/pom.xml b/components/org.wso2.carbon.identity.multi.attribute.login/org.wso2.carbon.identity.multi.attribute.login.service/pom.xml index 22ad6fb1ae..3bb6b31aed 100644 --- a/components/org.wso2.carbon.identity.multi.attribute.login/org.wso2.carbon.identity.multi.attribute.login.service/pom.xml +++ b/components/org.wso2.carbon.identity.multi.attribute.login/org.wso2.carbon.identity.multi.attribute.login.service/pom.xml @@ -21,7 +21,7 @@ identity-governance org.wso2.carbon.identity.governance - 1.8.66-SNAPSHOT + 1.8.66 ../../../pom.xml 4.0.0 diff --git a/components/org.wso2.carbon.identity.multi.attribute.login/pom.xml b/components/org.wso2.carbon.identity.multi.attribute.login/pom.xml index 24e6f25394..e558730681 100644 --- a/components/org.wso2.carbon.identity.multi.attribute.login/pom.xml +++ b/components/org.wso2.carbon.identity.multi.attribute.login/pom.xml @@ -21,7 +21,7 @@ identity-governance org.wso2.carbon.identity.governance - 1.8.66-SNAPSHOT + 1.8.66 ../../pom.xml 4.0.0 diff --git a/components/org.wso2.carbon.identity.password.expiry/pom.xml b/components/org.wso2.carbon.identity.password.expiry/pom.xml index a9ad072b74..ce7b9f7bdd 100644 --- a/components/org.wso2.carbon.identity.password.expiry/pom.xml +++ b/components/org.wso2.carbon.identity.password.expiry/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.66-SNAPSHOT + 1.8.66 ../../pom.xml diff --git a/components/org.wso2.carbon.identity.password.history/pom.xml b/components/org.wso2.carbon.identity.password.history/pom.xml index f371b73506..ec04280599 100644 --- a/components/org.wso2.carbon.identity.password.history/pom.xml +++ b/components/org.wso2.carbon.identity.password.history/pom.xml @@ -18,7 +18,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.66-SNAPSHOT + 1.8.66 ../../pom.xml diff --git a/components/org.wso2.carbon.identity.password.policy/pom.xml b/components/org.wso2.carbon.identity.password.policy/pom.xml index 435d9033dd..90fe9766ac 100644 --- a/components/org.wso2.carbon.identity.password.policy/pom.xml +++ b/components/org.wso2.carbon.identity.password.policy/pom.xml @@ -18,7 +18,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.66-SNAPSHOT + 1.8.66 ../../pom.xml diff --git a/components/org.wso2.carbon.identity.piicontroller/pom.xml b/components/org.wso2.carbon.identity.piicontroller/pom.xml index 2c5aba99c5..4d67fea18d 100644 --- a/components/org.wso2.carbon.identity.piicontroller/pom.xml +++ b/components/org.wso2.carbon.identity.piicontroller/pom.xml @@ -19,7 +19,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.66-SNAPSHOT + 1.8.66 ../../pom.xml diff --git a/components/org.wso2.carbon.identity.recovery.endpoint/pom.xml b/components/org.wso2.carbon.identity.recovery.endpoint/pom.xml index 1bf7e0e95a..f2c2e38478 100644 --- a/components/org.wso2.carbon.identity.recovery.endpoint/pom.xml +++ b/components/org.wso2.carbon.identity.recovery.endpoint/pom.xml @@ -5,7 +5,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.66-SNAPSHOT + 1.8.66 ../../pom.xml diff --git a/components/org.wso2.carbon.identity.recovery.ui/pom.xml b/components/org.wso2.carbon.identity.recovery.ui/pom.xml index ae38dfd415..56722879b4 100644 --- a/components/org.wso2.carbon.identity.recovery.ui/pom.xml +++ b/components/org.wso2.carbon.identity.recovery.ui/pom.xml @@ -18,7 +18,7 @@ identity-governance org.wso2.carbon.identity.governance - 1.8.66-SNAPSHOT + 1.8.66 ../../pom.xml diff --git a/components/org.wso2.carbon.identity.recovery/pom.xml b/components/org.wso2.carbon.identity.recovery/pom.xml index 96022aca66..918ad7c295 100644 --- a/components/org.wso2.carbon.identity.recovery/pom.xml +++ b/components/org.wso2.carbon.identity.recovery/pom.xml @@ -18,7 +18,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.66-SNAPSHOT + 1.8.66 ../../pom.xml diff --git a/components/org.wso2.carbon.identity.tenant.resource.manager/pom.xml b/components/org.wso2.carbon.identity.tenant.resource.manager/pom.xml index 2f643bce37..67cb8febdf 100644 --- a/components/org.wso2.carbon.identity.tenant.resource.manager/pom.xml +++ b/components/org.wso2.carbon.identity.tenant.resource.manager/pom.xml @@ -22,7 +22,7 @@ identity-governance org.wso2.carbon.identity.governance - 1.8.66-SNAPSHOT + 1.8.66 ../../pom.xml diff --git a/components/org.wso2.carbon.identity.user.endpoint/pom.xml b/components/org.wso2.carbon.identity.user.endpoint/pom.xml index b53d8bfbe3..5d150e8552 100644 --- a/components/org.wso2.carbon.identity.user.endpoint/pom.xml +++ b/components/org.wso2.carbon.identity.user.endpoint/pom.xml @@ -5,7 +5,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.66-SNAPSHOT + 1.8.66 ../../pom.xml diff --git a/components/org.wso2.carbon.identity.user.export.core/pom.xml b/components/org.wso2.carbon.identity.user.export.core/pom.xml index e10a9d1394..53db40f70e 100644 --- a/components/org.wso2.carbon.identity.user.export.core/pom.xml +++ b/components/org.wso2.carbon.identity.user.export.core/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.66-SNAPSHOT + 1.8.66 ../../pom.xml diff --git a/components/org.wso2.carbon.identity.user.rename.core/pom.xml b/components/org.wso2.carbon.identity.user.rename.core/pom.xml index 69987544ac..8033fe4603 100644 --- a/components/org.wso2.carbon.identity.user.rename.core/pom.xml +++ b/components/org.wso2.carbon.identity.user.rename.core/pom.xml @@ -20,7 +20,7 @@ identity-governance org.wso2.carbon.identity.governance - 1.8.66-SNAPSHOT + 1.8.66 ../../pom.xml 4.0.0 diff --git a/features/org.wso2.carbon.identity.account.suspension.notification.task.server.feature/pom.xml b/features/org.wso2.carbon.identity.account.suspension.notification.task.server.feature/pom.xml index ac07612d99..290cfe8f70 100644 --- a/features/org.wso2.carbon.identity.account.suspension.notification.task.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.account.suspension.notification.task.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance ../../pom.xml - 1.8.66-SNAPSHOT + 1.8.66 4.0.0 diff --git a/features/org.wso2.carbon.identity.auth.attribute.handler.server.feature/pom.xml b/features/org.wso2.carbon.identity.auth.attribute.handler.server.feature/pom.xml index 1dbdc89e9c..3c3ee48a19 100644 --- a/features/org.wso2.carbon.identity.auth.attribute.handler.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.auth.attribute.handler.server.feature/pom.xml @@ -22,7 +22,7 @@ org.wso2.carbon.identity.governance identity-governance ../../pom.xml - 1.8.66-SNAPSHOT + 1.8.66 4.0.0 diff --git a/features/org.wso2.carbon.identity.captcha.server.feature/pom.xml b/features/org.wso2.carbon.identity.captcha.server.feature/pom.xml index 9718897d9b..73994cfce7 100644 --- a/features/org.wso2.carbon.identity.captcha.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.captcha.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance ../../pom.xml - 1.8.66-SNAPSHOT + 1.8.66 4.0.0 diff --git a/features/org.wso2.carbon.identity.governance.feature/pom.xml b/features/org.wso2.carbon.identity.governance.feature/pom.xml index 46cb59d5e0..4da7fd663c 100644 --- a/features/org.wso2.carbon.identity.governance.feature/pom.xml +++ b/features/org.wso2.carbon.identity.governance.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.66-SNAPSHOT + 1.8.66 ../../pom.xml diff --git a/features/org.wso2.carbon.identity.governance.server.feature/pom.xml b/features/org.wso2.carbon.identity.governance.server.feature/pom.xml index 21c18debca..6b6817dc52 100644 --- a/features/org.wso2.carbon.identity.governance.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.governance.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance ../../pom.xml - 1.8.66-SNAPSHOT + 1.8.66 4.0.0 diff --git a/features/org.wso2.carbon.identity.idle.account.identification.server.feature/pom.xml b/features/org.wso2.carbon.identity.idle.account.identification.server.feature/pom.xml index 735ad3a8b2..d2de4852d5 100644 --- a/features/org.wso2.carbon.identity.idle.account.identification.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.idle.account.identification.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance ../../pom.xml - 1.8.66-SNAPSHOT + 1.8.66 4.0.0 diff --git a/features/org.wso2.carbon.identity.multi.attribute.login.service.server.feature/pom.xml b/features/org.wso2.carbon.identity.multi.attribute.login.service.server.feature/pom.xml index 97b8e8c973..81b2ddbe0e 100644 --- a/features/org.wso2.carbon.identity.multi.attribute.login.service.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.multi.attribute.login.service.server.feature/pom.xml @@ -3,7 +3,7 @@ identity-governance org.wso2.carbon.identity.governance - 1.8.66-SNAPSHOT + 1.8.66 ../../pom.xml 4.0.0 diff --git a/features/org.wso2.carbon.identity.password.expiry.server.feature/pom.xml b/features/org.wso2.carbon.identity.password.expiry.server.feature/pom.xml index b3bb4af55f..2e5b683960 100644 --- a/features/org.wso2.carbon.identity.password.expiry.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.password.expiry.server.feature/pom.xml @@ -22,7 +22,7 @@ org.wso2.carbon.identity.governance identity-governance ../../pom.xml - 1.8.66-SNAPSHOT + 1.8.66 4.0.0 diff --git a/features/org.wso2.carbon.identity.password.history.server.feature/pom.xml b/features/org.wso2.carbon.identity.password.history.server.feature/pom.xml index 9678a5f878..d99315a1f0 100644 --- a/features/org.wso2.carbon.identity.password.history.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.password.history.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance ../../pom.xml - 1.8.66-SNAPSHOT + 1.8.66 4.0.0 diff --git a/features/org.wso2.carbon.identity.password.policy.server.feature/pom.xml b/features/org.wso2.carbon.identity.password.policy.server.feature/pom.xml index 8dc54a4ac4..fa567135ca 100644 --- a/features/org.wso2.carbon.identity.password.policy.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.password.policy.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance ../../pom.xml - 1.8.66-SNAPSHOT + 1.8.66 4.0.0 diff --git a/features/org.wso2.carbon.identity.piicontroller.server.feature/pom.xml b/features/org.wso2.carbon.identity.piicontroller.server.feature/pom.xml index 8d7b94762c..874dd8a29c 100644 --- a/features/org.wso2.carbon.identity.piicontroller.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.piicontroller.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance ../../pom.xml - 1.8.66-SNAPSHOT + 1.8.66 4.0.0 diff --git a/features/org.wso2.carbon.identity.recovery.server.feature/pom.xml b/features/org.wso2.carbon.identity.recovery.server.feature/pom.xml index 89924e2c3e..2f9ba8fd5d 100644 --- a/features/org.wso2.carbon.identity.recovery.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.recovery.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance ../../pom.xml - 1.8.66-SNAPSHOT + 1.8.66 4.0.0 diff --git a/features/org.wso2.carbon.identity.recovery.ui.feature/pom.xml b/features/org.wso2.carbon.identity.recovery.ui.feature/pom.xml index b72d678e29..6891e0dc38 100644 --- a/features/org.wso2.carbon.identity.recovery.ui.feature/pom.xml +++ b/features/org.wso2.carbon.identity.recovery.ui.feature/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.66-SNAPSHOT + 1.8.66 ../../pom.xml diff --git a/features/org.wso2.carbon.identity.tenant.resource.manager.feature/pom.xml b/features/org.wso2.carbon.identity.tenant.resource.manager.feature/pom.xml index d68b1847d7..39b1fb13d1 100644 --- a/features/org.wso2.carbon.identity.tenant.resource.manager.feature/pom.xml +++ b/features/org.wso2.carbon.identity.tenant.resource.manager.feature/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.66-SNAPSHOT + 1.8.66 ../../pom.xml diff --git a/features/org.wso2.carbon.identity.user.server.feature/pom.xml b/features/org.wso2.carbon.identity.user.server.feature/pom.xml index d8dd628eee..be3ea991bc 100644 --- a/features/org.wso2.carbon.identity.user.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.user.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance ../../pom.xml - 1.8.66-SNAPSHOT + 1.8.66 4.0.0 diff --git a/pom.xml b/pom.xml index 75b8f2f1d3..644d865ecc 100644 --- a/pom.xml +++ b/pom.xml @@ -18,7 +18,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.66-SNAPSHOT + 1.8.66 4.0.0 pom WSO2 Carbon - Governance Module @@ -37,7 +37,7 @@ https://github.com/wso2-extensions/identity-governance.git scm:git:https://github.com/wso2-extensions/identity-governance.git scm:git:https://github.com/wso2-extensions/identity-governance.git - v1.1.0-SNAPSHOT + v1.8.66 diff --git a/service-stubs/identity/org.wso2.carbon.identity.recovery.stub/pom.xml b/service-stubs/identity/org.wso2.carbon.identity.recovery.stub/pom.xml index 0d80e784cb..08dfea1825 100644 --- a/service-stubs/identity/org.wso2.carbon.identity.recovery.stub/pom.xml +++ b/service-stubs/identity/org.wso2.carbon.identity.recovery.stub/pom.xml @@ -19,7 +19,7 @@ org.wso2.carbon.identity.governance carbon-service-stubs - 1.8.66-SNAPSHOT + 1.8.66 ../pom.xml diff --git a/service-stubs/identity/pom.xml b/service-stubs/identity/pom.xml index 55352269f5..e939a2f4cd 100644 --- a/service-stubs/identity/pom.xml +++ b/service-stubs/identity/pom.xml @@ -19,7 +19,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.66-SNAPSHOT + 1.8.66 ../../pom.xml From 1eba50008f8442dae517f26b0a8353553d45405f Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 12 Sep 2023 10:50:28 +0000 Subject: [PATCH 24/31] [WSO2 Release] [Jenkins #2539] [Release 1.8.66] prepare for next development iteration --- .../pom.xml | 2 +- .../org.wso2.carbon.identity.api.user.governance/pom.xml | 4 ++-- components/org.wso2.carbon.identity.api.user.recovery/pom.xml | 4 ++-- .../org.wso2.carbon.identity.auth.attribute.handler/pom.xml | 2 +- components/org.wso2.carbon.identity.captcha/pom.xml | 2 +- components/org.wso2.carbon.identity.governance/pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../org.wso2.carbon.identity.multi.attribute.login/pom.xml | 2 +- components/org.wso2.carbon.identity.password.expiry/pom.xml | 2 +- components/org.wso2.carbon.identity.password.history/pom.xml | 2 +- components/org.wso2.carbon.identity.password.policy/pom.xml | 2 +- components/org.wso2.carbon.identity.piicontroller/pom.xml | 2 +- components/org.wso2.carbon.identity.recovery.endpoint/pom.xml | 2 +- components/org.wso2.carbon.identity.recovery.ui/pom.xml | 2 +- components/org.wso2.carbon.identity.recovery/pom.xml | 2 +- .../org.wso2.carbon.identity.tenant.resource.manager/pom.xml | 2 +- components/org.wso2.carbon.identity.user.endpoint/pom.xml | 2 +- components/org.wso2.carbon.identity.user.export.core/pom.xml | 2 +- components/org.wso2.carbon.identity.user.rename.core/pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../org.wso2.carbon.identity.captcha.server.feature/pom.xml | 2 +- features/org.wso2.carbon.identity.governance.feature/pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../org.wso2.carbon.identity.recovery.server.feature/pom.xml | 2 +- features/org.wso2.carbon.identity.recovery.ui.feature/pom.xml | 2 +- .../pom.xml | 2 +- features/org.wso2.carbon.identity.user.server.feature/pom.xml | 2 +- pom.xml | 4 ++-- .../identity/org.wso2.carbon.identity.recovery.stub/pom.xml | 2 +- service-stubs/identity/pom.xml | 2 +- 39 files changed, 42 insertions(+), 42 deletions(-) diff --git a/components/org.wso2.carbon.identity.account.suspension.notification.task/pom.xml b/components/org.wso2.carbon.identity.account.suspension.notification.task/pom.xml index f0e8fb3661..bdcfa91d2a 100644 --- a/components/org.wso2.carbon.identity.account.suspension.notification.task/pom.xml +++ b/components/org.wso2.carbon.identity.account.suspension.notification.task/pom.xml @@ -20,7 +20,7 @@ identity-governance org.wso2.carbon.identity.governance - 1.8.66 + 1.8.67-SNAPSHOT ../../pom.xml diff --git a/components/org.wso2.carbon.identity.api.user.governance/pom.xml b/components/org.wso2.carbon.identity.api.user.governance/pom.xml index 7a4c960b6a..019118e436 100644 --- a/components/org.wso2.carbon.identity.api.user.governance/pom.xml +++ b/components/org.wso2.carbon.identity.api.user.governance/pom.xml @@ -23,12 +23,12 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.66 + 1.8.67-SNAPSHOT ../.. org.wso2.carbon.identity.api.user.governance - 1.8.66 + 1.8.67-SNAPSHOT jar WSO2 Carbon - User Rest Governance API WSO2 Carbon - User Rest Governance API diff --git a/components/org.wso2.carbon.identity.api.user.recovery/pom.xml b/components/org.wso2.carbon.identity.api.user.recovery/pom.xml index 211c5ba321..181f52210e 100644 --- a/components/org.wso2.carbon.identity.api.user.recovery/pom.xml +++ b/components/org.wso2.carbon.identity.api.user.recovery/pom.xml @@ -23,12 +23,12 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.66 + 1.8.67-SNAPSHOT ../.. org.wso2.carbon.identity.api.user.recovery - 1.8.66 + 1.8.67-SNAPSHOT jar WSO2 Carbon - Identity Management Recovery Rest API WSO2 Carbon - Identity Management Recovery Rest API diff --git a/components/org.wso2.carbon.identity.auth.attribute.handler/pom.xml b/components/org.wso2.carbon.identity.auth.attribute.handler/pom.xml index 42c96aea82..d0632232e5 100644 --- a/components/org.wso2.carbon.identity.auth.attribute.handler/pom.xml +++ b/components/org.wso2.carbon.identity.auth.attribute.handler/pom.xml @@ -22,7 +22,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.66 + 1.8.67-SNAPSHOT ../../pom.xml diff --git a/components/org.wso2.carbon.identity.captcha/pom.xml b/components/org.wso2.carbon.identity.captcha/pom.xml index 87005300f3..b6e342bd0b 100644 --- a/components/org.wso2.carbon.identity.captcha/pom.xml +++ b/components/org.wso2.carbon.identity.captcha/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.66 + 1.8.67-SNAPSHOT ../../pom.xml diff --git a/components/org.wso2.carbon.identity.governance/pom.xml b/components/org.wso2.carbon.identity.governance/pom.xml index b3283923ba..3bfdb2b6d4 100644 --- a/components/org.wso2.carbon.identity.governance/pom.xml +++ b/components/org.wso2.carbon.identity.governance/pom.xml @@ -18,7 +18,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.66 + 1.8.67-SNAPSHOT ../../pom.xml diff --git a/components/org.wso2.carbon.identity.idle.account.identification/pom.xml b/components/org.wso2.carbon.identity.idle.account.identification/pom.xml index 59d4f78dbd..b29c53a5c7 100644 --- a/components/org.wso2.carbon.identity.idle.account.identification/pom.xml +++ b/components/org.wso2.carbon.identity.idle.account.identification/pom.xml @@ -18,7 +18,7 @@ identity-governance org.wso2.carbon.identity.governance - 1.8.66 + 1.8.67-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/components/org.wso2.carbon.identity.multi.attribute.login/org.wso2.carbon.identity.multi.attribute.login.resolver.regex/pom.xml b/components/org.wso2.carbon.identity.multi.attribute.login/org.wso2.carbon.identity.multi.attribute.login.resolver.regex/pom.xml index 8fcd9ce278..e3059753a1 100644 --- a/components/org.wso2.carbon.identity.multi.attribute.login/org.wso2.carbon.identity.multi.attribute.login.resolver.regex/pom.xml +++ b/components/org.wso2.carbon.identity.multi.attribute.login/org.wso2.carbon.identity.multi.attribute.login.resolver.regex/pom.xml @@ -21,7 +21,7 @@ identity-governance org.wso2.carbon.identity.governance - 1.8.66 + 1.8.67-SNAPSHOT ../../../pom.xml 4.0.0 diff --git a/components/org.wso2.carbon.identity.multi.attribute.login/org.wso2.carbon.identity.multi.attribute.login.service/pom.xml b/components/org.wso2.carbon.identity.multi.attribute.login/org.wso2.carbon.identity.multi.attribute.login.service/pom.xml index 3bb6b31aed..040adddfa7 100644 --- a/components/org.wso2.carbon.identity.multi.attribute.login/org.wso2.carbon.identity.multi.attribute.login.service/pom.xml +++ b/components/org.wso2.carbon.identity.multi.attribute.login/org.wso2.carbon.identity.multi.attribute.login.service/pom.xml @@ -21,7 +21,7 @@ identity-governance org.wso2.carbon.identity.governance - 1.8.66 + 1.8.67-SNAPSHOT ../../../pom.xml 4.0.0 diff --git a/components/org.wso2.carbon.identity.multi.attribute.login/pom.xml b/components/org.wso2.carbon.identity.multi.attribute.login/pom.xml index e558730681..cf4de86c55 100644 --- a/components/org.wso2.carbon.identity.multi.attribute.login/pom.xml +++ b/components/org.wso2.carbon.identity.multi.attribute.login/pom.xml @@ -21,7 +21,7 @@ identity-governance org.wso2.carbon.identity.governance - 1.8.66 + 1.8.67-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/components/org.wso2.carbon.identity.password.expiry/pom.xml b/components/org.wso2.carbon.identity.password.expiry/pom.xml index ce7b9f7bdd..665cf57f83 100644 --- a/components/org.wso2.carbon.identity.password.expiry/pom.xml +++ b/components/org.wso2.carbon.identity.password.expiry/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.66 + 1.8.67-SNAPSHOT ../../pom.xml diff --git a/components/org.wso2.carbon.identity.password.history/pom.xml b/components/org.wso2.carbon.identity.password.history/pom.xml index ec04280599..67d072ba13 100644 --- a/components/org.wso2.carbon.identity.password.history/pom.xml +++ b/components/org.wso2.carbon.identity.password.history/pom.xml @@ -18,7 +18,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.66 + 1.8.67-SNAPSHOT ../../pom.xml diff --git a/components/org.wso2.carbon.identity.password.policy/pom.xml b/components/org.wso2.carbon.identity.password.policy/pom.xml index 90fe9766ac..f144af7828 100644 --- a/components/org.wso2.carbon.identity.password.policy/pom.xml +++ b/components/org.wso2.carbon.identity.password.policy/pom.xml @@ -18,7 +18,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.66 + 1.8.67-SNAPSHOT ../../pom.xml diff --git a/components/org.wso2.carbon.identity.piicontroller/pom.xml b/components/org.wso2.carbon.identity.piicontroller/pom.xml index 4d67fea18d..b41f4b10ec 100644 --- a/components/org.wso2.carbon.identity.piicontroller/pom.xml +++ b/components/org.wso2.carbon.identity.piicontroller/pom.xml @@ -19,7 +19,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.66 + 1.8.67-SNAPSHOT ../../pom.xml diff --git a/components/org.wso2.carbon.identity.recovery.endpoint/pom.xml b/components/org.wso2.carbon.identity.recovery.endpoint/pom.xml index f2c2e38478..803fc34fe6 100644 --- a/components/org.wso2.carbon.identity.recovery.endpoint/pom.xml +++ b/components/org.wso2.carbon.identity.recovery.endpoint/pom.xml @@ -5,7 +5,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.66 + 1.8.67-SNAPSHOT ../../pom.xml diff --git a/components/org.wso2.carbon.identity.recovery.ui/pom.xml b/components/org.wso2.carbon.identity.recovery.ui/pom.xml index 56722879b4..2aa2e4d61c 100644 --- a/components/org.wso2.carbon.identity.recovery.ui/pom.xml +++ b/components/org.wso2.carbon.identity.recovery.ui/pom.xml @@ -18,7 +18,7 @@ identity-governance org.wso2.carbon.identity.governance - 1.8.66 + 1.8.67-SNAPSHOT ../../pom.xml diff --git a/components/org.wso2.carbon.identity.recovery/pom.xml b/components/org.wso2.carbon.identity.recovery/pom.xml index 918ad7c295..3d39409ece 100644 --- a/components/org.wso2.carbon.identity.recovery/pom.xml +++ b/components/org.wso2.carbon.identity.recovery/pom.xml @@ -18,7 +18,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.66 + 1.8.67-SNAPSHOT ../../pom.xml diff --git a/components/org.wso2.carbon.identity.tenant.resource.manager/pom.xml b/components/org.wso2.carbon.identity.tenant.resource.manager/pom.xml index 67cb8febdf..fce1911a1b 100644 --- a/components/org.wso2.carbon.identity.tenant.resource.manager/pom.xml +++ b/components/org.wso2.carbon.identity.tenant.resource.manager/pom.xml @@ -22,7 +22,7 @@ identity-governance org.wso2.carbon.identity.governance - 1.8.66 + 1.8.67-SNAPSHOT ../../pom.xml diff --git a/components/org.wso2.carbon.identity.user.endpoint/pom.xml b/components/org.wso2.carbon.identity.user.endpoint/pom.xml index 5d150e8552..c45312d439 100644 --- a/components/org.wso2.carbon.identity.user.endpoint/pom.xml +++ b/components/org.wso2.carbon.identity.user.endpoint/pom.xml @@ -5,7 +5,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.66 + 1.8.67-SNAPSHOT ../../pom.xml diff --git a/components/org.wso2.carbon.identity.user.export.core/pom.xml b/components/org.wso2.carbon.identity.user.export.core/pom.xml index 53db40f70e..434d769e25 100644 --- a/components/org.wso2.carbon.identity.user.export.core/pom.xml +++ b/components/org.wso2.carbon.identity.user.export.core/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.66 + 1.8.67-SNAPSHOT ../../pom.xml diff --git a/components/org.wso2.carbon.identity.user.rename.core/pom.xml b/components/org.wso2.carbon.identity.user.rename.core/pom.xml index 8033fe4603..7682b065cb 100644 --- a/components/org.wso2.carbon.identity.user.rename.core/pom.xml +++ b/components/org.wso2.carbon.identity.user.rename.core/pom.xml @@ -20,7 +20,7 @@ identity-governance org.wso2.carbon.identity.governance - 1.8.66 + 1.8.67-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/features/org.wso2.carbon.identity.account.suspension.notification.task.server.feature/pom.xml b/features/org.wso2.carbon.identity.account.suspension.notification.task.server.feature/pom.xml index 290cfe8f70..7b6d207c51 100644 --- a/features/org.wso2.carbon.identity.account.suspension.notification.task.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.account.suspension.notification.task.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance ../../pom.xml - 1.8.66 + 1.8.67-SNAPSHOT 4.0.0 diff --git a/features/org.wso2.carbon.identity.auth.attribute.handler.server.feature/pom.xml b/features/org.wso2.carbon.identity.auth.attribute.handler.server.feature/pom.xml index 3c3ee48a19..b4f6654767 100644 --- a/features/org.wso2.carbon.identity.auth.attribute.handler.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.auth.attribute.handler.server.feature/pom.xml @@ -22,7 +22,7 @@ org.wso2.carbon.identity.governance identity-governance ../../pom.xml - 1.8.66 + 1.8.67-SNAPSHOT 4.0.0 diff --git a/features/org.wso2.carbon.identity.captcha.server.feature/pom.xml b/features/org.wso2.carbon.identity.captcha.server.feature/pom.xml index 73994cfce7..0d79c4ff45 100644 --- a/features/org.wso2.carbon.identity.captcha.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.captcha.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance ../../pom.xml - 1.8.66 + 1.8.67-SNAPSHOT 4.0.0 diff --git a/features/org.wso2.carbon.identity.governance.feature/pom.xml b/features/org.wso2.carbon.identity.governance.feature/pom.xml index 4da7fd663c..8ce4b95c45 100644 --- a/features/org.wso2.carbon.identity.governance.feature/pom.xml +++ b/features/org.wso2.carbon.identity.governance.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.66 + 1.8.67-SNAPSHOT ../../pom.xml diff --git a/features/org.wso2.carbon.identity.governance.server.feature/pom.xml b/features/org.wso2.carbon.identity.governance.server.feature/pom.xml index 6b6817dc52..22162090b6 100644 --- a/features/org.wso2.carbon.identity.governance.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.governance.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance ../../pom.xml - 1.8.66 + 1.8.67-SNAPSHOT 4.0.0 diff --git a/features/org.wso2.carbon.identity.idle.account.identification.server.feature/pom.xml b/features/org.wso2.carbon.identity.idle.account.identification.server.feature/pom.xml index d2de4852d5..fe967ce49b 100644 --- a/features/org.wso2.carbon.identity.idle.account.identification.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.idle.account.identification.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance ../../pom.xml - 1.8.66 + 1.8.67-SNAPSHOT 4.0.0 diff --git a/features/org.wso2.carbon.identity.multi.attribute.login.service.server.feature/pom.xml b/features/org.wso2.carbon.identity.multi.attribute.login.service.server.feature/pom.xml index 81b2ddbe0e..ad0b43460f 100644 --- a/features/org.wso2.carbon.identity.multi.attribute.login.service.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.multi.attribute.login.service.server.feature/pom.xml @@ -3,7 +3,7 @@ identity-governance org.wso2.carbon.identity.governance - 1.8.66 + 1.8.67-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/features/org.wso2.carbon.identity.password.expiry.server.feature/pom.xml b/features/org.wso2.carbon.identity.password.expiry.server.feature/pom.xml index 2e5b683960..cccbb199c2 100644 --- a/features/org.wso2.carbon.identity.password.expiry.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.password.expiry.server.feature/pom.xml @@ -22,7 +22,7 @@ org.wso2.carbon.identity.governance identity-governance ../../pom.xml - 1.8.66 + 1.8.67-SNAPSHOT 4.0.0 diff --git a/features/org.wso2.carbon.identity.password.history.server.feature/pom.xml b/features/org.wso2.carbon.identity.password.history.server.feature/pom.xml index d99315a1f0..bf9668063d 100644 --- a/features/org.wso2.carbon.identity.password.history.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.password.history.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance ../../pom.xml - 1.8.66 + 1.8.67-SNAPSHOT 4.0.0 diff --git a/features/org.wso2.carbon.identity.password.policy.server.feature/pom.xml b/features/org.wso2.carbon.identity.password.policy.server.feature/pom.xml index fa567135ca..12111994ce 100644 --- a/features/org.wso2.carbon.identity.password.policy.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.password.policy.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance ../../pom.xml - 1.8.66 + 1.8.67-SNAPSHOT 4.0.0 diff --git a/features/org.wso2.carbon.identity.piicontroller.server.feature/pom.xml b/features/org.wso2.carbon.identity.piicontroller.server.feature/pom.xml index 874dd8a29c..ac1c7e66ce 100644 --- a/features/org.wso2.carbon.identity.piicontroller.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.piicontroller.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance ../../pom.xml - 1.8.66 + 1.8.67-SNAPSHOT 4.0.0 diff --git a/features/org.wso2.carbon.identity.recovery.server.feature/pom.xml b/features/org.wso2.carbon.identity.recovery.server.feature/pom.xml index 2f9ba8fd5d..e23f6a549c 100644 --- a/features/org.wso2.carbon.identity.recovery.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.recovery.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance ../../pom.xml - 1.8.66 + 1.8.67-SNAPSHOT 4.0.0 diff --git a/features/org.wso2.carbon.identity.recovery.ui.feature/pom.xml b/features/org.wso2.carbon.identity.recovery.ui.feature/pom.xml index 6891e0dc38..00ab362af8 100644 --- a/features/org.wso2.carbon.identity.recovery.ui.feature/pom.xml +++ b/features/org.wso2.carbon.identity.recovery.ui.feature/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.66 + 1.8.67-SNAPSHOT ../../pom.xml diff --git a/features/org.wso2.carbon.identity.tenant.resource.manager.feature/pom.xml b/features/org.wso2.carbon.identity.tenant.resource.manager.feature/pom.xml index 39b1fb13d1..341275cc16 100644 --- a/features/org.wso2.carbon.identity.tenant.resource.manager.feature/pom.xml +++ b/features/org.wso2.carbon.identity.tenant.resource.manager.feature/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.66 + 1.8.67-SNAPSHOT ../../pom.xml diff --git a/features/org.wso2.carbon.identity.user.server.feature/pom.xml b/features/org.wso2.carbon.identity.user.server.feature/pom.xml index be3ea991bc..0d97546cac 100644 --- a/features/org.wso2.carbon.identity.user.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.user.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance ../../pom.xml - 1.8.66 + 1.8.67-SNAPSHOT 4.0.0 diff --git a/pom.xml b/pom.xml index 644d865ecc..8202c8d0a9 100644 --- a/pom.xml +++ b/pom.xml @@ -18,7 +18,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.66 + 1.8.67-SNAPSHOT 4.0.0 pom WSO2 Carbon - Governance Module @@ -37,7 +37,7 @@ https://github.com/wso2-extensions/identity-governance.git scm:git:https://github.com/wso2-extensions/identity-governance.git scm:git:https://github.com/wso2-extensions/identity-governance.git - v1.8.66 + v1.1.0-SNAPSHOT diff --git a/service-stubs/identity/org.wso2.carbon.identity.recovery.stub/pom.xml b/service-stubs/identity/org.wso2.carbon.identity.recovery.stub/pom.xml index 08dfea1825..69901e4f05 100644 --- a/service-stubs/identity/org.wso2.carbon.identity.recovery.stub/pom.xml +++ b/service-stubs/identity/org.wso2.carbon.identity.recovery.stub/pom.xml @@ -19,7 +19,7 @@ org.wso2.carbon.identity.governance carbon-service-stubs - 1.8.66 + 1.8.67-SNAPSHOT ../pom.xml diff --git a/service-stubs/identity/pom.xml b/service-stubs/identity/pom.xml index e939a2f4cd..3fa6493f98 100644 --- a/service-stubs/identity/pom.xml +++ b/service-stubs/identity/pom.xml @@ -19,7 +19,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.66 + 1.8.67-SNAPSHOT ../../pom.xml From 84312880339b5f0b99a80982326043936c2a294e Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 15 Sep 2023 04:21:07 +0000 Subject: [PATCH 25/31] [WSO2 Release] [Jenkins #2541] [Release 1.8.67] prepare release v1.8.67 --- .../pom.xml | 2 +- .../org.wso2.carbon.identity.api.user.governance/pom.xml | 4 ++-- components/org.wso2.carbon.identity.api.user.recovery/pom.xml | 4 ++-- .../org.wso2.carbon.identity.auth.attribute.handler/pom.xml | 2 +- components/org.wso2.carbon.identity.captcha/pom.xml | 2 +- components/org.wso2.carbon.identity.governance/pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../org.wso2.carbon.identity.multi.attribute.login/pom.xml | 2 +- components/org.wso2.carbon.identity.password.expiry/pom.xml | 2 +- components/org.wso2.carbon.identity.password.history/pom.xml | 2 +- components/org.wso2.carbon.identity.password.policy/pom.xml | 2 +- components/org.wso2.carbon.identity.piicontroller/pom.xml | 2 +- components/org.wso2.carbon.identity.recovery.endpoint/pom.xml | 2 +- components/org.wso2.carbon.identity.recovery.ui/pom.xml | 2 +- components/org.wso2.carbon.identity.recovery/pom.xml | 2 +- .../org.wso2.carbon.identity.tenant.resource.manager/pom.xml | 2 +- components/org.wso2.carbon.identity.user.endpoint/pom.xml | 2 +- components/org.wso2.carbon.identity.user.export.core/pom.xml | 2 +- components/org.wso2.carbon.identity.user.rename.core/pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../org.wso2.carbon.identity.captcha.server.feature/pom.xml | 2 +- features/org.wso2.carbon.identity.governance.feature/pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../org.wso2.carbon.identity.recovery.server.feature/pom.xml | 2 +- features/org.wso2.carbon.identity.recovery.ui.feature/pom.xml | 2 +- .../pom.xml | 2 +- features/org.wso2.carbon.identity.user.server.feature/pom.xml | 2 +- pom.xml | 4 ++-- .../identity/org.wso2.carbon.identity.recovery.stub/pom.xml | 2 +- service-stubs/identity/pom.xml | 2 +- 39 files changed, 42 insertions(+), 42 deletions(-) diff --git a/components/org.wso2.carbon.identity.account.suspension.notification.task/pom.xml b/components/org.wso2.carbon.identity.account.suspension.notification.task/pom.xml index bdcfa91d2a..503fea646e 100644 --- a/components/org.wso2.carbon.identity.account.suspension.notification.task/pom.xml +++ b/components/org.wso2.carbon.identity.account.suspension.notification.task/pom.xml @@ -20,7 +20,7 @@ identity-governance org.wso2.carbon.identity.governance - 1.8.67-SNAPSHOT + 1.8.67 ../../pom.xml diff --git a/components/org.wso2.carbon.identity.api.user.governance/pom.xml b/components/org.wso2.carbon.identity.api.user.governance/pom.xml index 019118e436..4825c6c872 100644 --- a/components/org.wso2.carbon.identity.api.user.governance/pom.xml +++ b/components/org.wso2.carbon.identity.api.user.governance/pom.xml @@ -23,12 +23,12 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.67-SNAPSHOT + 1.8.67 ../.. org.wso2.carbon.identity.api.user.governance - 1.8.67-SNAPSHOT + 1.8.67 jar WSO2 Carbon - User Rest Governance API WSO2 Carbon - User Rest Governance API diff --git a/components/org.wso2.carbon.identity.api.user.recovery/pom.xml b/components/org.wso2.carbon.identity.api.user.recovery/pom.xml index 181f52210e..9dcf07771b 100644 --- a/components/org.wso2.carbon.identity.api.user.recovery/pom.xml +++ b/components/org.wso2.carbon.identity.api.user.recovery/pom.xml @@ -23,12 +23,12 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.67-SNAPSHOT + 1.8.67 ../.. org.wso2.carbon.identity.api.user.recovery - 1.8.67-SNAPSHOT + 1.8.67 jar WSO2 Carbon - Identity Management Recovery Rest API WSO2 Carbon - Identity Management Recovery Rest API diff --git a/components/org.wso2.carbon.identity.auth.attribute.handler/pom.xml b/components/org.wso2.carbon.identity.auth.attribute.handler/pom.xml index d0632232e5..821fd3eedc 100644 --- a/components/org.wso2.carbon.identity.auth.attribute.handler/pom.xml +++ b/components/org.wso2.carbon.identity.auth.attribute.handler/pom.xml @@ -22,7 +22,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.67-SNAPSHOT + 1.8.67 ../../pom.xml diff --git a/components/org.wso2.carbon.identity.captcha/pom.xml b/components/org.wso2.carbon.identity.captcha/pom.xml index 5c07f7c845..1cff907ce3 100644 --- a/components/org.wso2.carbon.identity.captcha/pom.xml +++ b/components/org.wso2.carbon.identity.captcha/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.67-SNAPSHOT + 1.8.67 ../../pom.xml diff --git a/components/org.wso2.carbon.identity.governance/pom.xml b/components/org.wso2.carbon.identity.governance/pom.xml index 3bfdb2b6d4..5171e34a29 100644 --- a/components/org.wso2.carbon.identity.governance/pom.xml +++ b/components/org.wso2.carbon.identity.governance/pom.xml @@ -18,7 +18,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.67-SNAPSHOT + 1.8.67 ../../pom.xml diff --git a/components/org.wso2.carbon.identity.idle.account.identification/pom.xml b/components/org.wso2.carbon.identity.idle.account.identification/pom.xml index b29c53a5c7..35a22f2d6a 100644 --- a/components/org.wso2.carbon.identity.idle.account.identification/pom.xml +++ b/components/org.wso2.carbon.identity.idle.account.identification/pom.xml @@ -18,7 +18,7 @@ identity-governance org.wso2.carbon.identity.governance - 1.8.67-SNAPSHOT + 1.8.67 ../../pom.xml 4.0.0 diff --git a/components/org.wso2.carbon.identity.multi.attribute.login/org.wso2.carbon.identity.multi.attribute.login.resolver.regex/pom.xml b/components/org.wso2.carbon.identity.multi.attribute.login/org.wso2.carbon.identity.multi.attribute.login.resolver.regex/pom.xml index e3059753a1..264d3429d1 100644 --- a/components/org.wso2.carbon.identity.multi.attribute.login/org.wso2.carbon.identity.multi.attribute.login.resolver.regex/pom.xml +++ b/components/org.wso2.carbon.identity.multi.attribute.login/org.wso2.carbon.identity.multi.attribute.login.resolver.regex/pom.xml @@ -21,7 +21,7 @@ identity-governance org.wso2.carbon.identity.governance - 1.8.67-SNAPSHOT + 1.8.67 ../../../pom.xml 4.0.0 diff --git a/components/org.wso2.carbon.identity.multi.attribute.login/org.wso2.carbon.identity.multi.attribute.login.service/pom.xml b/components/org.wso2.carbon.identity.multi.attribute.login/org.wso2.carbon.identity.multi.attribute.login.service/pom.xml index 040adddfa7..bc69ffea6a 100644 --- a/components/org.wso2.carbon.identity.multi.attribute.login/org.wso2.carbon.identity.multi.attribute.login.service/pom.xml +++ b/components/org.wso2.carbon.identity.multi.attribute.login/org.wso2.carbon.identity.multi.attribute.login.service/pom.xml @@ -21,7 +21,7 @@ identity-governance org.wso2.carbon.identity.governance - 1.8.67-SNAPSHOT + 1.8.67 ../../../pom.xml 4.0.0 diff --git a/components/org.wso2.carbon.identity.multi.attribute.login/pom.xml b/components/org.wso2.carbon.identity.multi.attribute.login/pom.xml index cf4de86c55..a6c5a4d54e 100644 --- a/components/org.wso2.carbon.identity.multi.attribute.login/pom.xml +++ b/components/org.wso2.carbon.identity.multi.attribute.login/pom.xml @@ -21,7 +21,7 @@ identity-governance org.wso2.carbon.identity.governance - 1.8.67-SNAPSHOT + 1.8.67 ../../pom.xml 4.0.0 diff --git a/components/org.wso2.carbon.identity.password.expiry/pom.xml b/components/org.wso2.carbon.identity.password.expiry/pom.xml index 665cf57f83..639f6a4e5f 100644 --- a/components/org.wso2.carbon.identity.password.expiry/pom.xml +++ b/components/org.wso2.carbon.identity.password.expiry/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.67-SNAPSHOT + 1.8.67 ../../pom.xml diff --git a/components/org.wso2.carbon.identity.password.history/pom.xml b/components/org.wso2.carbon.identity.password.history/pom.xml index 67d072ba13..58de0ccb50 100644 --- a/components/org.wso2.carbon.identity.password.history/pom.xml +++ b/components/org.wso2.carbon.identity.password.history/pom.xml @@ -18,7 +18,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.67-SNAPSHOT + 1.8.67 ../../pom.xml diff --git a/components/org.wso2.carbon.identity.password.policy/pom.xml b/components/org.wso2.carbon.identity.password.policy/pom.xml index f144af7828..70c1a1adc1 100644 --- a/components/org.wso2.carbon.identity.password.policy/pom.xml +++ b/components/org.wso2.carbon.identity.password.policy/pom.xml @@ -18,7 +18,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.67-SNAPSHOT + 1.8.67 ../../pom.xml diff --git a/components/org.wso2.carbon.identity.piicontroller/pom.xml b/components/org.wso2.carbon.identity.piicontroller/pom.xml index b41f4b10ec..d55dc252a0 100644 --- a/components/org.wso2.carbon.identity.piicontroller/pom.xml +++ b/components/org.wso2.carbon.identity.piicontroller/pom.xml @@ -19,7 +19,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.67-SNAPSHOT + 1.8.67 ../../pom.xml diff --git a/components/org.wso2.carbon.identity.recovery.endpoint/pom.xml b/components/org.wso2.carbon.identity.recovery.endpoint/pom.xml index 803fc34fe6..3474a74c53 100644 --- a/components/org.wso2.carbon.identity.recovery.endpoint/pom.xml +++ b/components/org.wso2.carbon.identity.recovery.endpoint/pom.xml @@ -5,7 +5,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.67-SNAPSHOT + 1.8.67 ../../pom.xml diff --git a/components/org.wso2.carbon.identity.recovery.ui/pom.xml b/components/org.wso2.carbon.identity.recovery.ui/pom.xml index 2aa2e4d61c..74cfd6e029 100644 --- a/components/org.wso2.carbon.identity.recovery.ui/pom.xml +++ b/components/org.wso2.carbon.identity.recovery.ui/pom.xml @@ -18,7 +18,7 @@ identity-governance org.wso2.carbon.identity.governance - 1.8.67-SNAPSHOT + 1.8.67 ../../pom.xml diff --git a/components/org.wso2.carbon.identity.recovery/pom.xml b/components/org.wso2.carbon.identity.recovery/pom.xml index 3d39409ece..97ffebcfd0 100644 --- a/components/org.wso2.carbon.identity.recovery/pom.xml +++ b/components/org.wso2.carbon.identity.recovery/pom.xml @@ -18,7 +18,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.67-SNAPSHOT + 1.8.67 ../../pom.xml diff --git a/components/org.wso2.carbon.identity.tenant.resource.manager/pom.xml b/components/org.wso2.carbon.identity.tenant.resource.manager/pom.xml index fce1911a1b..8c210bdd4d 100644 --- a/components/org.wso2.carbon.identity.tenant.resource.manager/pom.xml +++ b/components/org.wso2.carbon.identity.tenant.resource.manager/pom.xml @@ -22,7 +22,7 @@ identity-governance org.wso2.carbon.identity.governance - 1.8.67-SNAPSHOT + 1.8.67 ../../pom.xml diff --git a/components/org.wso2.carbon.identity.user.endpoint/pom.xml b/components/org.wso2.carbon.identity.user.endpoint/pom.xml index c45312d439..9b004f96dc 100644 --- a/components/org.wso2.carbon.identity.user.endpoint/pom.xml +++ b/components/org.wso2.carbon.identity.user.endpoint/pom.xml @@ -5,7 +5,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.67-SNAPSHOT + 1.8.67 ../../pom.xml diff --git a/components/org.wso2.carbon.identity.user.export.core/pom.xml b/components/org.wso2.carbon.identity.user.export.core/pom.xml index 434d769e25..d068c06289 100644 --- a/components/org.wso2.carbon.identity.user.export.core/pom.xml +++ b/components/org.wso2.carbon.identity.user.export.core/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.67-SNAPSHOT + 1.8.67 ../../pom.xml diff --git a/components/org.wso2.carbon.identity.user.rename.core/pom.xml b/components/org.wso2.carbon.identity.user.rename.core/pom.xml index 7682b065cb..43948485b6 100644 --- a/components/org.wso2.carbon.identity.user.rename.core/pom.xml +++ b/components/org.wso2.carbon.identity.user.rename.core/pom.xml @@ -20,7 +20,7 @@ identity-governance org.wso2.carbon.identity.governance - 1.8.67-SNAPSHOT + 1.8.67 ../../pom.xml 4.0.0 diff --git a/features/org.wso2.carbon.identity.account.suspension.notification.task.server.feature/pom.xml b/features/org.wso2.carbon.identity.account.suspension.notification.task.server.feature/pom.xml index 7b6d207c51..f49359f857 100644 --- a/features/org.wso2.carbon.identity.account.suspension.notification.task.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.account.suspension.notification.task.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance ../../pom.xml - 1.8.67-SNAPSHOT + 1.8.67 4.0.0 diff --git a/features/org.wso2.carbon.identity.auth.attribute.handler.server.feature/pom.xml b/features/org.wso2.carbon.identity.auth.attribute.handler.server.feature/pom.xml index b4f6654767..2005bb9e76 100644 --- a/features/org.wso2.carbon.identity.auth.attribute.handler.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.auth.attribute.handler.server.feature/pom.xml @@ -22,7 +22,7 @@ org.wso2.carbon.identity.governance identity-governance ../../pom.xml - 1.8.67-SNAPSHOT + 1.8.67 4.0.0 diff --git a/features/org.wso2.carbon.identity.captcha.server.feature/pom.xml b/features/org.wso2.carbon.identity.captcha.server.feature/pom.xml index 0d79c4ff45..177ad1c7d3 100644 --- a/features/org.wso2.carbon.identity.captcha.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.captcha.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance ../../pom.xml - 1.8.67-SNAPSHOT + 1.8.67 4.0.0 diff --git a/features/org.wso2.carbon.identity.governance.feature/pom.xml b/features/org.wso2.carbon.identity.governance.feature/pom.xml index 8ce4b95c45..509152e1d8 100644 --- a/features/org.wso2.carbon.identity.governance.feature/pom.xml +++ b/features/org.wso2.carbon.identity.governance.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.67-SNAPSHOT + 1.8.67 ../../pom.xml diff --git a/features/org.wso2.carbon.identity.governance.server.feature/pom.xml b/features/org.wso2.carbon.identity.governance.server.feature/pom.xml index 22162090b6..42be2deb1e 100644 --- a/features/org.wso2.carbon.identity.governance.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.governance.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance ../../pom.xml - 1.8.67-SNAPSHOT + 1.8.67 4.0.0 diff --git a/features/org.wso2.carbon.identity.idle.account.identification.server.feature/pom.xml b/features/org.wso2.carbon.identity.idle.account.identification.server.feature/pom.xml index fe967ce49b..2e201bf336 100644 --- a/features/org.wso2.carbon.identity.idle.account.identification.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.idle.account.identification.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance ../../pom.xml - 1.8.67-SNAPSHOT + 1.8.67 4.0.0 diff --git a/features/org.wso2.carbon.identity.multi.attribute.login.service.server.feature/pom.xml b/features/org.wso2.carbon.identity.multi.attribute.login.service.server.feature/pom.xml index ad0b43460f..d3042a7ce5 100644 --- a/features/org.wso2.carbon.identity.multi.attribute.login.service.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.multi.attribute.login.service.server.feature/pom.xml @@ -3,7 +3,7 @@ identity-governance org.wso2.carbon.identity.governance - 1.8.67-SNAPSHOT + 1.8.67 ../../pom.xml 4.0.0 diff --git a/features/org.wso2.carbon.identity.password.expiry.server.feature/pom.xml b/features/org.wso2.carbon.identity.password.expiry.server.feature/pom.xml index cccbb199c2..219e4ba300 100644 --- a/features/org.wso2.carbon.identity.password.expiry.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.password.expiry.server.feature/pom.xml @@ -22,7 +22,7 @@ org.wso2.carbon.identity.governance identity-governance ../../pom.xml - 1.8.67-SNAPSHOT + 1.8.67 4.0.0 diff --git a/features/org.wso2.carbon.identity.password.history.server.feature/pom.xml b/features/org.wso2.carbon.identity.password.history.server.feature/pom.xml index bf9668063d..f62a74a5e2 100644 --- a/features/org.wso2.carbon.identity.password.history.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.password.history.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance ../../pom.xml - 1.8.67-SNAPSHOT + 1.8.67 4.0.0 diff --git a/features/org.wso2.carbon.identity.password.policy.server.feature/pom.xml b/features/org.wso2.carbon.identity.password.policy.server.feature/pom.xml index 12111994ce..3d7d2f089b 100644 --- a/features/org.wso2.carbon.identity.password.policy.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.password.policy.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance ../../pom.xml - 1.8.67-SNAPSHOT + 1.8.67 4.0.0 diff --git a/features/org.wso2.carbon.identity.piicontroller.server.feature/pom.xml b/features/org.wso2.carbon.identity.piicontroller.server.feature/pom.xml index ac1c7e66ce..af5fdf8c4e 100644 --- a/features/org.wso2.carbon.identity.piicontroller.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.piicontroller.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance ../../pom.xml - 1.8.67-SNAPSHOT + 1.8.67 4.0.0 diff --git a/features/org.wso2.carbon.identity.recovery.server.feature/pom.xml b/features/org.wso2.carbon.identity.recovery.server.feature/pom.xml index e23f6a549c..bd0e8810df 100644 --- a/features/org.wso2.carbon.identity.recovery.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.recovery.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance ../../pom.xml - 1.8.67-SNAPSHOT + 1.8.67 4.0.0 diff --git a/features/org.wso2.carbon.identity.recovery.ui.feature/pom.xml b/features/org.wso2.carbon.identity.recovery.ui.feature/pom.xml index 00ab362af8..352d02b217 100644 --- a/features/org.wso2.carbon.identity.recovery.ui.feature/pom.xml +++ b/features/org.wso2.carbon.identity.recovery.ui.feature/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.67-SNAPSHOT + 1.8.67 ../../pom.xml diff --git a/features/org.wso2.carbon.identity.tenant.resource.manager.feature/pom.xml b/features/org.wso2.carbon.identity.tenant.resource.manager.feature/pom.xml index 341275cc16..880b655ae8 100644 --- a/features/org.wso2.carbon.identity.tenant.resource.manager.feature/pom.xml +++ b/features/org.wso2.carbon.identity.tenant.resource.manager.feature/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.67-SNAPSHOT + 1.8.67 ../../pom.xml diff --git a/features/org.wso2.carbon.identity.user.server.feature/pom.xml b/features/org.wso2.carbon.identity.user.server.feature/pom.xml index 0d97546cac..71a379457d 100644 --- a/features/org.wso2.carbon.identity.user.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.user.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance ../../pom.xml - 1.8.67-SNAPSHOT + 1.8.67 4.0.0 diff --git a/pom.xml b/pom.xml index 8202c8d0a9..ec2409590f 100644 --- a/pom.xml +++ b/pom.xml @@ -18,7 +18,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.67-SNAPSHOT + 1.8.67 4.0.0 pom WSO2 Carbon - Governance Module @@ -37,7 +37,7 @@ https://github.com/wso2-extensions/identity-governance.git scm:git:https://github.com/wso2-extensions/identity-governance.git scm:git:https://github.com/wso2-extensions/identity-governance.git - v1.1.0-SNAPSHOT + v1.8.67 diff --git a/service-stubs/identity/org.wso2.carbon.identity.recovery.stub/pom.xml b/service-stubs/identity/org.wso2.carbon.identity.recovery.stub/pom.xml index 69901e4f05..0e01c677e9 100644 --- a/service-stubs/identity/org.wso2.carbon.identity.recovery.stub/pom.xml +++ b/service-stubs/identity/org.wso2.carbon.identity.recovery.stub/pom.xml @@ -19,7 +19,7 @@ org.wso2.carbon.identity.governance carbon-service-stubs - 1.8.67-SNAPSHOT + 1.8.67 ../pom.xml diff --git a/service-stubs/identity/pom.xml b/service-stubs/identity/pom.xml index 3fa6493f98..77c286ccb1 100644 --- a/service-stubs/identity/pom.xml +++ b/service-stubs/identity/pom.xml @@ -19,7 +19,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.67-SNAPSHOT + 1.8.67 ../../pom.xml From fdb9a1e75ca5c3e521b1ef036f5c129a5ba291cc Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 15 Sep 2023 04:21:09 +0000 Subject: [PATCH 26/31] [WSO2 Release] [Jenkins #2541] [Release 1.8.67] prepare for next development iteration --- .../pom.xml | 2 +- .../org.wso2.carbon.identity.api.user.governance/pom.xml | 4 ++-- components/org.wso2.carbon.identity.api.user.recovery/pom.xml | 4 ++-- .../org.wso2.carbon.identity.auth.attribute.handler/pom.xml | 2 +- components/org.wso2.carbon.identity.captcha/pom.xml | 2 +- components/org.wso2.carbon.identity.governance/pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../org.wso2.carbon.identity.multi.attribute.login/pom.xml | 2 +- components/org.wso2.carbon.identity.password.expiry/pom.xml | 2 +- components/org.wso2.carbon.identity.password.history/pom.xml | 2 +- components/org.wso2.carbon.identity.password.policy/pom.xml | 2 +- components/org.wso2.carbon.identity.piicontroller/pom.xml | 2 +- components/org.wso2.carbon.identity.recovery.endpoint/pom.xml | 2 +- components/org.wso2.carbon.identity.recovery.ui/pom.xml | 2 +- components/org.wso2.carbon.identity.recovery/pom.xml | 2 +- .../org.wso2.carbon.identity.tenant.resource.manager/pom.xml | 2 +- components/org.wso2.carbon.identity.user.endpoint/pom.xml | 2 +- components/org.wso2.carbon.identity.user.export.core/pom.xml | 2 +- components/org.wso2.carbon.identity.user.rename.core/pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../org.wso2.carbon.identity.captcha.server.feature/pom.xml | 2 +- features/org.wso2.carbon.identity.governance.feature/pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../org.wso2.carbon.identity.recovery.server.feature/pom.xml | 2 +- features/org.wso2.carbon.identity.recovery.ui.feature/pom.xml | 2 +- .../pom.xml | 2 +- features/org.wso2.carbon.identity.user.server.feature/pom.xml | 2 +- pom.xml | 4 ++-- .../identity/org.wso2.carbon.identity.recovery.stub/pom.xml | 2 +- service-stubs/identity/pom.xml | 2 +- 39 files changed, 42 insertions(+), 42 deletions(-) diff --git a/components/org.wso2.carbon.identity.account.suspension.notification.task/pom.xml b/components/org.wso2.carbon.identity.account.suspension.notification.task/pom.xml index 503fea646e..c13dd2146f 100644 --- a/components/org.wso2.carbon.identity.account.suspension.notification.task/pom.xml +++ b/components/org.wso2.carbon.identity.account.suspension.notification.task/pom.xml @@ -20,7 +20,7 @@ identity-governance org.wso2.carbon.identity.governance - 1.8.67 + 1.8.68-SNAPSHOT ../../pom.xml diff --git a/components/org.wso2.carbon.identity.api.user.governance/pom.xml b/components/org.wso2.carbon.identity.api.user.governance/pom.xml index 4825c6c872..19a75be55f 100644 --- a/components/org.wso2.carbon.identity.api.user.governance/pom.xml +++ b/components/org.wso2.carbon.identity.api.user.governance/pom.xml @@ -23,12 +23,12 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.67 + 1.8.68-SNAPSHOT ../.. org.wso2.carbon.identity.api.user.governance - 1.8.67 + 1.8.68-SNAPSHOT jar WSO2 Carbon - User Rest Governance API WSO2 Carbon - User Rest Governance API diff --git a/components/org.wso2.carbon.identity.api.user.recovery/pom.xml b/components/org.wso2.carbon.identity.api.user.recovery/pom.xml index 9dcf07771b..98ac3ad3db 100644 --- a/components/org.wso2.carbon.identity.api.user.recovery/pom.xml +++ b/components/org.wso2.carbon.identity.api.user.recovery/pom.xml @@ -23,12 +23,12 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.67 + 1.8.68-SNAPSHOT ../.. org.wso2.carbon.identity.api.user.recovery - 1.8.67 + 1.8.68-SNAPSHOT jar WSO2 Carbon - Identity Management Recovery Rest API WSO2 Carbon - Identity Management Recovery Rest API diff --git a/components/org.wso2.carbon.identity.auth.attribute.handler/pom.xml b/components/org.wso2.carbon.identity.auth.attribute.handler/pom.xml index 821fd3eedc..a2f234dc75 100644 --- a/components/org.wso2.carbon.identity.auth.attribute.handler/pom.xml +++ b/components/org.wso2.carbon.identity.auth.attribute.handler/pom.xml @@ -22,7 +22,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.67 + 1.8.68-SNAPSHOT ../../pom.xml diff --git a/components/org.wso2.carbon.identity.captcha/pom.xml b/components/org.wso2.carbon.identity.captcha/pom.xml index 1cff907ce3..d3e5b314c0 100644 --- a/components/org.wso2.carbon.identity.captcha/pom.xml +++ b/components/org.wso2.carbon.identity.captcha/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.67 + 1.8.68-SNAPSHOT ../../pom.xml diff --git a/components/org.wso2.carbon.identity.governance/pom.xml b/components/org.wso2.carbon.identity.governance/pom.xml index 5171e34a29..b618d5c55d 100644 --- a/components/org.wso2.carbon.identity.governance/pom.xml +++ b/components/org.wso2.carbon.identity.governance/pom.xml @@ -18,7 +18,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.67 + 1.8.68-SNAPSHOT ../../pom.xml diff --git a/components/org.wso2.carbon.identity.idle.account.identification/pom.xml b/components/org.wso2.carbon.identity.idle.account.identification/pom.xml index 35a22f2d6a..f34b93c6f3 100644 --- a/components/org.wso2.carbon.identity.idle.account.identification/pom.xml +++ b/components/org.wso2.carbon.identity.idle.account.identification/pom.xml @@ -18,7 +18,7 @@ identity-governance org.wso2.carbon.identity.governance - 1.8.67 + 1.8.68-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/components/org.wso2.carbon.identity.multi.attribute.login/org.wso2.carbon.identity.multi.attribute.login.resolver.regex/pom.xml b/components/org.wso2.carbon.identity.multi.attribute.login/org.wso2.carbon.identity.multi.attribute.login.resolver.regex/pom.xml index 264d3429d1..5477c4af57 100644 --- a/components/org.wso2.carbon.identity.multi.attribute.login/org.wso2.carbon.identity.multi.attribute.login.resolver.regex/pom.xml +++ b/components/org.wso2.carbon.identity.multi.attribute.login/org.wso2.carbon.identity.multi.attribute.login.resolver.regex/pom.xml @@ -21,7 +21,7 @@ identity-governance org.wso2.carbon.identity.governance - 1.8.67 + 1.8.68-SNAPSHOT ../../../pom.xml 4.0.0 diff --git a/components/org.wso2.carbon.identity.multi.attribute.login/org.wso2.carbon.identity.multi.attribute.login.service/pom.xml b/components/org.wso2.carbon.identity.multi.attribute.login/org.wso2.carbon.identity.multi.attribute.login.service/pom.xml index bc69ffea6a..0f3f9b1e9f 100644 --- a/components/org.wso2.carbon.identity.multi.attribute.login/org.wso2.carbon.identity.multi.attribute.login.service/pom.xml +++ b/components/org.wso2.carbon.identity.multi.attribute.login/org.wso2.carbon.identity.multi.attribute.login.service/pom.xml @@ -21,7 +21,7 @@ identity-governance org.wso2.carbon.identity.governance - 1.8.67 + 1.8.68-SNAPSHOT ../../../pom.xml 4.0.0 diff --git a/components/org.wso2.carbon.identity.multi.attribute.login/pom.xml b/components/org.wso2.carbon.identity.multi.attribute.login/pom.xml index a6c5a4d54e..dd1fcffa28 100644 --- a/components/org.wso2.carbon.identity.multi.attribute.login/pom.xml +++ b/components/org.wso2.carbon.identity.multi.attribute.login/pom.xml @@ -21,7 +21,7 @@ identity-governance org.wso2.carbon.identity.governance - 1.8.67 + 1.8.68-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/components/org.wso2.carbon.identity.password.expiry/pom.xml b/components/org.wso2.carbon.identity.password.expiry/pom.xml index 639f6a4e5f..1d8470daae 100644 --- a/components/org.wso2.carbon.identity.password.expiry/pom.xml +++ b/components/org.wso2.carbon.identity.password.expiry/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.67 + 1.8.68-SNAPSHOT ../../pom.xml diff --git a/components/org.wso2.carbon.identity.password.history/pom.xml b/components/org.wso2.carbon.identity.password.history/pom.xml index 58de0ccb50..d7a93d2aef 100644 --- a/components/org.wso2.carbon.identity.password.history/pom.xml +++ b/components/org.wso2.carbon.identity.password.history/pom.xml @@ -18,7 +18,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.67 + 1.8.68-SNAPSHOT ../../pom.xml diff --git a/components/org.wso2.carbon.identity.password.policy/pom.xml b/components/org.wso2.carbon.identity.password.policy/pom.xml index 70c1a1adc1..3a7d07427e 100644 --- a/components/org.wso2.carbon.identity.password.policy/pom.xml +++ b/components/org.wso2.carbon.identity.password.policy/pom.xml @@ -18,7 +18,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.67 + 1.8.68-SNAPSHOT ../../pom.xml diff --git a/components/org.wso2.carbon.identity.piicontroller/pom.xml b/components/org.wso2.carbon.identity.piicontroller/pom.xml index d55dc252a0..d96401efd6 100644 --- a/components/org.wso2.carbon.identity.piicontroller/pom.xml +++ b/components/org.wso2.carbon.identity.piicontroller/pom.xml @@ -19,7 +19,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.67 + 1.8.68-SNAPSHOT ../../pom.xml diff --git a/components/org.wso2.carbon.identity.recovery.endpoint/pom.xml b/components/org.wso2.carbon.identity.recovery.endpoint/pom.xml index 3474a74c53..8e6b043d57 100644 --- a/components/org.wso2.carbon.identity.recovery.endpoint/pom.xml +++ b/components/org.wso2.carbon.identity.recovery.endpoint/pom.xml @@ -5,7 +5,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.67 + 1.8.68-SNAPSHOT ../../pom.xml diff --git a/components/org.wso2.carbon.identity.recovery.ui/pom.xml b/components/org.wso2.carbon.identity.recovery.ui/pom.xml index 74cfd6e029..ffc7f16216 100644 --- a/components/org.wso2.carbon.identity.recovery.ui/pom.xml +++ b/components/org.wso2.carbon.identity.recovery.ui/pom.xml @@ -18,7 +18,7 @@ identity-governance org.wso2.carbon.identity.governance - 1.8.67 + 1.8.68-SNAPSHOT ../../pom.xml diff --git a/components/org.wso2.carbon.identity.recovery/pom.xml b/components/org.wso2.carbon.identity.recovery/pom.xml index 97ffebcfd0..1a8553497d 100644 --- a/components/org.wso2.carbon.identity.recovery/pom.xml +++ b/components/org.wso2.carbon.identity.recovery/pom.xml @@ -18,7 +18,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.67 + 1.8.68-SNAPSHOT ../../pom.xml diff --git a/components/org.wso2.carbon.identity.tenant.resource.manager/pom.xml b/components/org.wso2.carbon.identity.tenant.resource.manager/pom.xml index 8c210bdd4d..7a8b918d47 100644 --- a/components/org.wso2.carbon.identity.tenant.resource.manager/pom.xml +++ b/components/org.wso2.carbon.identity.tenant.resource.manager/pom.xml @@ -22,7 +22,7 @@ identity-governance org.wso2.carbon.identity.governance - 1.8.67 + 1.8.68-SNAPSHOT ../../pom.xml diff --git a/components/org.wso2.carbon.identity.user.endpoint/pom.xml b/components/org.wso2.carbon.identity.user.endpoint/pom.xml index 9b004f96dc..7136f94e21 100644 --- a/components/org.wso2.carbon.identity.user.endpoint/pom.xml +++ b/components/org.wso2.carbon.identity.user.endpoint/pom.xml @@ -5,7 +5,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.67 + 1.8.68-SNAPSHOT ../../pom.xml diff --git a/components/org.wso2.carbon.identity.user.export.core/pom.xml b/components/org.wso2.carbon.identity.user.export.core/pom.xml index d068c06289..f0e7ec1ff2 100644 --- a/components/org.wso2.carbon.identity.user.export.core/pom.xml +++ b/components/org.wso2.carbon.identity.user.export.core/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.67 + 1.8.68-SNAPSHOT ../../pom.xml diff --git a/components/org.wso2.carbon.identity.user.rename.core/pom.xml b/components/org.wso2.carbon.identity.user.rename.core/pom.xml index 43948485b6..6b56878bb5 100644 --- a/components/org.wso2.carbon.identity.user.rename.core/pom.xml +++ b/components/org.wso2.carbon.identity.user.rename.core/pom.xml @@ -20,7 +20,7 @@ identity-governance org.wso2.carbon.identity.governance - 1.8.67 + 1.8.68-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/features/org.wso2.carbon.identity.account.suspension.notification.task.server.feature/pom.xml b/features/org.wso2.carbon.identity.account.suspension.notification.task.server.feature/pom.xml index f49359f857..147061264f 100644 --- a/features/org.wso2.carbon.identity.account.suspension.notification.task.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.account.suspension.notification.task.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance ../../pom.xml - 1.8.67 + 1.8.68-SNAPSHOT 4.0.0 diff --git a/features/org.wso2.carbon.identity.auth.attribute.handler.server.feature/pom.xml b/features/org.wso2.carbon.identity.auth.attribute.handler.server.feature/pom.xml index 2005bb9e76..dc8d85c35a 100644 --- a/features/org.wso2.carbon.identity.auth.attribute.handler.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.auth.attribute.handler.server.feature/pom.xml @@ -22,7 +22,7 @@ org.wso2.carbon.identity.governance identity-governance ../../pom.xml - 1.8.67 + 1.8.68-SNAPSHOT 4.0.0 diff --git a/features/org.wso2.carbon.identity.captcha.server.feature/pom.xml b/features/org.wso2.carbon.identity.captcha.server.feature/pom.xml index 177ad1c7d3..de562382f9 100644 --- a/features/org.wso2.carbon.identity.captcha.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.captcha.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance ../../pom.xml - 1.8.67 + 1.8.68-SNAPSHOT 4.0.0 diff --git a/features/org.wso2.carbon.identity.governance.feature/pom.xml b/features/org.wso2.carbon.identity.governance.feature/pom.xml index 509152e1d8..57292a9f67 100644 --- a/features/org.wso2.carbon.identity.governance.feature/pom.xml +++ b/features/org.wso2.carbon.identity.governance.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.67 + 1.8.68-SNAPSHOT ../../pom.xml diff --git a/features/org.wso2.carbon.identity.governance.server.feature/pom.xml b/features/org.wso2.carbon.identity.governance.server.feature/pom.xml index 42be2deb1e..3a1e559fd5 100644 --- a/features/org.wso2.carbon.identity.governance.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.governance.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance ../../pom.xml - 1.8.67 + 1.8.68-SNAPSHOT 4.0.0 diff --git a/features/org.wso2.carbon.identity.idle.account.identification.server.feature/pom.xml b/features/org.wso2.carbon.identity.idle.account.identification.server.feature/pom.xml index 2e201bf336..73e1a6703b 100644 --- a/features/org.wso2.carbon.identity.idle.account.identification.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.idle.account.identification.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance ../../pom.xml - 1.8.67 + 1.8.68-SNAPSHOT 4.0.0 diff --git a/features/org.wso2.carbon.identity.multi.attribute.login.service.server.feature/pom.xml b/features/org.wso2.carbon.identity.multi.attribute.login.service.server.feature/pom.xml index d3042a7ce5..84fdc4e725 100644 --- a/features/org.wso2.carbon.identity.multi.attribute.login.service.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.multi.attribute.login.service.server.feature/pom.xml @@ -3,7 +3,7 @@ identity-governance org.wso2.carbon.identity.governance - 1.8.67 + 1.8.68-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/features/org.wso2.carbon.identity.password.expiry.server.feature/pom.xml b/features/org.wso2.carbon.identity.password.expiry.server.feature/pom.xml index 219e4ba300..287b2db3b5 100644 --- a/features/org.wso2.carbon.identity.password.expiry.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.password.expiry.server.feature/pom.xml @@ -22,7 +22,7 @@ org.wso2.carbon.identity.governance identity-governance ../../pom.xml - 1.8.67 + 1.8.68-SNAPSHOT 4.0.0 diff --git a/features/org.wso2.carbon.identity.password.history.server.feature/pom.xml b/features/org.wso2.carbon.identity.password.history.server.feature/pom.xml index f62a74a5e2..1055cbaa4e 100644 --- a/features/org.wso2.carbon.identity.password.history.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.password.history.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance ../../pom.xml - 1.8.67 + 1.8.68-SNAPSHOT 4.0.0 diff --git a/features/org.wso2.carbon.identity.password.policy.server.feature/pom.xml b/features/org.wso2.carbon.identity.password.policy.server.feature/pom.xml index 3d7d2f089b..59068f5580 100644 --- a/features/org.wso2.carbon.identity.password.policy.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.password.policy.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance ../../pom.xml - 1.8.67 + 1.8.68-SNAPSHOT 4.0.0 diff --git a/features/org.wso2.carbon.identity.piicontroller.server.feature/pom.xml b/features/org.wso2.carbon.identity.piicontroller.server.feature/pom.xml index af5fdf8c4e..b626640455 100644 --- a/features/org.wso2.carbon.identity.piicontroller.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.piicontroller.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance ../../pom.xml - 1.8.67 + 1.8.68-SNAPSHOT 4.0.0 diff --git a/features/org.wso2.carbon.identity.recovery.server.feature/pom.xml b/features/org.wso2.carbon.identity.recovery.server.feature/pom.xml index bd0e8810df..cb5814a524 100644 --- a/features/org.wso2.carbon.identity.recovery.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.recovery.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance ../../pom.xml - 1.8.67 + 1.8.68-SNAPSHOT 4.0.0 diff --git a/features/org.wso2.carbon.identity.recovery.ui.feature/pom.xml b/features/org.wso2.carbon.identity.recovery.ui.feature/pom.xml index 352d02b217..df819e25aa 100644 --- a/features/org.wso2.carbon.identity.recovery.ui.feature/pom.xml +++ b/features/org.wso2.carbon.identity.recovery.ui.feature/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.67 + 1.8.68-SNAPSHOT ../../pom.xml diff --git a/features/org.wso2.carbon.identity.tenant.resource.manager.feature/pom.xml b/features/org.wso2.carbon.identity.tenant.resource.manager.feature/pom.xml index 880b655ae8..111b47796c 100644 --- a/features/org.wso2.carbon.identity.tenant.resource.manager.feature/pom.xml +++ b/features/org.wso2.carbon.identity.tenant.resource.manager.feature/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.67 + 1.8.68-SNAPSHOT ../../pom.xml diff --git a/features/org.wso2.carbon.identity.user.server.feature/pom.xml b/features/org.wso2.carbon.identity.user.server.feature/pom.xml index 71a379457d..9b57b3d839 100644 --- a/features/org.wso2.carbon.identity.user.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.user.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance ../../pom.xml - 1.8.67 + 1.8.68-SNAPSHOT 4.0.0 diff --git a/pom.xml b/pom.xml index ec2409590f..c05c6e5778 100644 --- a/pom.xml +++ b/pom.xml @@ -18,7 +18,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.67 + 1.8.68-SNAPSHOT 4.0.0 pom WSO2 Carbon - Governance Module @@ -37,7 +37,7 @@ https://github.com/wso2-extensions/identity-governance.git scm:git:https://github.com/wso2-extensions/identity-governance.git scm:git:https://github.com/wso2-extensions/identity-governance.git - v1.8.67 + v1.1.0-SNAPSHOT diff --git a/service-stubs/identity/org.wso2.carbon.identity.recovery.stub/pom.xml b/service-stubs/identity/org.wso2.carbon.identity.recovery.stub/pom.xml index 0e01c677e9..1618479b5b 100644 --- a/service-stubs/identity/org.wso2.carbon.identity.recovery.stub/pom.xml +++ b/service-stubs/identity/org.wso2.carbon.identity.recovery.stub/pom.xml @@ -19,7 +19,7 @@ org.wso2.carbon.identity.governance carbon-service-stubs - 1.8.67 + 1.8.68-SNAPSHOT ../pom.xml diff --git a/service-stubs/identity/pom.xml b/service-stubs/identity/pom.xml index 77c286ccb1..ce98332ee9 100644 --- a/service-stubs/identity/pom.xml +++ b/service-stubs/identity/pom.xml @@ -19,7 +19,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.67 + 1.8.68-SNAPSHOT ../../pom.xml From 3346c11a27255a640cf0642f77ddd2ab230939a7 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 15 Sep 2023 05:43:20 +0000 Subject: [PATCH 27/31] [WSO2 Release] [Jenkins #2543] [Release 1.8.68] prepare release v1.8.68 --- .../pom.xml | 2 +- .../org.wso2.carbon.identity.api.user.governance/pom.xml | 4 ++-- components/org.wso2.carbon.identity.api.user.recovery/pom.xml | 4 ++-- .../org.wso2.carbon.identity.auth.attribute.handler/pom.xml | 2 +- components/org.wso2.carbon.identity.captcha/pom.xml | 2 +- components/org.wso2.carbon.identity.governance/pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../org.wso2.carbon.identity.multi.attribute.login/pom.xml | 2 +- components/org.wso2.carbon.identity.password.expiry/pom.xml | 2 +- components/org.wso2.carbon.identity.password.history/pom.xml | 2 +- components/org.wso2.carbon.identity.password.policy/pom.xml | 2 +- components/org.wso2.carbon.identity.piicontroller/pom.xml | 2 +- components/org.wso2.carbon.identity.recovery.endpoint/pom.xml | 2 +- components/org.wso2.carbon.identity.recovery.ui/pom.xml | 2 +- components/org.wso2.carbon.identity.recovery/pom.xml | 2 +- .../org.wso2.carbon.identity.tenant.resource.manager/pom.xml | 2 +- components/org.wso2.carbon.identity.user.endpoint/pom.xml | 2 +- components/org.wso2.carbon.identity.user.export.core/pom.xml | 2 +- components/org.wso2.carbon.identity.user.rename.core/pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../org.wso2.carbon.identity.captcha.server.feature/pom.xml | 2 +- features/org.wso2.carbon.identity.governance.feature/pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../org.wso2.carbon.identity.recovery.server.feature/pom.xml | 2 +- features/org.wso2.carbon.identity.recovery.ui.feature/pom.xml | 2 +- .../pom.xml | 2 +- features/org.wso2.carbon.identity.user.server.feature/pom.xml | 2 +- pom.xml | 4 ++-- .../identity/org.wso2.carbon.identity.recovery.stub/pom.xml | 2 +- service-stubs/identity/pom.xml | 2 +- 39 files changed, 42 insertions(+), 42 deletions(-) diff --git a/components/org.wso2.carbon.identity.account.suspension.notification.task/pom.xml b/components/org.wso2.carbon.identity.account.suspension.notification.task/pom.xml index c13dd2146f..172406d9b7 100644 --- a/components/org.wso2.carbon.identity.account.suspension.notification.task/pom.xml +++ b/components/org.wso2.carbon.identity.account.suspension.notification.task/pom.xml @@ -20,7 +20,7 @@ identity-governance org.wso2.carbon.identity.governance - 1.8.68-SNAPSHOT + 1.8.68 ../../pom.xml diff --git a/components/org.wso2.carbon.identity.api.user.governance/pom.xml b/components/org.wso2.carbon.identity.api.user.governance/pom.xml index 19a75be55f..2883663fc3 100644 --- a/components/org.wso2.carbon.identity.api.user.governance/pom.xml +++ b/components/org.wso2.carbon.identity.api.user.governance/pom.xml @@ -23,12 +23,12 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.68-SNAPSHOT + 1.8.68 ../.. org.wso2.carbon.identity.api.user.governance - 1.8.68-SNAPSHOT + 1.8.68 jar WSO2 Carbon - User Rest Governance API WSO2 Carbon - User Rest Governance API diff --git a/components/org.wso2.carbon.identity.api.user.recovery/pom.xml b/components/org.wso2.carbon.identity.api.user.recovery/pom.xml index 98ac3ad3db..275601c502 100644 --- a/components/org.wso2.carbon.identity.api.user.recovery/pom.xml +++ b/components/org.wso2.carbon.identity.api.user.recovery/pom.xml @@ -23,12 +23,12 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.68-SNAPSHOT + 1.8.68 ../.. org.wso2.carbon.identity.api.user.recovery - 1.8.68-SNAPSHOT + 1.8.68 jar WSO2 Carbon - Identity Management Recovery Rest API WSO2 Carbon - Identity Management Recovery Rest API diff --git a/components/org.wso2.carbon.identity.auth.attribute.handler/pom.xml b/components/org.wso2.carbon.identity.auth.attribute.handler/pom.xml index a2f234dc75..6ab78e87c5 100644 --- a/components/org.wso2.carbon.identity.auth.attribute.handler/pom.xml +++ b/components/org.wso2.carbon.identity.auth.attribute.handler/pom.xml @@ -22,7 +22,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.68-SNAPSHOT + 1.8.68 ../../pom.xml diff --git a/components/org.wso2.carbon.identity.captcha/pom.xml b/components/org.wso2.carbon.identity.captcha/pom.xml index d3e5b314c0..bc36c57a0d 100644 --- a/components/org.wso2.carbon.identity.captcha/pom.xml +++ b/components/org.wso2.carbon.identity.captcha/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.68-SNAPSHOT + 1.8.68 ../../pom.xml diff --git a/components/org.wso2.carbon.identity.governance/pom.xml b/components/org.wso2.carbon.identity.governance/pom.xml index b618d5c55d..cf3ead0261 100644 --- a/components/org.wso2.carbon.identity.governance/pom.xml +++ b/components/org.wso2.carbon.identity.governance/pom.xml @@ -18,7 +18,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.68-SNAPSHOT + 1.8.68 ../../pom.xml diff --git a/components/org.wso2.carbon.identity.idle.account.identification/pom.xml b/components/org.wso2.carbon.identity.idle.account.identification/pom.xml index f34b93c6f3..dd56fe36b9 100644 --- a/components/org.wso2.carbon.identity.idle.account.identification/pom.xml +++ b/components/org.wso2.carbon.identity.idle.account.identification/pom.xml @@ -18,7 +18,7 @@ identity-governance org.wso2.carbon.identity.governance - 1.8.68-SNAPSHOT + 1.8.68 ../../pom.xml 4.0.0 diff --git a/components/org.wso2.carbon.identity.multi.attribute.login/org.wso2.carbon.identity.multi.attribute.login.resolver.regex/pom.xml b/components/org.wso2.carbon.identity.multi.attribute.login/org.wso2.carbon.identity.multi.attribute.login.resolver.regex/pom.xml index 5477c4af57..10a4bfade2 100644 --- a/components/org.wso2.carbon.identity.multi.attribute.login/org.wso2.carbon.identity.multi.attribute.login.resolver.regex/pom.xml +++ b/components/org.wso2.carbon.identity.multi.attribute.login/org.wso2.carbon.identity.multi.attribute.login.resolver.regex/pom.xml @@ -21,7 +21,7 @@ identity-governance org.wso2.carbon.identity.governance - 1.8.68-SNAPSHOT + 1.8.68 ../../../pom.xml 4.0.0 diff --git a/components/org.wso2.carbon.identity.multi.attribute.login/org.wso2.carbon.identity.multi.attribute.login.service/pom.xml b/components/org.wso2.carbon.identity.multi.attribute.login/org.wso2.carbon.identity.multi.attribute.login.service/pom.xml index 0f3f9b1e9f..c6c9f61cf4 100644 --- a/components/org.wso2.carbon.identity.multi.attribute.login/org.wso2.carbon.identity.multi.attribute.login.service/pom.xml +++ b/components/org.wso2.carbon.identity.multi.attribute.login/org.wso2.carbon.identity.multi.attribute.login.service/pom.xml @@ -21,7 +21,7 @@ identity-governance org.wso2.carbon.identity.governance - 1.8.68-SNAPSHOT + 1.8.68 ../../../pom.xml 4.0.0 diff --git a/components/org.wso2.carbon.identity.multi.attribute.login/pom.xml b/components/org.wso2.carbon.identity.multi.attribute.login/pom.xml index dd1fcffa28..38fee8d73e 100644 --- a/components/org.wso2.carbon.identity.multi.attribute.login/pom.xml +++ b/components/org.wso2.carbon.identity.multi.attribute.login/pom.xml @@ -21,7 +21,7 @@ identity-governance org.wso2.carbon.identity.governance - 1.8.68-SNAPSHOT + 1.8.68 ../../pom.xml 4.0.0 diff --git a/components/org.wso2.carbon.identity.password.expiry/pom.xml b/components/org.wso2.carbon.identity.password.expiry/pom.xml index 1d8470daae..9c1c1c9cd5 100644 --- a/components/org.wso2.carbon.identity.password.expiry/pom.xml +++ b/components/org.wso2.carbon.identity.password.expiry/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.68-SNAPSHOT + 1.8.68 ../../pom.xml diff --git a/components/org.wso2.carbon.identity.password.history/pom.xml b/components/org.wso2.carbon.identity.password.history/pom.xml index d7a93d2aef..62cfb8eb42 100644 --- a/components/org.wso2.carbon.identity.password.history/pom.xml +++ b/components/org.wso2.carbon.identity.password.history/pom.xml @@ -18,7 +18,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.68-SNAPSHOT + 1.8.68 ../../pom.xml diff --git a/components/org.wso2.carbon.identity.password.policy/pom.xml b/components/org.wso2.carbon.identity.password.policy/pom.xml index 3a7d07427e..3c8cd88c09 100644 --- a/components/org.wso2.carbon.identity.password.policy/pom.xml +++ b/components/org.wso2.carbon.identity.password.policy/pom.xml @@ -18,7 +18,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.68-SNAPSHOT + 1.8.68 ../../pom.xml diff --git a/components/org.wso2.carbon.identity.piicontroller/pom.xml b/components/org.wso2.carbon.identity.piicontroller/pom.xml index d96401efd6..19aeb6e792 100644 --- a/components/org.wso2.carbon.identity.piicontroller/pom.xml +++ b/components/org.wso2.carbon.identity.piicontroller/pom.xml @@ -19,7 +19,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.68-SNAPSHOT + 1.8.68 ../../pom.xml diff --git a/components/org.wso2.carbon.identity.recovery.endpoint/pom.xml b/components/org.wso2.carbon.identity.recovery.endpoint/pom.xml index 8e6b043d57..e4f9a09c52 100644 --- a/components/org.wso2.carbon.identity.recovery.endpoint/pom.xml +++ b/components/org.wso2.carbon.identity.recovery.endpoint/pom.xml @@ -5,7 +5,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.68-SNAPSHOT + 1.8.68 ../../pom.xml diff --git a/components/org.wso2.carbon.identity.recovery.ui/pom.xml b/components/org.wso2.carbon.identity.recovery.ui/pom.xml index ffc7f16216..888e17fa14 100644 --- a/components/org.wso2.carbon.identity.recovery.ui/pom.xml +++ b/components/org.wso2.carbon.identity.recovery.ui/pom.xml @@ -18,7 +18,7 @@ identity-governance org.wso2.carbon.identity.governance - 1.8.68-SNAPSHOT + 1.8.68 ../../pom.xml diff --git a/components/org.wso2.carbon.identity.recovery/pom.xml b/components/org.wso2.carbon.identity.recovery/pom.xml index 1a8553497d..40c02d71a1 100644 --- a/components/org.wso2.carbon.identity.recovery/pom.xml +++ b/components/org.wso2.carbon.identity.recovery/pom.xml @@ -18,7 +18,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.68-SNAPSHOT + 1.8.68 ../../pom.xml diff --git a/components/org.wso2.carbon.identity.tenant.resource.manager/pom.xml b/components/org.wso2.carbon.identity.tenant.resource.manager/pom.xml index 7a8b918d47..cb834cc227 100644 --- a/components/org.wso2.carbon.identity.tenant.resource.manager/pom.xml +++ b/components/org.wso2.carbon.identity.tenant.resource.manager/pom.xml @@ -22,7 +22,7 @@ identity-governance org.wso2.carbon.identity.governance - 1.8.68-SNAPSHOT + 1.8.68 ../../pom.xml diff --git a/components/org.wso2.carbon.identity.user.endpoint/pom.xml b/components/org.wso2.carbon.identity.user.endpoint/pom.xml index 7136f94e21..3d5f09bb9e 100644 --- a/components/org.wso2.carbon.identity.user.endpoint/pom.xml +++ b/components/org.wso2.carbon.identity.user.endpoint/pom.xml @@ -5,7 +5,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.68-SNAPSHOT + 1.8.68 ../../pom.xml diff --git a/components/org.wso2.carbon.identity.user.export.core/pom.xml b/components/org.wso2.carbon.identity.user.export.core/pom.xml index f0e7ec1ff2..57be516f01 100644 --- a/components/org.wso2.carbon.identity.user.export.core/pom.xml +++ b/components/org.wso2.carbon.identity.user.export.core/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.68-SNAPSHOT + 1.8.68 ../../pom.xml diff --git a/components/org.wso2.carbon.identity.user.rename.core/pom.xml b/components/org.wso2.carbon.identity.user.rename.core/pom.xml index 6b56878bb5..127edb6694 100644 --- a/components/org.wso2.carbon.identity.user.rename.core/pom.xml +++ b/components/org.wso2.carbon.identity.user.rename.core/pom.xml @@ -20,7 +20,7 @@ identity-governance org.wso2.carbon.identity.governance - 1.8.68-SNAPSHOT + 1.8.68 ../../pom.xml 4.0.0 diff --git a/features/org.wso2.carbon.identity.account.suspension.notification.task.server.feature/pom.xml b/features/org.wso2.carbon.identity.account.suspension.notification.task.server.feature/pom.xml index 147061264f..148e9515a0 100644 --- a/features/org.wso2.carbon.identity.account.suspension.notification.task.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.account.suspension.notification.task.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance ../../pom.xml - 1.8.68-SNAPSHOT + 1.8.68 4.0.0 diff --git a/features/org.wso2.carbon.identity.auth.attribute.handler.server.feature/pom.xml b/features/org.wso2.carbon.identity.auth.attribute.handler.server.feature/pom.xml index dc8d85c35a..13c82f2d0a 100644 --- a/features/org.wso2.carbon.identity.auth.attribute.handler.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.auth.attribute.handler.server.feature/pom.xml @@ -22,7 +22,7 @@ org.wso2.carbon.identity.governance identity-governance ../../pom.xml - 1.8.68-SNAPSHOT + 1.8.68 4.0.0 diff --git a/features/org.wso2.carbon.identity.captcha.server.feature/pom.xml b/features/org.wso2.carbon.identity.captcha.server.feature/pom.xml index de562382f9..c45af76dab 100644 --- a/features/org.wso2.carbon.identity.captcha.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.captcha.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance ../../pom.xml - 1.8.68-SNAPSHOT + 1.8.68 4.0.0 diff --git a/features/org.wso2.carbon.identity.governance.feature/pom.xml b/features/org.wso2.carbon.identity.governance.feature/pom.xml index 57292a9f67..a694897550 100644 --- a/features/org.wso2.carbon.identity.governance.feature/pom.xml +++ b/features/org.wso2.carbon.identity.governance.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.68-SNAPSHOT + 1.8.68 ../../pom.xml diff --git a/features/org.wso2.carbon.identity.governance.server.feature/pom.xml b/features/org.wso2.carbon.identity.governance.server.feature/pom.xml index 3a1e559fd5..61758e7522 100644 --- a/features/org.wso2.carbon.identity.governance.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.governance.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance ../../pom.xml - 1.8.68-SNAPSHOT + 1.8.68 4.0.0 diff --git a/features/org.wso2.carbon.identity.idle.account.identification.server.feature/pom.xml b/features/org.wso2.carbon.identity.idle.account.identification.server.feature/pom.xml index 73e1a6703b..b647c2b0b8 100644 --- a/features/org.wso2.carbon.identity.idle.account.identification.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.idle.account.identification.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance ../../pom.xml - 1.8.68-SNAPSHOT + 1.8.68 4.0.0 diff --git a/features/org.wso2.carbon.identity.multi.attribute.login.service.server.feature/pom.xml b/features/org.wso2.carbon.identity.multi.attribute.login.service.server.feature/pom.xml index 84fdc4e725..37c9445969 100644 --- a/features/org.wso2.carbon.identity.multi.attribute.login.service.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.multi.attribute.login.service.server.feature/pom.xml @@ -3,7 +3,7 @@ identity-governance org.wso2.carbon.identity.governance - 1.8.68-SNAPSHOT + 1.8.68 ../../pom.xml 4.0.0 diff --git a/features/org.wso2.carbon.identity.password.expiry.server.feature/pom.xml b/features/org.wso2.carbon.identity.password.expiry.server.feature/pom.xml index 287b2db3b5..5206ebe0c2 100644 --- a/features/org.wso2.carbon.identity.password.expiry.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.password.expiry.server.feature/pom.xml @@ -22,7 +22,7 @@ org.wso2.carbon.identity.governance identity-governance ../../pom.xml - 1.8.68-SNAPSHOT + 1.8.68 4.0.0 diff --git a/features/org.wso2.carbon.identity.password.history.server.feature/pom.xml b/features/org.wso2.carbon.identity.password.history.server.feature/pom.xml index 1055cbaa4e..4ec36c008a 100644 --- a/features/org.wso2.carbon.identity.password.history.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.password.history.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance ../../pom.xml - 1.8.68-SNAPSHOT + 1.8.68 4.0.0 diff --git a/features/org.wso2.carbon.identity.password.policy.server.feature/pom.xml b/features/org.wso2.carbon.identity.password.policy.server.feature/pom.xml index 59068f5580..d1e3f0de0b 100644 --- a/features/org.wso2.carbon.identity.password.policy.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.password.policy.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance ../../pom.xml - 1.8.68-SNAPSHOT + 1.8.68 4.0.0 diff --git a/features/org.wso2.carbon.identity.piicontroller.server.feature/pom.xml b/features/org.wso2.carbon.identity.piicontroller.server.feature/pom.xml index b626640455..c5c24d011d 100644 --- a/features/org.wso2.carbon.identity.piicontroller.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.piicontroller.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance ../../pom.xml - 1.8.68-SNAPSHOT + 1.8.68 4.0.0 diff --git a/features/org.wso2.carbon.identity.recovery.server.feature/pom.xml b/features/org.wso2.carbon.identity.recovery.server.feature/pom.xml index cb5814a524..0dca577433 100644 --- a/features/org.wso2.carbon.identity.recovery.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.recovery.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance ../../pom.xml - 1.8.68-SNAPSHOT + 1.8.68 4.0.0 diff --git a/features/org.wso2.carbon.identity.recovery.ui.feature/pom.xml b/features/org.wso2.carbon.identity.recovery.ui.feature/pom.xml index df819e25aa..386bc7b82c 100644 --- a/features/org.wso2.carbon.identity.recovery.ui.feature/pom.xml +++ b/features/org.wso2.carbon.identity.recovery.ui.feature/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.68-SNAPSHOT + 1.8.68 ../../pom.xml diff --git a/features/org.wso2.carbon.identity.tenant.resource.manager.feature/pom.xml b/features/org.wso2.carbon.identity.tenant.resource.manager.feature/pom.xml index 111b47796c..9496b4ee08 100644 --- a/features/org.wso2.carbon.identity.tenant.resource.manager.feature/pom.xml +++ b/features/org.wso2.carbon.identity.tenant.resource.manager.feature/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.68-SNAPSHOT + 1.8.68 ../../pom.xml diff --git a/features/org.wso2.carbon.identity.user.server.feature/pom.xml b/features/org.wso2.carbon.identity.user.server.feature/pom.xml index 9b57b3d839..ca7c215b31 100644 --- a/features/org.wso2.carbon.identity.user.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.user.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance ../../pom.xml - 1.8.68-SNAPSHOT + 1.8.68 4.0.0 diff --git a/pom.xml b/pom.xml index c05c6e5778..c9b5a85042 100644 --- a/pom.xml +++ b/pom.xml @@ -18,7 +18,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.68-SNAPSHOT + 1.8.68 4.0.0 pom WSO2 Carbon - Governance Module @@ -37,7 +37,7 @@ https://github.com/wso2-extensions/identity-governance.git scm:git:https://github.com/wso2-extensions/identity-governance.git scm:git:https://github.com/wso2-extensions/identity-governance.git - v1.1.0-SNAPSHOT + v1.8.68 diff --git a/service-stubs/identity/org.wso2.carbon.identity.recovery.stub/pom.xml b/service-stubs/identity/org.wso2.carbon.identity.recovery.stub/pom.xml index 1618479b5b..dbfc918402 100644 --- a/service-stubs/identity/org.wso2.carbon.identity.recovery.stub/pom.xml +++ b/service-stubs/identity/org.wso2.carbon.identity.recovery.stub/pom.xml @@ -19,7 +19,7 @@ org.wso2.carbon.identity.governance carbon-service-stubs - 1.8.68-SNAPSHOT + 1.8.68 ../pom.xml diff --git a/service-stubs/identity/pom.xml b/service-stubs/identity/pom.xml index ce98332ee9..2248607d19 100644 --- a/service-stubs/identity/pom.xml +++ b/service-stubs/identity/pom.xml @@ -19,7 +19,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.68-SNAPSHOT + 1.8.68 ../../pom.xml From e912bc9b10f37ef1ee3c0f325c7b88501a89f3cb Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 15 Sep 2023 05:43:22 +0000 Subject: [PATCH 28/31] [WSO2 Release] [Jenkins #2543] [Release 1.8.68] prepare for next development iteration --- .../pom.xml | 2 +- .../org.wso2.carbon.identity.api.user.governance/pom.xml | 4 ++-- components/org.wso2.carbon.identity.api.user.recovery/pom.xml | 4 ++-- .../org.wso2.carbon.identity.auth.attribute.handler/pom.xml | 2 +- components/org.wso2.carbon.identity.captcha/pom.xml | 2 +- components/org.wso2.carbon.identity.governance/pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../org.wso2.carbon.identity.multi.attribute.login/pom.xml | 2 +- components/org.wso2.carbon.identity.password.expiry/pom.xml | 2 +- components/org.wso2.carbon.identity.password.history/pom.xml | 2 +- components/org.wso2.carbon.identity.password.policy/pom.xml | 2 +- components/org.wso2.carbon.identity.piicontroller/pom.xml | 2 +- components/org.wso2.carbon.identity.recovery.endpoint/pom.xml | 2 +- components/org.wso2.carbon.identity.recovery.ui/pom.xml | 2 +- components/org.wso2.carbon.identity.recovery/pom.xml | 2 +- .../org.wso2.carbon.identity.tenant.resource.manager/pom.xml | 2 +- components/org.wso2.carbon.identity.user.endpoint/pom.xml | 2 +- components/org.wso2.carbon.identity.user.export.core/pom.xml | 2 +- components/org.wso2.carbon.identity.user.rename.core/pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../org.wso2.carbon.identity.captcha.server.feature/pom.xml | 2 +- features/org.wso2.carbon.identity.governance.feature/pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../org.wso2.carbon.identity.recovery.server.feature/pom.xml | 2 +- features/org.wso2.carbon.identity.recovery.ui.feature/pom.xml | 2 +- .../pom.xml | 2 +- features/org.wso2.carbon.identity.user.server.feature/pom.xml | 2 +- pom.xml | 4 ++-- .../identity/org.wso2.carbon.identity.recovery.stub/pom.xml | 2 +- service-stubs/identity/pom.xml | 2 +- 39 files changed, 42 insertions(+), 42 deletions(-) diff --git a/components/org.wso2.carbon.identity.account.suspension.notification.task/pom.xml b/components/org.wso2.carbon.identity.account.suspension.notification.task/pom.xml index 172406d9b7..5d8549add6 100644 --- a/components/org.wso2.carbon.identity.account.suspension.notification.task/pom.xml +++ b/components/org.wso2.carbon.identity.account.suspension.notification.task/pom.xml @@ -20,7 +20,7 @@ identity-governance org.wso2.carbon.identity.governance - 1.8.68 + 1.8.69-SNAPSHOT ../../pom.xml diff --git a/components/org.wso2.carbon.identity.api.user.governance/pom.xml b/components/org.wso2.carbon.identity.api.user.governance/pom.xml index 2883663fc3..9398680b97 100644 --- a/components/org.wso2.carbon.identity.api.user.governance/pom.xml +++ b/components/org.wso2.carbon.identity.api.user.governance/pom.xml @@ -23,12 +23,12 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.68 + 1.8.69-SNAPSHOT ../.. org.wso2.carbon.identity.api.user.governance - 1.8.68 + 1.8.69-SNAPSHOT jar WSO2 Carbon - User Rest Governance API WSO2 Carbon - User Rest Governance API diff --git a/components/org.wso2.carbon.identity.api.user.recovery/pom.xml b/components/org.wso2.carbon.identity.api.user.recovery/pom.xml index 275601c502..facb6ad495 100644 --- a/components/org.wso2.carbon.identity.api.user.recovery/pom.xml +++ b/components/org.wso2.carbon.identity.api.user.recovery/pom.xml @@ -23,12 +23,12 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.68 + 1.8.69-SNAPSHOT ../.. org.wso2.carbon.identity.api.user.recovery - 1.8.68 + 1.8.69-SNAPSHOT jar WSO2 Carbon - Identity Management Recovery Rest API WSO2 Carbon - Identity Management Recovery Rest API diff --git a/components/org.wso2.carbon.identity.auth.attribute.handler/pom.xml b/components/org.wso2.carbon.identity.auth.attribute.handler/pom.xml index 6ab78e87c5..f4294df905 100644 --- a/components/org.wso2.carbon.identity.auth.attribute.handler/pom.xml +++ b/components/org.wso2.carbon.identity.auth.attribute.handler/pom.xml @@ -22,7 +22,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.68 + 1.8.69-SNAPSHOT ../../pom.xml diff --git a/components/org.wso2.carbon.identity.captcha/pom.xml b/components/org.wso2.carbon.identity.captcha/pom.xml index bc36c57a0d..54887e0d12 100644 --- a/components/org.wso2.carbon.identity.captcha/pom.xml +++ b/components/org.wso2.carbon.identity.captcha/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.68 + 1.8.69-SNAPSHOT ../../pom.xml diff --git a/components/org.wso2.carbon.identity.governance/pom.xml b/components/org.wso2.carbon.identity.governance/pom.xml index cf3ead0261..6207a0fc1b 100644 --- a/components/org.wso2.carbon.identity.governance/pom.xml +++ b/components/org.wso2.carbon.identity.governance/pom.xml @@ -18,7 +18,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.68 + 1.8.69-SNAPSHOT ../../pom.xml diff --git a/components/org.wso2.carbon.identity.idle.account.identification/pom.xml b/components/org.wso2.carbon.identity.idle.account.identification/pom.xml index dd56fe36b9..70835d4762 100644 --- a/components/org.wso2.carbon.identity.idle.account.identification/pom.xml +++ b/components/org.wso2.carbon.identity.idle.account.identification/pom.xml @@ -18,7 +18,7 @@ identity-governance org.wso2.carbon.identity.governance - 1.8.68 + 1.8.69-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/components/org.wso2.carbon.identity.multi.attribute.login/org.wso2.carbon.identity.multi.attribute.login.resolver.regex/pom.xml b/components/org.wso2.carbon.identity.multi.attribute.login/org.wso2.carbon.identity.multi.attribute.login.resolver.regex/pom.xml index 10a4bfade2..59878a991d 100644 --- a/components/org.wso2.carbon.identity.multi.attribute.login/org.wso2.carbon.identity.multi.attribute.login.resolver.regex/pom.xml +++ b/components/org.wso2.carbon.identity.multi.attribute.login/org.wso2.carbon.identity.multi.attribute.login.resolver.regex/pom.xml @@ -21,7 +21,7 @@ identity-governance org.wso2.carbon.identity.governance - 1.8.68 + 1.8.69-SNAPSHOT ../../../pom.xml 4.0.0 diff --git a/components/org.wso2.carbon.identity.multi.attribute.login/org.wso2.carbon.identity.multi.attribute.login.service/pom.xml b/components/org.wso2.carbon.identity.multi.attribute.login/org.wso2.carbon.identity.multi.attribute.login.service/pom.xml index c6c9f61cf4..e1acc2661b 100644 --- a/components/org.wso2.carbon.identity.multi.attribute.login/org.wso2.carbon.identity.multi.attribute.login.service/pom.xml +++ b/components/org.wso2.carbon.identity.multi.attribute.login/org.wso2.carbon.identity.multi.attribute.login.service/pom.xml @@ -21,7 +21,7 @@ identity-governance org.wso2.carbon.identity.governance - 1.8.68 + 1.8.69-SNAPSHOT ../../../pom.xml 4.0.0 diff --git a/components/org.wso2.carbon.identity.multi.attribute.login/pom.xml b/components/org.wso2.carbon.identity.multi.attribute.login/pom.xml index 38fee8d73e..e0d5dbb88d 100644 --- a/components/org.wso2.carbon.identity.multi.attribute.login/pom.xml +++ b/components/org.wso2.carbon.identity.multi.attribute.login/pom.xml @@ -21,7 +21,7 @@ identity-governance org.wso2.carbon.identity.governance - 1.8.68 + 1.8.69-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/components/org.wso2.carbon.identity.password.expiry/pom.xml b/components/org.wso2.carbon.identity.password.expiry/pom.xml index 9c1c1c9cd5..f1f3d671e1 100644 --- a/components/org.wso2.carbon.identity.password.expiry/pom.xml +++ b/components/org.wso2.carbon.identity.password.expiry/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.68 + 1.8.69-SNAPSHOT ../../pom.xml diff --git a/components/org.wso2.carbon.identity.password.history/pom.xml b/components/org.wso2.carbon.identity.password.history/pom.xml index 62cfb8eb42..78eafd2e62 100644 --- a/components/org.wso2.carbon.identity.password.history/pom.xml +++ b/components/org.wso2.carbon.identity.password.history/pom.xml @@ -18,7 +18,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.68 + 1.8.69-SNAPSHOT ../../pom.xml diff --git a/components/org.wso2.carbon.identity.password.policy/pom.xml b/components/org.wso2.carbon.identity.password.policy/pom.xml index 3c8cd88c09..2aa6d56ff6 100644 --- a/components/org.wso2.carbon.identity.password.policy/pom.xml +++ b/components/org.wso2.carbon.identity.password.policy/pom.xml @@ -18,7 +18,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.68 + 1.8.69-SNAPSHOT ../../pom.xml diff --git a/components/org.wso2.carbon.identity.piicontroller/pom.xml b/components/org.wso2.carbon.identity.piicontroller/pom.xml index 19aeb6e792..319f5bd227 100644 --- a/components/org.wso2.carbon.identity.piicontroller/pom.xml +++ b/components/org.wso2.carbon.identity.piicontroller/pom.xml @@ -19,7 +19,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.68 + 1.8.69-SNAPSHOT ../../pom.xml diff --git a/components/org.wso2.carbon.identity.recovery.endpoint/pom.xml b/components/org.wso2.carbon.identity.recovery.endpoint/pom.xml index e4f9a09c52..d5ddb193d3 100644 --- a/components/org.wso2.carbon.identity.recovery.endpoint/pom.xml +++ b/components/org.wso2.carbon.identity.recovery.endpoint/pom.xml @@ -5,7 +5,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.68 + 1.8.69-SNAPSHOT ../../pom.xml diff --git a/components/org.wso2.carbon.identity.recovery.ui/pom.xml b/components/org.wso2.carbon.identity.recovery.ui/pom.xml index 888e17fa14..ba2336e998 100644 --- a/components/org.wso2.carbon.identity.recovery.ui/pom.xml +++ b/components/org.wso2.carbon.identity.recovery.ui/pom.xml @@ -18,7 +18,7 @@ identity-governance org.wso2.carbon.identity.governance - 1.8.68 + 1.8.69-SNAPSHOT ../../pom.xml diff --git a/components/org.wso2.carbon.identity.recovery/pom.xml b/components/org.wso2.carbon.identity.recovery/pom.xml index 40c02d71a1..c8d804fcc6 100644 --- a/components/org.wso2.carbon.identity.recovery/pom.xml +++ b/components/org.wso2.carbon.identity.recovery/pom.xml @@ -18,7 +18,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.68 + 1.8.69-SNAPSHOT ../../pom.xml diff --git a/components/org.wso2.carbon.identity.tenant.resource.manager/pom.xml b/components/org.wso2.carbon.identity.tenant.resource.manager/pom.xml index cb834cc227..cad5e0c758 100644 --- a/components/org.wso2.carbon.identity.tenant.resource.manager/pom.xml +++ b/components/org.wso2.carbon.identity.tenant.resource.manager/pom.xml @@ -22,7 +22,7 @@ identity-governance org.wso2.carbon.identity.governance - 1.8.68 + 1.8.69-SNAPSHOT ../../pom.xml diff --git a/components/org.wso2.carbon.identity.user.endpoint/pom.xml b/components/org.wso2.carbon.identity.user.endpoint/pom.xml index 3d5f09bb9e..1c39d221a0 100644 --- a/components/org.wso2.carbon.identity.user.endpoint/pom.xml +++ b/components/org.wso2.carbon.identity.user.endpoint/pom.xml @@ -5,7 +5,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.68 + 1.8.69-SNAPSHOT ../../pom.xml diff --git a/components/org.wso2.carbon.identity.user.export.core/pom.xml b/components/org.wso2.carbon.identity.user.export.core/pom.xml index 57be516f01..1cff7bdb29 100644 --- a/components/org.wso2.carbon.identity.user.export.core/pom.xml +++ b/components/org.wso2.carbon.identity.user.export.core/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.68 + 1.8.69-SNAPSHOT ../../pom.xml diff --git a/components/org.wso2.carbon.identity.user.rename.core/pom.xml b/components/org.wso2.carbon.identity.user.rename.core/pom.xml index 127edb6694..dcd3bb0e46 100644 --- a/components/org.wso2.carbon.identity.user.rename.core/pom.xml +++ b/components/org.wso2.carbon.identity.user.rename.core/pom.xml @@ -20,7 +20,7 @@ identity-governance org.wso2.carbon.identity.governance - 1.8.68 + 1.8.69-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/features/org.wso2.carbon.identity.account.suspension.notification.task.server.feature/pom.xml b/features/org.wso2.carbon.identity.account.suspension.notification.task.server.feature/pom.xml index 148e9515a0..021ecd2e86 100644 --- a/features/org.wso2.carbon.identity.account.suspension.notification.task.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.account.suspension.notification.task.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance ../../pom.xml - 1.8.68 + 1.8.69-SNAPSHOT 4.0.0 diff --git a/features/org.wso2.carbon.identity.auth.attribute.handler.server.feature/pom.xml b/features/org.wso2.carbon.identity.auth.attribute.handler.server.feature/pom.xml index 13c82f2d0a..40df7d6ede 100644 --- a/features/org.wso2.carbon.identity.auth.attribute.handler.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.auth.attribute.handler.server.feature/pom.xml @@ -22,7 +22,7 @@ org.wso2.carbon.identity.governance identity-governance ../../pom.xml - 1.8.68 + 1.8.69-SNAPSHOT 4.0.0 diff --git a/features/org.wso2.carbon.identity.captcha.server.feature/pom.xml b/features/org.wso2.carbon.identity.captcha.server.feature/pom.xml index c45af76dab..8cc3e4f949 100644 --- a/features/org.wso2.carbon.identity.captcha.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.captcha.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance ../../pom.xml - 1.8.68 + 1.8.69-SNAPSHOT 4.0.0 diff --git a/features/org.wso2.carbon.identity.governance.feature/pom.xml b/features/org.wso2.carbon.identity.governance.feature/pom.xml index a694897550..b5684de6bb 100644 --- a/features/org.wso2.carbon.identity.governance.feature/pom.xml +++ b/features/org.wso2.carbon.identity.governance.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.68 + 1.8.69-SNAPSHOT ../../pom.xml diff --git a/features/org.wso2.carbon.identity.governance.server.feature/pom.xml b/features/org.wso2.carbon.identity.governance.server.feature/pom.xml index 61758e7522..eb5459620c 100644 --- a/features/org.wso2.carbon.identity.governance.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.governance.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance ../../pom.xml - 1.8.68 + 1.8.69-SNAPSHOT 4.0.0 diff --git a/features/org.wso2.carbon.identity.idle.account.identification.server.feature/pom.xml b/features/org.wso2.carbon.identity.idle.account.identification.server.feature/pom.xml index b647c2b0b8..de0a44bac6 100644 --- a/features/org.wso2.carbon.identity.idle.account.identification.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.idle.account.identification.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance ../../pom.xml - 1.8.68 + 1.8.69-SNAPSHOT 4.0.0 diff --git a/features/org.wso2.carbon.identity.multi.attribute.login.service.server.feature/pom.xml b/features/org.wso2.carbon.identity.multi.attribute.login.service.server.feature/pom.xml index 37c9445969..9dc41b1460 100644 --- a/features/org.wso2.carbon.identity.multi.attribute.login.service.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.multi.attribute.login.service.server.feature/pom.xml @@ -3,7 +3,7 @@ identity-governance org.wso2.carbon.identity.governance - 1.8.68 + 1.8.69-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/features/org.wso2.carbon.identity.password.expiry.server.feature/pom.xml b/features/org.wso2.carbon.identity.password.expiry.server.feature/pom.xml index 5206ebe0c2..7fc27d1197 100644 --- a/features/org.wso2.carbon.identity.password.expiry.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.password.expiry.server.feature/pom.xml @@ -22,7 +22,7 @@ org.wso2.carbon.identity.governance identity-governance ../../pom.xml - 1.8.68 + 1.8.69-SNAPSHOT 4.0.0 diff --git a/features/org.wso2.carbon.identity.password.history.server.feature/pom.xml b/features/org.wso2.carbon.identity.password.history.server.feature/pom.xml index 4ec36c008a..83475ca417 100644 --- a/features/org.wso2.carbon.identity.password.history.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.password.history.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance ../../pom.xml - 1.8.68 + 1.8.69-SNAPSHOT 4.0.0 diff --git a/features/org.wso2.carbon.identity.password.policy.server.feature/pom.xml b/features/org.wso2.carbon.identity.password.policy.server.feature/pom.xml index d1e3f0de0b..5dc4154825 100644 --- a/features/org.wso2.carbon.identity.password.policy.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.password.policy.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance ../../pom.xml - 1.8.68 + 1.8.69-SNAPSHOT 4.0.0 diff --git a/features/org.wso2.carbon.identity.piicontroller.server.feature/pom.xml b/features/org.wso2.carbon.identity.piicontroller.server.feature/pom.xml index c5c24d011d..15bbd45465 100644 --- a/features/org.wso2.carbon.identity.piicontroller.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.piicontroller.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance ../../pom.xml - 1.8.68 + 1.8.69-SNAPSHOT 4.0.0 diff --git a/features/org.wso2.carbon.identity.recovery.server.feature/pom.xml b/features/org.wso2.carbon.identity.recovery.server.feature/pom.xml index 0dca577433..b65b64ba3b 100644 --- a/features/org.wso2.carbon.identity.recovery.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.recovery.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance ../../pom.xml - 1.8.68 + 1.8.69-SNAPSHOT 4.0.0 diff --git a/features/org.wso2.carbon.identity.recovery.ui.feature/pom.xml b/features/org.wso2.carbon.identity.recovery.ui.feature/pom.xml index 386bc7b82c..83144832bc 100644 --- a/features/org.wso2.carbon.identity.recovery.ui.feature/pom.xml +++ b/features/org.wso2.carbon.identity.recovery.ui.feature/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.68 + 1.8.69-SNAPSHOT ../../pom.xml diff --git a/features/org.wso2.carbon.identity.tenant.resource.manager.feature/pom.xml b/features/org.wso2.carbon.identity.tenant.resource.manager.feature/pom.xml index 9496b4ee08..bddac8bbaa 100644 --- a/features/org.wso2.carbon.identity.tenant.resource.manager.feature/pom.xml +++ b/features/org.wso2.carbon.identity.tenant.resource.manager.feature/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.68 + 1.8.69-SNAPSHOT ../../pom.xml diff --git a/features/org.wso2.carbon.identity.user.server.feature/pom.xml b/features/org.wso2.carbon.identity.user.server.feature/pom.xml index ca7c215b31..1c8ab956d6 100644 --- a/features/org.wso2.carbon.identity.user.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.user.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance ../../pom.xml - 1.8.68 + 1.8.69-SNAPSHOT 4.0.0 diff --git a/pom.xml b/pom.xml index c9b5a85042..ce647dd1e7 100644 --- a/pom.xml +++ b/pom.xml @@ -18,7 +18,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.68 + 1.8.69-SNAPSHOT 4.0.0 pom WSO2 Carbon - Governance Module @@ -37,7 +37,7 @@ https://github.com/wso2-extensions/identity-governance.git scm:git:https://github.com/wso2-extensions/identity-governance.git scm:git:https://github.com/wso2-extensions/identity-governance.git - v1.8.68 + v1.1.0-SNAPSHOT diff --git a/service-stubs/identity/org.wso2.carbon.identity.recovery.stub/pom.xml b/service-stubs/identity/org.wso2.carbon.identity.recovery.stub/pom.xml index dbfc918402..211920fcaf 100644 --- a/service-stubs/identity/org.wso2.carbon.identity.recovery.stub/pom.xml +++ b/service-stubs/identity/org.wso2.carbon.identity.recovery.stub/pom.xml @@ -19,7 +19,7 @@ org.wso2.carbon.identity.governance carbon-service-stubs - 1.8.68 + 1.8.69-SNAPSHOT ../pom.xml diff --git a/service-stubs/identity/pom.xml b/service-stubs/identity/pom.xml index 2248607d19..48a2495a09 100644 --- a/service-stubs/identity/pom.xml +++ b/service-stubs/identity/pom.xml @@ -19,7 +19,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.68 + 1.8.69-SNAPSHOT ../../pom.xml From d6a3b98a3f13ef80326a72f0c677152f1e97b350 Mon Sep 17 00:00:00 2001 From: Maduranga Siriwardena Date: Mon, 18 Sep 2023 15:10:57 +0530 Subject: [PATCH 29/31] Fix PR comments --- .../export/core/internal/UserProfileExportServiceComponent.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/org.wso2.carbon.identity.user.export.core/src/main/java/org/wso2/carbon/identity/user/export/core/internal/UserProfileExportServiceComponent.java b/components/org.wso2.carbon.identity.user.export.core/src/main/java/org/wso2/carbon/identity/user/export/core/internal/UserProfileExportServiceComponent.java index 6bc4f6fd85..07c10c5bbe 100644 --- a/components/org.wso2.carbon.identity.user.export.core/src/main/java/org/wso2/carbon/identity/user/export/core/internal/UserProfileExportServiceComponent.java +++ b/components/org.wso2.carbon.identity.user.export.core/src/main/java/org/wso2/carbon/identity/user/export/core/internal/UserProfileExportServiceComponent.java @@ -78,7 +78,7 @@ protected void activate(ComponentContext ctxt) { ctxt.getBundleContext().registerService(UserInformationProvider.class.getName(), securityInformationProvider, null); } catch (Exception e) { - LOG.error(e.getMessage(), e); + LOG.error("Error while activating UserProfileExportServiceComponent", e); } } From 5fea6d984172179b57660d0325bbb354da7020c2 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 19 Sep 2023 05:05:28 +0000 Subject: [PATCH 30/31] [WSO2 Release] [Jenkins #2545] [Release 1.8.69] prepare release v1.8.69 --- .../pom.xml | 2 +- .../org.wso2.carbon.identity.api.user.governance/pom.xml | 4 ++-- components/org.wso2.carbon.identity.api.user.recovery/pom.xml | 4 ++-- .../org.wso2.carbon.identity.auth.attribute.handler/pom.xml | 2 +- components/org.wso2.carbon.identity.captcha/pom.xml | 2 +- components/org.wso2.carbon.identity.governance/pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../org.wso2.carbon.identity.multi.attribute.login/pom.xml | 2 +- components/org.wso2.carbon.identity.password.expiry/pom.xml | 2 +- components/org.wso2.carbon.identity.password.history/pom.xml | 2 +- components/org.wso2.carbon.identity.password.policy/pom.xml | 2 +- components/org.wso2.carbon.identity.piicontroller/pom.xml | 2 +- components/org.wso2.carbon.identity.recovery.endpoint/pom.xml | 2 +- components/org.wso2.carbon.identity.recovery.ui/pom.xml | 2 +- components/org.wso2.carbon.identity.recovery/pom.xml | 2 +- .../org.wso2.carbon.identity.tenant.resource.manager/pom.xml | 2 +- components/org.wso2.carbon.identity.user.endpoint/pom.xml | 2 +- components/org.wso2.carbon.identity.user.export.core/pom.xml | 2 +- components/org.wso2.carbon.identity.user.rename.core/pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../org.wso2.carbon.identity.captcha.server.feature/pom.xml | 2 +- features/org.wso2.carbon.identity.governance.feature/pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../org.wso2.carbon.identity.recovery.server.feature/pom.xml | 2 +- features/org.wso2.carbon.identity.recovery.ui.feature/pom.xml | 2 +- .../pom.xml | 2 +- features/org.wso2.carbon.identity.user.server.feature/pom.xml | 2 +- pom.xml | 4 ++-- .../identity/org.wso2.carbon.identity.recovery.stub/pom.xml | 2 +- service-stubs/identity/pom.xml | 2 +- 39 files changed, 42 insertions(+), 42 deletions(-) diff --git a/components/org.wso2.carbon.identity.account.suspension.notification.task/pom.xml b/components/org.wso2.carbon.identity.account.suspension.notification.task/pom.xml index 5d8549add6..f06697ebb4 100644 --- a/components/org.wso2.carbon.identity.account.suspension.notification.task/pom.xml +++ b/components/org.wso2.carbon.identity.account.suspension.notification.task/pom.xml @@ -20,7 +20,7 @@ identity-governance org.wso2.carbon.identity.governance - 1.8.69-SNAPSHOT + 1.8.69 ../../pom.xml diff --git a/components/org.wso2.carbon.identity.api.user.governance/pom.xml b/components/org.wso2.carbon.identity.api.user.governance/pom.xml index 9398680b97..a14f920824 100644 --- a/components/org.wso2.carbon.identity.api.user.governance/pom.xml +++ b/components/org.wso2.carbon.identity.api.user.governance/pom.xml @@ -23,12 +23,12 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.69-SNAPSHOT + 1.8.69 ../.. org.wso2.carbon.identity.api.user.governance - 1.8.69-SNAPSHOT + 1.8.69 jar WSO2 Carbon - User Rest Governance API WSO2 Carbon - User Rest Governance API diff --git a/components/org.wso2.carbon.identity.api.user.recovery/pom.xml b/components/org.wso2.carbon.identity.api.user.recovery/pom.xml index facb6ad495..1034f81926 100644 --- a/components/org.wso2.carbon.identity.api.user.recovery/pom.xml +++ b/components/org.wso2.carbon.identity.api.user.recovery/pom.xml @@ -23,12 +23,12 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.69-SNAPSHOT + 1.8.69 ../.. org.wso2.carbon.identity.api.user.recovery - 1.8.69-SNAPSHOT + 1.8.69 jar WSO2 Carbon - Identity Management Recovery Rest API WSO2 Carbon - Identity Management Recovery Rest API diff --git a/components/org.wso2.carbon.identity.auth.attribute.handler/pom.xml b/components/org.wso2.carbon.identity.auth.attribute.handler/pom.xml index f4294df905..8549d89930 100644 --- a/components/org.wso2.carbon.identity.auth.attribute.handler/pom.xml +++ b/components/org.wso2.carbon.identity.auth.attribute.handler/pom.xml @@ -22,7 +22,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.69-SNAPSHOT + 1.8.69 ../../pom.xml diff --git a/components/org.wso2.carbon.identity.captcha/pom.xml b/components/org.wso2.carbon.identity.captcha/pom.xml index 54887e0d12..7debbcaca7 100644 --- a/components/org.wso2.carbon.identity.captcha/pom.xml +++ b/components/org.wso2.carbon.identity.captcha/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.69-SNAPSHOT + 1.8.69 ../../pom.xml diff --git a/components/org.wso2.carbon.identity.governance/pom.xml b/components/org.wso2.carbon.identity.governance/pom.xml index 6207a0fc1b..4c8de00eec 100644 --- a/components/org.wso2.carbon.identity.governance/pom.xml +++ b/components/org.wso2.carbon.identity.governance/pom.xml @@ -18,7 +18,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.69-SNAPSHOT + 1.8.69 ../../pom.xml diff --git a/components/org.wso2.carbon.identity.idle.account.identification/pom.xml b/components/org.wso2.carbon.identity.idle.account.identification/pom.xml index 70835d4762..c33fa0f7a6 100644 --- a/components/org.wso2.carbon.identity.idle.account.identification/pom.xml +++ b/components/org.wso2.carbon.identity.idle.account.identification/pom.xml @@ -18,7 +18,7 @@ identity-governance org.wso2.carbon.identity.governance - 1.8.69-SNAPSHOT + 1.8.69 ../../pom.xml 4.0.0 diff --git a/components/org.wso2.carbon.identity.multi.attribute.login/org.wso2.carbon.identity.multi.attribute.login.resolver.regex/pom.xml b/components/org.wso2.carbon.identity.multi.attribute.login/org.wso2.carbon.identity.multi.attribute.login.resolver.regex/pom.xml index 59878a991d..1b9b31311d 100644 --- a/components/org.wso2.carbon.identity.multi.attribute.login/org.wso2.carbon.identity.multi.attribute.login.resolver.regex/pom.xml +++ b/components/org.wso2.carbon.identity.multi.attribute.login/org.wso2.carbon.identity.multi.attribute.login.resolver.regex/pom.xml @@ -21,7 +21,7 @@ identity-governance org.wso2.carbon.identity.governance - 1.8.69-SNAPSHOT + 1.8.69 ../../../pom.xml 4.0.0 diff --git a/components/org.wso2.carbon.identity.multi.attribute.login/org.wso2.carbon.identity.multi.attribute.login.service/pom.xml b/components/org.wso2.carbon.identity.multi.attribute.login/org.wso2.carbon.identity.multi.attribute.login.service/pom.xml index e1acc2661b..68d7bb33fa 100644 --- a/components/org.wso2.carbon.identity.multi.attribute.login/org.wso2.carbon.identity.multi.attribute.login.service/pom.xml +++ b/components/org.wso2.carbon.identity.multi.attribute.login/org.wso2.carbon.identity.multi.attribute.login.service/pom.xml @@ -21,7 +21,7 @@ identity-governance org.wso2.carbon.identity.governance - 1.8.69-SNAPSHOT + 1.8.69 ../../../pom.xml 4.0.0 diff --git a/components/org.wso2.carbon.identity.multi.attribute.login/pom.xml b/components/org.wso2.carbon.identity.multi.attribute.login/pom.xml index e0d5dbb88d..0c55fb9696 100644 --- a/components/org.wso2.carbon.identity.multi.attribute.login/pom.xml +++ b/components/org.wso2.carbon.identity.multi.attribute.login/pom.xml @@ -21,7 +21,7 @@ identity-governance org.wso2.carbon.identity.governance - 1.8.69-SNAPSHOT + 1.8.69 ../../pom.xml 4.0.0 diff --git a/components/org.wso2.carbon.identity.password.expiry/pom.xml b/components/org.wso2.carbon.identity.password.expiry/pom.xml index f1f3d671e1..52eefa2b74 100644 --- a/components/org.wso2.carbon.identity.password.expiry/pom.xml +++ b/components/org.wso2.carbon.identity.password.expiry/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.69-SNAPSHOT + 1.8.69 ../../pom.xml diff --git a/components/org.wso2.carbon.identity.password.history/pom.xml b/components/org.wso2.carbon.identity.password.history/pom.xml index 78eafd2e62..c5d500cda6 100644 --- a/components/org.wso2.carbon.identity.password.history/pom.xml +++ b/components/org.wso2.carbon.identity.password.history/pom.xml @@ -18,7 +18,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.69-SNAPSHOT + 1.8.69 ../../pom.xml diff --git a/components/org.wso2.carbon.identity.password.policy/pom.xml b/components/org.wso2.carbon.identity.password.policy/pom.xml index 2aa6d56ff6..8514e7bef7 100644 --- a/components/org.wso2.carbon.identity.password.policy/pom.xml +++ b/components/org.wso2.carbon.identity.password.policy/pom.xml @@ -18,7 +18,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.69-SNAPSHOT + 1.8.69 ../../pom.xml diff --git a/components/org.wso2.carbon.identity.piicontroller/pom.xml b/components/org.wso2.carbon.identity.piicontroller/pom.xml index 319f5bd227..efd7677f9f 100644 --- a/components/org.wso2.carbon.identity.piicontroller/pom.xml +++ b/components/org.wso2.carbon.identity.piicontroller/pom.xml @@ -19,7 +19,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.69-SNAPSHOT + 1.8.69 ../../pom.xml diff --git a/components/org.wso2.carbon.identity.recovery.endpoint/pom.xml b/components/org.wso2.carbon.identity.recovery.endpoint/pom.xml index d5ddb193d3..8170dfecb7 100644 --- a/components/org.wso2.carbon.identity.recovery.endpoint/pom.xml +++ b/components/org.wso2.carbon.identity.recovery.endpoint/pom.xml @@ -5,7 +5,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.69-SNAPSHOT + 1.8.69 ../../pom.xml diff --git a/components/org.wso2.carbon.identity.recovery.ui/pom.xml b/components/org.wso2.carbon.identity.recovery.ui/pom.xml index ba2336e998..63c0a8f219 100644 --- a/components/org.wso2.carbon.identity.recovery.ui/pom.xml +++ b/components/org.wso2.carbon.identity.recovery.ui/pom.xml @@ -18,7 +18,7 @@ identity-governance org.wso2.carbon.identity.governance - 1.8.69-SNAPSHOT + 1.8.69 ../../pom.xml diff --git a/components/org.wso2.carbon.identity.recovery/pom.xml b/components/org.wso2.carbon.identity.recovery/pom.xml index c8d804fcc6..b1be93e019 100644 --- a/components/org.wso2.carbon.identity.recovery/pom.xml +++ b/components/org.wso2.carbon.identity.recovery/pom.xml @@ -18,7 +18,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.69-SNAPSHOT + 1.8.69 ../../pom.xml diff --git a/components/org.wso2.carbon.identity.tenant.resource.manager/pom.xml b/components/org.wso2.carbon.identity.tenant.resource.manager/pom.xml index cad5e0c758..f508ec2b30 100644 --- a/components/org.wso2.carbon.identity.tenant.resource.manager/pom.xml +++ b/components/org.wso2.carbon.identity.tenant.resource.manager/pom.xml @@ -22,7 +22,7 @@ identity-governance org.wso2.carbon.identity.governance - 1.8.69-SNAPSHOT + 1.8.69 ../../pom.xml diff --git a/components/org.wso2.carbon.identity.user.endpoint/pom.xml b/components/org.wso2.carbon.identity.user.endpoint/pom.xml index 1c39d221a0..d7217f65e3 100644 --- a/components/org.wso2.carbon.identity.user.endpoint/pom.xml +++ b/components/org.wso2.carbon.identity.user.endpoint/pom.xml @@ -5,7 +5,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.69-SNAPSHOT + 1.8.69 ../../pom.xml diff --git a/components/org.wso2.carbon.identity.user.export.core/pom.xml b/components/org.wso2.carbon.identity.user.export.core/pom.xml index 2ed84e0bd4..3a3103660b 100644 --- a/components/org.wso2.carbon.identity.user.export.core/pom.xml +++ b/components/org.wso2.carbon.identity.user.export.core/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.69-SNAPSHOT + 1.8.69 ../../pom.xml diff --git a/components/org.wso2.carbon.identity.user.rename.core/pom.xml b/components/org.wso2.carbon.identity.user.rename.core/pom.xml index dcd3bb0e46..43c2904995 100644 --- a/components/org.wso2.carbon.identity.user.rename.core/pom.xml +++ b/components/org.wso2.carbon.identity.user.rename.core/pom.xml @@ -20,7 +20,7 @@ identity-governance org.wso2.carbon.identity.governance - 1.8.69-SNAPSHOT + 1.8.69 ../../pom.xml 4.0.0 diff --git a/features/org.wso2.carbon.identity.account.suspension.notification.task.server.feature/pom.xml b/features/org.wso2.carbon.identity.account.suspension.notification.task.server.feature/pom.xml index 021ecd2e86..fabff30c0f 100644 --- a/features/org.wso2.carbon.identity.account.suspension.notification.task.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.account.suspension.notification.task.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance ../../pom.xml - 1.8.69-SNAPSHOT + 1.8.69 4.0.0 diff --git a/features/org.wso2.carbon.identity.auth.attribute.handler.server.feature/pom.xml b/features/org.wso2.carbon.identity.auth.attribute.handler.server.feature/pom.xml index 40df7d6ede..cffb10ef74 100644 --- a/features/org.wso2.carbon.identity.auth.attribute.handler.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.auth.attribute.handler.server.feature/pom.xml @@ -22,7 +22,7 @@ org.wso2.carbon.identity.governance identity-governance ../../pom.xml - 1.8.69-SNAPSHOT + 1.8.69 4.0.0 diff --git a/features/org.wso2.carbon.identity.captcha.server.feature/pom.xml b/features/org.wso2.carbon.identity.captcha.server.feature/pom.xml index 8cc3e4f949..d1c3b6d286 100644 --- a/features/org.wso2.carbon.identity.captcha.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.captcha.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance ../../pom.xml - 1.8.69-SNAPSHOT + 1.8.69 4.0.0 diff --git a/features/org.wso2.carbon.identity.governance.feature/pom.xml b/features/org.wso2.carbon.identity.governance.feature/pom.xml index b5684de6bb..102401cc1b 100644 --- a/features/org.wso2.carbon.identity.governance.feature/pom.xml +++ b/features/org.wso2.carbon.identity.governance.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.69-SNAPSHOT + 1.8.69 ../../pom.xml diff --git a/features/org.wso2.carbon.identity.governance.server.feature/pom.xml b/features/org.wso2.carbon.identity.governance.server.feature/pom.xml index eb5459620c..2daaa5e366 100644 --- a/features/org.wso2.carbon.identity.governance.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.governance.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance ../../pom.xml - 1.8.69-SNAPSHOT + 1.8.69 4.0.0 diff --git a/features/org.wso2.carbon.identity.idle.account.identification.server.feature/pom.xml b/features/org.wso2.carbon.identity.idle.account.identification.server.feature/pom.xml index de0a44bac6..7d70effb9e 100644 --- a/features/org.wso2.carbon.identity.idle.account.identification.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.idle.account.identification.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance ../../pom.xml - 1.8.69-SNAPSHOT + 1.8.69 4.0.0 diff --git a/features/org.wso2.carbon.identity.multi.attribute.login.service.server.feature/pom.xml b/features/org.wso2.carbon.identity.multi.attribute.login.service.server.feature/pom.xml index 9dc41b1460..5cfd0f86ec 100644 --- a/features/org.wso2.carbon.identity.multi.attribute.login.service.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.multi.attribute.login.service.server.feature/pom.xml @@ -3,7 +3,7 @@ identity-governance org.wso2.carbon.identity.governance - 1.8.69-SNAPSHOT + 1.8.69 ../../pom.xml 4.0.0 diff --git a/features/org.wso2.carbon.identity.password.expiry.server.feature/pom.xml b/features/org.wso2.carbon.identity.password.expiry.server.feature/pom.xml index 7fc27d1197..2744f7d863 100644 --- a/features/org.wso2.carbon.identity.password.expiry.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.password.expiry.server.feature/pom.xml @@ -22,7 +22,7 @@ org.wso2.carbon.identity.governance identity-governance ../../pom.xml - 1.8.69-SNAPSHOT + 1.8.69 4.0.0 diff --git a/features/org.wso2.carbon.identity.password.history.server.feature/pom.xml b/features/org.wso2.carbon.identity.password.history.server.feature/pom.xml index 83475ca417..ca3aac7ee2 100644 --- a/features/org.wso2.carbon.identity.password.history.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.password.history.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance ../../pom.xml - 1.8.69-SNAPSHOT + 1.8.69 4.0.0 diff --git a/features/org.wso2.carbon.identity.password.policy.server.feature/pom.xml b/features/org.wso2.carbon.identity.password.policy.server.feature/pom.xml index 5dc4154825..65620136f4 100644 --- a/features/org.wso2.carbon.identity.password.policy.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.password.policy.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance ../../pom.xml - 1.8.69-SNAPSHOT + 1.8.69 4.0.0 diff --git a/features/org.wso2.carbon.identity.piicontroller.server.feature/pom.xml b/features/org.wso2.carbon.identity.piicontroller.server.feature/pom.xml index 15bbd45465..62e497e42d 100644 --- a/features/org.wso2.carbon.identity.piicontroller.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.piicontroller.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance ../../pom.xml - 1.8.69-SNAPSHOT + 1.8.69 4.0.0 diff --git a/features/org.wso2.carbon.identity.recovery.server.feature/pom.xml b/features/org.wso2.carbon.identity.recovery.server.feature/pom.xml index b65b64ba3b..34745e456e 100644 --- a/features/org.wso2.carbon.identity.recovery.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.recovery.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance ../../pom.xml - 1.8.69-SNAPSHOT + 1.8.69 4.0.0 diff --git a/features/org.wso2.carbon.identity.recovery.ui.feature/pom.xml b/features/org.wso2.carbon.identity.recovery.ui.feature/pom.xml index 83144832bc..f841807b33 100644 --- a/features/org.wso2.carbon.identity.recovery.ui.feature/pom.xml +++ b/features/org.wso2.carbon.identity.recovery.ui.feature/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.69-SNAPSHOT + 1.8.69 ../../pom.xml diff --git a/features/org.wso2.carbon.identity.tenant.resource.manager.feature/pom.xml b/features/org.wso2.carbon.identity.tenant.resource.manager.feature/pom.xml index bddac8bbaa..0e2986dbfc 100644 --- a/features/org.wso2.carbon.identity.tenant.resource.manager.feature/pom.xml +++ b/features/org.wso2.carbon.identity.tenant.resource.manager.feature/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.69-SNAPSHOT + 1.8.69 ../../pom.xml diff --git a/features/org.wso2.carbon.identity.user.server.feature/pom.xml b/features/org.wso2.carbon.identity.user.server.feature/pom.xml index 1c8ab956d6..08141b316b 100644 --- a/features/org.wso2.carbon.identity.user.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.user.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance ../../pom.xml - 1.8.69-SNAPSHOT + 1.8.69 4.0.0 diff --git a/pom.xml b/pom.xml index ce647dd1e7..fd32463b6c 100644 --- a/pom.xml +++ b/pom.xml @@ -18,7 +18,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.69-SNAPSHOT + 1.8.69 4.0.0 pom WSO2 Carbon - Governance Module @@ -37,7 +37,7 @@ https://github.com/wso2-extensions/identity-governance.git scm:git:https://github.com/wso2-extensions/identity-governance.git scm:git:https://github.com/wso2-extensions/identity-governance.git - v1.1.0-SNAPSHOT + v1.8.69 diff --git a/service-stubs/identity/org.wso2.carbon.identity.recovery.stub/pom.xml b/service-stubs/identity/org.wso2.carbon.identity.recovery.stub/pom.xml index 211920fcaf..1581bc80db 100644 --- a/service-stubs/identity/org.wso2.carbon.identity.recovery.stub/pom.xml +++ b/service-stubs/identity/org.wso2.carbon.identity.recovery.stub/pom.xml @@ -19,7 +19,7 @@ org.wso2.carbon.identity.governance carbon-service-stubs - 1.8.69-SNAPSHOT + 1.8.69 ../pom.xml diff --git a/service-stubs/identity/pom.xml b/service-stubs/identity/pom.xml index 48a2495a09..0298d5ed4e 100644 --- a/service-stubs/identity/pom.xml +++ b/service-stubs/identity/pom.xml @@ -19,7 +19,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.69-SNAPSHOT + 1.8.69 ../../pom.xml From 2c4d803c95d76937ed215a266238470b1e26f24b Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 19 Sep 2023 05:05:31 +0000 Subject: [PATCH 31/31] [WSO2 Release] [Jenkins #2545] [Release 1.8.69] prepare for next development iteration --- .../pom.xml | 2 +- .../org.wso2.carbon.identity.api.user.governance/pom.xml | 4 ++-- components/org.wso2.carbon.identity.api.user.recovery/pom.xml | 4 ++-- .../org.wso2.carbon.identity.auth.attribute.handler/pom.xml | 2 +- components/org.wso2.carbon.identity.captcha/pom.xml | 2 +- components/org.wso2.carbon.identity.governance/pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../org.wso2.carbon.identity.multi.attribute.login/pom.xml | 2 +- components/org.wso2.carbon.identity.password.expiry/pom.xml | 2 +- components/org.wso2.carbon.identity.password.history/pom.xml | 2 +- components/org.wso2.carbon.identity.password.policy/pom.xml | 2 +- components/org.wso2.carbon.identity.piicontroller/pom.xml | 2 +- components/org.wso2.carbon.identity.recovery.endpoint/pom.xml | 2 +- components/org.wso2.carbon.identity.recovery.ui/pom.xml | 2 +- components/org.wso2.carbon.identity.recovery/pom.xml | 2 +- .../org.wso2.carbon.identity.tenant.resource.manager/pom.xml | 2 +- components/org.wso2.carbon.identity.user.endpoint/pom.xml | 2 +- components/org.wso2.carbon.identity.user.export.core/pom.xml | 2 +- components/org.wso2.carbon.identity.user.rename.core/pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../org.wso2.carbon.identity.captcha.server.feature/pom.xml | 2 +- features/org.wso2.carbon.identity.governance.feature/pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 2 +- .../org.wso2.carbon.identity.recovery.server.feature/pom.xml | 2 +- features/org.wso2.carbon.identity.recovery.ui.feature/pom.xml | 2 +- .../pom.xml | 2 +- features/org.wso2.carbon.identity.user.server.feature/pom.xml | 2 +- pom.xml | 4 ++-- .../identity/org.wso2.carbon.identity.recovery.stub/pom.xml | 2 +- service-stubs/identity/pom.xml | 2 +- 39 files changed, 42 insertions(+), 42 deletions(-) diff --git a/components/org.wso2.carbon.identity.account.suspension.notification.task/pom.xml b/components/org.wso2.carbon.identity.account.suspension.notification.task/pom.xml index f06697ebb4..9557ae8429 100644 --- a/components/org.wso2.carbon.identity.account.suspension.notification.task/pom.xml +++ b/components/org.wso2.carbon.identity.account.suspension.notification.task/pom.xml @@ -20,7 +20,7 @@ identity-governance org.wso2.carbon.identity.governance - 1.8.69 + 1.8.70-SNAPSHOT ../../pom.xml diff --git a/components/org.wso2.carbon.identity.api.user.governance/pom.xml b/components/org.wso2.carbon.identity.api.user.governance/pom.xml index a14f920824..9acb377dd5 100644 --- a/components/org.wso2.carbon.identity.api.user.governance/pom.xml +++ b/components/org.wso2.carbon.identity.api.user.governance/pom.xml @@ -23,12 +23,12 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.69 + 1.8.70-SNAPSHOT ../.. org.wso2.carbon.identity.api.user.governance - 1.8.69 + 1.8.70-SNAPSHOT jar WSO2 Carbon - User Rest Governance API WSO2 Carbon - User Rest Governance API diff --git a/components/org.wso2.carbon.identity.api.user.recovery/pom.xml b/components/org.wso2.carbon.identity.api.user.recovery/pom.xml index 1034f81926..25873aca6d 100644 --- a/components/org.wso2.carbon.identity.api.user.recovery/pom.xml +++ b/components/org.wso2.carbon.identity.api.user.recovery/pom.xml @@ -23,12 +23,12 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.69 + 1.8.70-SNAPSHOT ../.. org.wso2.carbon.identity.api.user.recovery - 1.8.69 + 1.8.70-SNAPSHOT jar WSO2 Carbon - Identity Management Recovery Rest API WSO2 Carbon - Identity Management Recovery Rest API diff --git a/components/org.wso2.carbon.identity.auth.attribute.handler/pom.xml b/components/org.wso2.carbon.identity.auth.attribute.handler/pom.xml index 8549d89930..2c8e9331ee 100644 --- a/components/org.wso2.carbon.identity.auth.attribute.handler/pom.xml +++ b/components/org.wso2.carbon.identity.auth.attribute.handler/pom.xml @@ -22,7 +22,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.69 + 1.8.70-SNAPSHOT ../../pom.xml diff --git a/components/org.wso2.carbon.identity.captcha/pom.xml b/components/org.wso2.carbon.identity.captcha/pom.xml index 7debbcaca7..f32f75ebb1 100644 --- a/components/org.wso2.carbon.identity.captcha/pom.xml +++ b/components/org.wso2.carbon.identity.captcha/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.69 + 1.8.70-SNAPSHOT ../../pom.xml diff --git a/components/org.wso2.carbon.identity.governance/pom.xml b/components/org.wso2.carbon.identity.governance/pom.xml index 4c8de00eec..3a52e30e0a 100644 --- a/components/org.wso2.carbon.identity.governance/pom.xml +++ b/components/org.wso2.carbon.identity.governance/pom.xml @@ -18,7 +18,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.69 + 1.8.70-SNAPSHOT ../../pom.xml diff --git a/components/org.wso2.carbon.identity.idle.account.identification/pom.xml b/components/org.wso2.carbon.identity.idle.account.identification/pom.xml index c33fa0f7a6..8d902e88b2 100644 --- a/components/org.wso2.carbon.identity.idle.account.identification/pom.xml +++ b/components/org.wso2.carbon.identity.idle.account.identification/pom.xml @@ -18,7 +18,7 @@ identity-governance org.wso2.carbon.identity.governance - 1.8.69 + 1.8.70-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/components/org.wso2.carbon.identity.multi.attribute.login/org.wso2.carbon.identity.multi.attribute.login.resolver.regex/pom.xml b/components/org.wso2.carbon.identity.multi.attribute.login/org.wso2.carbon.identity.multi.attribute.login.resolver.regex/pom.xml index 1b9b31311d..dd95c36bb8 100644 --- a/components/org.wso2.carbon.identity.multi.attribute.login/org.wso2.carbon.identity.multi.attribute.login.resolver.regex/pom.xml +++ b/components/org.wso2.carbon.identity.multi.attribute.login/org.wso2.carbon.identity.multi.attribute.login.resolver.regex/pom.xml @@ -21,7 +21,7 @@ identity-governance org.wso2.carbon.identity.governance - 1.8.69 + 1.8.70-SNAPSHOT ../../../pom.xml 4.0.0 diff --git a/components/org.wso2.carbon.identity.multi.attribute.login/org.wso2.carbon.identity.multi.attribute.login.service/pom.xml b/components/org.wso2.carbon.identity.multi.attribute.login/org.wso2.carbon.identity.multi.attribute.login.service/pom.xml index 68d7bb33fa..5567773e13 100644 --- a/components/org.wso2.carbon.identity.multi.attribute.login/org.wso2.carbon.identity.multi.attribute.login.service/pom.xml +++ b/components/org.wso2.carbon.identity.multi.attribute.login/org.wso2.carbon.identity.multi.attribute.login.service/pom.xml @@ -21,7 +21,7 @@ identity-governance org.wso2.carbon.identity.governance - 1.8.69 + 1.8.70-SNAPSHOT ../../../pom.xml 4.0.0 diff --git a/components/org.wso2.carbon.identity.multi.attribute.login/pom.xml b/components/org.wso2.carbon.identity.multi.attribute.login/pom.xml index 0c55fb9696..1911120181 100644 --- a/components/org.wso2.carbon.identity.multi.attribute.login/pom.xml +++ b/components/org.wso2.carbon.identity.multi.attribute.login/pom.xml @@ -21,7 +21,7 @@ identity-governance org.wso2.carbon.identity.governance - 1.8.69 + 1.8.70-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/components/org.wso2.carbon.identity.password.expiry/pom.xml b/components/org.wso2.carbon.identity.password.expiry/pom.xml index 52eefa2b74..d1a8a7385e 100644 --- a/components/org.wso2.carbon.identity.password.expiry/pom.xml +++ b/components/org.wso2.carbon.identity.password.expiry/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.69 + 1.8.70-SNAPSHOT ../../pom.xml diff --git a/components/org.wso2.carbon.identity.password.history/pom.xml b/components/org.wso2.carbon.identity.password.history/pom.xml index c5d500cda6..1c784d69d4 100644 --- a/components/org.wso2.carbon.identity.password.history/pom.xml +++ b/components/org.wso2.carbon.identity.password.history/pom.xml @@ -18,7 +18,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.69 + 1.8.70-SNAPSHOT ../../pom.xml diff --git a/components/org.wso2.carbon.identity.password.policy/pom.xml b/components/org.wso2.carbon.identity.password.policy/pom.xml index 8514e7bef7..c8fc73b9a2 100644 --- a/components/org.wso2.carbon.identity.password.policy/pom.xml +++ b/components/org.wso2.carbon.identity.password.policy/pom.xml @@ -18,7 +18,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.69 + 1.8.70-SNAPSHOT ../../pom.xml diff --git a/components/org.wso2.carbon.identity.piicontroller/pom.xml b/components/org.wso2.carbon.identity.piicontroller/pom.xml index efd7677f9f..7642e5a174 100644 --- a/components/org.wso2.carbon.identity.piicontroller/pom.xml +++ b/components/org.wso2.carbon.identity.piicontroller/pom.xml @@ -19,7 +19,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.69 + 1.8.70-SNAPSHOT ../../pom.xml diff --git a/components/org.wso2.carbon.identity.recovery.endpoint/pom.xml b/components/org.wso2.carbon.identity.recovery.endpoint/pom.xml index 8170dfecb7..1a9ea1cc83 100644 --- a/components/org.wso2.carbon.identity.recovery.endpoint/pom.xml +++ b/components/org.wso2.carbon.identity.recovery.endpoint/pom.xml @@ -5,7 +5,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.69 + 1.8.70-SNAPSHOT ../../pom.xml diff --git a/components/org.wso2.carbon.identity.recovery.ui/pom.xml b/components/org.wso2.carbon.identity.recovery.ui/pom.xml index 63c0a8f219..9d167d7c49 100644 --- a/components/org.wso2.carbon.identity.recovery.ui/pom.xml +++ b/components/org.wso2.carbon.identity.recovery.ui/pom.xml @@ -18,7 +18,7 @@ identity-governance org.wso2.carbon.identity.governance - 1.8.69 + 1.8.70-SNAPSHOT ../../pom.xml diff --git a/components/org.wso2.carbon.identity.recovery/pom.xml b/components/org.wso2.carbon.identity.recovery/pom.xml index b1be93e019..6ad95e50b3 100644 --- a/components/org.wso2.carbon.identity.recovery/pom.xml +++ b/components/org.wso2.carbon.identity.recovery/pom.xml @@ -18,7 +18,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.69 + 1.8.70-SNAPSHOT ../../pom.xml diff --git a/components/org.wso2.carbon.identity.tenant.resource.manager/pom.xml b/components/org.wso2.carbon.identity.tenant.resource.manager/pom.xml index f508ec2b30..89ef3fdc1a 100644 --- a/components/org.wso2.carbon.identity.tenant.resource.manager/pom.xml +++ b/components/org.wso2.carbon.identity.tenant.resource.manager/pom.xml @@ -22,7 +22,7 @@ identity-governance org.wso2.carbon.identity.governance - 1.8.69 + 1.8.70-SNAPSHOT ../../pom.xml diff --git a/components/org.wso2.carbon.identity.user.endpoint/pom.xml b/components/org.wso2.carbon.identity.user.endpoint/pom.xml index d7217f65e3..9e47b543cd 100644 --- a/components/org.wso2.carbon.identity.user.endpoint/pom.xml +++ b/components/org.wso2.carbon.identity.user.endpoint/pom.xml @@ -5,7 +5,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.69 + 1.8.70-SNAPSHOT ../../pom.xml diff --git a/components/org.wso2.carbon.identity.user.export.core/pom.xml b/components/org.wso2.carbon.identity.user.export.core/pom.xml index 3a3103660b..f76df17f41 100644 --- a/components/org.wso2.carbon.identity.user.export.core/pom.xml +++ b/components/org.wso2.carbon.identity.user.export.core/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.69 + 1.8.70-SNAPSHOT ../../pom.xml diff --git a/components/org.wso2.carbon.identity.user.rename.core/pom.xml b/components/org.wso2.carbon.identity.user.rename.core/pom.xml index 43c2904995..8ebb23096b 100644 --- a/components/org.wso2.carbon.identity.user.rename.core/pom.xml +++ b/components/org.wso2.carbon.identity.user.rename.core/pom.xml @@ -20,7 +20,7 @@ identity-governance org.wso2.carbon.identity.governance - 1.8.69 + 1.8.70-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/features/org.wso2.carbon.identity.account.suspension.notification.task.server.feature/pom.xml b/features/org.wso2.carbon.identity.account.suspension.notification.task.server.feature/pom.xml index fabff30c0f..0ef8e43839 100644 --- a/features/org.wso2.carbon.identity.account.suspension.notification.task.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.account.suspension.notification.task.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance ../../pom.xml - 1.8.69 + 1.8.70-SNAPSHOT 4.0.0 diff --git a/features/org.wso2.carbon.identity.auth.attribute.handler.server.feature/pom.xml b/features/org.wso2.carbon.identity.auth.attribute.handler.server.feature/pom.xml index cffb10ef74..5f5ef0171c 100644 --- a/features/org.wso2.carbon.identity.auth.attribute.handler.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.auth.attribute.handler.server.feature/pom.xml @@ -22,7 +22,7 @@ org.wso2.carbon.identity.governance identity-governance ../../pom.xml - 1.8.69 + 1.8.70-SNAPSHOT 4.0.0 diff --git a/features/org.wso2.carbon.identity.captcha.server.feature/pom.xml b/features/org.wso2.carbon.identity.captcha.server.feature/pom.xml index d1c3b6d286..349f0d6e82 100644 --- a/features/org.wso2.carbon.identity.captcha.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.captcha.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance ../../pom.xml - 1.8.69 + 1.8.70-SNAPSHOT 4.0.0 diff --git a/features/org.wso2.carbon.identity.governance.feature/pom.xml b/features/org.wso2.carbon.identity.governance.feature/pom.xml index 102401cc1b..97b3ab5488 100644 --- a/features/org.wso2.carbon.identity.governance.feature/pom.xml +++ b/features/org.wso2.carbon.identity.governance.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.69 + 1.8.70-SNAPSHOT ../../pom.xml diff --git a/features/org.wso2.carbon.identity.governance.server.feature/pom.xml b/features/org.wso2.carbon.identity.governance.server.feature/pom.xml index 2daaa5e366..faa18e0a0b 100644 --- a/features/org.wso2.carbon.identity.governance.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.governance.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance ../../pom.xml - 1.8.69 + 1.8.70-SNAPSHOT 4.0.0 diff --git a/features/org.wso2.carbon.identity.idle.account.identification.server.feature/pom.xml b/features/org.wso2.carbon.identity.idle.account.identification.server.feature/pom.xml index 7d70effb9e..bce6cec2be 100644 --- a/features/org.wso2.carbon.identity.idle.account.identification.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.idle.account.identification.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance ../../pom.xml - 1.8.69 + 1.8.70-SNAPSHOT 4.0.0 diff --git a/features/org.wso2.carbon.identity.multi.attribute.login.service.server.feature/pom.xml b/features/org.wso2.carbon.identity.multi.attribute.login.service.server.feature/pom.xml index 5cfd0f86ec..57a7ddbeb3 100644 --- a/features/org.wso2.carbon.identity.multi.attribute.login.service.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.multi.attribute.login.service.server.feature/pom.xml @@ -3,7 +3,7 @@ identity-governance org.wso2.carbon.identity.governance - 1.8.69 + 1.8.70-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/features/org.wso2.carbon.identity.password.expiry.server.feature/pom.xml b/features/org.wso2.carbon.identity.password.expiry.server.feature/pom.xml index 2744f7d863..6cb2fdf3c4 100644 --- a/features/org.wso2.carbon.identity.password.expiry.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.password.expiry.server.feature/pom.xml @@ -22,7 +22,7 @@ org.wso2.carbon.identity.governance identity-governance ../../pom.xml - 1.8.69 + 1.8.70-SNAPSHOT 4.0.0 diff --git a/features/org.wso2.carbon.identity.password.history.server.feature/pom.xml b/features/org.wso2.carbon.identity.password.history.server.feature/pom.xml index ca3aac7ee2..e11b292431 100644 --- a/features/org.wso2.carbon.identity.password.history.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.password.history.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance ../../pom.xml - 1.8.69 + 1.8.70-SNAPSHOT 4.0.0 diff --git a/features/org.wso2.carbon.identity.password.policy.server.feature/pom.xml b/features/org.wso2.carbon.identity.password.policy.server.feature/pom.xml index 65620136f4..63b6ab18fa 100644 --- a/features/org.wso2.carbon.identity.password.policy.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.password.policy.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance ../../pom.xml - 1.8.69 + 1.8.70-SNAPSHOT 4.0.0 diff --git a/features/org.wso2.carbon.identity.piicontroller.server.feature/pom.xml b/features/org.wso2.carbon.identity.piicontroller.server.feature/pom.xml index 62e497e42d..26e3ecea34 100644 --- a/features/org.wso2.carbon.identity.piicontroller.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.piicontroller.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance ../../pom.xml - 1.8.69 + 1.8.70-SNAPSHOT 4.0.0 diff --git a/features/org.wso2.carbon.identity.recovery.server.feature/pom.xml b/features/org.wso2.carbon.identity.recovery.server.feature/pom.xml index 34745e456e..8079c99ec0 100644 --- a/features/org.wso2.carbon.identity.recovery.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.recovery.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance ../../pom.xml - 1.8.69 + 1.8.70-SNAPSHOT 4.0.0 diff --git a/features/org.wso2.carbon.identity.recovery.ui.feature/pom.xml b/features/org.wso2.carbon.identity.recovery.ui.feature/pom.xml index f841807b33..e46f45337d 100644 --- a/features/org.wso2.carbon.identity.recovery.ui.feature/pom.xml +++ b/features/org.wso2.carbon.identity.recovery.ui.feature/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.69 + 1.8.70-SNAPSHOT ../../pom.xml diff --git a/features/org.wso2.carbon.identity.tenant.resource.manager.feature/pom.xml b/features/org.wso2.carbon.identity.tenant.resource.manager.feature/pom.xml index 0e2986dbfc..408d9f52e4 100644 --- a/features/org.wso2.carbon.identity.tenant.resource.manager.feature/pom.xml +++ b/features/org.wso2.carbon.identity.tenant.resource.manager.feature/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.69 + 1.8.70-SNAPSHOT ../../pom.xml diff --git a/features/org.wso2.carbon.identity.user.server.feature/pom.xml b/features/org.wso2.carbon.identity.user.server.feature/pom.xml index 08141b316b..5ada011107 100644 --- a/features/org.wso2.carbon.identity.user.server.feature/pom.xml +++ b/features/org.wso2.carbon.identity.user.server.feature/pom.xml @@ -21,7 +21,7 @@ org.wso2.carbon.identity.governance identity-governance ../../pom.xml - 1.8.69 + 1.8.70-SNAPSHOT 4.0.0 diff --git a/pom.xml b/pom.xml index fd32463b6c..533d4d3a32 100644 --- a/pom.xml +++ b/pom.xml @@ -18,7 +18,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.69 + 1.8.70-SNAPSHOT 4.0.0 pom WSO2 Carbon - Governance Module @@ -37,7 +37,7 @@ https://github.com/wso2-extensions/identity-governance.git scm:git:https://github.com/wso2-extensions/identity-governance.git scm:git:https://github.com/wso2-extensions/identity-governance.git - v1.8.69 + v1.1.0-SNAPSHOT diff --git a/service-stubs/identity/org.wso2.carbon.identity.recovery.stub/pom.xml b/service-stubs/identity/org.wso2.carbon.identity.recovery.stub/pom.xml index 1581bc80db..0ff4740edb 100644 --- a/service-stubs/identity/org.wso2.carbon.identity.recovery.stub/pom.xml +++ b/service-stubs/identity/org.wso2.carbon.identity.recovery.stub/pom.xml @@ -19,7 +19,7 @@ org.wso2.carbon.identity.governance carbon-service-stubs - 1.8.69 + 1.8.70-SNAPSHOT ../pom.xml diff --git a/service-stubs/identity/pom.xml b/service-stubs/identity/pom.xml index 0298d5ed4e..bf61779904 100644 --- a/service-stubs/identity/pom.xml +++ b/service-stubs/identity/pom.xml @@ -19,7 +19,7 @@ org.wso2.carbon.identity.governance identity-governance - 1.8.69 + 1.8.70-SNAPSHOT ../../pom.xml