Added release notes for 1.2.0 release

Change-Id: I8157568a2ea7571188c4e5e18f93ae5a94a2768b
This commit is contained in:
Serg Melikyan 2016-12-19 12:23:21 -05:00
parent 02c8919b7c
commit 26d066e6a0
14 changed files with 81 additions and 2 deletions

View File

@ -0,0 +1,4 @@
---
issues:
- Deploying Cloud Foundry integration service with this release of ``fuel-plugin-murano`` does not work correctly.
- Community App Catalog UI panels, delivered as part of ``fuel-plugin-murano`` do not work correctly with this release.

View File

@ -0,0 +1,6 @@
---
fixes:
- added default rules to NeutronSecurityGroupManager to avoid
error if `createDefaultInstanceSecurityGroupRules()` method isn't
extended in inheritor and SecurityGroups isn't created in application
with call of `addGroupIngress()` method.

View File

@ -0,0 +1,4 @@
---
features:
- CLI command :command:``env-templat-create-env`` now supports ``--region`` flag

View File

@ -0,0 +1,16 @@
---
prelude: >
Murano Dashboard has been renamed to App Catalog and now allows
seamless integration and single panel structure
with App Catalog UI dashboard.
features:
- Murano dashboard has been renamed to App Catalog,
monolithic config file has been split into multiple small files.
Every such file defines either a panel group or adds
general murano-related settings to horizon.
upgrade:
- To upgrade to Newton version of app catalog you need to remove old
``_50_murano.py`` config file, that defined in murano dashboard. Be sure to
also remove any .pyc and .po files. After that you need to copy all new
config files from ``muranodashboard/local/enabled/*.py`` to
``openstack_dashboard/local/enabled/`` and restart horizon

View File

@ -0,0 +1,7 @@
---
features:
- /environments/ENV_ID/model/PATH endpoint added.
GET request responds with the subsection of ENV_ID's object model
located in its PATH.
PATCH request applies json-patch from request body to ENV_ID's model. It
does not contain PATH in the URL.

View File

@ -0,0 +1,11 @@
---
features:
- Support for environment model edit API was added
- New Murano CLI command ``murano environment-model-show <ID> [--path <PATH>]
[--session-id <SESSION_ID>]``
- New Murano CLI command ``murano environment-model-edit <ID> <FILE>
--session-id <SESSION_ID>``
- New OSC command ``openstack environment model show <ID> [--path <PATH>]
[--session-id <SESSION_ID>]``
- New OSC command ``openstack environment model edit <ID> <FILE>
--session-id <SESSION_ID>``

View File

@ -0,0 +1,4 @@
---
fixes:
- The issue with adding already deployed components to environment
via dropdown is fixed with applying changes for the new type format.

View File

@ -0,0 +1,4 @@
---
features:
- io.murano.system.HeatStack.push can be called with
async => true flag for asynchronous push

View File

@ -0,0 +1,4 @@
---
features:
- Added a MetadataAware mixin class capable to retrieve the metadata
attributes from the implementing objects and all its parents.

View File

@ -0,0 +1,6 @@
---
features:
- Added a ``metadata()`` yaql function to retrieve the meta information about the
object, stored in the "?/metadata" section of object model.
other:
- Bumped the RUNTIME_VERSION attribute to 1.5

View File

@ -1,11 +1,11 @@
---
features:
- Previously, the pre-deployment garbage collection executed the ``.destroy``
- Previously, when pre-deployment garbage collection occurred it executed ``.destroy``
method for objects that were present in the ``ObjectsCopy`` section of the
object model (which is the snapshot of the model after last deployment)
and not present in the current model anymore (because they were deleted
through the API between deployments). If the destroyed objects were to
access another object that was not deleted, it was accessing its copy from
access another object that was not deleted it was accessing its copy from
the ``ObjectsCopy``. Thus any changes to the internal state made by that
object were lost after the garbage collection finished (that is, before the
``.deploy`` method call) and could not affect the deployment.

View File

@ -0,0 +1,3 @@
---
features:
- New OSC command ``package list``.

View File

@ -0,0 +1,6 @@
---
fixes:
- It is now possible to make a PUT request with body equal to '[]' to
'/environments/<env_id>/services' endpoint. This will result in removing
all apps from current session. This allows deleting the last application
from environment from CLI.

View File

@ -0,0 +1,4 @@
---
fixes:
- Previously Cinder Volumes created in MuranoPL were not released correctly
on object destruction. The issue is now fixed.