Changelog for the salesforce adaptor
@openfn/language-salesforce
9.0.6 - 25 February 2026
Patch Changes
- 9133458: Add missing writeOnly to sensitive credential fields and fix typos in configuration schemas
9.0.5 - 24 February 2026
Patch Changes
- Updated dependencies [856f85c]
- @openfn/language-common@3.2.3
9.0.4 - 09 February 2026
Patch Changes
- Updated dependencies [8ad6b98]
- Updated dependencies [8ad6b98]
- @openfn/language-common@3.2.2
9.0.3 - 28 November 2025
Patch Changes
- Updated dependencies [cfc66df]
- @openfn/language-common@3.2.1
9.0.2 - 12 November 2025
Patch Changes
- Updated dependencies [4d7a833]
- @openfn/language-common@3.2.0
9.0.1 - 04 November 2025
Patch Changes
- Updated dependencies
- @openfn/language-common@3.1.2
9.0.0 - 16 October 2025
Major Changes
-
187b088: - Add
failOnErroroption in bulk2 functions- Default
failOnErrortotruein bulk1 functions - Fix
v8.0.0migration guide typos - Remove
BulkOptionsandBulkQueryOptionstypedefs
Migration Guide
If you want to keep the old behavior, you can pass
failOnError: falsein the options:For Example: Bulk upsert continue on error
before:
bulk1.upsert(
'Account',
[{ External_Id__c: 'EXT001', Name: 'Upserted Name' }],
{
extIdField: 'External_Id__c',
pollInterval: 3000,
}
);now:
bulk1.upsert(
'Account',
[{ External_Id__c: 'EXT001', Name: 'Upserted Name' }],
{
extIdField: 'External_Id__c',
pollInterval: 3000,
failOnError: false,
}
);Note: The
failOnErroroption is available inbulk1andbulk2functions. - Default
Patch Changes
- Updated dependencies [408a3a2]
- @openfn/language-common@3.1.1
8.0.1 - 18 September 2025
Patch Changes
- Updated dependencies [e2bc436]
- @openfn/language-common@3.1.0