Skip to content

Commit 54218f5

Browse files
🐛 Source SalesForce: fix Bulk API unsupported list (#18799)
* 🐛 Source SalesForce: fix Bulk API unsupported list * 🐛 Source SalesForce: bump version * 🐛 Source Facebook Marketing: docs update * auto-bump connector version Co-authored-by: Octavia Squidington III <[email protected]>
1 parent 4352686 commit 54218f5

File tree

5 files changed

+9
-4
lines changed

5 files changed

+9
-4
lines changed

airbyte-config/init/src/main/resources/seed/source_definitions.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1108,7 +1108,7 @@
11081108
- name: Salesforce
11091109
sourceDefinitionId: b117307c-14b6-41aa-9422-947e34922962
11101110
dockerRepository: airbyte/source-salesforce
1111-
dockerImageTag: 1.0.23
1111+
dockerImageTag: 1.0.24
11121112
documentationUrl: https://docs.airbyte.com/integrations/sources/salesforce
11131113
icon: salesforce.svg
11141114
sourceType: api

airbyte-config/init/src/main/resources/seed/source_specs.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10891,7 +10891,7 @@
1089110891
supportsNormalization: false
1089210892
supportsDBT: false
1089310893
supported_destination_sync_modes: []
10894-
- dockerImage: "airbyte/source-salesforce:1.0.23"
10894+
- dockerImage: "airbyte/source-salesforce:1.0.24"
1089510895
spec:
1089610896
documentationUrl: "https://docs.airbyte.com/integrations/sources/salesforce"
1089710897
connectionSpecification:

airbyte-integrations/connectors/source-salesforce/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,5 @@ RUN pip install .
1313

1414
ENTRYPOINT ["python", "/airbyte/integration_code/main.py"]
1515

16-
LABEL io.airbyte.version=1.0.23
16+
LABEL io.airbyte.version=1.0.24
1717
LABEL io.airbyte.name=airbyte/source-salesforce

airbyte-integrations/connectors/source-salesforce/source_salesforce/api.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,9 @@
130130
# The following objects are not supported by the Bulk API. Listed objects are version specific.
131131
UNSUPPORTED_BULK_API_SALESFORCE_OBJECTS = [
132132
"AcceptedEventRelation",
133+
"AssetTokenEvent",
133134
"Attachment",
135+
"AttachedContentNote",
134136
"CaseStatus",
135137
"ContractStatus",
136138
"DeclinedEventRelation",
@@ -143,12 +145,14 @@
143145
"KnowledgeArticleVoteStat",
144146
"OrderStatus",
145147
"PartnerRole",
148+
"QuoteTemplateRichTextData",
146149
"RecentlyViewed",
147150
"ServiceAppointmentStatus",
148151
"ShiftStatus",
149152
"SolutionStatus",
150153
"TaskPriority",
151154
"TaskStatus",
155+
"TaskWhoRelation",
152156
"UndecidedEventRelation",
153157
]
154158

docs/integrations/sources/salesforce.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,8 @@ Now that you have set up the Salesforce source connector, check out the followin
120120
## Changelog
121121

122122
| Version | Date | Pull Request | Subject |
123-
| :------ | :--------- | :------------------------------------------------------- | :------------------------------------------------------------------------------------------------------------------------------- |
123+
|:--------| :--------- |:---------------------------------------------------------|:---------------------------------------------------------------------------------------------------------------------------------|
124+
| 1.0.24 | 2022-11-01 | [18799](https://github.com/airbytehq/airbyte/pull/18799) | Update list of unsupported Bulk API objects |
124125
| 1.0.23 | 2022-11-01 | [18753](https://github.com/airbytehq/airbyte/pull/18753) | Add error_display_message for ConnectionError |
125126
| 1.0.22 | 2022-10-12 | [17615](https://github.com/airbytehq/airbyte/pull/17615) | Make paging work, if `cursor_field` is not changed inside one page |
126127
| 1.0.21 | 2022-10-10 | [17778](https://github.com/airbytehq/airbyte/pull/17778) | Add `EventWhoRelation` to the list of unsupported Bulk API objects. |

0 commit comments

Comments
 (0)