Skip to content

Changelog

All notable changes to this project will be documented in this file. This is now automatically updated by python-semantic-release.

The format is based on Keep a Changelog and this project adheres to Semantic Versioning.

v2.2.0 (2024-04-01)

Feature

  • Note that this is now based on the R25 schema (6cb821b)

Fix

  • Quiet linter warnings (6c3f5ce)
  • Ensure SearchCriteria are not seen as Requests (6a9c35e)

Documentation

  • Update README for recent changes (7cb3354)
  • Mention the Null object - its important (2f1e047)

v2.1.2 (2023-03-20)

v2.1.1 (2023-03-20)

v2.1.0 (2022-09-17)

Feature

  • Add Null value which stands in for a forced XML nil value (4701ec5)
  • Handle nested elements (2467b8f)

Fix

  • Table decoder handles weird chars in column names (a8fe66b)
  • Fully handle NULL and empty lists (2f5f590)

v2.0.4 (2022-06-21)

Fix

  • Make abstract types work now I have an example (5bff15c)
  • Second attempt to handle abstract classes correctly (63f1454)
  • Handle abstract types (84abaa2)

v2.0.3 (2022-03-29)

Fix

  • Reinstated type checking now hierarchy in place (6f99654)
  • Regenerate broadworks classes (faf3b1b)
  • Add class hierarchy information into generated classes (f9eb352)

v2.0.2 (2022-03-29)

Fix

  • Remove type checking as not handling OCI type heirarchy (8408717)

v2.0.1 (2022-03-12)

Fix

  • Handle schema sequences within choices (16c2e75)

Documentation

  • Add note about command construction and checking (56cb717)

v2.0.0 (2022-03-05)

Feature

  • Broadworks R24 schemas and derived files (c0c71c3)
  • Change base classes to be a custom object (6d89b0d)
  • Convert all base classes from classforge to attrs (0132a21)

Fix

  • Work round issues in Broadworks R24 schemas (85c1902)
  • Tweaks to the trivial live test program (45c37c8)
  • Ensure session_id is put into received objects (b594669)
  • Add str and repr methods (6797801)
  • Tweaked command to_dict() to put session first (4024d50)
  • Tweaked tests to avoid spurious mypy error (81ae17e)
  • Regenerate all the derived files (4b76a8b)
  • Make black reformatting of generated files selectable (2b17390)
  • Process_schema now produces markdown docs (a47fa13)
  • Doc and return type improvements (47dd765)
  • Better type markup (89a9446)
  • Corrected type annotations (7fef38e)
  • Class slots do not include attributes of super class (a6d4d11)
  • Regenerate the generated modules (9ab0066)
  • Removed dead code (7360a7f)
  • Schema processor now outputs attrs based classes (4e96e82)

Breaking

  • This release changes to a different underlying class system - which should not have any user visible issues other than there are now no longer the full set of basic methods on an object that the old ClassForge base gave. Additionally the classes are generated from the Broadworks R24 schemas. (61c292d)

Documentation

[1.5.0] - 2022-01-13

  • Change schema processor to pick up many more places where array values are appropriate. This is going to break the API signature for a lot of functions - although not likely to be ones people were using considering this has been broken for a while.
  • chore: update dependencies
  • ci: update pre-commit rules
  • test: added test for UserVoiceMessagingUserModifyVoiceManagementRequest
  • Added two more example tests for complex commands
  • Update dependancies include pre-commit
  • Updated dependencies
  • Added request/response/type docs to API docs
  • Additional test/sample of complex command

[1.4.0] - 2021-01-20

  • Updated Credits
  • Fixed an error decoding an array of complex types, added test case
  • Added little bit of documentation on return values.
  • Added version number to README and top of documentation tree

[1.3.0] - 2021-01-18

  • Fixed problems with boolean response value decode (added tests)

[1.2.1] - 2020-12-01

  • Corrected the install information for the project

[1.2.0] - 2020-11-30

  • Add tests to show issues with ServiceProviderGetListResponse
  • Fix echo="" attribute on responses command element
  • Fix parsing of embedded subtypes due to incorrect method rename earlier
  • Build XML generator for table elements

[1.1.1] - 2020-11-17

  • Moved the following classes into the module top level declarations:-
    • ElementInfo
    • ErrorResponse
    • OCICommand
    • OCIRequest
    • OCIResponse
    • OCIType
    • SuccessResponse
  • Fixed some Makefile issues
  • Internal documentation improvements
  • Fixed the Changelog auto update

[1.0.1] - 2020-10-15

  • Reworked ElementInfo into attrs based class
  • Various improvements to schema parsing into classes
  • Session Id is no longer hidden on command classes
  • Additional how/why documentation
  • Converted to use poetry for development management

[0.5.3] - 2020-10-07

  • Occaisionally you can get an exception thrown on socket close as the api object is deleted. Added try/except around this to catch.
  • More log modifications - less opinionated
  • Split traffic logging to a VERBOSE_DEBUG setting - log level 9

[0.5.2] - 2020-10-07

  • Logging was on at debug level by default - switched to WARNING level.

[0.5.1] - 2020-10-06

  • Removed a development debug print which had managed to stay hidden...

[0.5.0] - 2020-10-06

  • Reversed the stupid mistake of trying to special case complex types such as UnboundedPositiveInt - these now need to be treated as the complex types they are.

[0.4.0] - 2020-10-06

  • Split out handling in API of Types and Commands.
  • This changes get_command_class() to get_type_class() and adds get_type_object()

[0.3.1] - 2020-10-05

  • Fixed error where exception thrown as tests cleaned up.

[0.3.0] - 2020-10-01

  • Support for lists in XML generation
  • Support for XSD choice elements - handled by making them optional
  • Handling of embedded types in XML generation
  • Start of special casing some base types - ie UnboundedPositiveInt

[0.2.0] - 2020-09-30

  • Support for list returns - eg ServiceProviderServicePackGetListResponse

[0.1.0] - 2020-09-30

  • First release but not on PyPI.
  • Patch releases on Pypi after automation sorted.