Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
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
4 changes: 2 additions & 2 deletions source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,13 @@
# -- Project information -----------------------------------------------------

project = 'Apache CloudStack'
copyright = '2012-2024, Apache Foundation'
copyright = '2012-2025, Apache Foundation'
author = 'Apache CloudStack Project'

# The short X.Y version
version = '4.19'
# The full version, including alpha/beta/rc tags
release = '4.19.1.0'
release = '4.19.2.0'

rst_epilog = """
.. include:: /_global.rst
Expand Down
11 changes: 7 additions & 4 deletions source/releasenotes/about.rst
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,13 @@
What's New in |release|
=======================

Apache CloudStack |release| is a 4.19 LTS minor release with over 300 fixes
and improvements since the 4.19.0.0 release. Some of the highlights include:
Apache CloudStack |release| is a 4.19 LTS minor release with over 170 fixes
and improvements including prior releases this tallies up to over 480 since
the 4.19.0.0 release. Some of the highlights include:

* Numerous fixes for UI and API behavious
* Project access controll fixes
* Network improvements for the various kinds of networks
• Improvements for VMware migration to KVM
• Support to manage/unmanage DATA volume of a primary storage on KVM
• Support for NFS mount options for a primary storage on KVM
Expand All @@ -28,10 +32,9 @@ and improvements since the 4.19.0.0 release. Some of the highlights include:
• Import from remote KVM enhancements
• Storage plugins, PowerFlex, StorPool, Linstor related fixes and improvements
• Some CKS, Veeam (B&R) related fixes and improvements
• Several UI fixes and improvements

The full list of fixes and improvements can be found in the project release notes at
https://docs.cloudstack.apache.org/en/4.19.1.0/releasenotes/changes.html
https://docs.cloudstack.apache.org/en/4.19.2.0/releasenotes/changes.html

What's in since 4.19.0.0
========================
Expand Down
133 changes: 132 additions & 1 deletion source/releasenotes/api-changes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,140 @@
specific language governing permissions and limitations
under the License.

API Changes Introduced in 4.19.0.0
API Changes Introduced in 4.19.2.0
==================================
For the complete list of API commands and params consult the `CloudStack Apidocs`_.
New API Commands
----------------

.. cssclass:: table-striped table-bordered table-hover

+---------------------------------------------+--------------------------------------------------------------------------------+
| Name | Description |
+=============================================+================================================================================+
| ``listVmwareDcHosts`` | Lists the VMs in a Vmware Datacenter |
+---------------------------------------------+--------------------------------------------------------------------------------+

Parameters Changed API Commands
-------------------------------

.. cssclass:: table-striped table-bordered table-hover

+---------------------------------------------+--------------------------------------------------------------------------------+
| Name | Description |
+=============================================+================================================================================+
| ``listNiciraNvpDeviceNetworks`` | **Response:** |
| | |
| | *New Parameters:* |
| | |
| | - ``specifyvlan`` |
| | |
+---------------------------------------------+--------------------------------------------------------------------------------+
| ``updateNetwork`` | **Response:** |
| | |
| | *New Parameters:* |
| | |
| | - ``specifyvlan`` |
| | |
+---------------------------------------------+--------------------------------------------------------------------------------+
| ``listNetscalerLoadBalancerNetworks`` | **Response:** |
| | |
| | *New Parameters:* |
| | |
| | - ``specifyvlan`` |
| | |
+---------------------------------------------+--------------------------------------------------------------------------------+
| ``listBrocadeVcsDeviceNetworks`` | **Response:** |
| | |
| | *New Parameters:* |
| | |
| | - ``specifyvlan`` |
| | |
+---------------------------------------------+--------------------------------------------------------------------------------+
| ``listNetworks`` | **Response:** |
| | |
| | *New Parameters:* |
| | |
| | - ``specifyvlan`` |
| | |
+---------------------------------------------+--------------------------------------------------------------------------------+
| ``listPaloAltoFirewallNetworks`` | **Response:** |
| | |
| | *New Parameters:* |
| | |
| | - ``specifyvlan`` |
| | |
+---------------------------------------------+--------------------------------------------------------------------------------+
| ``updatePortForwardingRule`` | **Request:** |
| | |
| | *New Parameters:* |
| | |
| | - ``cidrlist`` (optional) |
| | |
+---------------------------------------------+--------------------------------------------------------------------------------+
| ``listVmwareDcVms`` | **Request:** |
| | |
| | *New Parameters:* |
| | |
| | - ``batchsize`` (optional) |
| | - ``host`` (optional) |
| | - ``token`` (optional) |
| | |
| | *Removed Parameters:* |
| | |
| | - ``keyword`` |
| | - ``page`` |
| | - ``pagesize`` |
| | |
| | **Response:** |
| | |
| | *New Parameters:* |
| | |
| | - ``token`` |
| | |
| | *Removed Parameters:* |
| | |
| | - ``clusterid`` |
| | - ``clustername`` |
| | - ``cpucorepersocket`` |
| | - ``cpunumber`` |
| | - ``cpuspeed`` |
| | - ``hostid`` |
| | - ``hostname`` |
| | - ``memory`` |
| | - ``name`` |
| | - ``osdisplayname`` |
| | - ``osid`` |
| | - ``powerstate`` |
| | - ``disk(*)`` |
| | - ``nic(*)`` |
| | |
+---------------------------------------------+--------------------------------------------------------------------------------+
| ``createNetwork`` | **Response:** |
| | |
| | *New Parameters:* |
| | |
| | - ``specifyvlan`` |
| | |
+---------------------------------------------+--------------------------------------------------------------------------------+
| ``migrateNetwork`` | **Response:** |
| | |
| | *New Parameters:* |
| | |
| | - ``specifyvlan`` |
| | |
+---------------------------------------------+--------------------------------------------------------------------------------+
| ``importVm`` | **Request:** |
| | |
| | *New Parameters:* |
| | |
| | - ``importinstancehostid`` (optional) |
| | |
+---------------------------------------------+--------------------------------------------------------------------------------+


API Changes Introduced in 4.19.0.0
==================================

New API Commands
----------------
Expand Down
Loading