This is an automated email from the ASF dual-hosted git repository.

dahn pushed a change to branch healthcheck-main
in repository https://gitbox.apache.org/repos/asf/cloudstack.git


 discard 2822eb4e3ee DO NOT MERGE
     add 6ec3c486ddb Enhance the `listAffinityGroups` API by adding the 
dedicated resources related to an affinity group (#9188)
     add 638c1526d0a Fix the Cloudian Integration SSO Redirect link (#9656)
     add 0655075f51c Feature: Forgot password (#9509)
     add a0932b0f165 Restore listNetworks behavior & clean up the code (#9461)
     add 15e25bc1cef Merge release branch 4.19 to main
     add 68f459b334c CapacityManagementImpl.updateCapacityForHost(..) use VM 
update time in capacity calculation. (#9662)
     add b19c069ade5 allow domain suffix update in shared networks (#9585)
     add 1d4700a0bdd Provide encryption key for DATA volume type (in addition 
to ROOT) to copy volume. (#9663)
     add bff24de3964 DO NOT MERGE

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (2822eb4e3ee)
            \
             N -- N -- N   refs/heads/healthcheck-main (bff24de3964)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

No new revisions were added by this update.

Summary of changes:
 .../main/java/com/cloud/dc/DedicatedResources.java |   4 +
 .../cloudstack/affinity/AffinityGroupResponse.java |  13 +
 .../apache/cloudstack/api/ApiServerService.java    |   6 +
 .../cloudstack/api/auth/APIAuthenticationType.java |   2 +-
 .../DedicatedResourceResponse.java}                |  30 +-
 .../main/java/com/cloud/user/UserAccountVO.java    |   4 +
 .../cloudstack/resourcedetail/UserDetailVO.java    |   2 +
 .../dedicated/DedicatedResourceManagerImpl.java    |  36 +--
 .../kvm/storage/KVMStorageProcessor.java           |   4 +-
 .../cloudstack/cloudian/client/CloudianUtils.java  |   8 +-
 .../cloudstack/cloudian/CloudianUtilsTest.java     |  87 ++++++
 .../contrail/management/MockAccountManager.java    |   5 +
 pom.xml                                            |   1 +
 server/pom.xml                                     |   5 +
 server/src/main/java/com/cloud/api/ApiServer.java  |  71 ++++-
 .../api/auth/APIAuthenticationManagerImpl.java     |   6 +
 ... DefaultForgotPasswordAPIAuthenticatorCmd.java} |  86 ++----
 ...> DefaultResetPasswordAPIAuthenticatorCmd.java} | 110 ++++---
 .../api/query/dao/AffinityGroupJoinDaoImpl.java    |  61 +++-
 .../com/cloud/capacity/CapacityManagerImpl.java    |   4 +-
 .../java/com/cloud/network/NetworkServiceImpl.java | 284 +++++++++---------
 .../main/java/com/cloud/user/AccountManager.java   |   4 +-
 .../java/com/cloud/user/AccountManagerImpl.java    |   9 +-
 .../cloudstack/user/UserPasswordResetManager.java  |  71 +++++
 .../user/UserPasswordResetManagerImpl.java         | 312 ++++++++++++++++++++
 .../core/spring-server-core-managers-context.xml   |   1 +
 .../src/test/java/com/cloud/api/ApiServerTest.java |  92 +++++-
 .../com/cloud/user/AccountManagerImplTest.java     |  20 +-
 .../com/cloud/user/MockAccountManagerImpl.java     |   4 +
 .../user/UserPasswordResetManagerImplTest.java     | 150 ++++++++++
 tools/apidoc/gen_toc.py                            |   4 +-
 ui/public/locales/en.json                          |   6 +
 ui/public/locales/pt_BR.json                       |   1 +
 ui/src/components/view/DetailsTab.vue              |  20 ++
 ui/src/config/router.js                            |  10 +
 ui/src/config/section/compute.js                   |   2 +-
 ui/src/permission.js                               |   2 +-
 ui/src/utils/request.js                            |   2 +-
 ui/src/views/auth/ForgotPassword.vue               | 260 +++++++++++++++++
 ui/src/views/auth/Login.vue                        |  23 +-
 ui/src/views/auth/ResetPassword.vue                | 318 +++++++++++++++++++++
 ui/src/views/network/UpdateNetwork.vue             |  10 +-
 .../cloudstack/utils/mailing/SMTPMailSender.java   |  20 +-
 43 files changed, 1829 insertions(+), 341 deletions(-)
 copy 
api/src/main/java/org/apache/cloudstack/{api/response/CustomCertificateResponse.java
 => dedicated/DedicatedResourceResponse.java} (55%)
 create mode 100644 
plugins/integrations/cloudian/src/test/java/org/apache/cloudstack/cloudian/CloudianUtilsTest.java
 copy 
server/src/main/java/com/cloud/api/auth/{DefaultLoginAPIAuthenticatorCmd.java 
=> DefaultForgotPasswordAPIAuthenticatorCmd.java} (60%)
 copy 
server/src/main/java/com/cloud/api/auth/{DefaultLoginAPIAuthenticatorCmd.java 
=> DefaultResetPasswordAPIAuthenticatorCmd.java} (60%)
 create mode 100644 
server/src/main/java/org/apache/cloudstack/user/UserPasswordResetManager.java
 create mode 100644 
server/src/main/java/org/apache/cloudstack/user/UserPasswordResetManagerImpl.java
 create mode 100644 
server/src/test/java/org/apache/cloudstack/user/UserPasswordResetManagerImplTest.java
 create mode 100644 ui/src/views/auth/ForgotPassword.vue
 create mode 100644 ui/src/views/auth/ResetPassword.vue

Reply via email to