Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

🐛 Source OpsGenie: fix parsing of updated_at timestamps from OpsGenie #35269

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion airbyte-integrations/connectors/source-opsgenie/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -34,5 +34,5 @@ COPY source_opsgenie ./source_opsgenie
ENV AIRBYTE_ENTRYPOINT "python /airbyte/integration_code/main.py"
ENTRYPOINT ["python", "/airbyte/integration_code/main.py"]

LABEL io.airbyte.version=0.3.0
LABEL io.airbyte.version=0.3.1
LABEL io.airbyte.name=airbyte/source-opsgenie
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ data:
connectorSubtype: api
connectorType: source
definitionId: 06bdb480-2598-40b8-8b0f-fc2e2d2abdda
dockerImageTag: 0.3.0
dockerImageTag: 0.3.1
dockerRepository: airbyte/source-opsgenie
githubIssueLabel: source-opsgenie
license: MIT
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,7 @@ definitions:
cursor_field: updatedAt
cursor_datetime_formats:
- "%Y-%m-%dT%H:%M:%S.%fZ"
- "%Y-%m-%dT%H:%M:%SZ"
datetime_format: "%s"
start_datetime:
datetime: "{{ config['start_date'] }}"
Expand Down
1 change: 1 addition & 0 deletions docs/integrations/sources/opsgenie.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ The Opsgenie connector uses the most recent API version for each source of data.

| Version | Date | Pull Request | Subject |
|:--------|:-----------|:-----------------------------------------------------| :--- |
| 0.3.1 | 2024-02-14 | [35269](https://github.com/airbytehq/airbyte/pull/35269) | Fix parsing of updated_at timestamps in alerts |
| 0.3.0 | 2023-10-19 | [31552](https://github.com/airbytehq/airbyte/pull/31552) | Migrated to Low Code |
| 0.2.0 | 2023-10-24 | [31777](https://github.com/airbytehq/airbyte/pull/31777) | Fix schema |
| 0.1.0 | 2022-09-14 | [16768](https://github.com/airbytehq/airbyte/pull/16768) | Initial Release |
Loading