This is an automated email from the ASF dual-hosted git repository.
shwstppr pushed a change to branch 4.22
in repository https://gitbox.apache.org/repos/asf/cloudstack.git
from 17098c15eb3 Fix lscpu speed checking order (#12190)
add 2327e83ed3e UI: Fix listing of resources for ASG belonging to a
project (#13187)
add c2c74c56e8f api: fix ProjectResponse.setVpcLimit assigning the network
limit (#14022)
add ac45be45e9e Change 2FA Field Type From Password to Text (#13723)
add 3a797993f3a Make `domainid` optional in `assignVirtualMachine` (#13213)
add 6a2e033322b apply the restored volume max IOPS to the max IOPS field
(#14024)
add bbf8c1a05ca server: do not NPE when a VPN provider returns no per-user
result (#14047)
add 223351c7a59 Add VR's system offering to network listing (#12862)
add 215ef984993 Allow cleaning up of networks stuck in Implementing state
(#12409)
add 245bbd9fe64 server: null-check public IP before the DNS/Source NAT
guard in createPublicLoadBalancerRule (#14027)
add 9c8bdf35843 config: persist config subgroups with their name and group
id (#14050)
add 1f761f0853a Update pmd config to make it pmd 7 compatible (#13168)
add 6e4413d59b7 engine: do not stall the host command queue on a failed
send in AgentAttache.sendNext (#14040)
add b93f603d315 api: fix inverted value comparison in
ImageStoreDetailResponse.equals (#14023)
new 02da97d172c Merge remote-tracking branch 'apache/4.20' into 4.22
The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
.../api/response/ImageStoreDetailResponse.java | 4 +-
.../api/response/NetworkOfferingResponse.java | 12 +++
.../cloudstack/api/response/ProjectResponse.java | 2 +-
...Test.java => ImageStoreDetailResponseTest.java} | 34 +++---
.../ProjectResponseTest.java} | 18 ++--
.../java/com/cloud/agent/manager/AgentAttache.java | 3 +-
.../agent/manager/AgentAttacheSendNextTest.java | 85 +++++++++++++++
.../framework/config/impl/ConfigDepotImpl.java | 3 +-
.../framework/config/impl/ConfigDepotImplTest.java | 25 +++++
.../framework/jobs/impl/AsyncJobManagerImpl.java | 80 ++++++++++++++
.../main/java/com/cloud/api/ApiResponseHelper.java | 3 +-
.../network/lb/LoadBalancingRulesManagerImpl.java | 2 +-
.../network/vpn/RemoteAccessVpnManagerImpl.java | 2 +-
.../main/java/com/cloud/vm/UserVmManagerImpl.java | 24 ++---
.../lb/LoadBalancingRulesManagerImplTest.java | 74 ++++++++-----
.../vpn/RemoteAccessVpnManagerImplTest.java | 50 +++++++++
.../java/com/cloud/vm/UserVmManagerImplTest.java | 79 +++++++-------
tools/checkstyle/src/main/resources/cloud-pmd.xml | 117 +++++++++++++--------
ui/public/locales/en.json | 1 +
ui/public/locales/pt_BR.json | 1 +
ui/src/components/view/ListView.vue | 10 +-
ui/src/config/section/offering.js | 8 +-
ui/src/utils/util.js | 9 ++
ui/src/views/compute/AutoScaleDownPolicyTab.vue | 19 ++--
ui/src/views/compute/AutoScaleLoadBalancing.vue | 20 ++--
ui/src/views/compute/AutoScaleUpPolicyTab.vue | 19 ++--
ui/src/views/compute/AutoScaleVmProfile.vue | 57 +++++++---
ui/src/views/dashboard/SetupTwoFaAtLogin.vue | 4 +-
ui/src/views/dashboard/VerifyTwoFa.vue | 6 +-
ui/src/views/iam/SetupTwoFaAtUserProfile.vue | 4 +-
30 files changed, 566 insertions(+), 209 deletions(-)
copy
api/src/test/java/org/apache/cloudstack/api/response/{VnfTemplateResponseTest.java
=> ImageStoreDetailResponseTest.java} (51%)
copy
api/src/test/java/org/apache/cloudstack/api/{command/admin/resource/ListCapacityCmdTest.java
=> response/ProjectResponseTest.java} (66%)
create mode 100644
engine/orchestration/src/test/java/com/cloud/agent/manager/AgentAttacheSendNextTest.java