Releases: texei/texei-sfdx-plugin
Releases · texei/texei-sfdx-plugin
v1.13.0
- Filter out deprecated packages in dependency discovery (fixes #84, thank you @jonathanwiesel !)
- We now have better looking documentation available at https://texei.github.io/texei-sfdx-plugin/, thank you @nvuillam 👍
- Added
shaperepresentation
scope tosfdx texei:org:shape:extract
- Added warning to
sfdx texei:contractstatus:value:add
to recommend moving to Metadata API
v1.12.0
- Beta version of Lookup Override in data commands
v1.11.1
- Fixed
sfdx texei:user:update
not respecting--targetusername
- Bump dependencies
v1.11.0
- Add 120 seconds timeout to sharing calc suspend and resume commands, to avoid infinite wait when the button is not available (overridable using
--timeout
flag) - Update tsconfig.json so it works with recent typescript transpiler (
tsc --watch
) - Add mocha as devDependency
- Bump some dependencies versions
Thank you @nvuillam for the Pull Request ! 👍
v1.10.1
- Bump dependencies version
v1.10.0
v1.9.3
- Added a
--statuscategory
flag forsfdx texei:contractstatus:value:add
command
v1.9.2
- Fixed encoding issue with
sfdx texei:source:layouts:cleanorg
- Bump dependencies
v1.9.1
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.