Skip to content

v5.0.0

Compare
Choose a tag to compare
@github-actions github-actions released this 11 Mar 09:20

Changed

  • [BREAKING] Dropped support for python version 3.7, as it is on EOL for over year.
  • [BREAKING] Aligned the Connection String Builder keywords with the rest of the SDKs.
    This means that some keywords were removed, and they will no longer be parsed as part of the Connection String.
    Building the Connection String using the builder method will still work as expected.
    The following keywords have been removed:
    • msi_auth / msi_authentication
    • msi_params / msi_type
    • interactive_login
    • az_cli
  • [BREAKING] ingest_from_dataframe - Added data_format parameter. It can be None (default), 'json' or 'csv'.
    Based on how panda's csv serialization works, dynamic data will not be serialized correctly.
    By default, the data will be serialized as json to avoid this issue.
    However, that may break if a CSV mapping is used.
    Therefore, when passing the None value, the data will be json by default, or csv if a csv mapping is used.
    Also, it is possible to pass 'csv' or 'json' to force the serialization type.