Changelog

All notable changes to this project will be documented in this file simultaneously to implemented Git pipelines.

Unreleased

Planned changes for next releases will be noted here. If you have any suggestions, please contact: ewiebelitz@qass.net, nosmers@qass.net, cradek@qass.net.

buffer_metadata_cache

  • More convenient interface to retrieve BufferMetadata objects

  • Interface with the Analyzer Database

2.2

Date:

February 20, 2023

Contributor:

Nicklas Osmers

  • It’s now possible to retrieve the declarative_base of the BufferMetadataCache by using :py:function:`get_declarative_base()`.

    Example:

    1from qass.tools.analyzer.buffer_metadata_cache import get_declarative_base
    2
    3Base = get_declarative_base()
    4class MyNewTableMapping(Base):
    5    __tablename__ = "my_new_table_mapping"
    6    # ...
    
  • The BufferMetadataCache.create_session() will now create all tables that are created with it’s declarative_base.

  • Add more docstrings