Skip to content

Latest commit

 

History

History
67 lines (47 loc) · 2.46 KB

CHANGELOG.md

File metadata and controls

67 lines (47 loc) · 2.46 KB

Changelog

All notable changes to this project will be documented in this file.

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

[0.4.0] - unreleased

Added

  • Add global_seq and group_seq to Client, sequence numbers assigned to test instance by the sync service. See PR 29

Change

  • Move RunParameters to a field on Client. See PR 29.

  • Don't wait for network when no sidecar. See PR 27.

  • Make RunParameters::test_group_instance_count a u64 to be consistent with RunParameters::test_instance_count. See PR 26.

  • Replace Client::new with Client::new_and_init, waiting for the network to initialize, claiming global and group sequence numbers, as well as waiting for other instances to do the same. Also makes Client::wait_network_initialized private, as it is included in Client::new_and_init now. See PR 25.

  • Use a JSON Payload instead of string in publish and subscribe. See PR 34.

[0.3.0]

Added

  • Add RunParameters::data_network_ip for ease of finding the IP within the data network assigned to the instance. See PR 22.

Change

  • Change RunParameters::test_instance_params from String to HashMap which contains key-value pairs from parsing the parameter string. See PR 19.

[0.2.0]

Added

  • Add PubSub, Network Shaping & Metrics. See PR 6.

Change

  • Take ownership of Client when signaling success / failure. See PR 7.

Fixed

  • Make events payload compatible with the go-sdk. See PR 14

[0.1.1]

Added

  • Add Client::publish_success to signal instance success to daemon and sync service. See PR 5.

[0.1.0] - 2022-01-24

Added

  • Add initial scaffolding with basic synchronization client. See PR 1.