Add 1.1.0 release notes and known issues

Change-Id: Ife9b485a248678e2fb45145400c65dd61ba71409
This commit is contained in:
Kirill Zaitsev 2016-10-12 15:13:23 +03:00
parent a17bf3b4ca
commit 8e556ecc4a
11 changed files with 57 additions and 2 deletions

View File

@ -56,7 +56,7 @@ copyright = u'2016, Mirantis Inc.'
# The short X.Y version.
version = '1.0'
# The full version, including alpha/beta/rc tags.
release = '1.0.0'
release = '1.1.0'
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.

View File

@ -35,7 +35,7 @@ Typically, you install a Fuel plugin before you deploy an OpenStack environment.
# fuel plugins
id | name | version | package_version
---|---------------|---------|----------------
1 | detach-murano | 1.0.0 | 4.0.0
1 | detach-murano | 1.1.0 | 4.0.0
#. Proceed to :ref:`pg-configure`.

View File

@ -0,0 +1,6 @@
---
issues:
- Deploying Cloud Foundry integration service with this release of ``fuel-plugin-murano`` does not work correctly.
- If you update from murano plugin version 1.0.0 with Murano deployed on controller to 1.1.0 and add deploy murano on a
separate node Murano will 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,4 @@
---
fixes:
- It was impossible to use `--owned` flag when Glare was used
to filter packages. This issue is fixed now.

View File

@ -0,0 +1,13 @@
---
features:
- New on-request garbage collector for MuranoPL objects were implemented.
Garbage collection is triggered by io.murano.system.GC.collect()
static method. Garbage collector destroys all object that are not
reachable anymore. GC can handle objects with cross-references and
isolated object graphs. When portion of object model becomes not
reachable it destroyed in predictable order such that child objects get
destroyed before their parents and, when possible, before objects
that are subscribed to their destruction notifications.
- Internally, both pre-deployment garbage collection (that was done by
comparision of ``Objects`` and ``ObjectsCopy``) and post-deployment
orphan object collection are now done through the new GC.

View File

@ -0,0 +1,8 @@
---
features:
- io.murano.system.GC.isDoomed() static method was added. It can be used
within the ``.destroy`` method to test if other object is also going to be
destroyed.
- io.murano.system.GC.isDestroyed() static method was added. It checks if
the object is destroyed and thus no methods can be invoked on it.

View File

@ -0,0 +1,5 @@
---
other:
- Murano Dashboard relies on Glance v1 API for image uploads.
In case it is not available an error will be shown and all the
image-related functionality will be unavailable.

View File

@ -0,0 +1,4 @@
---
fixes:
- CLI flag ``--is-public`` had no effect when importing a package
with 'glare' package service. This flag now correctly marks the package public on upload.

View File

@ -0,0 +1,5 @@
---
features:
- Ability to load package from directory was added. If specified
directory contains all the needed files then package will be
imported as usual.

View File

@ -0,0 +1,5 @@
---
fixes:
- It was possible to import the same murano package from the CLI into the same
project multiple times if glare was used and the package was imported as a
private one. The issue is now fixed.

View File

@ -0,0 +1,5 @@
---
fixes:
- Murano engine no longer logs methods ``string()``, ``json()``, and ``yaml()``
of the 'io.murano.system.Resources' class. This is done to prevent UnicodeDecodeError's
when transferring binary files to murano agent.