Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
4f55619
framework/cluster: improve cluster service and integration API service
shwstppr Jul 2, 2024
ef5b5bb
Updating pom.xml version numbers for release 4.18.2.1
shwstppr Jul 4, 2024
f0faa4a
saml: signature check improvements
shwstppr Jul 15, 2024
22baf24
Updating pom.xml version numbers for release 4.18.2.2
shwstppr Jul 15, 2024
e7dce2b
server, api: account and api entity access improvements
shwstppr Jul 31, 2024
b458e5b
Merge pull request #19 from shapeblue/fix-userkeys-cve
nvazquez Aug 2, 2024
be191f5
Updating pom.xml version numbers for release 4.18.2.3
nvazquez Aug 2, 2024
7cfbcf4
[4.19] server, api, ui: access improvements and assorted fixes (#22)
shwstppr Aug 2, 2024
4ea342c
Updating pom.xml version numbers for release 4.19.1.1
nvazquez Aug 2, 2024
c087de4
Merge branch '4.19'
DaanHoogland Oct 2, 2024
24d12f1
Session Token Invalidation on Logout
DaanHoogland Aug 28, 2024
b97bd3b
fix quota resource access validation
DaanHoogland Aug 20, 2024
1861e78
Validate QCOW2 on upload and register
GutoVeronezi Aug 30, 2024
124d6b8
util: check JSESSIONID in cookies if user is passed
weizhouapache Sep 10, 2024
8830d3a
Fix Vue devServer after CSRF fix
GutoVeronezi Sep 17, 2024
54b3519
Updating pom.xml version numbers for release 4.18.2.4
DaanHoogland Oct 3, 2024
8a2f652
Session Token Invalidation on Logout
DaanHoogland Aug 28, 2024
123b426
fix quota resource access validation
DaanHoogland Aug 20, 2024
4fa22f4
Validate QCOW2 on upload and register
GutoVeronezi Aug 30, 2024
13dd698
util: check JSESSIONID in cookies if user is passed
weizhouapache Sep 10, 2024
b3f9824
Fix Vue devServer after CSRF fix
GutoVeronezi Sep 17, 2024
18fe422
Updating pom.xml version numbers for release 4.19.1.2
DaanHoogland Oct 4, 2024
d6181d5
Fix `updateTemplatePermission` when the UI is set to a language other…
lucas-a-martins Oct 4, 2024
9c86c4d
Filter list VMs by IP address (#9547)
Pearl1594 Oct 8, 2024
8925ac7
Fix Listing backup schedules (#9749)
Pearl1594 Oct 10, 2024
1af4158
Merge tag '4.18.2.4' into 4.18
DaanHoogland Oct 10, 2024
05a44d8
Merge tag '4.19.1.2' into 4.19
DaanHoogland Oct 10, 2024
8d819ec
Merge branch '4.18' into 4.19
DaanHoogland Oct 10, 2024
e5bd83e
Merge branch '4.19'
DaanHoogland Oct 10, 2024
cb24461
DO NOT MERGE
sureshanaparti Jun 29, 2024
57e54ce
Merge branch 'main' into healthcheck-main
weizhouapache Oct 14, 2024
8841737
Merge branch 'main' into healthcheck-main
weizhouapache Oct 15, 2024
65adf9b
Merge branch 'main' into healthcheck-main
weizhouapache Oct 15, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

[![Apache CloudStack](tools/logo/apache_cloudstack.png)](https://cloudstack.apache.org/)

Apache CloudStack is open source software designed to deploy and manage large
Apache CloudStack is an open-source software system designed to deploy and manage large
networks of virtual machines, as a highly available, highly scalable
Infrastructure as a Service (IaaS) cloud computing platform. CloudStack is used
by a number of service providers to offer public cloud services, and by many
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@

import javax.inject.Inject;

import com.cloud.cpu.CPU;
import org.apache.cloudstack.acl.ControlledEntity;
import org.apache.cloudstack.acl.ControlledEntity.ACLType;
import org.apache.cloudstack.acl.SecurityChecker;
Expand Down Expand Up @@ -216,6 +215,7 @@
import com.cloud.api.query.vo.VolumeJoinVO;
import com.cloud.cluster.ManagementServerHostVO;
import com.cloud.cluster.dao.ManagementServerHostDao;
import com.cloud.cpu.CPU;
import com.cloud.dc.ClusterVO;
import com.cloud.dc.DataCenter;
import com.cloud.dc.DedicatedResourceVO;
Expand Down
Loading