> ## Documentation Index
> Fetch the complete documentation index at: https://docs.flex.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Changelog: 2024-12-02

## Highlights

* \[Breaking] *`flexai dataset push --file`* flag value syntax inverted when passing a value pair.

## Added

* Enhanced set of checks before initiating a Training Job to ensure the correct configuration has been set.

## Changed

* The `-f, --file` flag of `flexai dataset push` can receive both a string and a *Key Value pair* separated by an equals sign `=`. The *Key Value pair* syntax **is now inverted**, with the local path to first, followed by the destination path in the Dataset:

  ```diff lang="flexi" theme={null}
  flexai dataset push <dataset_name> \
  -  --file <destination_path/in/dataset>=<local_path/to/file>
  +  --file <local_path/to/file>=<destination_path/in/dataset>
  ```

  For more details:

  * Visit the [Uploading Datasets from your local machine](/platform-services/dataset-manager/from-local/) guide.
