Ocata Series Release Notes¶
1.1.0¶
New Features¶
Introduced neutron_lib.plugins.directory.is_loaded(). This can be used in lieu of len(plugins()) or bool(plugins()) or plugins() alone.
Neutron agent extension abstract classes are moved from
neutron.agent
toneutron_lib.agent
The constants
EXPAND_BRANCH
andCONTRACT_BRANCH
are now available inneutron_lib.db.constants
. They should be used instead of the ones inneutron.db.migration.cli
.
The
context
module has been made public. For example:from neutron_lib import context ctx = context.get_admin_context()
For more examples, see: https://review.openstack.org/#/c/388157/
Introduced neutron_lib.fixture, and added fixture for plugin directory
PluginDirectoryFixture
. An example below:from neutron_lib.plugins import directory from neutron_lib import fixture def setup_test_directory_instance(self): """Give a private copy of the directory to each test.""" self._plugin_directory = directory._PluginDirectory() self.useFixture(fixture.PluginDirectoryFixture( plugin_directory=self._plugin_directory))
Neutron’s callback API found in
neutron.callbacks.*
is now exposed inneutron_lib.callbacks.*
. In addition, a set of event payload objects are now available for use in transporting event payload data in a standardized way.
A test fixture is provided for isolating the global callback manager in
neutron_lib.callbacks.registry
. For more details see the comments inneutron_lib.fixture.CallbackRegistryFixture
.
Adds neutron-fwaas API definitions to neutron-lib.
Added the converter
convert_string_to_case_insensitive
.
Added the converter
convert_to_protocol
.
Added the validator
validate_port_range_or_none
.
A converter
convert_ip_to_canonical_format
has been added to neutron-lib which allows IPv6 addresses to be stored and displayed in canonical format.
The
floating_ip
androuter
API definitions fromneutron.extensions.l3
have been rehomed toneutron_lib.api.definitions
as the modulel3
.
The
get_random_mac
utility function fromneutron.common.utils
is now inneutron_lib.utils.net
with the same name,get_random_mac
.
The API definition and associated constants have been rehomed from
neutron.extensions.portbindings
toneutron_lib.api.definitions.portbindings
.
The Neutron
Provider network
extension API definition has been added asneutron_lib.api.definitions.provider_net
.
The hacking check factory
incubating_factory
has been added toneutron_lib.hacking.checks
allowing adopters to test compliance on incubating hacking checks. See the usage documentation for additional details.
The class
neutron.services.service_base.ServicePluginBase
is now available asneutron_lib.services.base.ServicePluginBase
.
Added validator validate_ip_or_subnet_or_none
Deprecation Notes¶
The function
neutron_lib.api.utils.populate_project_info
has moved toneutron_lib.api.attributes.populate_project_info
. It will be removed from the old location in the future.
The use of
neutron_lib.callbacks.registry.notify()
andneutron_lib.callbacks.manager.CallbacksManager.notify()
is deprecated in favor of theirpublish()
counterparts and will be removed in the « Queens » release time-frame.
policy.refresh()
andpolicy.reset()
have been removed. The library policy module is not meant for public consumption, and it should be considered in practice a private component of the library. If you use it, you will do so at your own risk, as it has been marked as a private module.
Other Notes¶
OpenStack dev hacking check
H904
is now enabled intox.ini
via theenable-extensions
configuration property. Neutron-lib adopters should also enable this hacking check in theirtox.ini
.
1.0.0¶
New Features¶
The ExtensionDescriptor class moved from neutron.api.extensions to neutron_lib.api.extensions.
Introduced neutron_lib.plugins.directory to get references for loaded plugins in a neutron server process. For example:
from neutron_lib import constants from neutron_lib.plugins import directory core_plugin = directory.get_plugin() l3_plugin = directory.get_plugin(constants.L3)
For more examples, see: https://review.openstack.org/#/c/386845/
API reference for the trunk extension.
Other Notes¶
Provide API definition framework for Neutron Stadium APIs to be consolidated into neutron-lib. For more details see review https://review.openstack.org/#/c/353131/.