Skip to content

Commit

Permalink
🐛 Source Quickbooks: Fix error in components.py (#30766)
Browse files Browse the repository at this point in the history
  • Loading branch information
archangelic authored Sep 26, 2023
1 parent 0e9fdba commit 626b3e1
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -34,5 +34,5 @@ COPY source_quickbooks ./source_quickbooks
ENV AIRBYTE_ENTRYPOINT "python /airbyte/integration_code/main.py"
ENTRYPOINT ["python", "/airbyte/integration_code/main.py"]

LABEL io.airbyte.version=2.0.4
LABEL io.airbyte.version=2.0.5
LABEL io.airbyte.name=airbyte/source-quickbooks
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ data:
connectorSubtype: api
connectorType: source
definitionId: cf9c4355-b171-4477-8f2d-6c5cc5fc8b7e
dockerImageTag: 2.0.4
dockerImageTag: 2.0.5
dockerRepository: airbyte/source-quickbooks
githubIssueLabel: source-quickbooks
icon: quickbooks.svg
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ class CustomDatetimeBasedCursor(DatetimeBasedCursor):
def close_slice(self, stream_slice: StreamSlice, most_recent_record: typing.Optional[Record]) -> None:
super(CustomDatetimeBasedCursor, self).close_slice(
stream_slice=stream_slice,
last_record=LastRecordDictProxy(most_recent_record, {self.cursor_field.eval(self.config): "MetaData/LastUpdatedTime"}),
most_recent_record=LastRecordDictProxy(most_recent_record, {self.cursor_field.eval(self.config): "MetaData/LastUpdatedTime"}),
)

def _format_datetime(self, dt: datetime.datetime):
Expand Down
1 change: 1 addition & 0 deletions docs/integrations/sources/quickbooks.md
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,7 @@ This Source is capable of syncing the following [Streams](https://developer.intu

| Version | Date | Pull Request | Subject |
| :------ | :--------- | :------------------------------------------------------- | :----------------------------------------------------------------- |
| `2.0.5` | 2023-09-26 | [30766](https://github.com/airbytehq/airbyte/pull/30766) | Fix improperly named keyword argument
| `2.0.4` | 2023-06-28 | [27803](https://github.com/airbytehq/airbyte/pull/27803) | Update following state breaking changes |
| `2.0.3` | 2023-06-08 | [27148](https://github.com/airbytehq/airbyte/pull/27148) | Update description and example values of a Start Date in spec.json |
| `2.0.2` | 2023-06-07 | [26722](https://github.com/airbytehq/airbyte/pull/27053) | Update CDK version and adjust authenticator configuration |
Expand Down

0 comments on commit 626b3e1

Please sign in to comment.