Current Series Release Notes¶
4.11.0-18¶
New Features¶
Added
ha_chassis_priorityattribute to the networkAgentresource. This field is populated by the Neutronl3-agent-scheduler-ha-priorityAPI extension and indicates the OVN HA_Chassis failover priority for each gateway chassis hosting a router. The value isNonefor non-OVN mechanism drivers.
Added
update_router_in_agentmethod to the network proxy and theAgentresource. This allows updating properties (such asha_chassis_priority) of a router already associated with an L3 agent, using a PUT request on the l3-agent-scheduler API.
Bug Fixes¶
Fixed the
ZoneImportresourcebase_pathfrom/zones/tasks/importto/zones/tasks/importsto match the Designate API endpoint.
4.11.0¶
New Features¶
The 2.97 API microversion is now supported for the compute service. This adds a new API to manage shares, represented by the
openstack.compute.v2.server_share.ShareMappingresource.
Deprecation Notes¶
Support for reporting metrics to InfluxDB has been deprecated for removal. The implementation relied on an EOL Python library and only supported InfluxDB v1.
Bug Fixes¶
Fixed port binding activation and deletion methods to correctly pass the
hostparameter as a path parameter instead of in the request body. The Neutron API expects the host in the URL path for these endpoints:PUT /v2.0/ports/{port_id}/bindings/{host}/activateDELETE /v2.0/ports/{port_id}/bindings/{host}
Previously, the SDK was incorrectly sending the host parameter in both the URL path and the request body, which caused a TypeError in Neutron. The methods now correctly pass only the host identifier as a positional parameter, matching the Neutron API specification.
For more information see bug 2146296
Session.connect_retry_delayis now configurable viaclouds.yamlusing the<service type>_connect_retry_delayandconnect_retry_delayoptions.