File: r1-cab94ae7d749a1ec.yaml

package info (click to toggle)
python-openstacksdk 0.101.0-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 10,888 kB
  • sloc: python: 90,744; sh: 173; makefile: 21
file content (31 lines) | stat: -rw-r--r-- 1,642 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
---
prelude: >
    This is a first major release of OpenStackSDK.

    From now on interface can be considered stable and will also in future
    strictly follow SemVer model. This release includes work in ensuring
    methods and attribute naming are consistent across the code basis and first
    steps in implementing even more generalizations in the processing logic.

    Microversion support is now considered as stable and session will be
    established with the highest version supported by both client and server.
upgrade:
  - |
    This release includes work in enforcing consistency of the cloud layer
    methods. Now they all return SDK resource objects where previously Munch
    objects could have been returned. This leads to few important facts:

    - Return object types of various cloud.XXX calls now rely on proxy layer
      functions and strictly return SDK resources.
    - Some attributes of various resources may be named differently to
      follow SDK attribute naming convention.
    - Returned objects may forbid setting attributes (read-only attributes).

    Mentioned changes are affecting Ansible modules (which rely on
    OpenStackSDK). Historically Ansible modules return to the Ansible engine
    whatever SDK returns to it. Under some conditions Ansible may decide to
    unset properties (if it decides it contain sensitive information). While
    this is correct SDK forbids setting of some attributes what leads to
    errors. This release is therefore marking incompatibility with OpenStack
    Ansible modules in R1.X.X and the work on fixing it is being done in
    R2.X.X of modules repository.