v1.9.0
- Added
--allornone
flag intexei:data:import
command
!!! This is a breaking change as before this release allOrNone
was always used as true
, and you'll now have to add the flag to the command to keep the same behavior !!!
So before v1.9.0, sfdx texei:data:import -d ./myData
would run with allOrNone
, with no way to change it.
Starting v1.9.0, the same command will run with allOrNone
set to false.
To have the same behavior as before, run sfdx texei:data:import -d ./myData --allornone
.
This makes the command more consistent with Salesforce APIs where allOrNone
always default to false
.
Obviously if your files were clean and no record was failing at import, nothing will change for you.