Skip to content

yamcs-client 1.13.0

Latest

Choose a tag to compare

@fqqb fqqb released this 02 Apr 09:55
9fe026e
  • ArchiveClient: Added source option to export_parameter_values. By default this function will now use the Parameter Archive instead of doing a packet replay.

  • MDBClient: Added version option to export_space_system. This defaults to XTCE 1.2, but you could set it to 1.3 to use the newly introduced namespace.

  • If you are still using old-style imports, you will now start seeing deprecation warnings. Reminder: all classes can be imported from yamcs.client package.

    For example, instead of:

    from yamcs.core.auth import Credentials
    from yamcs.client import YamcsClient
    
    credentials = Credentials(username="admin", password="admin")
    client = YamcsClient("http://localhost:8090", credentials=credentials)

    do instead:

    from yamcs.client import Credentials, YamcsClient
    
    credentials = Credentials(username="admin", password="admin")
    client = YamcsClient("http://localhost:8090", credentials=credentials)
  • ArchiveClient: the method sample_parameter_values was renamed to downsample_mean. The previous method still works but will generate a deprecation warning. Likewise the Sample class was renamed to MeanSample.

  • Improves error handling when querying URLs that do not appear to be Yamcs URLs.