From d78e22874d900b02e456cd480157fcab4c424295 Mon Sep 17 00:00:00 2001 From: Christophe Duong Date: Tue, 11 Oct 2022 08:24:39 -0500 Subject: [PATCH 1/2] Update docs for source-orb --- docs/integrations/sources/orb.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/integrations/sources/orb.md b/docs/integrations/sources/orb.md index e9422b5f40e0..c0c5cd099ded 100644 --- a/docs/integrations/sources/orb.md +++ b/docs/integrations/sources/orb.md @@ -52,7 +52,7 @@ an Orb Account and API Key. | Version | Date | Pull Request | Subject | | --- | --- | --- | --- | -| 0.1.4 | 2022-10-07 | [17761](https://github.com/airbytehq/airbyte/pull/17761) | Fix bug with enriching ledger entries +| 0.1.4 | 2022-10-07 | [17761](https://github.com/airbytehq/airbyte/pull/17761) | Fix bug with enriching ledger entries with multiple credit blocks | 0.1.3 | 2022-08-26 | [16017](https://github.com/airbytehq/airbyte/pull/16017) | Add credit block id to ledger entries | 0.1.2 | 2022-04-20 | [11528](https://github.com/airbytehq/airbyte/pull/11528) | Add cost basis to ledger entries, update expiration date, sync only committed entries | 0.1.1 | 2022-03-03 | [10839](https://github.com/airbytehq/airbyte/pull/10839) | Support ledger entries with numeric properties + schema fixes From e3b95f97b2382873a0e8821a6bda629976737a74 Mon Sep 17 00:00:00 2001 From: Octavia Squidington III Date: Tue, 11 Oct 2022 18:56:11 +0000 Subject: [PATCH 2/2] auto-bump connector version [ci skip] --- .../source-orb/unit_tests/test_incremental_streams.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/airbyte-integrations/connectors/source-orb/unit_tests/test_incremental_streams.py b/airbyte-integrations/connectors/source-orb/unit_tests/test_incremental_streams.py index f471f1cfd205..ebffe43548d1 100644 --- a/airbyte-integrations/connectors/source-orb/unit_tests/test_incremental_streams.py +++ b/airbyte-integrations/connectors/source-orb/unit_tests/test_incremental_streams.py @@ -259,6 +259,7 @@ def test_credits_ledger_entries_enriches_selected_property_keys( # Does not enrich, but still passes back, irrelevant (for enrichment purposes) ledger entry assert enriched_entries[1] == original_entry_1 + @responses.activate def test_credits_ledger_entries_enriches_with_multiple_entries_per_event(mocker): stream = CreditsLedgerEntries(string_event_properties_keys=["ping"]) @@ -285,7 +286,6 @@ def test_credits_ledger_entries_enriches_with_multiple_entries_per_event(mocker) ] - def test_supports_incremental(patch_incremental_base_class, mocker): mocker.patch.object(IncrementalOrbStream, "cursor_field", "dummy_field") stream = IncrementalOrbStream()