From d8a6f438a735f9c2f0e5190cdf28a85abdac602a Mon Sep 17 00:00:00 2001 From: Akash Kulkarni <113392464+akashkulk@users.noreply.github.com> Date: Fri, 12 Jul 2024 13:34:58 -0700 Subject: [PATCH 001/260] [Source-postgres] : Throw exception if there are any streams acively undergoing vacuum (#41651) --- .../connectors/source-postgres/metadata.yaml | 2 +- .../cdc/PostgresCdcCtidInitializer.java | 50 +- docs/integrations/sources/postgres.md | 521 +++++++++--------- 3 files changed, 286 insertions(+), 287 deletions(-) diff --git a/airbyte-integrations/connectors/source-postgres/metadata.yaml b/airbyte-integrations/connectors/source-postgres/metadata.yaml index bfc7820ebb29..e7f8c8158e37 100644 --- a/airbyte-integrations/connectors/source-postgres/metadata.yaml +++ b/airbyte-integrations/connectors/source-postgres/metadata.yaml @@ -9,7 +9,7 @@ data: connectorSubtype: database connectorType: source definitionId: decd338e-5647-4c0b-adf4-da0e75f5a750 - dockerImageTag: 3.4.24 + dockerImageTag: 3.4.25 dockerRepository: airbyte/source-postgres documentationUrl: https://docs.airbyte.com/integrations/sources/postgres githubIssueLabel: source-postgres diff --git a/airbyte-integrations/connectors/source-postgres/src/main/java/io/airbyte/integrations/source/postgres/cdc/PostgresCdcCtidInitializer.java b/airbyte-integrations/connectors/source-postgres/src/main/java/io/airbyte/integrations/source/postgres/cdc/PostgresCdcCtidInitializer.java index 193fcf9e54ba..fa9d4e6c738c 100644 --- a/airbyte-integrations/connectors/source-postgres/src/main/java/io/airbyte/integrations/source/postgres/cdc/PostgresCdcCtidInitializer.java +++ b/airbyte-integrations/connectors/source-postgres/src/main/java/io/airbyte/integrations/source/postgres/cdc/PostgresCdcCtidInitializer.java @@ -24,6 +24,7 @@ import io.airbyte.cdk.integrations.source.relationaldb.state.StateManager; import io.airbyte.cdk.integrations.source.relationaldb.streamstatus.StreamStatusTraceEmitterIterator; import io.airbyte.commons.exceptions.ConfigErrorException; +import io.airbyte.commons.exceptions.TransientErrorException; import io.airbyte.commons.json.Jsons; import io.airbyte.commons.stream.AirbyteStreamStatusHolder; import io.airbyte.commons.util.AutoCloseableIterator; @@ -102,11 +103,13 @@ public static CtidGlobalStateManager getCtidInitialLoadGlobalStateManager(final streamsUnderVacuum.addAll(streamsUnderVacuum(database, ctidStreams.streamsForCtidSync(), quoteString).result()); - final List finalListOfStreamsToBeSyncedViaCtid = - streamsUnderVacuum.isEmpty() ? ctidStreams.streamsForCtidSync() - : ctidStreams.streamsForCtidSync().stream() - .filter(c -> !streamsUnderVacuum.contains(AirbyteStreamNameNamespacePair.fromConfiguredAirbyteSteam(c))) - .toList(); + if (!streamsUnderVacuum.isEmpty()) { + throw new TransientErrorException( + "Postgres database is undergoing a full vacuum - cannot proceed with the sync. Please sync again when the vacuum is finished."); + } + + final List finalListOfStreamsToBeSyncedViaCtid = ctidStreams.streamsForCtidSync(); + LOGGER.info("Streams to be synced via ctid : {}", finalListOfStreamsToBeSyncedViaCtid.size()); LOGGER.info("Streams: {}", prettyPrintConfiguredAirbyteStreamList(finalListOfStreamsToBeSyncedViaCtid)); final FileNodeHandler fileNodeHandler = PostgresQueryUtils.fileNodeForStreams(database, @@ -195,11 +198,12 @@ public static List> cdcCtidIteratorsCombin streamsUnderVacuum.addAll(streamsUnderVacuum(database, ctidStreams.streamsForCtidSync(), quoteString).result()); - finalListOfStreamsToBeSyncedViaCtid = - streamsUnderVacuum.isEmpty() ? ctidStreams.streamsForCtidSync() - : ctidStreams.streamsForCtidSync().stream() - .filter(c -> !streamsUnderVacuum.contains(AirbyteStreamNameNamespacePair.fromConfiguredAirbyteSteam(c))) - .toList(); + if (!streamsUnderVacuum.isEmpty()) { + throw new TransientErrorException( + "Postgres database is undergoing a full vacuum - cannot proceed with the sync. Please sync again when the vacuum is finished."); + } + + finalListOfStreamsToBeSyncedViaCtid = ctidStreams.streamsForCtidSync(); final FileNodeHandler fileNodeHandler = PostgresQueryUtils.fileNodeForStreams(database, finalListOfStreamsToBeSyncedViaCtid, quoteString); @@ -273,22 +277,16 @@ public static List> cdcCtidIteratorsCombin .collect(Collectors.toList()); } - if (streamsUnderVacuum.isEmpty()) { - // This starts processing the WAL as soon as initial sync is complete, this is a bit different from - // the current cdc syncs. - // We finish the current CDC once the initial snapshot is complete and the next sync starts - // processing the WAL - return Stream - .of(initialSyncCtidIterators, cdcStreamsStartStatusEmitters, - Collections.singletonList(AutoCloseableIterators.lazyIterator(incrementalIteratorSupplier, null)), - allStreamsCompleteStatusEmitters) - .flatMap(Collection::stream) - .collect(Collectors.toList()); - } else { - LOGGER.warn("Streams are under vacuuming, not going to process WAL"); - return Stream.of(initialSyncCtidIterators, cdcStreamsStartStatusEmitters, allStreamsCompleteStatusEmitters).flatMap(Collection::stream) - .collect(Collectors.toList()); - } + // This starts processing the WAL as soon as initial sync is complete, this is a bit different from + // the current cdc syncs. + // We finish the current CDC once the initial snapshot is complete and the next sync starts + // processing the WAL + return Stream + .of(initialSyncCtidIterators, cdcStreamsStartStatusEmitters, + Collections.singletonList(AutoCloseableIterators.lazyIterator(incrementalIteratorSupplier, null)), + allStreamsCompleteStatusEmitters) + .flatMap(Collection::stream) + .collect(Collectors.toList()); } public static CdcState getCdcState(final JdbcDatabase database, diff --git a/docs/integrations/sources/postgres.md b/docs/integrations/sources/postgres.md index 21f690325daf..02a39b875fc3 100644 --- a/docs/integrations/sources/postgres.md +++ b/docs/integrations/sources/postgres.md @@ -309,266 +309,267 @@ According to Postgres [documentation](https://www.postgresql.org/docs/14/datatyp
Expand to review -| Version | Date | Pull Request | Subject | -|---------|------------|----------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------| -| 3.4.24 | 2024-07-05 | [41067](https://github.com/airbytehq/airbyte/pull/41067) | Fix Postgres sending duplicated streams | -| 3.4.23 | 2024-07-01 | [40757](https://github.com/airbytehq/airbyte/pull/40757) | Rollback 3.4.22. -| 3.4.21 | 2024-07-01 | [40516](https://github.com/airbytehq/airbyte/pull/40516) | Remove dbz hearbeat. | -| 3.4.20 | 2024-06-23 | [40559](https://github.com/airbytehq/airbyte/pull/40559) | Remove strict check for stream states of unknown types | -| 3.4.19 | 2024-06-23 | [40223](https://github.com/airbytehq/airbyte/pull/40223) | Revert the changes introduced in version 3.4.15. | -| 3.4.18 | 2024-06-14 | [39349](https://github.com/airbytehq/airbyte/pull/39349) | Full refresh stream sending internal count metadata. | -| 3.4.17 | 2024-06-13 | [39460](https://github.com/airbytehq/airbyte/pull/39460) | Bump postgres JDBC driver version | -| 3.4.16 | 2024-05-29 | [39474](https://github.com/airbytehq/airbyte/pull/39474) | Adopt latest CDK. | -| 3.4.15 | 2024-05-29 | [38773](https://github.com/airbytehq/airbyte/pull/38773) | Connect with adaptiveFetch=true. | -| 3.4.14 | 2024-06-08 | [39353](https://github.com/airbytehq/airbyte/pull/39353) | Upgrade Debezium to 2.6.2 | -| 3.4.13 | 2024-06-04 | [38875](https://github.com/airbytehq/airbyte/pull/38875) | read() throws config exception upon detecting transaction ID wraparound. | -| 3.4.12 | 2024-06-04 | [38836](https://github.com/airbytehq/airbyte/pull/38836) | check() throws config error upon detecting transaction ID wraparound. | -| 3.4.11 | 2024-06-04 | [38848](https://github.com/airbytehq/airbyte/pull/38848) | Improve UI message and doc on xmin | -| 3.4.10 | 2024-05-29 | [38584](https://github.com/airbytehq/airbyte/pull/38584) | Set is_resumable flag in discover. | -| 3.4.9 | 2024-05-29 | [38775](https://github.com/airbytehq/airbyte/pull/38775) | Publish CDK | -| 3.4.9 | 2024-05-28 | [38716](https://github.com/airbytehq/airbyte/pull/38716) | Publish CDK | -| 3.4.8 | 2024-05-28 | [38716](https://github.com/airbytehq/airbyte/pull/38716) | Stream status for postgres | -| 3.4.7 | 2024-05-20 | [38365](https://github.com/airbytehq/airbyte/pull/38365) | Rollback a previously version (3.4.6) | -| 3.4.5 | 2024-05-16 | [38303](https://github.com/airbytehq/airbyte/pull/38303) | Streams not in the CDC publication still have a cursor and PK. | -| 3.4.4 | 2024-05-15 | [38208](https://github.com/airbytehq/airbyte/pull/38208) | disable counts in full refresh stream in state message. | -| 3.4.3 | 2024-05-13 | [38104](https://github.com/airbytehq/airbyte/pull/38104) | Handle transient error messages. | -| 3.4.2 | 2024-05-10 | [38171](https://github.com/airbytehq/airbyte/pull/38171) | Bug fix on final state setup. | -| 3.4.1 | 2024-05-10 | [38130](https://github.com/airbytehq/airbyte/pull/38130) | Bug fix on old PG where ctid column not found when stream is a view. | -| 3.4.0 | 2024-04-29 | [37112](https://github.com/airbytehq/airbyte/pull/37112) | resumeable full refresh. | -| 3.3.33 | 2024-05-07 | [38030](https://github.com/airbytehq/airbyte/pull/38030) | Mark PG hot standby error as transient. | -| 3.3.32 | 2024-04-30 | [37758](https://github.com/airbytehq/airbyte/pull/37758) | Correct previous release to disable debezium retries | -| 3.3.31 | 2024-04-30 | [37754](https://github.com/airbytehq/airbyte/pull/37754) | Add CDC logs | -| 3.3.30 | 2024-04-30 | [37726](https://github.com/airbytehq/airbyte/pull/37726) | Remove debezium retries | -| 3.3.29 | 2024-04-23 | [37509](https://github.com/airbytehq/airbyte/pull/37509) | remove excessive logs | -| 3.3.28 | 2024-04-23 | [37509](https://github.com/airbytehq/airbyte/pull/37509) | Better error messages on switching between sync modes. | -| 3.3.27 | 2024-04-22 | [37445](https://github.com/airbytehq/airbyte/pull/37445) | Remove legacy bad values handling code. | -| 3.3.26 | 2024-04-10 | [36982](https://github.com/airbytehq/airbyte/pull/36982) | Populate airyte_meta.changes for xmin path | -| 3.3.25 | 2024-04-10 | [36981](https://github.com/airbytehq/airbyte/pull/36981) | Track latest CDK | -| 3.3.24 | 2024-04-10 | [36865](https://github.com/airbytehq/airbyte/pull/36865) | Track latest CDK | -| 3.3.23 | 2024-04-02 | [36759](https://github.com/airbytehq/airbyte/pull/36759) | Track latest CDK | -| 3.3.22 | 2024-04-01 | [36739](https://github.com/airbytehq/airbyte/pull/36739) | Fix useLocalCdk flag. | -| 3.3.21 | 2024-03-25 | [36584](https://github.com/airbytehq/airbyte/pull/36584) | Adopt Kotlin CDK. | -| 3.3.20 | 2024-03-25 | [36432](https://github.com/airbytehq/airbyte/pull/36432) | Failure to serialize values from Postgres DB shouldn't fail sync. | -| 3.3.19 | 2024-03-12 | [36333](https://github.com/airbytehq/airbyte/pull/36333) | Use newest CDK - deprecate dbz iterator | -| 3.3.18 | 2024-03-12 | [35599](https://github.com/airbytehq/airbyte/pull/35599) | Use newest CDK | -| 3.3.17 | 2024-03-12 | [35939](https://github.com/airbytehq/airbyte/pull/35939) | Use lsn_commit value instead of lsn_proc for CDC checkpointing logic. | -| 3.3.16 | 2024-03-11 | [35904](https://github.com/airbytehq/airbyte/pull/35904) | Adopt Java CDK 0.23.1- debezium retries. | -| 3.3.15 | 2024-02-29 | [34724](https://github.com/airbytehq/airbyte/pull/34724) | Add record count in state message. | -| 3.3.14 | 2024-03-06 | [35842](https://github.com/airbytehq/airbyte/pull/35842) | Add logging to understand cases with a large number of records with the same LSN. | -| 3.3.13 | 2024-02-27 | [35675](https://github.com/airbytehq/airbyte/pull/35675) | Fix invalid cdc error message. | -| 3.3.12 | 2024-02-22 | [35569](https://github.com/airbytehq/airbyte/pull/35569) | Fix logging bug. | -| 3.3.11 | 2024-02-20 | [35304](https://github.com/airbytehq/airbyte/pull/35304) | Add config to throw an error on invalid CDC position and enable it by default. | -| 3.3.10 | 2024-02-13 | [35036](https://github.com/airbytehq/airbyte/pull/34751) | Emit analytics message for invalid CDC cursor. | -| 3.3.9 | 2024-02-13 | [35224](https://github.com/airbytehq/airbyte/pull/35224) | Adopt CDK 0.20.4 | -| 3.3.8 | 2024-02-08 | [34751](https://github.com/airbytehq/airbyte/pull/34751) | Adopt CDK 0.19.0 | -| 3.3.7 | 2024-02-08 | [34781](https://github.com/airbytehq/airbyte/pull/34781) | Add a setting in the setup page to advance the LSN. | -| 3.3.6 | 2024-02-07 | [34892](https://github.com/airbytehq/airbyte/pull/34892) | Adopt CDK v0.16.6 | -| 3.3.5 | 2024-02-07 | [34948](https://github.com/airbytehq/airbyte/pull/34948) | Adopt CDK v0.16.5 | -| 3.3.4 | 2024-01-31 | [34723](https://github.com/airbytehq/airbyte/pull/34723) | Adopt CDK v0.16.3 | -| 3.3.3 | 2024-01-26 | [34573](https://github.com/airbytehq/airbyte/pull/34573) | Adopt CDK v0.16.0 | -| 3.3.2 | 2024-01-24 | [34465](https://github.com/airbytehq/airbyte/pull/34465) | Check xmin only if user selects xmin sync mode. | -| 3.3.1 | 2024-01-10 | [34119](https://github.com/airbytehq/airbyte/pull/34119) | Adopt java CDK version 0.11.5. | -| 3.3.0 | 2023-12-19 | [33437](https://github.com/airbytehq/airbyte/pull/33437) | Remove LEGACY state flag | -| 3.2.27 | 2023-12-18 | [33605](https://github.com/airbytehq/airbyte/pull/33605) | Advance Postgres LSN for PG 14 & below. | -| 3.2.26 | 2023-12-11 | [33027](https://github.com/airbytehq/airbyte/pull/32961) | Support for better debugging tools. | -| 3.2.25 | 2023-11-29 | [32961](https://github.com/airbytehq/airbyte/pull/32961) | Bump debezium wait time default to 20 min. | -| 3.2.24 | 2023-11-28 | [32686](https://github.com/airbytehq/airbyte/pull/32686) | Better logging to understand dbz closing reason attribution. | -| 3.2.23 | 2023-11-28 | [32891](https://github.com/airbytehq/airbyte/pull/32891) | Fix CDK dependency in build. | -| 3.2.22 | 2023-11-22 | [32656](https://github.com/airbytehq/airbyte/pull/32656) | Adopt java CDK version 0.5.0. | -| 3.2.21 | 2023-11-07 | [31856](https://github.com/airbytehq/airbyte/pull/31856) | handle date/timestamp infinity values properly | -| 3.2.20 | 2023-11-06 | [32193](https://github.com/airbytehq/airbyte/pull/32193) | Adopt java CDK version 0.4.1. | -| 3.2.19 | 2023-11-03 | [32050](https://github.com/airbytehq/airbyte/pull/32050) | Adopt java CDK version 0.4.0. | -| 3.2.18 | 2023-11-01 | [29038](https://github.com/airbytehq/airbyte/pull/29038) | Fix typo (s/Airbtye/Airbyte/) | -| 3.2.17 | 2023-11-01 | [32068](https://github.com/airbytehq/airbyte/pull/32068) | Bump Debezium 2.2.0Final -> 2.4.0Final | -| 3.2.16 | 2023-10-31 | [31976](https://github.com/airbytehq/airbyte/pull/31976) | Speed up tests involving Debezium | -| 3.2.15 | 2023-10-30 | [31960](https://github.com/airbytehq/airbyte/pull/31960) | Adopt java CDK version 0.2.0. | -| 3.2.14 | 2023-10-24 | [31792](https://github.com/airbytehq/airbyte/pull/31792) | Fix error message link on issue with standby | -| 3.2.14 | 2023-10-24 | [31792](https://github.com/airbytehq/airbyte/pull/31792) | fail sync when debezeum fails to shutdown cleanly | -| 3.2.13 | 2023-10-16 | [31029](https://github.com/airbytehq/airbyte/pull/31029) | Enforces encrypted traffic settings when env var DEPLOYMENT_MODE = CLOUD. | -| 3.1.13 | 2023-10-13 | [31309](https://github.com/airbytehq/airbyte/pull/31309) | Addressed decimals being incorrectly deserialized into scientific notation. | -| 3.1.12 | 2023-10-12 | [31328](https://github.com/airbytehq/airbyte/pull/31328) | Improvements to initial load of tables in older versions of postgres. | -| 3.1.11 | 2023-10-11 | [31322](https://github.com/airbytehq/airbyte/pull/31322) | Correct pevious release | -| 3.1.10 | 2023-09-29 | [30806](https://github.com/airbytehq/airbyte/pull/30806) | Cap log line length to 32KB to prevent loss of records. | -| 3.1.9 | 2023-09-25 | [30534](https://github.com/airbytehq/airbyte/pull/30534) | Fix JSONB[] column type handling bug. | -| 3.1.8 | 2023-09-20 | [30125](https://github.com/airbytehq/airbyte/pull/30125) | Improve initial load performance for older versions of PostgreSQL. | -| 3.1.7 | 2023-09-05 | [29672](https://github.com/airbytehq/airbyte/pull/29672) | Handle VACUUM happening during initial sync | -| 3.1.6 | 2023-08-24 | [29821](https://github.com/airbytehq/airbyte/pull/29821) | Set replication_method display_type to radio, update titles and descriptions, and make CDC the default choice | -| 3.1.5 | 2023-08-22 | [29534](https://github.com/airbytehq/airbyte/pull/29534) | Support "options" JDBC URL parameter | -| 3.1.4 | 2023-08-21 | [28687](https://github.com/airbytehq/airbyte/pull/28687) | Under the hood: Add dependency on Java CDK v0.0.2. | -| 3.1.3 | 2023-08-03 | [28708](https://github.com/airbytehq/airbyte/pull/28708) | Enable checkpointing snapshots in CDC connections | -| 3.1.2 | 2023-08-01 | [28954](https://github.com/airbytehq/airbyte/pull/28954) | Fix an issue that prevented use of tables with names containing uppercase letters | -| 3.1.1 | 2023-07-31 | [28892](https://github.com/airbytehq/airbyte/pull/28892) | Fix an issue that prevented use of cursor columns with names containing uppercase letters | -| 3.1.0 | 2023-07-25 | [28339](https://github.com/airbytehq/airbyte/pull/28339) | Checkpointing initial load for incremental syncs: enabled for xmin and cursor based only. | -| 3.0.2 | 2023-07-18 | [28336](https://github.com/airbytehq/airbyte/pull/28336) | Add full-refresh mode back to Xmin syncs. | -| 3.0.1 | 2023-07-14 | [28345](https://github.com/airbytehq/airbyte/pull/28345) | Increment patch to trigger a rebuild | -| 3.0.0 | 2023-07-12 | [27442](https://github.com/airbytehq/airbyte/pull/27442) | Set \_ab_cdc_lsn as the source defined cursor for CDC mode to prepare for Destination v2 normalization | -| 2.1.1 | 2023-07-06 | [26723](https://github.com/airbytehq/airbyte/pull/26723) | Add new xmin replication method. | -| 2.1.0 | 2023-06-26 | [27737](https://github.com/airbytehq/airbyte/pull/27737) | License Update: Elv2 | -| 2.0.34 | 2023-06-20 | [27212](https://github.com/airbytehq/airbyte/pull/27212) | Fix silent exception swallowing in StreamingJdbcDatabase | -| 2.0.33 | 2023-06-01 | [26873](https://github.com/airbytehq/airbyte/pull/26873) | Add prepareThreshold=0 to JDBC url to mitigate PGBouncer prepared statement [X] already exists. | -| 2.0.32 | 2023-05-31 | [26810](https://github.com/airbytehq/airbyte/pull/26810) | Remove incremental sync estimate from Postgres to increase performance. | -| 2.0.31 | 2023-05-25 | [26633](https://github.com/airbytehq/airbyte/pull/26633) | Collect and log information related to full vacuum operation in db | -| 2.0.30 | 2023-05-25 | [26473](https://github.com/airbytehq/airbyte/pull/26473) | CDC : Limit queue size | -| 2.0.29 | 2023-05-18 | [25898](https://github.com/airbytehq/airbyte/pull/25898) | Translate Numeric values without decimal, e.g: NUMERIC(38,0), as BigInt instead of Double | -| 2.0.28 | 2023-04-27 | [25401](https://github.com/airbytehq/airbyte/pull/25401) | CDC : Upgrade Debezium to version 2.2.0 | -| 2.0.27 | 2023-04-26 | [24971](https://github.com/airbytehq/airbyte/pull/24971) | Emit stream status updates | -| 2.0.26 | 2023-04-26 | [25560](https://github.com/airbytehq/airbyte/pull/25560) | Revert some logging changes | -| 2.0.25 | 2023-04-24 | [25459](https://github.com/airbytehq/airbyte/pull/25459) | Better logging formatting | -| 2.0.24 | 2023-04-19 | [25345](https://github.com/airbytehq/airbyte/pull/25345) | Logging : Log database indexes per stream | -| 2.0.23 | 2023-04-19 | [24582](https://github.com/airbytehq/airbyte/pull/24582) | CDC : Enable frequent state emission during incremental syncs + refactor for performance improvement | -| 2.0.22 | 2023-04-17 | [25220](https://github.com/airbytehq/airbyte/pull/25220) | Logging changes : Log additional metadata & clean up noisy logs | -| 2.0.21 | 2023-04-12 | [25131](https://github.com/airbytehq/airbyte/pull/25131) | Make Client Certificate and Client Key always show | -| 2.0.20 | 2023-04-11 | [24859](https://github.com/airbytehq/airbyte/pull/24859) | Removed SSL toggle and rely on SSL mode dropdown to enable/disable SSL | -| 2.0.19 | 2023-04-11 | [24656](https://github.com/airbytehq/airbyte/pull/24656) | CDC minor refactor | -| 2.0.18 | 2023-04-06 | [24820](https://github.com/airbytehq/airbyte/pull/24820) | Fix data loss bug during an initial failed non-CDC incremental sync | -| 2.0.17 | 2023-04-05 | [24622](https://github.com/airbytehq/airbyte/pull/24622) | Allow streams not in CDC publication to be synced in Full-refresh mode | -| 2.0.16 | 2023-04-05 | [24895](https://github.com/airbytehq/airbyte/pull/24895) | Fix spec for cloud | -| 2.0.15 | 2023-04-04 | [24833](https://github.com/airbytehq/airbyte/pull/24833) | Fix Debezium retry policy configuration | -| 2.0.14 | 2023-04-03 | [24609](https://github.com/airbytehq/airbyte/pull/24609) | Disallow the "disable" SSL Modes | -| 2.0.13 | 2023-03-28 | [24166](https://github.com/airbytehq/airbyte/pull/24166) | Fix InterruptedException bug during Debezium shutdown | -| 2.0.12 | 2023-03-27 | [24529](https://github.com/airbytehq/airbyte/pull/24373) | Add CDC checkpoint state messages | -| 2.0.11 | 2023-03-23 | [24446](https://github.com/airbytehq/airbyte/pull/24446) | Set default SSL Mode to require in strict-encrypt | -| 2.0.10 | 2023-03-23 | [24417](https://github.com/airbytehq/airbyte/pull/24417) | Add field groups and titles to improve display of connector setup form | -| 2.0.9 | 2023-03-22 | [20760](https://github.com/airbytehq/airbyte/pull/20760) | Removed redundant date-time datatypes formatting | -| 2.0.8 | 2023-03-22 | [24255](https://github.com/airbytehq/airbyte/pull/24255) | Add field groups and titles to improve display of connector setup form | -| 2.0.7 | 2023-03-21 | [24207](https://github.com/airbytehq/airbyte/pull/24207) | Fix incorrect schema change warning in CDC mode | -| 2.0.6 | 2023-03-21 | [24271](https://github.com/airbytehq/airbyte/pull/24271) | Fix NPE in CDC mode | -| 2.0.5 | 2023-03-21 | [21533](https://github.com/airbytehq/airbyte/pull/21533) | Add integration with datadog | -| 2.0.4 | 2023-03-21 | [24147](https://github.com/airbytehq/airbyte/pull/24275) | Fix error with CDC checkpointing | -| 2.0.3 | 2023-03-14 | [24000](https://github.com/airbytehq/airbyte/pull/24000) | Removed check method call on read. | -| 2.0.2 | 2023-03-13 | [23112](https://github.com/airbytehq/airbyte/pull/21727) | Add state checkpointing for CDC sync. | -| 2.0.0 | 2023-03-06 | [23112](https://github.com/airbytehq/airbyte/pull/23112) | Upgrade Debezium version to 2.1.2 | -| 1.0.51 | 2023-03-02 | [23642](https://github.com/airbytehq/airbyte/pull/23642) | Revert : Support JSONB datatype for Standard sync mode | -| 1.0.50 | 2023-02-27 | [21695](https://github.com/airbytehq/airbyte/pull/21695) | Support JSONB datatype for Standard sync mode | -| 1.0.49 | 2023-02-24 | [23383](https://github.com/airbytehq/airbyte/pull/23383) | Fixed bug with non readable double-quoted values within a database name or column name | -| 1.0.48 | 2023-02-23 | [22623](https://github.com/airbytehq/airbyte/pull/22623) | Increase max fetch size of JDBC streaming mode | -| 1.0.47 | 2023-02-22 | [22221](https://github.com/airbytehq/airbyte/pull/23138) | Fix previous versions which doesn't verify privileges correctly, preventing CDC syncs to run. | -| 1.0.46 | 2023-02-21 | [23105](https://github.com/airbytehq/airbyte/pull/23105) | Include log levels and location information (class, method and line number) with source connector logs published to Airbyte Platform. | -| 1.0.45 | 2023-02-09 | [22221](https://github.com/airbytehq/airbyte/pull/22371) | Ensures that user has required privileges for CDC syncs. | -| | 2023-02-15 | [23028](https://github.com/airbytehq/airbyte/pull/23028) | | -| 1.0.44 | 2023-02-06 | [22221](https://github.com/airbytehq/airbyte/pull/22221) | Exclude new set of system tables when using `pg_stat_statements` extension. | -| 1.0.43 | 2023-02-06 | [21634](https://github.com/airbytehq/airbyte/pull/21634) | Improve Standard sync performance by caching objects. | -| 1.0.42 | 2023-01-23 | [21523](https://github.com/airbytehq/airbyte/pull/21523) | Check for null in cursor values before replacing. | -| 1.0.41 | 2023-01-25 | [20939](https://github.com/airbytehq/airbyte/pull/20939) | Adjust batch selection memory limits databases. | -| 1.0.40 | 2023-01-24 | [21825](https://github.com/airbytehq/airbyte/pull/21825) | Put back the original change that will cause an incremental sync to error if table contains a NULL value in cursor column. | -| 1.0.39 | 2023-01-20 | [21683](https://github.com/airbytehq/airbyte/pull/21683) | Speed up esmtimates for trace messages in non-CDC mode. | -| 1.0.38 | 2023-01-17 | [20436](https://github.com/airbytehq/airbyte/pull/20346) | Consolidate date/time values mapping for JDBC sources | -| 1.0.37 | 2023-01-17 | [20783](https://github.com/airbytehq/airbyte/pull/20783) | Emit estimate trace messages for non-CDC mode. | -| 1.0.36 | 2023-01-11 | [21003](https://github.com/airbytehq/airbyte/pull/21003) | Handle null values for array data types in CDC mode gracefully. | -| 1.0.35 | 2023-01-04 | [20469](https://github.com/airbytehq/airbyte/pull/20469) | Introduce feature to make LSN commit behaviour configurable. | -| 1.0.34 | 2022-12-13 | [20378](https://github.com/airbytehq/airbyte/pull/20378) | Improve descriptions | -| 1.0.33 | 2022-12-12 | [18959](https://github.com/airbytehq/airbyte/pull/18959) | CDC : Don't timeout if snapshot is not complete. | -| 1.0.32 | 2022-12-12 | [20192](https://github.com/airbytehq/airbyte/pull/20192) | Only throw a warning if cursor column contains null values. | -| 1.0.31 | 2022-12-02 | [19889](https://github.com/airbytehq/airbyte/pull/19889) | Check before each sync and stop if an incremental sync cursor column contains a null value. | -| | 2022-12-02 | [19985](https://github.com/airbytehq/airbyte/pull/19985) | Reenable incorrectly-disabled `wal2json` CDC plugin | -| 1.0.30 | 2022-11-29 | [19024](https://github.com/airbytehq/airbyte/pull/19024) | Skip tables from schema where user do not have Usage permission during discovery. | -| 1.0.29 | 2022-11-29 | [19623](https://github.com/airbytehq/airbyte/pull/19623) | Mark PSQLException related to using replica that is configured as a hot standby server as config error. | -| 1.0.28 | 2022-11-28 | [19514](https://github.com/airbytehq/airbyte/pull/19514) | Adjust batch selection memory limits databases. | -| 1.0.27 | 2022-11-28 | [16990](https://github.com/airbytehq/airbyte/pull/16990) | Handle arrays data types | -| 1.0.26 | 2022-11-18 | [19551](https://github.com/airbytehq/airbyte/pull/19551) | Fixes bug with ssl modes | -| 1.0.25 | 2022-11-16 | [19004](https://github.com/airbytehq/airbyte/pull/19004) | Use Debezium heartbeats to improve CDC replication of large databases. | -| 1.0.24 | 2022-11-07 | [19291](https://github.com/airbytehq/airbyte/pull/19291) | Default timeout is reduced from 1 min to 10sec | -| 1.0.23 | 2022-11-07 | [19025](https://github.com/airbytehq/airbyte/pull/19025) | Stop enforce SSL if ssl mode is disabled | -| 1.0.22 | 2022-10-31 | [18538](https://github.com/airbytehq/airbyte/pull/18538) | Encode database name | -| 1.0.21 | 2022-10-25 | [18256](https://github.com/airbytehq/airbyte/pull/18256) | Disable allow and prefer ssl modes in CDC mode | -| 1.0.20 | 2022-10-25 | [18383](https://github.com/airbytehq/airbyte/pull/18383) | Better SSH error handling + messages | -| 1.0.19 | 2022-10-21 | [18263](https://github.com/airbytehq/airbyte/pull/18263) | Fixes bug introduced in [15833](https://github.com/airbytehq/airbyte/pull/15833) and adds better error messaging for SSH tunnel in Destinations | -| 1.0.18 | 2022-10-19 | [18087](https://github.com/airbytehq/airbyte/pull/18087) | Better error messaging for configuration errors (SSH configs, choosing an invalid cursor) | -| 1.0.17 | 2022-10-17 | [18041](https://github.com/airbytehq/airbyte/pull/18041) | Fixes bug introduced 2022-09-12 with SshTunnel, handles iterator exception properly | -| 1.0.16 | 2022-10-13 | [15535](https://github.com/airbytehq/airbyte/pull/16238) | Update incremental query to avoid data missing when new data is inserted at the same time as a sync starts under non-CDC incremental mode | -| 1.0.15 | 2022-10-11 | [17782](https://github.com/airbytehq/airbyte/pull/17782) | Handle 24:00:00 value for Time column | -| 1.0.14 | 2022-10-03 | [17515](https://github.com/airbytehq/airbyte/pull/17515) | Fix an issue preventing connection using client certificate | -| 1.0.13 | 2022-10-01 | [17459](https://github.com/airbytehq/airbyte/pull/17459) | Upgrade debezium version to 1.9.6 from 1.9.2 | -| 1.0.12 | 2022-09-27 | [17299](https://github.com/airbytehq/airbyte/pull/17299) | Improve error handling for strict-encrypt postgres source | -| 1.0.11 | 2022-09-26 | [17131](https://github.com/airbytehq/airbyte/pull/17131) | Allow nullable columns to be used as cursor | -| 1.0.10 | 2022-09-14 | [15668](https://github.com/airbytehq/airbyte/pull/15668) | Wrap logs in AirbyteLogMessage | -| 1.0.9 | 2022-09-13 | [16657](https://github.com/airbytehq/airbyte/pull/16657) | Improve CDC record queueing performance | -| 1.0.8 | 2022-09-08 | [16202](https://github.com/airbytehq/airbyte/pull/16202) | Adds error messaging factory to UI | -| 1.0.7 | 2022-08-30 | [16114](https://github.com/airbytehq/airbyte/pull/16114) | Prevent traffic going on an unsecured channel in strict-encryption version of source postgres | -| 1.0.6 | 2022-08-30 | [16138](https://github.com/airbytehq/airbyte/pull/16138) | Remove unnecessary logging | -| 1.0.5 | 2022-08-25 | [15993](https://github.com/airbytehq/airbyte/pull/15993) | Add support for connection over SSL in CDC mode | -| 1.0.4 | 2022-08-23 | [15877](https://github.com/airbytehq/airbyte/pull/15877) | Fix temporal data type bug which was causing failure in CDC mode | -| 1.0.3 | 2022-08-18 | [14356](https://github.com/airbytehq/airbyte/pull/14356) | DB Sources: only show a table can sync incrementally if at least one column can be used as a cursor field | -| 1.0.2 | 2022-08-11 | [15538](https://github.com/airbytehq/airbyte/pull/15538) | Allow additional properties in db stream state | -| 1.0.1 | 2022-08-10 | [15496](https://github.com/airbytehq/airbyte/pull/15496) | Fix state emission in incremental sync | -| | 2022-08-10 | [15481](https://github.com/airbytehq/airbyte/pull/15481) | Fix data handling from WAL logs in CDC mode | +| Version | Date | Pull Request | Subject | +|---------|------------|----------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------| +| 3.4.25 | 2024-07-12 | [41651](https://github.com/airbytehq/airbyte/pull/41651) | Throw transient error if tables of interest and undergoing full vacuum. | +| 3.4.24 | 2024-07-05 | [41067](https://github.com/airbytehq/airbyte/pull/41067) | Fix Postgres sending duplicated streams | +| 3.4.23 | 2024-07-01 | [40757](https://github.com/airbytehq/airbyte/pull/40757) | Rollback 3.4.22. +| 3.4.21 | 2024-07-01 | [40516](https://github.com/airbytehq/airbyte/pull/40516) | Remove dbz hearbeat. | +| 3.4.20 | 2024-06-23 | [40559](https://github.com/airbytehq/airbyte/pull/40559) | Remove strict check for stream states of unknown types | +| 3.4.19 | 2024-06-23 | [40223](https://github.com/airbytehq/airbyte/pull/40223) | Revert the changes introduced in version 3.4.15. | +| 3.4.18 | 2024-06-14 | [39349](https://github.com/airbytehq/airbyte/pull/39349) | Full refresh stream sending internal count metadata. | +| 3.4.17 | 2024-06-13 | [39460](https://github.com/airbytehq/airbyte/pull/39460) | Bump postgres JDBC driver version | +| 3.4.16 | 2024-05-29 | [39474](https://github.com/airbytehq/airbyte/pull/39474) | Adopt latest CDK. | +| 3.4.15 | 2024-05-29 | [38773](https://github.com/airbytehq/airbyte/pull/38773) | Connect with adaptiveFetch=true. | +| 3.4.14 | 2024-06-08 | [39353](https://github.com/airbytehq/airbyte/pull/39353) | Upgrade Debezium to 2.6.2 | +| 3.4.13 | 2024-06-04 | [38875](https://github.com/airbytehq/airbyte/pull/38875) | read() throws config exception upon detecting transaction ID wraparound. | +| 3.4.12 | 2024-06-04 | [38836](https://github.com/airbytehq/airbyte/pull/38836) | check() throws config error upon detecting transaction ID wraparound. | +| 3.4.11 | 2024-06-04 | [38848](https://github.com/airbytehq/airbyte/pull/38848) | Improve UI message and doc on xmin | +| 3.4.10 | 2024-05-29 | [38584](https://github.com/airbytehq/airbyte/pull/38584) | Set is_resumable flag in discover. | +| 3.4.9 | 2024-05-29 | [38775](https://github.com/airbytehq/airbyte/pull/38775) | Publish CDK | +| 3.4.9 | 2024-05-28 | [38716](https://github.com/airbytehq/airbyte/pull/38716) | Publish CDK | +| 3.4.8 | 2024-05-28 | [38716](https://github.com/airbytehq/airbyte/pull/38716) | Stream status for postgres | +| 3.4.7 | 2024-05-20 | [38365](https://github.com/airbytehq/airbyte/pull/38365) | Rollback a previously version (3.4.6) | +| 3.4.5 | 2024-05-16 | [38303](https://github.com/airbytehq/airbyte/pull/38303) | Streams not in the CDC publication still have a cursor and PK. | +| 3.4.4 | 2024-05-15 | [38208](https://github.com/airbytehq/airbyte/pull/38208) | disable counts in full refresh stream in state message. | +| 3.4.3 | 2024-05-13 | [38104](https://github.com/airbytehq/airbyte/pull/38104) | Handle transient error messages. | +| 3.4.2 | 2024-05-10 | [38171](https://github.com/airbytehq/airbyte/pull/38171) | Bug fix on final state setup. | +| 3.4.1 | 2024-05-10 | [38130](https://github.com/airbytehq/airbyte/pull/38130) | Bug fix on old PG where ctid column not found when stream is a view. | +| 3.4.0 | 2024-04-29 | [37112](https://github.com/airbytehq/airbyte/pull/37112) | resumeable full refresh. | +| 3.3.33 | 2024-05-07 | [38030](https://github.com/airbytehq/airbyte/pull/38030) | Mark PG hot standby error as transient. | +| 3.3.32 | 2024-04-30 | [37758](https://github.com/airbytehq/airbyte/pull/37758) | Correct previous release to disable debezium retries | +| 3.3.31 | 2024-04-30 | [37754](https://github.com/airbytehq/airbyte/pull/37754) | Add CDC logs | +| 3.3.30 | 2024-04-30 | [37726](https://github.com/airbytehq/airbyte/pull/37726) | Remove debezium retries | +| 3.3.29 | 2024-04-23 | [37509](https://github.com/airbytehq/airbyte/pull/37509) | remove excessive logs | +| 3.3.28 | 2024-04-23 | [37509](https://github.com/airbytehq/airbyte/pull/37509) | Better error messages on switching between sync modes. | +| 3.3.27 | 2024-04-22 | [37445](https://github.com/airbytehq/airbyte/pull/37445) | Remove legacy bad values handling code. | +| 3.3.26 | 2024-04-10 | [36982](https://github.com/airbytehq/airbyte/pull/36982) | Populate airyte_meta.changes for xmin path | +| 3.3.25 | 2024-04-10 | [36981](https://github.com/airbytehq/airbyte/pull/36981) | Track latest CDK | +| 3.3.24 | 2024-04-10 | [36865](https://github.com/airbytehq/airbyte/pull/36865) | Track latest CDK | +| 3.3.23 | 2024-04-02 | [36759](https://github.com/airbytehq/airbyte/pull/36759) | Track latest CDK | +| 3.3.22 | 2024-04-01 | [36739](https://github.com/airbytehq/airbyte/pull/36739) | Fix useLocalCdk flag. | +| 3.3.21 | 2024-03-25 | [36584](https://github.com/airbytehq/airbyte/pull/36584) | Adopt Kotlin CDK. | +| 3.3.20 | 2024-03-25 | [36432](https://github.com/airbytehq/airbyte/pull/36432) | Failure to serialize values from Postgres DB shouldn't fail sync. | +| 3.3.19 | 2024-03-12 | [36333](https://github.com/airbytehq/airbyte/pull/36333) | Use newest CDK - deprecate dbz iterator | +| 3.3.18 | 2024-03-12 | [35599](https://github.com/airbytehq/airbyte/pull/35599) | Use newest CDK | +| 3.3.17 | 2024-03-12 | [35939](https://github.com/airbytehq/airbyte/pull/35939) | Use lsn_commit value instead of lsn_proc for CDC checkpointing logic. | +| 3.3.16 | 2024-03-11 | [35904](https://github.com/airbytehq/airbyte/pull/35904) | Adopt Java CDK 0.23.1- debezium retries. | +| 3.3.15 | 2024-02-29 | [34724](https://github.com/airbytehq/airbyte/pull/34724) | Add record count in state message. | +| 3.3.14 | 2024-03-06 | [35842](https://github.com/airbytehq/airbyte/pull/35842) | Add logging to understand cases with a large number of records with the same LSN. | +| 3.3.13 | 2024-02-27 | [35675](https://github.com/airbytehq/airbyte/pull/35675) | Fix invalid cdc error message. | +| 3.3.12 | 2024-02-22 | [35569](https://github.com/airbytehq/airbyte/pull/35569) | Fix logging bug. | +| 3.3.11 | 2024-02-20 | [35304](https://github.com/airbytehq/airbyte/pull/35304) | Add config to throw an error on invalid CDC position and enable it by default. | +| 3.3.10 | 2024-02-13 | [35036](https://github.com/airbytehq/airbyte/pull/34751) | Emit analytics message for invalid CDC cursor. | +| 3.3.9 | 2024-02-13 | [35224](https://github.com/airbytehq/airbyte/pull/35224) | Adopt CDK 0.20.4 | +| 3.3.8 | 2024-02-08 | [34751](https://github.com/airbytehq/airbyte/pull/34751) | Adopt CDK 0.19.0 | +| 3.3.7 | 2024-02-08 | [34781](https://github.com/airbytehq/airbyte/pull/34781) | Add a setting in the setup page to advance the LSN. | +| 3.3.6 | 2024-02-07 | [34892](https://github.com/airbytehq/airbyte/pull/34892) | Adopt CDK v0.16.6 | +| 3.3.5 | 2024-02-07 | [34948](https://github.com/airbytehq/airbyte/pull/34948) | Adopt CDK v0.16.5 | +| 3.3.4 | 2024-01-31 | [34723](https://github.com/airbytehq/airbyte/pull/34723) | Adopt CDK v0.16.3 | +| 3.3.3 | 2024-01-26 | [34573](https://github.com/airbytehq/airbyte/pull/34573) | Adopt CDK v0.16.0 | +| 3.3.2 | 2024-01-24 | [34465](https://github.com/airbytehq/airbyte/pull/34465) | Check xmin only if user selects xmin sync mode. | +| 3.3.1 | 2024-01-10 | [34119](https://github.com/airbytehq/airbyte/pull/34119) | Adopt java CDK version 0.11.5. | +| 3.3.0 | 2023-12-19 | [33437](https://github.com/airbytehq/airbyte/pull/33437) | Remove LEGACY state flag | +| 3.2.27 | 2023-12-18 | [33605](https://github.com/airbytehq/airbyte/pull/33605) | Advance Postgres LSN for PG 14 & below. | +| 3.2.26 | 2023-12-11 | [33027](https://github.com/airbytehq/airbyte/pull/32961) | Support for better debugging tools. | +| 3.2.25 | 2023-11-29 | [32961](https://github.com/airbytehq/airbyte/pull/32961) | Bump debezium wait time default to 20 min. | +| 3.2.24 | 2023-11-28 | [32686](https://github.com/airbytehq/airbyte/pull/32686) | Better logging to understand dbz closing reason attribution. | +| 3.2.23 | 2023-11-28 | [32891](https://github.com/airbytehq/airbyte/pull/32891) | Fix CDK dependency in build. | +| 3.2.22 | 2023-11-22 | [32656](https://github.com/airbytehq/airbyte/pull/32656) | Adopt java CDK version 0.5.0. | +| 3.2.21 | 2023-11-07 | [31856](https://github.com/airbytehq/airbyte/pull/31856) | handle date/timestamp infinity values properly | +| 3.2.20 | 2023-11-06 | [32193](https://github.com/airbytehq/airbyte/pull/32193) | Adopt java CDK version 0.4.1. | +| 3.2.19 | 2023-11-03 | [32050](https://github.com/airbytehq/airbyte/pull/32050) | Adopt java CDK version 0.4.0. | +| 3.2.18 | 2023-11-01 | [29038](https://github.com/airbytehq/airbyte/pull/29038) | Fix typo (s/Airbtye/Airbyte/) | +| 3.2.17 | 2023-11-01 | [32068](https://github.com/airbytehq/airbyte/pull/32068) | Bump Debezium 2.2.0Final -> 2.4.0Final | +| 3.2.16 | 2023-10-31 | [31976](https://github.com/airbytehq/airbyte/pull/31976) | Speed up tests involving Debezium | +| 3.2.15 | 2023-10-30 | [31960](https://github.com/airbytehq/airbyte/pull/31960) | Adopt java CDK version 0.2.0. | +| 3.2.14 | 2023-10-24 | [31792](https://github.com/airbytehq/airbyte/pull/31792) | Fix error message link on issue with standby | +| 3.2.14 | 2023-10-24 | [31792](https://github.com/airbytehq/airbyte/pull/31792) | fail sync when debezeum fails to shutdown cleanly | +| 3.2.13 | 2023-10-16 | [31029](https://github.com/airbytehq/airbyte/pull/31029) | Enforces encrypted traffic settings when env var DEPLOYMENT_MODE = CLOUD. | +| 3.1.13 | 2023-10-13 | [31309](https://github.com/airbytehq/airbyte/pull/31309) | Addressed decimals being incorrectly deserialized into scientific notation. | +| 3.1.12 | 2023-10-12 | [31328](https://github.com/airbytehq/airbyte/pull/31328) | Improvements to initial load of tables in older versions of postgres. | +| 3.1.11 | 2023-10-11 | [31322](https://github.com/airbytehq/airbyte/pull/31322) | Correct pevious release | +| 3.1.10 | 2023-09-29 | [30806](https://github.com/airbytehq/airbyte/pull/30806) | Cap log line length to 32KB to prevent loss of records. | +| 3.1.9 | 2023-09-25 | [30534](https://github.com/airbytehq/airbyte/pull/30534) | Fix JSONB[] column type handling bug. | +| 3.1.8 | 2023-09-20 | [30125](https://github.com/airbytehq/airbyte/pull/30125) | Improve initial load performance for older versions of PostgreSQL. | +| 3.1.7 | 2023-09-05 | [29672](https://github.com/airbytehq/airbyte/pull/29672) | Handle VACUUM happening during initial sync | +| 3.1.6 | 2023-08-24 | [29821](https://github.com/airbytehq/airbyte/pull/29821) | Set replication_method display_type to radio, update titles and descriptions, and make CDC the default choice | +| 3.1.5 | 2023-08-22 | [29534](https://github.com/airbytehq/airbyte/pull/29534) | Support "options" JDBC URL parameter | +| 3.1.4 | 2023-08-21 | [28687](https://github.com/airbytehq/airbyte/pull/28687) | Under the hood: Add dependency on Java CDK v0.0.2. | +| 3.1.3 | 2023-08-03 | [28708](https://github.com/airbytehq/airbyte/pull/28708) | Enable checkpointing snapshots in CDC connections | +| 3.1.2 | 2023-08-01 | [28954](https://github.com/airbytehq/airbyte/pull/28954) | Fix an issue that prevented use of tables with names containing uppercase letters | +| 3.1.1 | 2023-07-31 | [28892](https://github.com/airbytehq/airbyte/pull/28892) | Fix an issue that prevented use of cursor columns with names containing uppercase letters | +| 3.1.0 | 2023-07-25 | [28339](https://github.com/airbytehq/airbyte/pull/28339) | Checkpointing initial load for incremental syncs: enabled for xmin and cursor based only. | +| 3.0.2 | 2023-07-18 | [28336](https://github.com/airbytehq/airbyte/pull/28336) | Add full-refresh mode back to Xmin syncs. | +| 3.0.1 | 2023-07-14 | [28345](https://github.com/airbytehq/airbyte/pull/28345) | Increment patch to trigger a rebuild | +| 3.0.0 | 2023-07-12 | [27442](https://github.com/airbytehq/airbyte/pull/27442) | Set \_ab_cdc_lsn as the source defined cursor for CDC mode to prepare for Destination v2 normalization | +| 2.1.1 | 2023-07-06 | [26723](https://github.com/airbytehq/airbyte/pull/26723) | Add new xmin replication method. | +| 2.1.0 | 2023-06-26 | [27737](https://github.com/airbytehq/airbyte/pull/27737) | License Update: Elv2 | +| 2.0.34 | 2023-06-20 | [27212](https://github.com/airbytehq/airbyte/pull/27212) | Fix silent exception swallowing in StreamingJdbcDatabase | +| 2.0.33 | 2023-06-01 | [26873](https://github.com/airbytehq/airbyte/pull/26873) | Add prepareThreshold=0 to JDBC url to mitigate PGBouncer prepared statement [X] already exists. | +| 2.0.32 | 2023-05-31 | [26810](https://github.com/airbytehq/airbyte/pull/26810) | Remove incremental sync estimate from Postgres to increase performance. | +| 2.0.31 | 2023-05-25 | [26633](https://github.com/airbytehq/airbyte/pull/26633) | Collect and log information related to full vacuum operation in db | +| 2.0.30 | 2023-05-25 | [26473](https://github.com/airbytehq/airbyte/pull/26473) | CDC : Limit queue size | +| 2.0.29 | 2023-05-18 | [25898](https://github.com/airbytehq/airbyte/pull/25898) | Translate Numeric values without decimal, e.g: NUMERIC(38,0), as BigInt instead of Double | +| 2.0.28 | 2023-04-27 | [25401](https://github.com/airbytehq/airbyte/pull/25401) | CDC : Upgrade Debezium to version 2.2.0 | +| 2.0.27 | 2023-04-26 | [24971](https://github.com/airbytehq/airbyte/pull/24971) | Emit stream status updates | +| 2.0.26 | 2023-04-26 | [25560](https://github.com/airbytehq/airbyte/pull/25560) | Revert some logging changes | +| 2.0.25 | 2023-04-24 | [25459](https://github.com/airbytehq/airbyte/pull/25459) | Better logging formatting | +| 2.0.24 | 2023-04-19 | [25345](https://github.com/airbytehq/airbyte/pull/25345) | Logging : Log database indexes per stream | +| 2.0.23 | 2023-04-19 | [24582](https://github.com/airbytehq/airbyte/pull/24582) | CDC : Enable frequent state emission during incremental syncs + refactor for performance improvement | +| 2.0.22 | 2023-04-17 | [25220](https://github.com/airbytehq/airbyte/pull/25220) | Logging changes : Log additional metadata & clean up noisy logs | +| 2.0.21 | 2023-04-12 | [25131](https://github.com/airbytehq/airbyte/pull/25131) | Make Client Certificate and Client Key always show | +| 2.0.20 | 2023-04-11 | [24859](https://github.com/airbytehq/airbyte/pull/24859) | Removed SSL toggle and rely on SSL mode dropdown to enable/disable SSL | +| 2.0.19 | 2023-04-11 | [24656](https://github.com/airbytehq/airbyte/pull/24656) | CDC minor refactor | +| 2.0.18 | 2023-04-06 | [24820](https://github.com/airbytehq/airbyte/pull/24820) | Fix data loss bug during an initial failed non-CDC incremental sync | +| 2.0.17 | 2023-04-05 | [24622](https://github.com/airbytehq/airbyte/pull/24622) | Allow streams not in CDC publication to be synced in Full-refresh mode | +| 2.0.16 | 2023-04-05 | [24895](https://github.com/airbytehq/airbyte/pull/24895) | Fix spec for cloud | +| 2.0.15 | 2023-04-04 | [24833](https://github.com/airbytehq/airbyte/pull/24833) | Fix Debezium retry policy configuration | +| 2.0.14 | 2023-04-03 | [24609](https://github.com/airbytehq/airbyte/pull/24609) | Disallow the "disable" SSL Modes | +| 2.0.13 | 2023-03-28 | [24166](https://github.com/airbytehq/airbyte/pull/24166) | Fix InterruptedException bug during Debezium shutdown | +| 2.0.12 | 2023-03-27 | [24529](https://github.com/airbytehq/airbyte/pull/24373) | Add CDC checkpoint state messages | +| 2.0.11 | 2023-03-23 | [24446](https://github.com/airbytehq/airbyte/pull/24446) | Set default SSL Mode to require in strict-encrypt | +| 2.0.10 | 2023-03-23 | [24417](https://github.com/airbytehq/airbyte/pull/24417) | Add field groups and titles to improve display of connector setup form | +| 2.0.9 | 2023-03-22 | [20760](https://github.com/airbytehq/airbyte/pull/20760) | Removed redundant date-time datatypes formatting | +| 2.0.8 | 2023-03-22 | [24255](https://github.com/airbytehq/airbyte/pull/24255) | Add field groups and titles to improve display of connector setup form | +| 2.0.7 | 2023-03-21 | [24207](https://github.com/airbytehq/airbyte/pull/24207) | Fix incorrect schema change warning in CDC mode | +| 2.0.6 | 2023-03-21 | [24271](https://github.com/airbytehq/airbyte/pull/24271) | Fix NPE in CDC mode | +| 2.0.5 | 2023-03-21 | [21533](https://github.com/airbytehq/airbyte/pull/21533) | Add integration with datadog | +| 2.0.4 | 2023-03-21 | [24147](https://github.com/airbytehq/airbyte/pull/24275) | Fix error with CDC checkpointing | +| 2.0.3 | 2023-03-14 | [24000](https://github.com/airbytehq/airbyte/pull/24000) | Removed check method call on read. | +| 2.0.2 | 2023-03-13 | [23112](https://github.com/airbytehq/airbyte/pull/21727) | Add state checkpointing for CDC sync. | +| 2.0.0 | 2023-03-06 | [23112](https://github.com/airbytehq/airbyte/pull/23112) | Upgrade Debezium version to 2.1.2 | +| 1.0.51 | 2023-03-02 | [23642](https://github.com/airbytehq/airbyte/pull/23642) | Revert : Support JSONB datatype for Standard sync mode | +| 1.0.50 | 2023-02-27 | [21695](https://github.com/airbytehq/airbyte/pull/21695) | Support JSONB datatype for Standard sync mode | +| 1.0.49 | 2023-02-24 | [23383](https://github.com/airbytehq/airbyte/pull/23383) | Fixed bug with non readable double-quoted values within a database name or column name | +| 1.0.48 | 2023-02-23 | [22623](https://github.com/airbytehq/airbyte/pull/22623) | Increase max fetch size of JDBC streaming mode | +| 1.0.47 | 2023-02-22 | [22221](https://github.com/airbytehq/airbyte/pull/23138) | Fix previous versions which doesn't verify privileges correctly, preventing CDC syncs to run. | +| 1.0.46 | 2023-02-21 | [23105](https://github.com/airbytehq/airbyte/pull/23105) | Include log levels and location information (class, method and line number) with source connector logs published to Airbyte Platform. | +| 1.0.45 | 2023-02-09 | [22221](https://github.com/airbytehq/airbyte/pull/22371) | Ensures that user has required privileges for CDC syncs. | +| | 2023-02-15 | [23028](https://github.com/airbytehq/airbyte/pull/23028) | | +| 1.0.44 | 2023-02-06 | [22221](https://github.com/airbytehq/airbyte/pull/22221) | Exclude new set of system tables when using `pg_stat_statements` extension. | +| 1.0.43 | 2023-02-06 | [21634](https://github.com/airbytehq/airbyte/pull/21634) | Improve Standard sync performance by caching objects. | +| 1.0.42 | 2023-01-23 | [21523](https://github.com/airbytehq/airbyte/pull/21523) | Check for null in cursor values before replacing. | +| 1.0.41 | 2023-01-25 | [20939](https://github.com/airbytehq/airbyte/pull/20939) | Adjust batch selection memory limits databases. | +| 1.0.40 | 2023-01-24 | [21825](https://github.com/airbytehq/airbyte/pull/21825) | Put back the original change that will cause an incremental sync to error if table contains a NULL value in cursor column. | +| 1.0.39 | 2023-01-20 | [21683](https://github.com/airbytehq/airbyte/pull/21683) | Speed up esmtimates for trace messages in non-CDC mode. | +| 1.0.38 | 2023-01-17 | [20436](https://github.com/airbytehq/airbyte/pull/20346) | Consolidate date/time values mapping for JDBC sources | +| 1.0.37 | 2023-01-17 | [20783](https://github.com/airbytehq/airbyte/pull/20783) | Emit estimate trace messages for non-CDC mode. | +| 1.0.36 | 2023-01-11 | [21003](https://github.com/airbytehq/airbyte/pull/21003) | Handle null values for array data types in CDC mode gracefully. | +| 1.0.35 | 2023-01-04 | [20469](https://github.com/airbytehq/airbyte/pull/20469) | Introduce feature to make LSN commit behaviour configurable. | +| 1.0.34 | 2022-12-13 | [20378](https://github.com/airbytehq/airbyte/pull/20378) | Improve descriptions | +| 1.0.33 | 2022-12-12 | [18959](https://github.com/airbytehq/airbyte/pull/18959) | CDC : Don't timeout if snapshot is not complete. | +| 1.0.32 | 2022-12-12 | [20192](https://github.com/airbytehq/airbyte/pull/20192) | Only throw a warning if cursor column contains null values. | +| 1.0.31 | 2022-12-02 | [19889](https://github.com/airbytehq/airbyte/pull/19889) | Check before each sync and stop if an incremental sync cursor column contains a null value. | +| | 2022-12-02 | [19985](https://github.com/airbytehq/airbyte/pull/19985) | Reenable incorrectly-disabled `wal2json` CDC plugin | +| 1.0.30 | 2022-11-29 | [19024](https://github.com/airbytehq/airbyte/pull/19024) | Skip tables from schema where user do not have Usage permission during discovery. | +| 1.0.29 | 2022-11-29 | [19623](https://github.com/airbytehq/airbyte/pull/19623) | Mark PSQLException related to using replica that is configured as a hot standby server as config error. | +| 1.0.28 | 2022-11-28 | [19514](https://github.com/airbytehq/airbyte/pull/19514) | Adjust batch selection memory limits databases. | +| 1.0.27 | 2022-11-28 | [16990](https://github.com/airbytehq/airbyte/pull/16990) | Handle arrays data types | +| 1.0.26 | 2022-11-18 | [19551](https://github.com/airbytehq/airbyte/pull/19551) | Fixes bug with ssl modes | +| 1.0.25 | 2022-11-16 | [19004](https://github.com/airbytehq/airbyte/pull/19004) | Use Debezium heartbeats to improve CDC replication of large databases. | +| 1.0.24 | 2022-11-07 | [19291](https://github.com/airbytehq/airbyte/pull/19291) | Default timeout is reduced from 1 min to 10sec | +| 1.0.23 | 2022-11-07 | [19025](https://github.com/airbytehq/airbyte/pull/19025) | Stop enforce SSL if ssl mode is disabled | +| 1.0.22 | 2022-10-31 | [18538](https://github.com/airbytehq/airbyte/pull/18538) | Encode database name | +| 1.0.21 | 2022-10-25 | [18256](https://github.com/airbytehq/airbyte/pull/18256) | Disable allow and prefer ssl modes in CDC mode | +| 1.0.20 | 2022-10-25 | [18383](https://github.com/airbytehq/airbyte/pull/18383) | Better SSH error handling + messages | +| 1.0.19 | 2022-10-21 | [18263](https://github.com/airbytehq/airbyte/pull/18263) | Fixes bug introduced in [15833](https://github.com/airbytehq/airbyte/pull/15833) and adds better error messaging for SSH tunnel in Destinations | +| 1.0.18 | 2022-10-19 | [18087](https://github.com/airbytehq/airbyte/pull/18087) | Better error messaging for configuration errors (SSH configs, choosing an invalid cursor) | +| 1.0.17 | 2022-10-17 | [18041](https://github.com/airbytehq/airbyte/pull/18041) | Fixes bug introduced 2022-09-12 with SshTunnel, handles iterator exception properly | +| 1.0.16 | 2022-10-13 | [15535](https://github.com/airbytehq/airbyte/pull/16238) | Update incremental query to avoid data missing when new data is inserted at the same time as a sync starts under non-CDC incremental mode | +| 1.0.15 | 2022-10-11 | [17782](https://github.com/airbytehq/airbyte/pull/17782) | Handle 24:00:00 value for Time column | +| 1.0.14 | 2022-10-03 | [17515](https://github.com/airbytehq/airbyte/pull/17515) | Fix an issue preventing connection using client certificate | +| 1.0.13 | 2022-10-01 | [17459](https://github.com/airbytehq/airbyte/pull/17459) | Upgrade debezium version to 1.9.6 from 1.9.2 | +| 1.0.12 | 2022-09-27 | [17299](https://github.com/airbytehq/airbyte/pull/17299) | Improve error handling for strict-encrypt postgres source | +| 1.0.11 | 2022-09-26 | [17131](https://github.com/airbytehq/airbyte/pull/17131) | Allow nullable columns to be used as cursor | +| 1.0.10 | 2022-09-14 | [15668](https://github.com/airbytehq/airbyte/pull/15668) | Wrap logs in AirbyteLogMessage | +| 1.0.9 | 2022-09-13 | [16657](https://github.com/airbytehq/airbyte/pull/16657) | Improve CDC record queueing performance | +| 1.0.8 | 2022-09-08 | [16202](https://github.com/airbytehq/airbyte/pull/16202) | Adds error messaging factory to UI | +| 1.0.7 | 2022-08-30 | [16114](https://github.com/airbytehq/airbyte/pull/16114) | Prevent traffic going on an unsecured channel in strict-encryption version of source postgres | +| 1.0.6 | 2022-08-30 | [16138](https://github.com/airbytehq/airbyte/pull/16138) | Remove unnecessary logging | +| 1.0.5 | 2022-08-25 | [15993](https://github.com/airbytehq/airbyte/pull/15993) | Add support for connection over SSL in CDC mode | +| 1.0.4 | 2022-08-23 | [15877](https://github.com/airbytehq/airbyte/pull/15877) | Fix temporal data type bug which was causing failure in CDC mode | +| 1.0.3 | 2022-08-18 | [14356](https://github.com/airbytehq/airbyte/pull/14356) | DB Sources: only show a table can sync incrementally if at least one column can be used as a cursor field | +| 1.0.2 | 2022-08-11 | [15538](https://github.com/airbytehq/airbyte/pull/15538) | Allow additional properties in db stream state | +| 1.0.1 | 2022-08-10 | [15496](https://github.com/airbytehq/airbyte/pull/15496) | Fix state emission in incremental sync | +| | 2022-08-10 | [15481](https://github.com/airbytehq/airbyte/pull/15481) | Fix data handling from WAL logs in CDC mode | | 1.0.0 | 2022-08-05 | [15380](https://github.com/airbytehq/airbyte/pull/15380) | Change connector label to generally_available (requires [upgrading](https://docs.airbyte.com/operator-guides/upgrading-airbyte/) your Airbyte platform to `v0.40.0-alpha`) | -| 0.4.44 | 2022-08-05 | [15342](https://github.com/airbytehq/airbyte/pull/15342) | Adjust titles and descriptions in spec.json | -| 0.4.43 | 2022-08-03 | [15226](https://github.com/airbytehq/airbyte/pull/15226) | Make connectionTimeoutMs configurable through JDBC url parameters | -| 0.4.42 | 2022-08-03 | [15273](https://github.com/airbytehq/airbyte/pull/15273) | Fix a bug in `0.4.36` and correctly parse the CDC initial record waiting time | -| 0.4.41 | 2022-08-03 | [15077](https://github.com/airbytehq/airbyte/pull/15077) | Sync data from beginning if the LSN is no longer valid in CDC | -| | 2022-08-03 | [14903](https://github.com/airbytehq/airbyte/pull/14903) | Emit state messages more frequently (⛔ this version has a bug; use `1.0.1` instead | -| 0.4.40 | 2022-08-03 | [15187](https://github.com/airbytehq/airbyte/pull/15187) | Add support for BCE dates/timestamps | -| | 2022-08-03 | [14534](https://github.com/airbytehq/airbyte/pull/14534) | Align regular and CDC integration tests and data mappers | -| 0.4.39 | 2022-08-02 | [14801](https://github.com/airbytehq/airbyte/pull/14801) | Fix multiple log bindings | -| 0.4.38 | 2022-07-26 | [14362](https://github.com/airbytehq/airbyte/pull/14362) | Integral columns are now discovered as int64 fields. | -| 0.4.37 | 2022-07-22 | [14714](https://github.com/airbytehq/airbyte/pull/14714) | Clarified error message when invalid cursor column selected | -| 0.4.36 | 2022-07-21 | [14451](https://github.com/airbytehq/airbyte/pull/14451) | Make initial CDC waiting time configurable (⛔ this version has a bug and will not work; use `0.4.42` instead) | -| 0.4.35 | 2022-07-14 | [14574](https://github.com/airbytehq/airbyte/pull/14574) | Removed additionalProperties:false from JDBC source connectors | -| 0.4.34 | 2022-07-17 | [13840](https://github.com/airbytehq/airbyte/pull/13840) | Added the ability to connect using different SSL modes and SSL certificates. | -| 0.4.33 | 2022-07-14 | [14586](https://github.com/airbytehq/airbyte/pull/14586) | Validate source JDBC url parameters | -| 0.4.32 | 2022-07-07 | [14694](https://github.com/airbytehq/airbyte/pull/14694) | Force to produce LEGACY state if the use stream capable feature flag is set to false | -| 0.4.31 | 2022-07-07 | [14447](https://github.com/airbytehq/airbyte/pull/14447) | Under CDC mode, retrieve only those tables included in the publications | -| 0.4.30 | 2022-06-30 | [14251](https://github.com/airbytehq/airbyte/pull/14251) | Use more simple and comprehensive query to get selectable tables | -| 0.4.29 | 2022-06-29 | [14265](https://github.com/airbytehq/airbyte/pull/14265) | Upgrade postgresql JDBC version to 42.3.5 | -| 0.4.28 | 2022-06-23 | [14077](https://github.com/airbytehq/airbyte/pull/14077) | Use the new state management | -| 0.4.26 | 2022-06-17 | [13864](https://github.com/airbytehq/airbyte/pull/13864) | Updated stacktrace format for any trace message errors | -| 0.4.25 | 2022-06-15 | [13823](https://github.com/airbytehq/airbyte/pull/13823) | Publish adaptive postgres source that enforces ssl on cloud + Debezium version upgrade to 1.9.2 from 1.4.2 | -| 0.4.24 | 2022-06-14 | [13549](https://github.com/airbytehq/airbyte/pull/13549) | Fixed truncated precision if the value of microseconds or seconds is 0 | -| 0.4.23 | 2022-06-13 | [13655](https://github.com/airbytehq/airbyte/pull/13745) | Fixed handling datetime cursors when upgrading from older versions of the connector | -| 0.4.22 | 2022-06-09 | [13655](https://github.com/airbytehq/airbyte/pull/13655) | Fixed bug with unsupported date-time datatypes during incremental sync | -| 0.4.21 | 2022-06-06 | [13435](https://github.com/airbytehq/airbyte/pull/13435) | Adjust JDBC fetch size based on max memory and max row size | -| 0.4.20 | 2022-06-02 | [13367](https://github.com/airbytehq/airbyte/pull/13367) | Added convertion hstore to json format | -| 0.4.19 | 2022-05-25 | [13166](https://github.com/airbytehq/airbyte/pull/13166) | Added timezone awareness and handle BC dates | -| 0.4.18 | 2022-05-25 | [13083](https://github.com/airbytehq/airbyte/pull/13083) | Add support for tsquey type | -| 0.4.17 | 2022-05-19 | [13016](https://github.com/airbytehq/airbyte/pull/13016) | CDC modify schema to allow null values | -| 0.4.16 | 2022-05-14 | [12840](https://github.com/airbytehq/airbyte/pull/12840) | Added custom JDBC parameters field | -| 0.4.15 | 2022-05-13 | [12834](https://github.com/airbytehq/airbyte/pull/12834) | Fix the bug that the connector returns empty catalog for Azure Postgres database | -| 0.4.14 | 2022-05-08 | [12689](https://github.com/airbytehq/airbyte/pull/12689) | Add table retrieval according to role-based `SELECT` privilege | -| 0.4.13 | 2022-05-05 | [10230](https://github.com/airbytehq/airbyte/pull/10230) | Explicitly set null value for field in json | -| 0.4.12 | 2022-04-29 | [12480](https://github.com/airbytehq/airbyte/pull/12480) | Query tables with adaptive fetch size to optimize JDBC memory consumption | -| 0.4.11 | 2022-04-11 | [11729](https://github.com/airbytehq/airbyte/pull/11729) | Bump mina-sshd from 2.7.0 to 2.8.0 | -| 0.4.10 | 2022-04-08 | [11798](https://github.com/airbytehq/airbyte/pull/11798) | Fixed roles for fetching materialized view processing | -| 0.4.8 | 2022-02-21 | [10242](https://github.com/airbytehq/airbyte/pull/10242) | Fixed cursor for old connectors that use non-microsecond format. Now connectors work with both formats | -| 0.4.7 | 2022-02-18 | [10242](https://github.com/airbytehq/airbyte/pull/10242) | Updated timestamp transformation with microseconds | -| 0.4.6 | 2022-02-14 | [10256](https://github.com/airbytehq/airbyte/pull/10256) | (unpublished) Add `-XX:+ExitOnOutOfMemoryError` JVM option | -| 0.4.5 | 2022-02-08 | [10173](https://github.com/airbytehq/airbyte/pull/10173) | Improved discovering tables in case if user does not have permissions to any table | -| 0.4.4 | 2022-01-26 | [9807](https://github.com/airbytehq/airbyte/pull/9807) | Update connector fields title/description | -| 0.4.3 | 2022-01-24 | [9554](https://github.com/airbytehq/airbyte/pull/9554) | Allow handling of java sql date in CDC | -| 0.4.2 | 2022-01-13 | [9360](https://github.com/airbytehq/airbyte/pull/9360) | Added schema selection | -| 0.4.1 | 2022-01-05 | [9116](https://github.com/airbytehq/airbyte/pull/9116) | Added materialized views processing | -| 0.4.0 | 2021-12-13 | [8726](https://github.com/airbytehq/airbyte/pull/8726) | Support all Postgres types | -| 0.3.17 | 2021-12-01 | [8371](https://github.com/airbytehq/airbyte/pull/8371) | Fixed incorrect handling "\n" in ssh key | -| 0.3.16 | 2021-11-28 | [7995](https://github.com/airbytehq/airbyte/pull/7995) | Fixed money type with amount > 1000 | -| 0.3.15 | 2021-11-26 | [8066](https://github.com/airbytehq/airbyte/pull/8266) | Fixed the case, when Views are not listed during schema discovery | -| 0.3.14 | 2021-11-17 | [8010](https://github.com/airbytehq/airbyte/pull/8010) | Added checking of privileges before table internal discovery | -| 0.3.13 | 2021-10-26 | [7339](https://github.com/airbytehq/airbyte/pull/7339) | Support or improve support for Interval, Money, Date, various geometric data types, inventory_items, and others | -| 0.3.12 | 2021-09-30 | [6585](https://github.com/airbytehq/airbyte/pull/6585) | Improved SSH Tunnel key generation steps | -| 0.3.11 | 2021-09-02 | [5742](https://github.com/airbytehq/airbyte/pull/5742) | Add SSH Tunnel support | -| 0.3.9 | 2021-08-17 | [5304](https://github.com/airbytehq/airbyte/pull/5304) | Fix CDC OOM issue | -| 0.3.8 | 2021-08-13 | [4699](https://github.com/airbytehq/airbyte/pull/4699) | Added json config validator | -| 0.3.4 | 2021-06-09 | [3973](https://github.com/airbytehq/airbyte/pull/3973) | Add `AIRBYTE_ENTRYPOINT` for Kubernetes support | -| 0.3.3 | 2021-06-08 | [3960](https://github.com/airbytehq/airbyte/pull/3960) | Add method field in specification parameters | -| 0.3.2 | 2021-05-26 | [3179](https://github.com/airbytehq/airbyte/pull/3179) | Remove `isCDC` logging | -| 0.3.1 | 2021-04-21 | [2878](https://github.com/airbytehq/airbyte/pull/2878) | Set defined cursor for CDC | -| 0.3.0 | 2021-04-21 | [2990](https://github.com/airbytehq/airbyte/pull/2990) | Support namespaces | -| 0.2.7 | 2021-04-16 | [2923](https://github.com/airbytehq/airbyte/pull/2923) | SSL spec as optional | -| 0.2.6 | 2021-04-16 | [2757](https://github.com/airbytehq/airbyte/pull/2757) | Support SSL connection | -| 0.2.5 | 2021-04-12 | [2859](https://github.com/airbytehq/airbyte/pull/2859) | CDC bugfix | -| 0.2.4 | 2021-04-09 | [2548](https://github.com/airbytehq/airbyte/pull/2548) | Support CDC | -| 0.2.3 | 2021-03-28 | [2600](https://github.com/airbytehq/airbyte/pull/2600) | Add NCHAR and NVCHAR support to DB and cursor type casting | -| 0.2.2 | 2021-03-26 | [2460](https://github.com/airbytehq/airbyte/pull/2460) | Destination supports destination sync mode | -| 0.2.1 | 2021-03-18 | [2488](https://github.com/airbytehq/airbyte/pull/2488) | Sources support primary keys | -| 0.2.0 | 2021-03-09 | [2238](https://github.com/airbytehq/airbyte/pull/2238) | Protocol allows future/unknown properties | -| 0.1.13 | 2021-02-02 | [1887](https://github.com/airbytehq/airbyte/pull/1887) | Migrate AbstractJdbcSource to use iterators | -| 0.1.12 | 2021-01-25 | [1746](https://github.com/airbytehq/airbyte/pull/1746) | Fix NPE in State Decorator | -| 0.1.11 | 2021-01-25 | [1765](https://github.com/airbytehq/airbyte/pull/1765) | Add field titles to specification | -| 0.1.10 | 2021-01-19 | [1724](https://github.com/airbytehq/airbyte/pull/1724) | Fix JdbcSource handling of tables with same names in different schemas | -| 0.1.9 | 2021-01-14 | [1655](https://github.com/airbytehq/airbyte/pull/1655) | Fix JdbcSource OOM | -| 0.1.8 | 2021-01-13 | [1588](https://github.com/airbytehq/airbyte/pull/1588) | Handle invalid numeric values in JDBC source | -| 0.1.7 | 2021-01-08 | [1307](https://github.com/airbytehq/airbyte/pull/1307) | Migrate Postgres and MySql to use new JdbcSource | -| 0.1.6 | 2020-12-09 | [1172](https://github.com/airbytehq/airbyte/pull/1172) | Support incremental sync | -| 0.1.5 | 2020-11-30 | [1038](https://github.com/airbytehq/airbyte/pull/1038) | Change JDBC sources to discover more than standard schemas | -| 0.1.4 | 2020-11-30 | [1046](https://github.com/airbytehq/airbyte/pull/1046) | Add connectors using an index YAML file | +| 0.4.44 | 2022-08-05 | [15342](https://github.com/airbytehq/airbyte/pull/15342) | Adjust titles and descriptions in spec.json | +| 0.4.43 | 2022-08-03 | [15226](https://github.com/airbytehq/airbyte/pull/15226) | Make connectionTimeoutMs configurable through JDBC url parameters | +| 0.4.42 | 2022-08-03 | [15273](https://github.com/airbytehq/airbyte/pull/15273) | Fix a bug in `0.4.36` and correctly parse the CDC initial record waiting time | +| 0.4.41 | 2022-08-03 | [15077](https://github.com/airbytehq/airbyte/pull/15077) | Sync data from beginning if the LSN is no longer valid in CDC | +| | 2022-08-03 | [14903](https://github.com/airbytehq/airbyte/pull/14903) | Emit state messages more frequently (⛔ this version has a bug; use `1.0.1` instead | +| 0.4.40 | 2022-08-03 | [15187](https://github.com/airbytehq/airbyte/pull/15187) | Add support for BCE dates/timestamps | +| | 2022-08-03 | [14534](https://github.com/airbytehq/airbyte/pull/14534) | Align regular and CDC integration tests and data mappers | +| 0.4.39 | 2022-08-02 | [14801](https://github.com/airbytehq/airbyte/pull/14801) | Fix multiple log bindings | +| 0.4.38 | 2022-07-26 | [14362](https://github.com/airbytehq/airbyte/pull/14362) | Integral columns are now discovered as int64 fields. | +| 0.4.37 | 2022-07-22 | [14714](https://github.com/airbytehq/airbyte/pull/14714) | Clarified error message when invalid cursor column selected | +| 0.4.36 | 2022-07-21 | [14451](https://github.com/airbytehq/airbyte/pull/14451) | Make initial CDC waiting time configurable (⛔ this version has a bug and will not work; use `0.4.42` instead) | +| 0.4.35 | 2022-07-14 | [14574](https://github.com/airbytehq/airbyte/pull/14574) | Removed additionalProperties:false from JDBC source connectors | +| 0.4.34 | 2022-07-17 | [13840](https://github.com/airbytehq/airbyte/pull/13840) | Added the ability to connect using different SSL modes and SSL certificates. | +| 0.4.33 | 2022-07-14 | [14586](https://github.com/airbytehq/airbyte/pull/14586) | Validate source JDBC url parameters | +| 0.4.32 | 2022-07-07 | [14694](https://github.com/airbytehq/airbyte/pull/14694) | Force to produce LEGACY state if the use stream capable feature flag is set to false | +| 0.4.31 | 2022-07-07 | [14447](https://github.com/airbytehq/airbyte/pull/14447) | Under CDC mode, retrieve only those tables included in the publications | +| 0.4.30 | 2022-06-30 | [14251](https://github.com/airbytehq/airbyte/pull/14251) | Use more simple and comprehensive query to get selectable tables | +| 0.4.29 | 2022-06-29 | [14265](https://github.com/airbytehq/airbyte/pull/14265) | Upgrade postgresql JDBC version to 42.3.5 | +| 0.4.28 | 2022-06-23 | [14077](https://github.com/airbytehq/airbyte/pull/14077) | Use the new state management | +| 0.4.26 | 2022-06-17 | [13864](https://github.com/airbytehq/airbyte/pull/13864) | Updated stacktrace format for any trace message errors | +| 0.4.25 | 2022-06-15 | [13823](https://github.com/airbytehq/airbyte/pull/13823) | Publish adaptive postgres source that enforces ssl on cloud + Debezium version upgrade to 1.9.2 from 1.4.2 | +| 0.4.24 | 2022-06-14 | [13549](https://github.com/airbytehq/airbyte/pull/13549) | Fixed truncated precision if the value of microseconds or seconds is 0 | +| 0.4.23 | 2022-06-13 | [13655](https://github.com/airbytehq/airbyte/pull/13745) | Fixed handling datetime cursors when upgrading from older versions of the connector | +| 0.4.22 | 2022-06-09 | [13655](https://github.com/airbytehq/airbyte/pull/13655) | Fixed bug with unsupported date-time datatypes during incremental sync | +| 0.4.21 | 2022-06-06 | [13435](https://github.com/airbytehq/airbyte/pull/13435) | Adjust JDBC fetch size based on max memory and max row size | +| 0.4.20 | 2022-06-02 | [13367](https://github.com/airbytehq/airbyte/pull/13367) | Added convertion hstore to json format | +| 0.4.19 | 2022-05-25 | [13166](https://github.com/airbytehq/airbyte/pull/13166) | Added timezone awareness and handle BC dates | +| 0.4.18 | 2022-05-25 | [13083](https://github.com/airbytehq/airbyte/pull/13083) | Add support for tsquey type | +| 0.4.17 | 2022-05-19 | [13016](https://github.com/airbytehq/airbyte/pull/13016) | CDC modify schema to allow null values | +| 0.4.16 | 2022-05-14 | [12840](https://github.com/airbytehq/airbyte/pull/12840) | Added custom JDBC parameters field | +| 0.4.15 | 2022-05-13 | [12834](https://github.com/airbytehq/airbyte/pull/12834) | Fix the bug that the connector returns empty catalog for Azure Postgres database | +| 0.4.14 | 2022-05-08 | [12689](https://github.com/airbytehq/airbyte/pull/12689) | Add table retrieval according to role-based `SELECT` privilege | +| 0.4.13 | 2022-05-05 | [10230](https://github.com/airbytehq/airbyte/pull/10230) | Explicitly set null value for field in json | +| 0.4.12 | 2022-04-29 | [12480](https://github.com/airbytehq/airbyte/pull/12480) | Query tables with adaptive fetch size to optimize JDBC memory consumption | +| 0.4.11 | 2022-04-11 | [11729](https://github.com/airbytehq/airbyte/pull/11729) | Bump mina-sshd from 2.7.0 to 2.8.0 | +| 0.4.10 | 2022-04-08 | [11798](https://github.com/airbytehq/airbyte/pull/11798) | Fixed roles for fetching materialized view processing | +| 0.4.8 | 2022-02-21 | [10242](https://github.com/airbytehq/airbyte/pull/10242) | Fixed cursor for old connectors that use non-microsecond format. Now connectors work with both formats | +| 0.4.7 | 2022-02-18 | [10242](https://github.com/airbytehq/airbyte/pull/10242) | Updated timestamp transformation with microseconds | +| 0.4.6 | 2022-02-14 | [10256](https://github.com/airbytehq/airbyte/pull/10256) | (unpublished) Add `-XX:+ExitOnOutOfMemoryError` JVM option | +| 0.4.5 | 2022-02-08 | [10173](https://github.com/airbytehq/airbyte/pull/10173) | Improved discovering tables in case if user does not have permissions to any table | +| 0.4.4 | 2022-01-26 | [9807](https://github.com/airbytehq/airbyte/pull/9807) | Update connector fields title/description | +| 0.4.3 | 2022-01-24 | [9554](https://github.com/airbytehq/airbyte/pull/9554) | Allow handling of java sql date in CDC | +| 0.4.2 | 2022-01-13 | [9360](https://github.com/airbytehq/airbyte/pull/9360) | Added schema selection | +| 0.4.1 | 2022-01-05 | [9116](https://github.com/airbytehq/airbyte/pull/9116) | Added materialized views processing | +| 0.4.0 | 2021-12-13 | [8726](https://github.com/airbytehq/airbyte/pull/8726) | Support all Postgres types | +| 0.3.17 | 2021-12-01 | [8371](https://github.com/airbytehq/airbyte/pull/8371) | Fixed incorrect handling "\n" in ssh key | +| 0.3.16 | 2021-11-28 | [7995](https://github.com/airbytehq/airbyte/pull/7995) | Fixed money type with amount > 1000 | +| 0.3.15 | 2021-11-26 | [8066](https://github.com/airbytehq/airbyte/pull/8266) | Fixed the case, when Views are not listed during schema discovery | +| 0.3.14 | 2021-11-17 | [8010](https://github.com/airbytehq/airbyte/pull/8010) | Added checking of privileges before table internal discovery | +| 0.3.13 | 2021-10-26 | [7339](https://github.com/airbytehq/airbyte/pull/7339) | Support or improve support for Interval, Money, Date, various geometric data types, inventory_items, and others | +| 0.3.12 | 2021-09-30 | [6585](https://github.com/airbytehq/airbyte/pull/6585) | Improved SSH Tunnel key generation steps | +| 0.3.11 | 2021-09-02 | [5742](https://github.com/airbytehq/airbyte/pull/5742) | Add SSH Tunnel support | +| 0.3.9 | 2021-08-17 | [5304](https://github.com/airbytehq/airbyte/pull/5304) | Fix CDC OOM issue | +| 0.3.8 | 2021-08-13 | [4699](https://github.com/airbytehq/airbyte/pull/4699) | Added json config validator | +| 0.3.4 | 2021-06-09 | [3973](https://github.com/airbytehq/airbyte/pull/3973) | Add `AIRBYTE_ENTRYPOINT` for Kubernetes support | +| 0.3.3 | 2021-06-08 | [3960](https://github.com/airbytehq/airbyte/pull/3960) | Add method field in specification parameters | +| 0.3.2 | 2021-05-26 | [3179](https://github.com/airbytehq/airbyte/pull/3179) | Remove `isCDC` logging | +| 0.3.1 | 2021-04-21 | [2878](https://github.com/airbytehq/airbyte/pull/2878) | Set defined cursor for CDC | +| 0.3.0 | 2021-04-21 | [2990](https://github.com/airbytehq/airbyte/pull/2990) | Support namespaces | +| 0.2.7 | 2021-04-16 | [2923](https://github.com/airbytehq/airbyte/pull/2923) | SSL spec as optional | +| 0.2.6 | 2021-04-16 | [2757](https://github.com/airbytehq/airbyte/pull/2757) | Support SSL connection | +| 0.2.5 | 2021-04-12 | [2859](https://github.com/airbytehq/airbyte/pull/2859) | CDC bugfix | +| 0.2.4 | 2021-04-09 | [2548](https://github.com/airbytehq/airbyte/pull/2548) | Support CDC | +| 0.2.3 | 2021-03-28 | [2600](https://github.com/airbytehq/airbyte/pull/2600) | Add NCHAR and NVCHAR support to DB and cursor type casting | +| 0.2.2 | 2021-03-26 | [2460](https://github.com/airbytehq/airbyte/pull/2460) | Destination supports destination sync mode | +| 0.2.1 | 2021-03-18 | [2488](https://github.com/airbytehq/airbyte/pull/2488) | Sources support primary keys | +| 0.2.0 | 2021-03-09 | [2238](https://github.com/airbytehq/airbyte/pull/2238) | Protocol allows future/unknown properties | +| 0.1.13 | 2021-02-02 | [1887](https://github.com/airbytehq/airbyte/pull/1887) | Migrate AbstractJdbcSource to use iterators | +| 0.1.12 | 2021-01-25 | [1746](https://github.com/airbytehq/airbyte/pull/1746) | Fix NPE in State Decorator | +| 0.1.11 | 2021-01-25 | [1765](https://github.com/airbytehq/airbyte/pull/1765) | Add field titles to specification | +| 0.1.10 | 2021-01-19 | [1724](https://github.com/airbytehq/airbyte/pull/1724) | Fix JdbcSource handling of tables with same names in different schemas | +| 0.1.9 | 2021-01-14 | [1655](https://github.com/airbytehq/airbyte/pull/1655) | Fix JdbcSource OOM | +| 0.1.8 | 2021-01-13 | [1588](https://github.com/airbytehq/airbyte/pull/1588) | Handle invalid numeric values in JDBC source | +| 0.1.7 | 2021-01-08 | [1307](https://github.com/airbytehq/airbyte/pull/1307) | Migrate Postgres and MySql to use new JdbcSource | +| 0.1.6 | 2020-12-09 | [1172](https://github.com/airbytehq/airbyte/pull/1172) | Support incremental sync | +| 0.1.5 | 2020-11-30 | [1038](https://github.com/airbytehq/airbyte/pull/1038) | Change JDBC sources to discover more than standard schemas | +| 0.1.4 | 2020-11-30 | [1046](https://github.com/airbytehq/airbyte/pull/1046) | Add connectors using an index YAML file |
From b451966f07b8f879aa2fb0d5dd32c42e127c4a17 Mon Sep 17 00:00:00 2001 From: davinchia Date: Fri, 12 Jul 2024 20:44:49 +0000 Subject: [PATCH 002/260] Bump Airbyte version from 0.63.7 to 0.63.8 --- .bumpversion.cfg | 2 +- gradle.properties | 2 +- run-ab-platform.sh | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 0d64f27625f8..7d9cf1049c00 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.63.7 +current_version = 0.63.8 commit = False tag = False parse = (?P\d+)\.(?P\d+)\.(?P\d+)(\-[a-z]+)? diff --git a/gradle.properties b/gradle.properties index 6585b95a4022..15bd6e65ca60 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,4 +1,4 @@ -VERSION=0.63.7 +VERSION=0.63.8 # NOTE: some of these values are overwritten in CI! # NOTE: if you want to override this for your local machine, set overrides in ~/.gradle/gradle.properties diff --git a/run-ab-platform.sh b/run-ab-platform.sh index f8eab9a2164a..1f49a31db6a0 100755 --- a/run-ab-platform.sh +++ b/run-ab-platform.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash -VERSION=0.63.7 +VERSION=0.63.8 # Run away from anything even a little scary set -o nounset # -u exit if a variable is not set set -o errexit # -f exit for any command failure" From 9ff9b29e93f54611960298f3562babcb23294aa3 Mon Sep 17 00:00:00 2001 From: Natik Gadzhi Date: Fri, 12 Jul 2024 14:57:16 -0700 Subject: [PATCH 003/260] chore: mention tooling team instead of extensibility on connector publishing alerts (#41655) --- .github/workflows/publish_connectors.yml | 4 ++-- .github/workflows/run-mypy-on-modified-cdk-files.yml | 2 +- .../live-tests/src/live_tests/commons/secret_access.py | 2 +- .../pipelines/airbyte_ci/connectors/publish/context.py | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/publish_connectors.yml b/.github/workflows/publish_connectors.yml index 6472cf037a6a..c01c55af8e73 100644 --- a/.github/workflows/publish_connectors.yml +++ b/.github/workflows/publish_connectors.yml @@ -23,7 +23,7 @@ jobs: runs-on: connector-publish-large steps: - name: Checkout Airbyte - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Publish modified connectors [On merge to master] id: publish-modified-connectors if: github.event_name == 'push' @@ -101,7 +101,7 @@ jobs: if: ${{ failure() && github.ref == 'refs/heads/master' }} steps: - name: Checkout Airbyte - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Match GitHub User to Slack User id: match-github-to-slack-user uses: ./.github/actions/match-github-to-slack-user diff --git a/.github/workflows/run-mypy-on-modified-cdk-files.yml b/.github/workflows/run-mypy-on-modified-cdk-files.yml index 0f67b540b9af..4c471ddc1304 100644 --- a/.github/workflows/run-mypy-on-modified-cdk-files.yml +++ b/.github/workflows/run-mypy-on-modified-cdk-files.yml @@ -1,4 +1,4 @@ -name: Connector Extensibility - Run mypy on modified cdk files +name: Python CDK - Run mypy on modified cdk files on: pull_request: diff --git a/airbyte-ci/connectors/live-tests/src/live_tests/commons/secret_access.py b/airbyte-ci/connectors/live-tests/src/live_tests/commons/secret_access.py index 260953e1971c..05e6591d4995 100644 --- a/airbyte-ci/connectors/live-tests/src/live_tests/commons/secret_access.py +++ b/airbyte-ci/connectors/live-tests/src/live_tests/commons/secret_access.py @@ -28,7 +28,7 @@ def get_secret_value(secret_manager_client: secretmanager.SecretManagerServiceCl return response.payload.data.decode("UTF-8") except PermissionDenied as e: logging.exception( - f"Permission denied while trying to access secret {secret_id}. Please write to #dev-extensibility in Airbyte Slack for help.", + f"Permission denied while trying to access secret {secret_id}. Please write to #dev-tooling in Airbyte Slack for help.", exc_info=e, ) raise e diff --git a/airbyte-ci/connectors/pipelines/pipelines/airbyte_ci/connectors/publish/context.py b/airbyte-ci/connectors/pipelines/pipelines/airbyte_ci/connectors/publish/context.py index b4fda32ca9cc..d56cee32b70a 100644 --- a/airbyte-ci/connectors/pipelines/pipelines/airbyte_ci/connectors/publish/context.py +++ b/airbyte-ci/connectors/pipelines/pipelines/airbyte_ci/connectors/publish/context.py @@ -133,5 +133,5 @@ def create_slack_message(self) -> str: assert self.report is not None, "Report should be set when state is successful" message += f"⏲️ Run duration: {format_duration(self.report.run_duration)}\n" if self.state is ContextState.FAILURE: - message += "\ncc. " + message += "\ncc. " return message From e456bca099a43bb79b2498ecb76a4d73d0f00199 Mon Sep 17 00:00:00 2001 From: Brian Lai <51336873+brianjlai@users.noreply.github.com> Date: Fri, 12 Jul 2024 19:00:25 -0400 Subject: [PATCH 004/260] =?UTF-8?q?=F0=9F=90=9B=20[RFR=20for=20API=20Sourc?= =?UTF-8?q?es]=20Fix=20bug=20where=20checkpoint=20reader=20stops=20syncing?= =?UTF-8?q?=20too=20early=20if=20first=20partition=20is=20complete=20(#416?= =?UTF-8?q?58)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../streams/checkpoint/checkpoint_reader.py | 58 +++++++++---- .../checkpoint/test_checkpoint_reader.py | 84 ++++++++++++++----- 2 files changed, 108 insertions(+), 34 deletions(-) diff --git a/airbyte-cdk/python/airbyte_cdk/sources/streams/checkpoint/checkpoint_reader.py b/airbyte-cdk/python/airbyte_cdk/sources/streams/checkpoint/checkpoint_reader.py index cb46ce7b4669..882f1cb183a1 100644 --- a/airbyte-cdk/python/airbyte_cdk/sources/streams/checkpoint/checkpoint_reader.py +++ b/airbyte-cdk/python/airbyte_cdk/sources/streams/checkpoint/checkpoint_reader.py @@ -15,6 +15,9 @@ class CheckpointMode(Enum): FULL_REFRESH = "full_refresh" +FULL_REFRESH_COMPLETE_STATE: Mapping[str, Any] = {"__ab_full_refresh_sync_complete": True} + + class CheckpointReader(ABC): """ CheckpointReader manages how to iterate over a stream's partitions and serves as the bridge for interpreting the current state @@ -111,24 +114,43 @@ def next(self) -> Optional[Mapping[str, Any]]: """ try: - if self._current_slice is None: - self._current_slice = self._get_next_slice() - state_for_slice = self._cursor.select_state(self._current_slice) - if state_for_slice == {"__ab_full_refresh_sync_complete": True}: - return None - else: - return self._current_slice if self._read_state_from_cursor: - state_for_slice = self._cursor.select_state(self._current_slice) - if state_for_slice == {"__ab_full_refresh_sync_complete": True}: - self._current_slice = self._get_next_slice() + # We need to check that `current_slice is None` as opposed to `not current_slice` because the current_slice + # could be the empty StreamSlice() which derives to the falsy empty mapping {}. The slice still requires + # iterating over the cursor state in the else block until it hits the terminal value + if self.current_slice is None: + next_slice = self._get_next_slice() + state_for_slice = self._cursor.select_state(next_slice) + if state_for_slice == FULL_REFRESH_COMPLETE_STATE: + # This is a dummy initialization since we'll iterate at least once to get the next slice + next_candidate_slice = StreamSlice(cursor_slice={}, partition={}) + has_more = True + while has_more: + next_candidate_slice = self._get_next_slice() + state_for_slice = self._cursor.select_state(next_candidate_slice) + has_more = state_for_slice == FULL_REFRESH_COMPLETE_STATE + self.current_slice = StreamSlice(cursor_slice=state_for_slice or {}, partition=next_candidate_slice.partition) + else: + self.current_slice = StreamSlice(cursor_slice=state_for_slice or {}, partition=next_slice.partition) else: - self._current_slice = StreamSlice(cursor_slice=state_for_slice or {}, partition=self._current_slice.partition) + state_for_slice = self._cursor.select_state(self.current_slice) + if state_for_slice == FULL_REFRESH_COMPLETE_STATE: + # Skip every slice that already has the terminal complete value indicating that a previous attempt + # successfully synced the slice + next_candidate_slice = None + has_more = True + while has_more: + next_candidate_slice = self._get_next_slice() + state_for_slice = self._cursor.select_state(next_candidate_slice) + has_more = state_for_slice == FULL_REFRESH_COMPLETE_STATE + self.current_slice = StreamSlice(cursor_slice=state_for_slice or {}, partition=next_candidate_slice.partition) + else: + self.current_slice = StreamSlice(cursor_slice=state_for_slice or {}, partition=self.current_slice.partition) else: # Unlike RFR cursors that iterate dynamically based on how stream state is updated, most cursors operate on a # fixed set of slices determined before reading records. They should just iterate to the next slice - self._current_slice = self._get_next_slice() - return self._current_slice + self.current_slice = self._get_next_slice() + return self.current_slice except StopIteration: self._finished_sync = True return None @@ -155,6 +177,14 @@ def get_checkpoint(self) -> Optional[Mapping[str, Any]]: else: return None + @property + def current_slice(self) -> Optional[StreamSlice]: + return self._current_slice + + @current_slice.setter + def current_slice(self, value: StreamSlice) -> None: + self._current_slice = value + class ResumableFullRefreshCheckpointReader(CheckpointReader): """ @@ -173,7 +203,7 @@ def next(self) -> Optional[Mapping[str, Any]]: if self._first_page: self._first_page = False return self._state - elif self._state == {"__ab_full_refresh_sync_complete": True}: + elif self._state == FULL_REFRESH_COMPLETE_STATE: return None else: return self._state diff --git a/airbyte-cdk/python/unit_tests/sources/streams/checkpoint/test_checkpoint_reader.py b/airbyte-cdk/python/unit_tests/sources/streams/checkpoint/test_checkpoint_reader.py index 705a11167db6..4c5cf5a21896 100644 --- a/airbyte-cdk/python/unit_tests/sources/streams/checkpoint/test_checkpoint_reader.py +++ b/airbyte-cdk/python/unit_tests/sources/streams/checkpoint/test_checkpoint_reader.py @@ -105,6 +105,7 @@ def test_cursor_based_checkpoint_reader_incremental(): incremental_cursor = Mock() incremental_cursor.stream_slices.return_value = expected_slices + incremental_cursor.select_state.return_value = expected_stream_state incremental_cursor.get_stream_state.return_value = expected_stream_state checkpoint_reader = CursorBasedCheckpointReader( @@ -126,7 +127,6 @@ def test_cursor_based_checkpoint_reader_incremental(): def test_cursor_based_checkpoint_reader_resumable_full_refresh(): expected_slices = [ StreamSlice(cursor_slice={}, partition={}), - StreamSlice(cursor_slice={"next_page_token": 2}, partition={}), # The reader calls select_state() on first stream slice retrieved StreamSlice(cursor_slice={"next_page_token": 2}, partition={}), StreamSlice(cursor_slice={"next_page_token": 3}, partition={}), StreamSlice(cursor_slice={"next_page_token": 4}, partition={}), @@ -137,7 +137,7 @@ def test_cursor_based_checkpoint_reader_resumable_full_refresh(): rfr_cursor = Mock() rfr_cursor.stream_slices.return_value = [StreamSlice(cursor_slice={}, partition={})] - rfr_cursor.select_state.side_effect = expected_slices[1:] + rfr_cursor.select_state.side_effect = expected_slices rfr_cursor.get_stream_state.return_value = expected_stream_state checkpoint_reader = CursorBasedCheckpointReader( @@ -147,9 +147,9 @@ def test_cursor_based_checkpoint_reader_resumable_full_refresh(): assert checkpoint_reader.next() == expected_slices[0] actual_state = checkpoint_reader.get_checkpoint() assert actual_state == expected_stream_state + assert checkpoint_reader.next() == expected_slices[1] assert checkpoint_reader.next() == expected_slices[2] assert checkpoint_reader.next() == expected_slices[3] - assert checkpoint_reader.next() == expected_slices[4] finished = checkpoint_reader.next() assert finished is None @@ -159,29 +159,75 @@ def test_cursor_based_checkpoint_reader_resumable_full_refresh(): def test_cursor_based_checkpoint_reader_resumable_full_refresh_parents(): expected_slices = [ - StreamSlice(cursor_slice={"start_date": "2024-01-01", "end_date": "2024-02-01"}, partition={}), - StreamSlice(cursor_slice={"next_page_token": 2}, partition={}), - StreamSlice(cursor_slice={"next_page_token": 3}, partition={}), - StreamSlice(cursor_slice={"start_date": "2024-02-01", "end_date": "2024-03-01"}, partition={}), - StreamSlice(cursor_slice={"next_page_token": 2}, partition={}), - StreamSlice(cursor_slice={"next_page_token": 3}, partition={}), + StreamSlice(cursor_slice={"next_page_token": 2}, partition={"parent_id": "zaheer"}), + StreamSlice(cursor_slice={"next_page_token": 3}, partition={"parent_id": "zaheer"}), + StreamSlice(cursor_slice={"next_page_token": 2}, partition={"parent_id": "pli"}), + StreamSlice(cursor_slice={"next_page_token": 3}, partition={"parent_id": "pli"}), ] expected_stream_state = {"next_page_token": 2} rfr_cursor = Mock() rfr_cursor.stream_slices.return_value = [ - StreamSlice(cursor_slice={"start_date": "2024-01-01", "end_date": "2024-02-01"}, partition={}), - StreamSlice(cursor_slice={"start_date": "2024-02-01", "end_date": "2024-03-01"}, partition={}), + StreamSlice(cursor_slice={}, partition={"parent_id": "zaheer"}), + StreamSlice(cursor_slice={}, partition={"parent_id": "pli"}), ] rfr_cursor.select_state.side_effect = [ - StreamSlice(cursor_slice={"next_page_token": 2}, partition={}), # Accounts for the first invocation when getting the first element - StreamSlice(cursor_slice={"next_page_token": 2}, partition={}), - StreamSlice(cursor_slice={"next_page_token": 3}, partition={}), - StreamSlice(cursor_slice={"__ab_full_refresh_sync_complete": True}, partition={}), - StreamSlice(cursor_slice={"next_page_token": 2}, partition={}), - StreamSlice(cursor_slice={"next_page_token": 3}, partition={}), - StreamSlice(cursor_slice={"__ab_full_refresh_sync_complete": True}, partition={}), + {"next_page_token": 2}, + {"next_page_token": 3}, + {"__ab_full_refresh_sync_complete": True}, + {"next_page_token": 2}, + {"next_page_token": 3}, + {"__ab_full_refresh_sync_complete": True}, + ] + rfr_cursor.get_stream_state.return_value = expected_stream_state + + checkpoint_reader = CursorBasedCheckpointReader( + cursor=rfr_cursor, stream_slices=rfr_cursor.stream_slices(), read_state_from_cursor=True + ) + + assert checkpoint_reader.next() == expected_slices[0] + actual_state = checkpoint_reader.get_checkpoint() + assert actual_state == expected_stream_state + assert checkpoint_reader.next() == expected_slices[1] + assert checkpoint_reader.next() == expected_slices[2] + assert checkpoint_reader.next() == expected_slices[3] + finished = checkpoint_reader.next() + assert finished is None + + # A finished checkpoint_reader should return None for the final checkpoint to avoid emitting duplicate state + assert checkpoint_reader.get_checkpoint() is None + + +def test_cursor_based_checkpoint_reader_skip_completed_parent_slices(): + expected_slices = [ + StreamSlice(cursor_slice={"next_page_token": 2}, partition={"parent_id": "bolin"}), + StreamSlice(cursor_slice={"next_page_token": 3}, partition={"parent_id": "bolin"}), + StreamSlice(cursor_slice={"next_page_token": 7}, partition={"parent_id": "pabu"}), + StreamSlice(cursor_slice={"next_page_token": 8}, partition={"parent_id": "pabu"}), + ] + + expected_stream_state = {"next_page_token": 2} + + rfr_cursor = Mock() + rfr_cursor.stream_slices.return_value = [ + StreamSlice(cursor_slice={}, partition={"parent_id": "korra"}), + StreamSlice(cursor_slice={}, partition={"parent_id": "mako"}), + StreamSlice(cursor_slice={}, partition={"parent_id": "bolin"}), + StreamSlice(cursor_slice={}, partition={"parent_id": "asami"}), + StreamSlice(cursor_slice={}, partition={"parent_id": "naga"}), + StreamSlice(cursor_slice={}, partition={"parent_id": "pabu"}), + ] + rfr_cursor.select_state.side_effect = [ + {"__ab_full_refresh_sync_complete": True}, + {"__ab_full_refresh_sync_complete": True}, + {"next_page_token": 2}, + {"next_page_token": 3}, + {"__ab_full_refresh_sync_complete": True}, + {"__ab_full_refresh_sync_complete": True}, + {"__ab_full_refresh_sync_complete": True}, + {"next_page_token": 7}, + {"next_page_token": 8}, ] rfr_cursor.get_stream_state.return_value = expected_stream_state @@ -195,8 +241,6 @@ def test_cursor_based_checkpoint_reader_resumable_full_refresh_parents(): assert checkpoint_reader.next() == expected_slices[1] assert checkpoint_reader.next() == expected_slices[2] assert checkpoint_reader.next() == expected_slices[3] - assert checkpoint_reader.next() == expected_slices[4] - assert checkpoint_reader.next() == expected_slices[5] finished = checkpoint_reader.next() assert finished is None From d30560ec6a4ed4251cf365fdc6cf26895b3c3099 Mon Sep 17 00:00:00 2001 From: brianjlai Date: Fri, 12 Jul 2024 23:11:31 +0000 Subject: [PATCH 005/260] =?UTF-8?q?=F0=9F=A4=96=20patch=20bump=20Python=20?= =?UTF-8?q?CDK=20to=20version=203.4.1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-cdk/python/CHANGELOG.md | 3 +++ airbyte-cdk/python/pyproject.toml | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/airbyte-cdk/python/CHANGELOG.md b/airbyte-cdk/python/CHANGELOG.md index c99724ae7965..35a70221bf5f 100644 --- a/airbyte-cdk/python/CHANGELOG.md +++ b/airbyte-cdk/python/CHANGELOG.md @@ -1,5 +1,8 @@ # Changelog +## 3.4.1 +resumable full refresh: Fix bug where checkpoint reader stops syncing too early if first partition is complete + ## 3.4.0 file-based cdk: add config option to limit number of files for schema discover diff --git a/airbyte-cdk/python/pyproject.toml b/airbyte-cdk/python/pyproject.toml index b88290899f7a..b38487b8dddd 100644 --- a/airbyte-cdk/python/pyproject.toml +++ b/airbyte-cdk/python/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name = "airbyte-cdk" -version = "3.4.0" +version = "3.4.1" description = "A framework for writing Airbyte Connectors." authors = ["Airbyte "] license = "MIT" From a518ee835c26569ec118e166ad29d8f700f89dd2 Mon Sep 17 00:00:00 2001 From: brianjlai Date: Fri, 12 Jul 2024 23:17:30 +0000 Subject: [PATCH 006/260] =?UTF-8?q?=F0=9F=A4=96=20Cut=20version=203.4.1=20?= =?UTF-8?q?of=20source-declarative-manifest?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-declarative-manifest/metadata.yaml | 2 +- .../connectors/source-declarative-manifest/poetry.lock | 8 ++++---- .../connectors/source-declarative-manifest/pyproject.toml | 4 ++-- docs/integrations/sources/low-code.md | 1 + 4 files changed, 8 insertions(+), 7 deletions(-) diff --git a/airbyte-integrations/connectors/source-declarative-manifest/metadata.yaml b/airbyte-integrations/connectors/source-declarative-manifest/metadata.yaml index fe59cb6cfb81..93fc80792af2 100644 --- a/airbyte-integrations/connectors/source-declarative-manifest/metadata.yaml +++ b/airbyte-integrations/connectors/source-declarative-manifest/metadata.yaml @@ -8,7 +8,7 @@ data: connectorType: source definitionId: 64a2f99c-542f-4af8-9a6f-355f1217b436 # This version should not be updated manually - it is updated by the CDK release workflow. - dockerImageTag: 3.5.0 + dockerImageTag: 3.5.1 dockerRepository: airbyte/source-declarative-manifest # This page is hidden from the docs for now, since the connector is not in any Airbyte registries. documentationUrl: https://docs.airbyte.com/integrations/sources/low-code diff --git a/airbyte-integrations/connectors/source-declarative-manifest/poetry.lock b/airbyte-integrations/connectors/source-declarative-manifest/poetry.lock index 8c172225ab1f..1010f3fe139b 100644 --- a/airbyte-integrations/connectors/source-declarative-manifest/poetry.lock +++ b/airbyte-integrations/connectors/source-declarative-manifest/poetry.lock @@ -2,13 +2,13 @@ [[package]] name = "airbyte-cdk" -version = "3.4.0" +version = "3.4.1" description = "A framework for writing Airbyte Connectors." optional = false python-versions = "<4.0,>=3.9" files = [ - {file = "airbyte_cdk-3.4.0-py3-none-any.whl", hash = "sha256:beec55db1f8cf913ef1a2507d86f384598adc4d2d9e8514dd54428761d757fb9"}, - {file = "airbyte_cdk-3.4.0.tar.gz", hash = "sha256:dad553d86aa9adb37e33098a6257035e2b82297e41bbcb914c6c1354d4f0d3e3"}, + {file = "airbyte_cdk-3.4.1-py3-none-any.whl", hash = "sha256:423b238da33480f1a464ee92277be55b3661612cd9bfeacc82313bc97792e775"}, + {file = "airbyte_cdk-3.4.1.tar.gz", hash = "sha256:cf66f4bdc85fa6a66a822ce074130f0d82eb3e8e8c85508b14b9fc1784b9416e"}, ] [package.dependencies] @@ -1395,4 +1395,4 @@ files = [ [metadata] lock-version = "2.0" python-versions = "^3.9,<3.12" -content-hash = "398c6f0e01c52df277cc27a81e9185e53a0305ed2cf7846fc5095f6aea48b1f3" +content-hash = "5368b3e3c36bb7d1c9a769cc4f0faea957c6b58c123d8f15aae6244dc96c8441" diff --git a/airbyte-integrations/connectors/source-declarative-manifest/pyproject.toml b/airbyte-integrations/connectors/source-declarative-manifest/pyproject.toml index 521381b7af19..cebd9f8f682b 100644 --- a/airbyte-integrations/connectors/source-declarative-manifest/pyproject.toml +++ b/airbyte-integrations/connectors/source-declarative-manifest/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "3.5.0" +version = "3.5.1" name = "source-declarative-manifest" description = "Base source implementation for low-code sources." authors = [ "Airbyte ",] @@ -17,7 +17,7 @@ include = "source_declarative_manifest" [tool.poetry.dependencies] python = "^3.9,<3.12" -airbyte-cdk = "3.4.0" +airbyte-cdk = "3.4.1" [tool.poetry.scripts] source-declarative-manifest = "source_declarative_manifest.run:run" diff --git a/docs/integrations/sources/low-code.md b/docs/integrations/sources/low-code.md index dac6baf85b0b..efe1429d5d39 100644 --- a/docs/integrations/sources/low-code.md +++ b/docs/integrations/sources/low-code.md @@ -9,6 +9,7 @@ The changelog below is automatically updated by the `bump_version` command as pa | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :------------------------------------------------------------------- | +| 3.5.1 | 2024-07-12 | [36501](https://github.com/airbytehq/airbyte/pull/36501) | Bump CDK version to 3.4.1 | | 3.5.0 | 2024-07-11 | [36501](https://github.com/airbytehq/airbyte/pull/36501) | Bump CDK version to 3.4.0 | | 3.4.0 | 2024-07-10 | [36501](https://github.com/airbytehq/airbyte/pull/36501) | Bump CDK version to 3.3.0 | | 3.3.1 | 2024-07-10 | [36501](https://github.com/airbytehq/airbyte/pull/36501) | Bump CDK version to 3.2.1 | From a730d20c9f034b20d723fbae9805a38fe1f14ef7 Mon Sep 17 00:00:00 2001 From: Edward Gao Date: Fri, 12 Jul 2024 16:41:31 -0700 Subject: [PATCH 007/260] Documentation: call out that custom connectors MUST set AIRBYTE_ENTRYPOINT (#41679) --- docs/integrations/custom-connectors.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/docs/integrations/custom-connectors.md b/docs/integrations/custom-connectors.md index d4311984dbc1..48eee25d1952 100644 --- a/docs/integrations/custom-connectors.md +++ b/docs/integrations/custom-connectors.md @@ -20,6 +20,11 @@ It's easy to code your own connectors on Airbyte. Here is a link to instruct on While the guides in the link above are specific to the languages used most frequently to write integrations, **Airbyte connectors can be written in any language**. Please reach out to us if you'd like help developing connectors in other languages. +:::caution +If you don't use one of the official development options, remember to set the `AIRBYTE_ENTRYPOINT` environment variable to your Docker image's entrypoint! +Otherwise, your connector will not run correctly. +::: + ## Adding your connectors in the UI There are only 3 easy steps to do that: From a7b9c35a7fb4330b11bf65f75db14c7bb1f7ca1f Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:17:23 +0200 Subject: [PATCH 008/260] =?UTF-8?q?=F0=9F=90=99=20destination-weaviate:=20?= =?UTF-8?q?run=20up-to-date=20pipeline=20[2024-07-13]=20(#41935)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/destination-weaviate/metadata.yaml | 2 +- .../connectors/destination-weaviate/poetry.lock | 12 ++++++------ .../connectors/destination-weaviate/pyproject.toml | 2 +- docs/integrations/destinations/weaviate.md | 1 + 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/airbyte-integrations/connectors/destination-weaviate/metadata.yaml b/airbyte-integrations/connectors/destination-weaviate/metadata.yaml index bf6b8d46cdf3..5cda352cbb68 100644 --- a/airbyte-integrations/connectors/destination-weaviate/metadata.yaml +++ b/airbyte-integrations/connectors/destination-weaviate/metadata.yaml @@ -13,7 +13,7 @@ data: connectorSubtype: vectorstore connectorType: destination definitionId: 7b7d7a0d-954c-45a0-bcfc-39a634b97736 - dockerImageTag: 0.2.25 + dockerImageTag: 0.2.26 dockerRepository: airbyte/destination-weaviate documentationUrl: https://docs.airbyte.com/integrations/destinations/weaviate githubIssueLabel: destination-weaviate diff --git a/airbyte-integrations/connectors/destination-weaviate/poetry.lock b/airbyte-integrations/connectors/destination-weaviate/poetry.lock index 2076f88d78d5..9eeb304c0cc3 100644 --- a/airbyte-integrations/connectors/destination-weaviate/poetry.lock +++ b/airbyte-integrations/connectors/destination-weaviate/poetry.lock @@ -681,13 +681,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] @@ -1344,13 +1344,13 @@ extended-testing = ["beautifulsoup4 (>=4.12.3,<5.0.0)", "lxml (>=4.9.3,<6.0)"] [[package]] name = "langsmith" -version = "0.1.84" +version = "0.1.85" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.84-py3-none-any.whl", hash = "sha256:01f3c6390dba26c583bac8dd0e551ce3d0509c7f55cad714db0b5c8d36e4c7ff"}, - {file = "langsmith-0.1.84.tar.gz", hash = "sha256:5220c0439838b9a5bd320fd3686be505c5083dcee22d2452006c23891153bea1"}, + {file = "langsmith-0.1.85-py3-none-any.whl", hash = "sha256:c1f94384f10cea96f7b4d33fd3db7ec180c03c7468877d50846f881d2017ff94"}, + {file = "langsmith-0.1.85.tar.gz", hash = "sha256:acff31f9e53efa48586cf8e32f65625a335c74d7c4fa306d1655ac18452296f6"}, ] [package.dependencies] diff --git a/airbyte-integrations/connectors/destination-weaviate/pyproject.toml b/airbyte-integrations/connectors/destination-weaviate/pyproject.toml index d85971048b7f..41ddc29b6cbf 100644 --- a/airbyte-integrations/connectors/destination-weaviate/pyproject.toml +++ b/airbyte-integrations/connectors/destination-weaviate/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name = "airbyte-destination-weaviate" -version = "0.2.25" +version = "0.2.26" description = "Airbyte destination implementation for Weaviate." authors = ["Airbyte "] license = "MIT" diff --git a/docs/integrations/destinations/weaviate.md b/docs/integrations/destinations/weaviate.md index 69715ea14f1c..10792d68620b 100644 --- a/docs/integrations/destinations/weaviate.md +++ b/docs/integrations/destinations/weaviate.md @@ -90,6 +90,7 @@ When using [multi-tenancy](https://weaviate.io/developers/weaviate/manage-data/m | Version | Date | Pull Request | Subject | | :------ | :--------- | :--------------------------------------------------------- | :------------------------------------------------------------------------------------------------------------------------------------------- | +| 0.2.26 | 2024-07-13 | [41935](https://github.com/airbytehq/airbyte/pull/41935) | Update dependencies | | 0.2.25 | 2024-07-10 | [41504](https://github.com/airbytehq/airbyte/pull/41504) | Update dependencies | | 0.2.24 | 2024-07-09 | [41222](https://github.com/airbytehq/airbyte/pull/41222) | Update dependencies | | 0.2.23 | 2024-07-06 | [40943](https://github.com/airbytehq/airbyte/pull/40943) | Update dependencies | From cead20eed5e64d981a70ce14e40dd0a8c9875aad Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:17:26 +0200 Subject: [PATCH 009/260] =?UTF-8?q?=F0=9F=90=99=20source-s3:=20run=20up-to?= =?UTF-8?q?-date=20pipeline=20[2024-07-13]=20(#41934)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-s3/metadata.yaml | 2 +- .../connectors/source-s3/poetry.lock | 26 +++++++++---------- .../connectors/source-s3/pyproject.toml | 2 +- docs/integrations/sources/s3.md | 1 + 4 files changed, 16 insertions(+), 15 deletions(-) diff --git a/airbyte-integrations/connectors/source-s3/metadata.yaml b/airbyte-integrations/connectors/source-s3/metadata.yaml index effd6c55f328..2fb186bed4e6 100644 --- a/airbyte-integrations/connectors/source-s3/metadata.yaml +++ b/airbyte-integrations/connectors/source-s3/metadata.yaml @@ -10,7 +10,7 @@ data: connectorSubtype: file connectorType: source definitionId: 69589781-7828-43c5-9f63-8925b1c1ccc2 - dockerImageTag: 4.6.2 + dockerImageTag: 4.6.3 dockerRepository: airbyte/source-s3 documentationUrl: https://docs.airbyte.com/integrations/sources/s3 githubIssueLabel: source-s3 diff --git a/airbyte-integrations/connectors/source-s3/poetry.lock b/airbyte-integrations/connectors/source-s3/poetry.lock index 8342346f3a1e..8b5bd747cb54 100644 --- a/airbyte-integrations/connectors/source-s3/poetry.lock +++ b/airbyte-integrations/connectors/source-s3/poetry.lock @@ -151,17 +151,17 @@ lxml = ["lxml"] [[package]] name = "boto3" -version = "1.34.142" +version = "1.34.144" description = "The AWS SDK for Python" optional = false python-versions = ">=3.8" files = [ - {file = "boto3-1.34.142-py3-none-any.whl", hash = "sha256:cae11cb54f79795e44248a9e53ec5c7328519019df1ba54bc01413f51c548626"}, - {file = "boto3-1.34.142.tar.gz", hash = "sha256:72daee953cfa0631c584c9e3aef594079e1fe6a2f64c81ff791dab9a7b25c013"}, + {file = "boto3-1.34.144-py3-none-any.whl", hash = "sha256:b8433d481d50b68a0162c0379c0dd4aabfc3d1ad901800beb5b87815997511c1"}, + {file = "boto3-1.34.144.tar.gz", hash = "sha256:2f3e88b10b8fcc5f6100a9d74cd28230edc9d4fa226d99dd40a3ab38ac213673"}, ] [package.dependencies] -botocore = ">=1.34.142,<1.35.0" +botocore = ">=1.34.144,<1.35.0" jmespath = ">=0.7.1,<2.0.0" s3transfer = ">=0.10.0,<0.11.0" @@ -170,13 +170,13 @@ crt = ["botocore[crt] (>=1.21.0,<2.0a0)"] [[package]] name = "botocore" -version = "1.34.142" +version = "1.34.144" description = "Low-level, data-driven core of boto 3." optional = false python-versions = ">=3.8" files = [ - {file = "botocore-1.34.142-py3-none-any.whl", hash = "sha256:9d8095bab0b93b9064e856730a7ffbbb4f897353d3170bec9ddccc5f4a3753bc"}, - {file = "botocore-1.34.142.tar.gz", hash = "sha256:2eeb8e6be729c1f8ded723970ed6c6ac29cc3014d86a99e73428fa8bdca81f63"}, + {file = "botocore-1.34.144-py3-none-any.whl", hash = "sha256:a2cf26e1bf10d5917a2285e50257bc44e94a1d16574f282f3274f7a5d8d1f08b"}, + {file = "botocore-1.34.144.tar.gz", hash = "sha256:4215db28d25309d59c99507f1f77df9089e5bebbad35f6e19c7c44ec5383a3e8"}, ] [package.dependencies] @@ -599,13 +599,13 @@ dev = ["coverage", "pytest (>=7.4.4)"] [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] @@ -956,13 +956,13 @@ six = "*" [[package]] name = "langsmith" -version = "0.1.84" +version = "0.1.85" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.84-py3-none-any.whl", hash = "sha256:01f3c6390dba26c583bac8dd0e551ce3d0509c7f55cad714db0b5c8d36e4c7ff"}, - {file = "langsmith-0.1.84.tar.gz", hash = "sha256:5220c0439838b9a5bd320fd3686be505c5083dcee22d2452006c23891153bea1"}, + {file = "langsmith-0.1.85-py3-none-any.whl", hash = "sha256:c1f94384f10cea96f7b4d33fd3db7ec180c03c7468877d50846f881d2017ff94"}, + {file = "langsmith-0.1.85.tar.gz", hash = "sha256:acff31f9e53efa48586cf8e32f65625a335c74d7c4fa306d1655ac18452296f6"}, ] [package.dependencies] diff --git a/airbyte-integrations/connectors/source-s3/pyproject.toml b/airbyte-integrations/connectors/source-s3/pyproject.toml index e674fb70cdff..e465bb0009f8 100644 --- a/airbyte-integrations/connectors/source-s3/pyproject.toml +++ b/airbyte-integrations/connectors/source-s3/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "4.6.2" +version = "4.6.3" name = "source-s3" description = "Source implementation for S3." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/s3.md b/docs/integrations/sources/s3.md index a2819f2aea32..84ac8b658f5d 100644 --- a/docs/integrations/sources/s3.md +++ b/docs/integrations/sources/s3.md @@ -325,6 +325,7 @@ This connector utilizes the open source [Unstructured](https://unstructured-io.g | Version | Date | Pull Request | Subject | | :------ |:-----------| :-------------------------------------------------------------------------------------------------------------- |:---------------------------------------------------------------------------------------------------------------------| +| 4.6.3 | 2024-07-13 | [41934](https://github.com/airbytehq/airbyte/pull/41934) | Update dependencies | | 4.6.2 | 2024-07-10 | [41503](https://github.com/airbytehq/airbyte/pull/41503) | Update dependencies | | 4.6.1 | 2024-07-09 | [40067](https://github.com/airbytehq/airbyte/pull/40067) | Update dependencies | | 4.6.0 | 2024-06-26 | [39573](https://github.com/airbytehq/airbyte/pull/39573) | Improve performance: update to Airbyte CDK 2.0.0 | From 0d4f28d21d449684fe287b0d08022b3163f8b942 Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:17:30 +0200 Subject: [PATCH 010/260] =?UTF-8?q?=F0=9F=90=99=20source-pexels-api:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-07-13]=20(#41932)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-pexels-api/metadata.yaml | 2 +- .../connectors/source-pexels-api/poetry.lock | 12 ++++++------ .../connectors/source-pexels-api/pyproject.toml | 2 +- docs/integrations/sources/pexels-api.md | 1 + 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/airbyte-integrations/connectors/source-pexels-api/metadata.yaml b/airbyte-integrations/connectors/source-pexels-api/metadata.yaml index 98b9ebf1d620..bfde75089688 100644 --- a/airbyte-integrations/connectors/source-pexels-api/metadata.yaml +++ b/airbyte-integrations/connectors/source-pexels-api/metadata.yaml @@ -2,7 +2,7 @@ data: connectorSubtype: api connectorType: source definitionId: 69d9eb65-8026-47dc-baf1-e4bf67901fd6 - dockerImageTag: 0.1.8 + dockerImageTag: 0.1.9 dockerRepository: airbyte/source-pexels-api githubIssueLabel: source-pexels-api icon: pexels.svg diff --git a/airbyte-integrations/connectors/source-pexels-api/poetry.lock b/airbyte-integrations/connectors/source-pexels-api/poetry.lock index 4b03cc351726..13836360394d 100644 --- a/airbyte-integrations/connectors/source-pexels-api/poetry.lock +++ b/airbyte-integrations/connectors/source-pexels-api/poetry.lock @@ -410,13 +410,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] @@ -566,13 +566,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.84" +version = "0.1.85" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.84-py3-none-any.whl", hash = "sha256:01f3c6390dba26c583bac8dd0e551ce3d0509c7f55cad714db0b5c8d36e4c7ff"}, - {file = "langsmith-0.1.84.tar.gz", hash = "sha256:5220c0439838b9a5bd320fd3686be505c5083dcee22d2452006c23891153bea1"}, + {file = "langsmith-0.1.85-py3-none-any.whl", hash = "sha256:c1f94384f10cea96f7b4d33fd3db7ec180c03c7468877d50846f881d2017ff94"}, + {file = "langsmith-0.1.85.tar.gz", hash = "sha256:acff31f9e53efa48586cf8e32f65625a335c74d7c4fa306d1655ac18452296f6"}, ] [package.dependencies] diff --git a/airbyte-integrations/connectors/source-pexels-api/pyproject.toml b/airbyte-integrations/connectors/source-pexels-api/pyproject.toml index 213d1dc69913..7dd1f9c0311c 100644 --- a/airbyte-integrations/connectors/source-pexels-api/pyproject.toml +++ b/airbyte-integrations/connectors/source-pexels-api/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.1.8" +version = "0.1.9" name = "source-pexels-api" description = "Source implementation for Pexels Api." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/pexels-api.md b/docs/integrations/sources/pexels-api.md index c5c2b8489af6..db8c4f4ab462 100644 --- a/docs/integrations/sources/pexels-api.md +++ b/docs/integrations/sources/pexels-api.md @@ -76,6 +76,7 @@ Pexels-API's [API reference]https://www.pexels.com/api/documentation) has v1 at | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------ | :------------- | +| 0.1.9 | 2024-07-13 | [41932](https://github.com/airbytehq/airbyte/pull/41932) | Update dependencies | | 0.1.8 | 2024-07-10 | [41349](https://github.com/airbytehq/airbyte/pull/41349) | Update dependencies | | 0.1.7 | 2024-07-09 | [41077](https://github.com/airbytehq/airbyte/pull/41077) | Update dependencies | | 0.1.6 | 2024-07-06 | [40946](https://github.com/airbytehq/airbyte/pull/40946) | Update dependencies | From 83c7134fa7c30a5374175a8ad945518debfbc13a Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:17:32 +0200 Subject: [PATCH 011/260] =?UTF-8?q?=F0=9F=90=99=20source-shortio:=20run=20?= =?UTF-8?q?up-to-date=20pipeline=20[2024-07-13]=20(#41931)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-shortio/metadata.yaml | 2 +- .../connectors/source-shortio/poetry.lock | 12 ++++++------ .../connectors/source-shortio/pyproject.toml | 2 +- docs/integrations/sources/shortio.md | 1 + 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/airbyte-integrations/connectors/source-shortio/metadata.yaml b/airbyte-integrations/connectors/source-shortio/metadata.yaml index 178c679f3430..3432d61ba7ac 100644 --- a/airbyte-integrations/connectors/source-shortio/metadata.yaml +++ b/airbyte-integrations/connectors/source-shortio/metadata.yaml @@ -17,7 +17,7 @@ data: connectorSubtype: api connectorType: source definitionId: 2fed2292-5586-480c-af92-9944e39fe12d - dockerImageTag: 0.2.7 + dockerImageTag: 0.2.8 dockerRepository: airbyte/source-shortio githubIssueLabel: source-shortio icon: shortio.svg diff --git a/airbyte-integrations/connectors/source-shortio/poetry.lock b/airbyte-integrations/connectors/source-shortio/poetry.lock index 351dd514d053..225b4ef0e245 100644 --- a/airbyte-integrations/connectors/source-shortio/poetry.lock +++ b/airbyte-integrations/connectors/source-shortio/poetry.lock @@ -410,13 +410,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] @@ -566,13 +566,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.84" +version = "0.1.85" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.84-py3-none-any.whl", hash = "sha256:01f3c6390dba26c583bac8dd0e551ce3d0509c7f55cad714db0b5c8d36e4c7ff"}, - {file = "langsmith-0.1.84.tar.gz", hash = "sha256:5220c0439838b9a5bd320fd3686be505c5083dcee22d2452006c23891153bea1"}, + {file = "langsmith-0.1.85-py3-none-any.whl", hash = "sha256:c1f94384f10cea96f7b4d33fd3db7ec180c03c7468877d50846f881d2017ff94"}, + {file = "langsmith-0.1.85.tar.gz", hash = "sha256:acff31f9e53efa48586cf8e32f65625a335c74d7c4fa306d1655ac18452296f6"}, ] [package.dependencies] diff --git a/airbyte-integrations/connectors/source-shortio/pyproject.toml b/airbyte-integrations/connectors/source-shortio/pyproject.toml index 0cc04e19666e..408590719ace 100644 --- a/airbyte-integrations/connectors/source-shortio/pyproject.toml +++ b/airbyte-integrations/connectors/source-shortio/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.2.7" +version = "0.2.8" name = "source-shortio" description = "Source implementation for Shortio." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/shortio.md b/docs/integrations/sources/shortio.md index deae4a8f991a..b8fa776e37ad 100644 --- a/docs/integrations/sources/shortio.md +++ b/docs/integrations/sources/shortio.md @@ -44,6 +44,7 @@ This Source is capable of syncing the following Streams: | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :------------------------------------------------ | +| 0.2.8 | 2024-07-13 | [41931](https://github.com/airbytehq/airbyte/pull/41931) | Update dependencies | | 0.2.7 | 2024-07-10 | [41489](https://github.com/airbytehq/airbyte/pull/41489) | Update dependencies | | 0.2.6 | 2024-07-09 | [40877](https://github.com/airbytehq/airbyte/pull/40877) | Update dependencies | | 0.2.5 | 2024-06-25 | [40309](https://github.com/airbytehq/airbyte/pull/40309) | Update dependencies | From 58a6e451aba5036be8c85e2ab353233ea7752473 Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:17:35 +0200 Subject: [PATCH 012/260] =?UTF-8?q?=F0=9F=90=99=20source-recruitee:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-07-13]=20(#41930)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-recruitee/metadata.yaml | 2 +- .../connectors/source-recruitee/poetry.lock | 12 ++++++------ .../connectors/source-recruitee/pyproject.toml | 2 +- docs/integrations/sources/recruitee.md | 1 + 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/airbyte-integrations/connectors/source-recruitee/metadata.yaml b/airbyte-integrations/connectors/source-recruitee/metadata.yaml index 702cf4df2c12..80222a8f498e 100644 --- a/airbyte-integrations/connectors/source-recruitee/metadata.yaml +++ b/airbyte-integrations/connectors/source-recruitee/metadata.yaml @@ -2,7 +2,7 @@ data: connectorSubtype: api connectorType: source definitionId: 3b046ac7-d8d3-4eb3-b122-f96b2a16d8a8 - dockerImageTag: 0.1.8 + dockerImageTag: 0.1.9 dockerRepository: airbyte/source-recruitee githubIssueLabel: source-recruitee icon: recruitee.svg diff --git a/airbyte-integrations/connectors/source-recruitee/poetry.lock b/airbyte-integrations/connectors/source-recruitee/poetry.lock index 4b03cc351726..13836360394d 100644 --- a/airbyte-integrations/connectors/source-recruitee/poetry.lock +++ b/airbyte-integrations/connectors/source-recruitee/poetry.lock @@ -410,13 +410,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] @@ -566,13 +566,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.84" +version = "0.1.85" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.84-py3-none-any.whl", hash = "sha256:01f3c6390dba26c583bac8dd0e551ce3d0509c7f55cad714db0b5c8d36e4c7ff"}, - {file = "langsmith-0.1.84.tar.gz", hash = "sha256:5220c0439838b9a5bd320fd3686be505c5083dcee22d2452006c23891153bea1"}, + {file = "langsmith-0.1.85-py3-none-any.whl", hash = "sha256:c1f94384f10cea96f7b4d33fd3db7ec180c03c7468877d50846f881d2017ff94"}, + {file = "langsmith-0.1.85.tar.gz", hash = "sha256:acff31f9e53efa48586cf8e32f65625a335c74d7c4fa306d1655ac18452296f6"}, ] [package.dependencies] diff --git a/airbyte-integrations/connectors/source-recruitee/pyproject.toml b/airbyte-integrations/connectors/source-recruitee/pyproject.toml index f9519f851e2c..2997a0bc59ab 100644 --- a/airbyte-integrations/connectors/source-recruitee/pyproject.toml +++ b/airbyte-integrations/connectors/source-recruitee/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.1.8" +version = "0.1.9" name = "source-recruitee" description = "Source implementation for Recruitee." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/recruitee.md b/docs/integrations/sources/recruitee.md index 3b3f40a25a6f..cdc8ff26e9ff 100644 --- a/docs/integrations/sources/recruitee.md +++ b/docs/integrations/sources/recruitee.md @@ -53,6 +53,7 @@ The Recruitee source connector supports the following [sync modes](https://docs. | Version | Date | Pull Request | Subject | |:--------|:-----------| :------------------------------------------------------- | :-------------------- | +| 0.1.9 | 2024-07-13 | [41930](https://github.com/airbytehq/airbyte/pull/41930) | Update dependencies | | 0.1.8 | 2024-07-10 | [41388](https://github.com/airbytehq/airbyte/pull/41388) | Update dependencies | | 0.1.7 | 2024-07-09 | [41265](https://github.com/airbytehq/airbyte/pull/41265) | Update dependencies | | 0.1.6 | 2024-07-06 | [40792](https://github.com/airbytehq/airbyte/pull/40792) | Update dependencies | From e7c76319e183ccbd5ca1553b938665d095cb85b4 Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:17:38 +0200 Subject: [PATCH 013/260] =?UTF-8?q?=F0=9F=90=99=20source-azure-table:=20ru?= =?UTF-8?q?n=20up-to-date=20pipeline=20[2024-07-13]=20(#41929)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-azure-table/metadata.yaml | 2 +- .../connectors/source-azure-table/poetry.lock | 6 +++--- .../connectors/source-azure-table/pyproject.toml | 2 +- docs/integrations/sources/azure-table.md | 1 + 4 files changed, 6 insertions(+), 5 deletions(-) diff --git a/airbyte-integrations/connectors/source-azure-table/metadata.yaml b/airbyte-integrations/connectors/source-azure-table/metadata.yaml index 3688eedb8c68..06cd67e8eb49 100644 --- a/airbyte-integrations/connectors/source-azure-table/metadata.yaml +++ b/airbyte-integrations/connectors/source-azure-table/metadata.yaml @@ -2,7 +2,7 @@ data: connectorSubtype: database connectorType: source definitionId: 798ae795-5189-42b6-b64e-3cb91db93338 - dockerImageTag: 0.1.13 + dockerImageTag: 0.1.14 dockerRepository: airbyte/source-azure-table githubIssueLabel: source-azure-table icon: azureblobstorage.svg diff --git a/airbyte-integrations/connectors/source-azure-table/poetry.lock b/airbyte-integrations/connectors/source-azure-table/poetry.lock index 618018a6886d..0e990ad636f8 100644 --- a/airbyte-integrations/connectors/source-azure-table/poetry.lock +++ b/airbyte-integrations/connectors/source-azure-table/poetry.lock @@ -324,13 +324,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] diff --git a/airbyte-integrations/connectors/source-azure-table/pyproject.toml b/airbyte-integrations/connectors/source-azure-table/pyproject.toml index e16c2201742c..c5eca1e01074 100644 --- a/airbyte-integrations/connectors/source-azure-table/pyproject.toml +++ b/airbyte-integrations/connectors/source-azure-table/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.1.13" +version = "0.1.14" name = "source-azure-table" description = "Source implementation for Azure Table." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/azure-table.md b/docs/integrations/sources/azure-table.md index 7be0494375c9..3bfb00171edd 100644 --- a/docs/integrations/sources/azure-table.md +++ b/docs/integrations/sources/azure-table.md @@ -70,6 +70,7 @@ We recommend creating a restricted key specifically for Airbyte access. This wil | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :------------------------------------------------ | +| 0.1.14 | 2024-07-13 | [41929](https://github.com/airbytehq/airbyte/pull/41929) | Update dependencies | | 0.1.13 | 2024-07-10 | [41492](https://github.com/airbytehq/airbyte/pull/41492) | Update dependencies | | 0.1.12 | 2024-07-09 | [41105](https://github.com/airbytehq/airbyte/pull/41105) | Update dependencies | | 0.1.11 | 2024-07-06 | [40937](https://github.com/airbytehq/airbyte/pull/40937) | Update dependencies | From 07c5e5f3ec573078b050fba979f41f190031c0ee Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:17:40 +0200 Subject: [PATCH 014/260] =?UTF-8?q?=F0=9F=90=99=20source-gainsight-px:=20r?= =?UTF-8?q?un=20up-to-date=20pipeline=20[2024-07-13]=20(#41928)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-gainsight-px/metadata.yaml | 2 +- .../connectors/source-gainsight-px/poetry.lock | 12 ++++++------ .../connectors/source-gainsight-px/pyproject.toml | 2 +- docs/integrations/sources/gainsight-px.md | 1 + 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/airbyte-integrations/connectors/source-gainsight-px/metadata.yaml b/airbyte-integrations/connectors/source-gainsight-px/metadata.yaml index be72816507e2..d19f86dbbc91 100644 --- a/airbyte-integrations/connectors/source-gainsight-px/metadata.yaml +++ b/airbyte-integrations/connectors/source-gainsight-px/metadata.yaml @@ -16,7 +16,7 @@ data: connectorSubtype: api connectorType: source definitionId: 0da3b186-8879-4e94-8738-55b48762f1e8 - dockerImageTag: 0.1.8 + dockerImageTag: 0.1.9 dockerRepository: airbyte/source-gainsight-px githubIssueLabel: source-gainsight-px icon: gainsight-px.svg diff --git a/airbyte-integrations/connectors/source-gainsight-px/poetry.lock b/airbyte-integrations/connectors/source-gainsight-px/poetry.lock index 351dd514d053..225b4ef0e245 100644 --- a/airbyte-integrations/connectors/source-gainsight-px/poetry.lock +++ b/airbyte-integrations/connectors/source-gainsight-px/poetry.lock @@ -410,13 +410,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] @@ -566,13 +566,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.84" +version = "0.1.85" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.84-py3-none-any.whl", hash = "sha256:01f3c6390dba26c583bac8dd0e551ce3d0509c7f55cad714db0b5c8d36e4c7ff"}, - {file = "langsmith-0.1.84.tar.gz", hash = "sha256:5220c0439838b9a5bd320fd3686be505c5083dcee22d2452006c23891153bea1"}, + {file = "langsmith-0.1.85-py3-none-any.whl", hash = "sha256:c1f94384f10cea96f7b4d33fd3db7ec180c03c7468877d50846f881d2017ff94"}, + {file = "langsmith-0.1.85.tar.gz", hash = "sha256:acff31f9e53efa48586cf8e32f65625a335c74d7c4fa306d1655ac18452296f6"}, ] [package.dependencies] diff --git a/airbyte-integrations/connectors/source-gainsight-px/pyproject.toml b/airbyte-integrations/connectors/source-gainsight-px/pyproject.toml index ac31946ddd78..5c7c258123ba 100644 --- a/airbyte-integrations/connectors/source-gainsight-px/pyproject.toml +++ b/airbyte-integrations/connectors/source-gainsight-px/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.1.8" +version = "0.1.9" name = "source-gainsight-px" description = "Source implementation for Gainsight Px." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/gainsight-px.md b/docs/integrations/sources/gainsight-px.md index d7c9cb98b36c..db171d50a3db 100644 --- a/docs/integrations/sources/gainsight-px.md +++ b/docs/integrations/sources/gainsight-px.md @@ -74,6 +74,7 @@ Gainsight-PX-API's [API reference](https://gainsightpx.docs.apiary.io/) has v1 a | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- |:----------------------------------------| +| 0.1.9 | 2024-07-13 | [41928](https://github.com/airbytehq/airbyte/pull/41928) | Update dependencies | | 0.1.8 | 2024-07-10 | [41365](https://github.com/airbytehq/airbyte/pull/41365) | Update dependencies | | 0.1.7 | 2024-07-09 | [41075](https://github.com/airbytehq/airbyte/pull/41075) | Update dependencies | | 0.1.6 | 2024-07-06 | [40893](https://github.com/airbytehq/airbyte/pull/40893) | Update dependencies | From 9455b823754407e748479712dffeacf319e1a0b2 Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:17:44 +0200 Subject: [PATCH 015/260] =?UTF-8?q?=F0=9F=90=99=20source-flexport:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-07-13]=20(#41926)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-flexport/metadata.yaml | 2 +- .../connectors/source-flexport/poetry.lock | 12 ++++++------ .../connectors/source-flexport/pyproject.toml | 2 +- docs/integrations/sources/flexport.md | 1 + 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/airbyte-integrations/connectors/source-flexport/metadata.yaml b/airbyte-integrations/connectors/source-flexport/metadata.yaml index d87b77b47b6f..7baa4b717a5e 100644 --- a/airbyte-integrations/connectors/source-flexport/metadata.yaml +++ b/airbyte-integrations/connectors/source-flexport/metadata.yaml @@ -15,7 +15,7 @@ data: connectorSubtype: api connectorType: source definitionId: f95337f1-2ad1-4baf-922f-2ca9152de630 - dockerImageTag: 0.2.7 + dockerImageTag: 0.2.8 dockerRepository: airbyte/source-flexport githubIssueLabel: source-flexport icon: flexport.svg diff --git a/airbyte-integrations/connectors/source-flexport/poetry.lock b/airbyte-integrations/connectors/source-flexport/poetry.lock index 1c7c00978d43..728f233c17e0 100644 --- a/airbyte-integrations/connectors/source-flexport/poetry.lock +++ b/airbyte-integrations/connectors/source-flexport/poetry.lock @@ -410,13 +410,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] @@ -566,13 +566,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.84" +version = "0.1.85" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.84-py3-none-any.whl", hash = "sha256:01f3c6390dba26c583bac8dd0e551ce3d0509c7f55cad714db0b5c8d36e4c7ff"}, - {file = "langsmith-0.1.84.tar.gz", hash = "sha256:5220c0439838b9a5bd320fd3686be505c5083dcee22d2452006c23891153bea1"}, + {file = "langsmith-0.1.85-py3-none-any.whl", hash = "sha256:c1f94384f10cea96f7b4d33fd3db7ec180c03c7468877d50846f881d2017ff94"}, + {file = "langsmith-0.1.85.tar.gz", hash = "sha256:acff31f9e53efa48586cf8e32f65625a335c74d7c4fa306d1655ac18452296f6"}, ] [package.dependencies] diff --git a/airbyte-integrations/connectors/source-flexport/pyproject.toml b/airbyte-integrations/connectors/source-flexport/pyproject.toml index 4f8ed249606f..442a1d3df06a 100644 --- a/airbyte-integrations/connectors/source-flexport/pyproject.toml +++ b/airbyte-integrations/connectors/source-flexport/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.2.7" +version = "0.2.8" name = "source-flexport" description = "Source implementation for Flexport." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/flexport.md b/docs/integrations/sources/flexport.md index 857d3ca47b64..9f257e3ebb9c 100644 --- a/docs/integrations/sources/flexport.md +++ b/docs/integrations/sources/flexport.md @@ -49,6 +49,7 @@ Authentication uses a pre-created API token which can be [created in the UI](htt | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :------------------------------ | +| 0.2.8 | 2024-07-13 | [41926](https://github.com/airbytehq/airbyte/pull/41926) | Update dependencies | | 0.2.7 | 2024-07-10 | [41526](https://github.com/airbytehq/airbyte/pull/41526) | Update dependencies | | 0.2.6 | 2024-07-09 | [41145](https://github.com/airbytehq/airbyte/pull/41145) | Update dependencies | | 0.2.5 | 2024-07-06 | [40777](https://github.com/airbytehq/airbyte/pull/40777) | Update dependencies | From 1d8da84491ac147bf8e387c223aff03ede5a89cd Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:17:47 +0200 Subject: [PATCH 016/260] =?UTF-8?q?=F0=9F=90=99=20source-yandex-metrica:?= =?UTF-8?q?=20run=20up-to-date=20pipeline=20[2024-07-13]=20(#41925)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-yandex-metrica/metadata.yaml | 2 +- .../connectors/source-yandex-metrica/poetry.lock | 6 +++--- .../connectors/source-yandex-metrica/pyproject.toml | 2 +- docs/integrations/sources/yandex-metrica.md | 1 + 4 files changed, 6 insertions(+), 5 deletions(-) diff --git a/airbyte-integrations/connectors/source-yandex-metrica/metadata.yaml b/airbyte-integrations/connectors/source-yandex-metrica/metadata.yaml index 20f92b2655e9..b7349981d70f 100644 --- a/airbyte-integrations/connectors/source-yandex-metrica/metadata.yaml +++ b/airbyte-integrations/connectors/source-yandex-metrica/metadata.yaml @@ -10,7 +10,7 @@ data: connectorSubtype: api connectorType: source definitionId: 7865dce4-2211-4f6a-88e5-9d0fe161afe7 - dockerImageTag: 1.0.9 + dockerImageTag: 1.0.10 dockerRepository: airbyte/source-yandex-metrica documentationUrl: https://docs.airbyte.com/integrations/sources/yandex-metrica githubIssueLabel: source-yandex-metrica diff --git a/airbyte-integrations/connectors/source-yandex-metrica/poetry.lock b/airbyte-integrations/connectors/source-yandex-metrica/poetry.lock index e52a00f249d8..10ddec2d28a5 100644 --- a/airbyte-integrations/connectors/source-yandex-metrica/poetry.lock +++ b/airbyte-integrations/connectors/source-yandex-metrica/poetry.lock @@ -288,13 +288,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] diff --git a/airbyte-integrations/connectors/source-yandex-metrica/pyproject.toml b/airbyte-integrations/connectors/source-yandex-metrica/pyproject.toml index 6179fe782a99..8c9280d3cd15 100644 --- a/airbyte-integrations/connectors/source-yandex-metrica/pyproject.toml +++ b/airbyte-integrations/connectors/source-yandex-metrica/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "1.0.9" +version = "1.0.10" name = "source-yandex-metrica" description = "Source implementation for Yandex Metrica." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/yandex-metrica.md b/docs/integrations/sources/yandex-metrica.md index 9af337531e9d..3bbdf6e7b7a2 100644 --- a/docs/integrations/sources/yandex-metrica.md +++ b/docs/integrations/sources/yandex-metrica.md @@ -92,6 +92,7 @@ Because of the way API works some syncs may take a long time to finish. Timeout | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :------------------------------------------------------------------------------ | +| 1.0.10 | 2024-07-13 | [41925](https://github.com/airbytehq/airbyte/pull/41925) | Update dependencies | | 1.0.9 | 2024-07-10 | [41431](https://github.com/airbytehq/airbyte/pull/41431) | Update dependencies | | 1.0.8 | 2024-07-09 | [40837](https://github.com/airbytehq/airbyte/pull/40837) | Update dependencies | | 1.0.7 | 2024-06-25 | [40368](https://github.com/airbytehq/airbyte/pull/40368) | Update dependencies | From 375a2a573a0ab9289622180fe6e37d27a7a7ff66 Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:17:50 +0200 Subject: [PATCH 017/260] =?UTF-8?q?=F0=9F=90=99=20source-survey-sparrow:?= =?UTF-8?q?=20run=20up-to-date=20pipeline=20[2024-07-13]=20(#41924)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-survey-sparrow/metadata.yaml | 2 +- .../connectors/source-survey-sparrow/poetry.lock | 6 +++--- .../connectors/source-survey-sparrow/pyproject.toml | 2 +- docs/integrations/sources/survey-sparrow.md | 1 + 4 files changed, 6 insertions(+), 5 deletions(-) diff --git a/airbyte-integrations/connectors/source-survey-sparrow/metadata.yaml b/airbyte-integrations/connectors/source-survey-sparrow/metadata.yaml index 55b8875dd216..4dcfafafee0d 100644 --- a/airbyte-integrations/connectors/source-survey-sparrow/metadata.yaml +++ b/airbyte-integrations/connectors/source-survey-sparrow/metadata.yaml @@ -7,7 +7,7 @@ data: connectorSubtype: api connectorType: source definitionId: 4a4d887b-0f2d-4b33-ab7f-9b01b9072804 - dockerImageTag: 0.2.10 + dockerImageTag: 0.2.11 dockerRepository: airbyte/source-survey-sparrow documentationUrl: https://docs.airbyte.com/integrations/sources/survey-sparrow githubIssueLabel: source-survey-sparrow diff --git a/airbyte-integrations/connectors/source-survey-sparrow/poetry.lock b/airbyte-integrations/connectors/source-survey-sparrow/poetry.lock index cce71c3b0e79..a1ccc2d0271d 100644 --- a/airbyte-integrations/connectors/source-survey-sparrow/poetry.lock +++ b/airbyte-integrations/connectors/source-survey-sparrow/poetry.lock @@ -288,13 +288,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] diff --git a/airbyte-integrations/connectors/source-survey-sparrow/pyproject.toml b/airbyte-integrations/connectors/source-survey-sparrow/pyproject.toml index e16a424d2dc1..0c2ee42174cb 100644 --- a/airbyte-integrations/connectors/source-survey-sparrow/pyproject.toml +++ b/airbyte-integrations/connectors/source-survey-sparrow/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.2.10" +version = "0.2.11" name = "source-survey-sparrow" description = "Source implementation for Survey Sparrow." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/survey-sparrow.md b/docs/integrations/sources/survey-sparrow.md index 9c7704e80e04..c8f89059202a 100644 --- a/docs/integrations/sources/survey-sparrow.md +++ b/docs/integrations/sources/survey-sparrow.md @@ -49,6 +49,7 @@ In order to get access token, follow these steps: | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :------------------------------------------------------------------------------ | +| 0.2.11 | 2024-07-13 | [41924](https://github.com/airbytehq/airbyte/pull/41924) | Update dependencies | | 0.2.10 | 2024-07-10 | [41556](https://github.com/airbytehq/airbyte/pull/41556) | Update dependencies | | 0.2.9 | 2024-07-09 | [41172](https://github.com/airbytehq/airbyte/pull/41172) | Update dependencies | | 0.2.8 | 2024-07-06 | [40975](https://github.com/airbytehq/airbyte/pull/40975) | Update dependencies | From 939ff3fececae1c2dc79b6a2c7a377ca412c4c38 Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:17:53 +0200 Subject: [PATCH 018/260] =?UTF-8?q?=F0=9F=90=99=20source-pocket:=20run=20u?= =?UTF-8?q?p-to-date=20pipeline=20[2024-07-13]=20(#41923)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-pocket/metadata.yaml | 2 +- airbyte-integrations/connectors/source-pocket/poetry.lock | 6 +++--- .../connectors/source-pocket/pyproject.toml | 2 +- docs/integrations/sources/pocket.md | 1 + 4 files changed, 6 insertions(+), 5 deletions(-) diff --git a/airbyte-integrations/connectors/source-pocket/metadata.yaml b/airbyte-integrations/connectors/source-pocket/metadata.yaml index 4afbe9ddd6cf..40db3f52f849 100644 --- a/airbyte-integrations/connectors/source-pocket/metadata.yaml +++ b/airbyte-integrations/connectors/source-pocket/metadata.yaml @@ -7,7 +7,7 @@ data: connectorSubtype: api connectorType: source definitionId: b0dd65f1-081f-4731-9c51-38e9e6aa0ebf - dockerImageTag: 0.1.9 + dockerImageTag: 0.1.10 dockerRepository: airbyte/source-pocket documentationUrl: https://docs.airbyte.com/integrations/sources/pocket githubIssueLabel: source-pocket diff --git a/airbyte-integrations/connectors/source-pocket/poetry.lock b/airbyte-integrations/connectors/source-pocket/poetry.lock index 6f83e5bed3a6..c0f7f643d050 100644 --- a/airbyte-integrations/connectors/source-pocket/poetry.lock +++ b/airbyte-integrations/connectors/source-pocket/poetry.lock @@ -288,13 +288,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] diff --git a/airbyte-integrations/connectors/source-pocket/pyproject.toml b/airbyte-integrations/connectors/source-pocket/pyproject.toml index 163f5ddb3888..44acb4ff837b 100644 --- a/airbyte-integrations/connectors/source-pocket/pyproject.toml +++ b/airbyte-integrations/connectors/source-pocket/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.1.9" +version = "0.1.10" name = "source-pocket" description = "Source implementation for Pocket." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/pocket.md b/docs/integrations/sources/pocket.md index 61deb21a6b48..b5101c28e315 100644 --- a/docs/integrations/sources/pocket.md +++ b/docs/integrations/sources/pocket.md @@ -57,6 +57,7 @@ curl --insecure -X POST -H 'Content-Type: application/json' -H 'X-Accept: applic | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :------------------------------------------------------------------------------ | +| 0.1.10 | 2024-07-13 | [41923](https://github.com/airbytehq/airbyte/pull/41923) | Update dependencies | | 0.1.9 | 2024-07-10 | [41457](https://github.com/airbytehq/airbyte/pull/41457) | Update dependencies | | 0.1.8 | 2024-07-09 | [41294](https://github.com/airbytehq/airbyte/pull/41294) | Update dependencies | | 0.1.7 | 2024-07-06 | [41001](https://github.com/airbytehq/airbyte/pull/41001) | Update dependencies | From 2043eb5477b0520a6fc14dc2cee45dab0df46957 Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:17:57 +0200 Subject: [PATCH 019/260] =?UTF-8?q?=F0=9F=90=99=20source-zenloop:=20run=20?= =?UTF-8?q?up-to-date=20pipeline=20[2024-07-13]=20(#41922)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-zenloop/metadata.yaml | 2 +- airbyte-integrations/connectors/source-zenloop/poetry.lock | 6 +++--- .../connectors/source-zenloop/pyproject.toml | 2 +- docs/integrations/sources/zenloop.md | 1 + 4 files changed, 6 insertions(+), 5 deletions(-) diff --git a/airbyte-integrations/connectors/source-zenloop/metadata.yaml b/airbyte-integrations/connectors/source-zenloop/metadata.yaml index b8e6b225a953..593af6123148 100644 --- a/airbyte-integrations/connectors/source-zenloop/metadata.yaml +++ b/airbyte-integrations/connectors/source-zenloop/metadata.yaml @@ -10,7 +10,7 @@ data: connectorSubtype: api connectorType: source definitionId: f1e4c7f6-db5c-4035-981f-d35ab4998794 - dockerImageTag: 0.1.20 + dockerImageTag: 0.1.21 dockerRepository: airbyte/source-zenloop documentationUrl: https://docs.airbyte.com/integrations/sources/zenloop githubIssueLabel: source-zenloop diff --git a/airbyte-integrations/connectors/source-zenloop/poetry.lock b/airbyte-integrations/connectors/source-zenloop/poetry.lock index 62cc5d2a5040..9b05c8d7333b 100644 --- a/airbyte-integrations/connectors/source-zenloop/poetry.lock +++ b/airbyte-integrations/connectors/source-zenloop/poetry.lock @@ -288,13 +288,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] diff --git a/airbyte-integrations/connectors/source-zenloop/pyproject.toml b/airbyte-integrations/connectors/source-zenloop/pyproject.toml index 8c378d9737b5..952b9a222fc3 100644 --- a/airbyte-integrations/connectors/source-zenloop/pyproject.toml +++ b/airbyte-integrations/connectors/source-zenloop/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.1.20" +version = "0.1.21" name = "source-zenloop" description = "Source implementation for Zenloop." authors = [ "Alexander Batoulis ",] diff --git a/docs/integrations/sources/zenloop.md b/docs/integrations/sources/zenloop.md index 5700a09f34e2..b6753dc4c2ee 100644 --- a/docs/integrations/sources/zenloop.md +++ b/docs/integrations/sources/zenloop.md @@ -77,6 +77,7 @@ The Zenloop connector should not run into Zenloop API limitations under normal u | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :------------------------------------------------------------------------------ | +| 0.1.21 | 2024-07-13 | [41922](https://github.com/airbytehq/airbyte/pull/41922) | Update dependencies | | 0.1.20 | 2024-07-10 | [41514](https://github.com/airbytehq/airbyte/pull/41514) | Update dependencies | | 0.1.19 | 2024-07-09 | [41144](https://github.com/airbytehq/airbyte/pull/41144) | Update dependencies | | 0.1.18 | 2024-07-06 | [40919](https://github.com/airbytehq/airbyte/pull/40919) | Update dependencies | From 58313b4e429065f9af8977c6928dc3c7bbbadfa3 Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:17:59 +0200 Subject: [PATCH 020/260] =?UTF-8?q?=F0=9F=90=99=20source-timely:=20run=20u?= =?UTF-8?q?p-to-date=20pipeline=20[2024-07-13]=20(#41921)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-timely/metadata.yaml | 2 +- airbyte-integrations/connectors/source-timely/poetry.lock | 6 +++--- .../connectors/source-timely/pyproject.toml | 2 +- docs/integrations/sources/timely.md | 1 + 4 files changed, 6 insertions(+), 5 deletions(-) diff --git a/airbyte-integrations/connectors/source-timely/metadata.yaml b/airbyte-integrations/connectors/source-timely/metadata.yaml index a9f4d02830fd..1cdcd1fab7e6 100644 --- a/airbyte-integrations/connectors/source-timely/metadata.yaml +++ b/airbyte-integrations/connectors/source-timely/metadata.yaml @@ -10,7 +10,7 @@ data: connectorSubtype: api connectorType: source definitionId: bc617b5f-1b9e-4a2d-bebe-782fd454a771 - dockerImageTag: 0.3.11 + dockerImageTag: 0.3.12 dockerRepository: airbyte/source-timely documentationUrl: https://docs.airbyte.com/integrations/sources/timely githubIssueLabel: source-timely diff --git a/airbyte-integrations/connectors/source-timely/poetry.lock b/airbyte-integrations/connectors/source-timely/poetry.lock index cce71c3b0e79..a1ccc2d0271d 100644 --- a/airbyte-integrations/connectors/source-timely/poetry.lock +++ b/airbyte-integrations/connectors/source-timely/poetry.lock @@ -288,13 +288,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] diff --git a/airbyte-integrations/connectors/source-timely/pyproject.toml b/airbyte-integrations/connectors/source-timely/pyproject.toml index 78959febfec1..c3a789d73a0c 100644 --- a/airbyte-integrations/connectors/source-timely/pyproject.toml +++ b/airbyte-integrations/connectors/source-timely/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.3.11" +version = "0.3.12" name = "source-timely" description = "Source implementation for Timely." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/timely.md b/docs/integrations/sources/timely.md index faeb04047216..dda1431d4ea6 100644 --- a/docs/integrations/sources/timely.md +++ b/docs/integrations/sources/timely.md @@ -37,6 +37,7 @@ The Timely source connector supports the following [sync modes](https://docs.air | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :------------------------------------------------------------------------------ | +| 0.3.12 | 2024-07-13 | [41921](https://github.com/airbytehq/airbyte/pull/41921) | Update dependencies | | 0.3.11 | 2024-07-10 | [41348](https://github.com/airbytehq/airbyte/pull/41348) | Update dependencies | | 0.3.10 | 2024-07-09 | [41268](https://github.com/airbytehq/airbyte/pull/41268) | Update dependencies | | 0.3.9 | 2024-07-06 | [40773](https://github.com/airbytehq/airbyte/pull/40773) | Update dependencies | From eecd3402f5510f3937a2281fd89ba4cd77e8f414 Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:18:03 +0200 Subject: [PATCH 021/260] =?UTF-8?q?=F0=9F=90=99=20source-microsoft-dataver?= =?UTF-8?q?se:=20run=20up-to-date=20pipeline=20[2024-07-13]=20(#41920)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-microsoft-dataverse/metadata.yaml | 2 +- .../connectors/source-microsoft-dataverse/poetry.lock | 6 +++--- .../connectors/source-microsoft-dataverse/pyproject.toml | 2 +- docs/integrations/sources/microsoft-dataverse.md | 1 + 4 files changed, 6 insertions(+), 5 deletions(-) diff --git a/airbyte-integrations/connectors/source-microsoft-dataverse/metadata.yaml b/airbyte-integrations/connectors/source-microsoft-dataverse/metadata.yaml index 59f11ffa901c..cc8ef293bbf2 100644 --- a/airbyte-integrations/connectors/source-microsoft-dataverse/metadata.yaml +++ b/airbyte-integrations/connectors/source-microsoft-dataverse/metadata.yaml @@ -2,7 +2,7 @@ data: connectorSubtype: api connectorType: source definitionId: 9220e3de-3b60-4bb2-a46f-046d59ea235a - dockerImageTag: 0.1.9 + dockerImageTag: 0.1.10 dockerRepository: airbyte/source-microsoft-dataverse githubIssueLabel: source-microsoft-dataverse icon: microsoftdataverse.svg diff --git a/airbyte-integrations/connectors/source-microsoft-dataverse/poetry.lock b/airbyte-integrations/connectors/source-microsoft-dataverse/poetry.lock index 6f83e5bed3a6..c0f7f643d050 100644 --- a/airbyte-integrations/connectors/source-microsoft-dataverse/poetry.lock +++ b/airbyte-integrations/connectors/source-microsoft-dataverse/poetry.lock @@ -288,13 +288,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] diff --git a/airbyte-integrations/connectors/source-microsoft-dataverse/pyproject.toml b/airbyte-integrations/connectors/source-microsoft-dataverse/pyproject.toml index f4b5709906ff..c0ddb5e77159 100644 --- a/airbyte-integrations/connectors/source-microsoft-dataverse/pyproject.toml +++ b/airbyte-integrations/connectors/source-microsoft-dataverse/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.1.9" +version = "0.1.10" name = "source-microsoft-dataverse" description = "Source implementation for Microsoft Dataverse." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/microsoft-dataverse.md b/docs/integrations/sources/microsoft-dataverse.md index 481bfc4705fa..42f995511e59 100644 --- a/docs/integrations/sources/microsoft-dataverse.md +++ b/docs/integrations/sources/microsoft-dataverse.md @@ -64,6 +64,7 @@ https://blog.magnetismsolutions.com/blog/paulnieuwelaar/2021/9/21/setting-up-an- | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :------------------------------------------------------------------------------------- | +| 0.1.10 | 2024-07-13 | [41920](https://github.com/airbytehq/airbyte/pull/41920) | Update dependencies | | 0.1.9 | 2024-07-10 | [41346](https://github.com/airbytehq/airbyte/pull/41346) | Update dependencies | | 0.1.8 | 2024-07-09 | [41247](https://github.com/airbytehq/airbyte/pull/41247) | Update dependencies | | 0.1.7 | 2024-07-06 | [40800](https://github.com/airbytehq/airbyte/pull/40800) | Update dependencies | From 72b9ad12aa21408f397c32714be04780f8f420f0 Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:18:06 +0200 Subject: [PATCH 022/260] =?UTF-8?q?=F0=9F=90=99=20destination-qdrant:=20ru?= =?UTF-8?q?n=20up-to-date=20pipeline=20[2024-07-13]=20(#41919)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/destination-qdrant/metadata.yaml | 2 +- .../connectors/destination-qdrant/poetry.lock | 12 ++++++------ .../connectors/destination-qdrant/pyproject.toml | 2 +- docs/integrations/destinations/qdrant.md | 1 + 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/airbyte-integrations/connectors/destination-qdrant/metadata.yaml b/airbyte-integrations/connectors/destination-qdrant/metadata.yaml index ba4522c0fecb..980c529c480d 100644 --- a/airbyte-integrations/connectors/destination-qdrant/metadata.yaml +++ b/airbyte-integrations/connectors/destination-qdrant/metadata.yaml @@ -22,7 +22,7 @@ data: connectorSubtype: vectorstore connectorType: destination definitionId: 6eb1198a-6d38-43e5-aaaa-dccd8f71db2b - dockerImageTag: 0.1.2 + dockerImageTag: 0.1.3 dockerRepository: airbyte/destination-qdrant githubIssueLabel: destination-qdrant icon: qdrant.svg diff --git a/airbyte-integrations/connectors/destination-qdrant/poetry.lock b/airbyte-integrations/connectors/destination-qdrant/poetry.lock index fcd49696b5d0..07ddff9a27fe 100644 --- a/airbyte-integrations/connectors/destination-qdrant/poetry.lock +++ b/airbyte-integrations/connectors/destination-qdrant/poetry.lock @@ -698,13 +698,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] @@ -1706,13 +1706,13 @@ extended-testing = ["beautifulsoup4 (>=4.12.3,<5.0.0)", "lxml (>=4.9.3,<6.0)"] [[package]] name = "langsmith" -version = "0.1.84" +version = "0.1.85" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.84-py3-none-any.whl", hash = "sha256:01f3c6390dba26c583bac8dd0e551ce3d0509c7f55cad714db0b5c8d36e4c7ff"}, - {file = "langsmith-0.1.84.tar.gz", hash = "sha256:5220c0439838b9a5bd320fd3686be505c5083dcee22d2452006c23891153bea1"}, + {file = "langsmith-0.1.85-py3-none-any.whl", hash = "sha256:c1f94384f10cea96f7b4d33fd3db7ec180c03c7468877d50846f881d2017ff94"}, + {file = "langsmith-0.1.85.tar.gz", hash = "sha256:acff31f9e53efa48586cf8e32f65625a335c74d7c4fa306d1655ac18452296f6"}, ] [package.dependencies] diff --git a/airbyte-integrations/connectors/destination-qdrant/pyproject.toml b/airbyte-integrations/connectors/destination-qdrant/pyproject.toml index 5a332724cd88..ac168df57909 100644 --- a/airbyte-integrations/connectors/destination-qdrant/pyproject.toml +++ b/airbyte-integrations/connectors/destination-qdrant/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name = "airbyte-destination-qdrant" -version = "0.1.2" +version = "0.1.3" description = "Airbyte destination implementation for Qdrant." authors = ["Airbyte "] license = "MIT" diff --git a/docs/integrations/destinations/qdrant.md b/docs/integrations/destinations/qdrant.md index 6d8c92403b4b..805262f9b4c0 100644 --- a/docs/integrations/destinations/qdrant.md +++ b/docs/integrations/destinations/qdrant.md @@ -73,6 +73,7 @@ You should now have all the requirements needed to configure Qdrant as a destina | Version | Date | Pull Request | Subject | | :------ | :--------- | :-------------------------------------------------------- | :----------------------------------------------------------------------- | +| 0.1.3 | 2024-07-13 | [41919](https://github.com/airbytehq/airbyte/pull/41919) | Update dependencies | | 0.1.2 | 2024-07-10 | [41530](https://github.com/airbytehq/airbyte/pull/41530) | Update dependencies | | 0.1.1 | 2024-07-09 | [41096](https://github.com/airbytehq/airbyte/pull/41096) | Update dependencies | | 0.1.0 | 2024-06-27 | [41020](https://github.com/airbytehq/airbyte/pull/41020) | Update to Airbyte CDK 2.3 and qdrant-client 1.10 | From 3c8cf7eaf306a80bcdcb49efdd2f584a9dcaa891 Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:18:09 +0200 Subject: [PATCH 023/260] =?UTF-8?q?=F0=9F=90=99=20source-tvmaze-schedule:?= =?UTF-8?q?=20run=20up-to-date=20pipeline=20[2024-07-13]=20(#41917)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-tvmaze-schedule/metadata.yaml | 2 +- .../connectors/source-tvmaze-schedule/poetry.lock | 12 ++++++------ .../connectors/source-tvmaze-schedule/pyproject.toml | 2 +- docs/integrations/sources/tvmaze-schedule.md | 1 + 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/airbyte-integrations/connectors/source-tvmaze-schedule/metadata.yaml b/airbyte-integrations/connectors/source-tvmaze-schedule/metadata.yaml index fb81257ee711..1766d7256de2 100644 --- a/airbyte-integrations/connectors/source-tvmaze-schedule/metadata.yaml +++ b/airbyte-integrations/connectors/source-tvmaze-schedule/metadata.yaml @@ -2,7 +2,7 @@ data: connectorSubtype: api connectorType: source definitionId: bd14b08f-9f43-400f-b2b6-7248b5c72561 - dockerImageTag: 0.1.7 + dockerImageTag: 0.1.8 dockerRepository: airbyte/source-tvmaze-schedule githubIssueLabel: source-tvmaze-schedule icon: tvmazeschedule.svg diff --git a/airbyte-integrations/connectors/source-tvmaze-schedule/poetry.lock b/airbyte-integrations/connectors/source-tvmaze-schedule/poetry.lock index 4b03cc351726..13836360394d 100644 --- a/airbyte-integrations/connectors/source-tvmaze-schedule/poetry.lock +++ b/airbyte-integrations/connectors/source-tvmaze-schedule/poetry.lock @@ -410,13 +410,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] @@ -566,13 +566,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.84" +version = "0.1.85" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.84-py3-none-any.whl", hash = "sha256:01f3c6390dba26c583bac8dd0e551ce3d0509c7f55cad714db0b5c8d36e4c7ff"}, - {file = "langsmith-0.1.84.tar.gz", hash = "sha256:5220c0439838b9a5bd320fd3686be505c5083dcee22d2452006c23891153bea1"}, + {file = "langsmith-0.1.85-py3-none-any.whl", hash = "sha256:c1f94384f10cea96f7b4d33fd3db7ec180c03c7468877d50846f881d2017ff94"}, + {file = "langsmith-0.1.85.tar.gz", hash = "sha256:acff31f9e53efa48586cf8e32f65625a335c74d7c4fa306d1655ac18452296f6"}, ] [package.dependencies] diff --git a/airbyte-integrations/connectors/source-tvmaze-schedule/pyproject.toml b/airbyte-integrations/connectors/source-tvmaze-schedule/pyproject.toml index 7417b4d20e93..c848438c578e 100644 --- a/airbyte-integrations/connectors/source-tvmaze-schedule/pyproject.toml +++ b/airbyte-integrations/connectors/source-tvmaze-schedule/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.1.7" +version = "0.1.8" name = "source-tvmaze-schedule" description = "Source implementation for Tvmaze Schedule." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/tvmaze-schedule.md b/docs/integrations/sources/tvmaze-schedule.md index 2af91e809a71..58ca50b5136f 100644 --- a/docs/integrations/sources/tvmaze-schedule.md +++ b/docs/integrations/sources/tvmaze-schedule.md @@ -51,6 +51,7 @@ The following fields are required fields for the connector to work: | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :--------- | +| 0.1.8 | 2024-07-13 | [41917](https://github.com/airbytehq/airbyte/pull/41917) | Update dependencies | | 0.1.7 | 2024-07-10 | [41358](https://github.com/airbytehq/airbyte/pull/41358) | Update dependencies | | 0.1.6 | 2024-07-09 | [40928](https://github.com/airbytehq/airbyte/pull/40928) | Update dependencies | | 0.1.5 | 2024-06-25 | [40349](https://github.com/airbytehq/airbyte/pull/40349) | Update dependencies | From e6991d9eb04a4fae3c694d8d2351d57b7437f076 Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:18:12 +0200 Subject: [PATCH 024/260] =?UTF-8?q?=F0=9F=90=99=20source-workable:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-07-13]=20(#41916)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-workable/metadata.yaml | 2 +- .../connectors/source-workable/poetry.lock | 12 ++++++------ .../connectors/source-workable/pyproject.toml | 2 +- docs/integrations/sources/workable.md | 1 + 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/airbyte-integrations/connectors/source-workable/metadata.yaml b/airbyte-integrations/connectors/source-workable/metadata.yaml index 7f9786e4c407..5f9060cadf56 100644 --- a/airbyte-integrations/connectors/source-workable/metadata.yaml +++ b/airbyte-integrations/connectors/source-workable/metadata.yaml @@ -2,7 +2,7 @@ data: connectorSubtype: api connectorType: source definitionId: ef3c99c6-9e90-43c8-9517-926cfd978517 - dockerImageTag: 0.1.7 + dockerImageTag: 0.1.8 dockerRepository: airbyte/source-workable githubIssueLabel: source-workable icon: workable.svg diff --git a/airbyte-integrations/connectors/source-workable/poetry.lock b/airbyte-integrations/connectors/source-workable/poetry.lock index 4b03cc351726..13836360394d 100644 --- a/airbyte-integrations/connectors/source-workable/poetry.lock +++ b/airbyte-integrations/connectors/source-workable/poetry.lock @@ -410,13 +410,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] @@ -566,13 +566,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.84" +version = "0.1.85" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.84-py3-none-any.whl", hash = "sha256:01f3c6390dba26c583bac8dd0e551ce3d0509c7f55cad714db0b5c8d36e4c7ff"}, - {file = "langsmith-0.1.84.tar.gz", hash = "sha256:5220c0439838b9a5bd320fd3686be505c5083dcee22d2452006c23891153bea1"}, + {file = "langsmith-0.1.85-py3-none-any.whl", hash = "sha256:c1f94384f10cea96f7b4d33fd3db7ec180c03c7468877d50846f881d2017ff94"}, + {file = "langsmith-0.1.85.tar.gz", hash = "sha256:acff31f9e53efa48586cf8e32f65625a335c74d7c4fa306d1655ac18452296f6"}, ] [package.dependencies] diff --git a/airbyte-integrations/connectors/source-workable/pyproject.toml b/airbyte-integrations/connectors/source-workable/pyproject.toml index b39b3a0d2188..5424c309feaa 100644 --- a/airbyte-integrations/connectors/source-workable/pyproject.toml +++ b/airbyte-integrations/connectors/source-workable/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.1.7" +version = "0.1.8" name = "source-workable" description = "Source implementation for Workable." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/workable.md b/docs/integrations/sources/workable.md index 2600b5ee26e4..eba3a529edd9 100644 --- a/docs/integrations/sources/workable.md +++ b/docs/integrations/sources/workable.md @@ -54,6 +54,7 @@ The Workable source connector supports the following [sync modes](https://docs.a | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :------------------- | +| 0.1.8 | 2024-07-13 | [41916](https://github.com/airbytehq/airbyte/pull/41916) | Update dependencies | | 0.1.7 | 2024-07-10 | [41524](https://github.com/airbytehq/airbyte/pull/41524) | Update dependencies | | 0.1.6 | 2024-07-09 | [41091](https://github.com/airbytehq/airbyte/pull/41091) | Update dependencies | | 0.1.5 | 2024-07-06 | [41012](https://github.com/airbytehq/airbyte/pull/41012) | Update dependencies | From 38109d9738acf75ace5937abe1b8279e66833539 Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:18:15 +0200 Subject: [PATCH 025/260] =?UTF-8?q?=F0=9F=90=99=20source-todoist:=20run=20?= =?UTF-8?q?up-to-date=20pipeline=20[2024-07-13]=20(#41915)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-todoist/metadata.yaml | 2 +- .../connectors/source-todoist/poetry.lock | 12 ++++++------ .../connectors/source-todoist/pyproject.toml | 2 +- docs/integrations/sources/todoist.md | 1 + 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/airbyte-integrations/connectors/source-todoist/metadata.yaml b/airbyte-integrations/connectors/source-todoist/metadata.yaml index 326f4116faaf..2f90c3a73a3b 100644 --- a/airbyte-integrations/connectors/source-todoist/metadata.yaml +++ b/airbyte-integrations/connectors/source-todoist/metadata.yaml @@ -19,7 +19,7 @@ data: connectorSubtype: api connectorType: source definitionId: 1a3d38e4-dc6b-4154-b56b-582f9e978ecd - dockerImageTag: 0.2.10 + dockerImageTag: 0.2.11 dockerRepository: airbyte/source-todoist githubIssueLabel: source-todoist icon: todoist.svg diff --git a/airbyte-integrations/connectors/source-todoist/poetry.lock b/airbyte-integrations/connectors/source-todoist/poetry.lock index 1c7c00978d43..728f233c17e0 100644 --- a/airbyte-integrations/connectors/source-todoist/poetry.lock +++ b/airbyte-integrations/connectors/source-todoist/poetry.lock @@ -410,13 +410,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] @@ -566,13 +566,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.84" +version = "0.1.85" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.84-py3-none-any.whl", hash = "sha256:01f3c6390dba26c583bac8dd0e551ce3d0509c7f55cad714db0b5c8d36e4c7ff"}, - {file = "langsmith-0.1.84.tar.gz", hash = "sha256:5220c0439838b9a5bd320fd3686be505c5083dcee22d2452006c23891153bea1"}, + {file = "langsmith-0.1.85-py3-none-any.whl", hash = "sha256:c1f94384f10cea96f7b4d33fd3db7ec180c03c7468877d50846f881d2017ff94"}, + {file = "langsmith-0.1.85.tar.gz", hash = "sha256:acff31f9e53efa48586cf8e32f65625a335c74d7c4fa306d1655ac18452296f6"}, ] [package.dependencies] diff --git a/airbyte-integrations/connectors/source-todoist/pyproject.toml b/airbyte-integrations/connectors/source-todoist/pyproject.toml index 1a9d404ecec2..139e24d63043 100644 --- a/airbyte-integrations/connectors/source-todoist/pyproject.toml +++ b/airbyte-integrations/connectors/source-todoist/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.2.10" +version = "0.2.11" name = "source-todoist" description = "Source implementation for Todoist." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/todoist.md b/docs/integrations/sources/todoist.md index 13a8a52c918b..3c6ca71ddf47 100644 --- a/docs/integrations/sources/todoist.md +++ b/docs/integrations/sources/todoist.md @@ -46,6 +46,7 @@ List of available streams: | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :--------------------------------------------------------- | +| 0.2.11 | 2024-07-13 | [41915](https://github.com/airbytehq/airbyte/pull/41915) | Update dependencies | | 0.2.10 | 2024-07-10 | [41367](https://github.com/airbytehq/airbyte/pull/41367) | Update dependencies | | 0.2.9 | 2024-07-09 | [41121](https://github.com/airbytehq/airbyte/pull/41121) | Update dependencies | | 0.2.8 | 2024-07-06 | [40939](https://github.com/airbytehq/airbyte/pull/40939) | Update dependencies | From f9b9887b17f1108aeedaf26e6166d6c9a5b93eb7 Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:18:17 +0200 Subject: [PATCH 026/260] =?UTF-8?q?=F0=9F=90=99=20source-aha:=20run=20up-t?= =?UTF-8?q?o-date=20pipeline=20[2024-07-13]=20(#41914)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-aha/metadata.yaml | 2 +- .../connectors/source-aha/poetry.lock | 12 ++++++------ .../connectors/source-aha/pyproject.toml | 2 +- docs/integrations/sources/aha.md | 1 + 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/airbyte-integrations/connectors/source-aha/metadata.yaml b/airbyte-integrations/connectors/source-aha/metadata.yaml index d455129c0e82..e5dce8379f1b 100644 --- a/airbyte-integrations/connectors/source-aha/metadata.yaml +++ b/airbyte-integrations/connectors/source-aha/metadata.yaml @@ -19,7 +19,7 @@ data: connectorSubtype: api connectorType: source definitionId: 81ca39dc-4534-4dd2-b848-b0cfd2c11fce - dockerImageTag: 0.3.8 + dockerImageTag: 0.3.9 dockerRepository: airbyte/source-aha documentationUrl: https://docs.airbyte.com/integrations/sources/aha githubIssueLabel: source-aha diff --git a/airbyte-integrations/connectors/source-aha/poetry.lock b/airbyte-integrations/connectors/source-aha/poetry.lock index cb1a23ecd43b..e0918c3f13c6 100644 --- a/airbyte-integrations/connectors/source-aha/poetry.lock +++ b/airbyte-integrations/connectors/source-aha/poetry.lock @@ -400,13 +400,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] @@ -556,13 +556,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.84" +version = "0.1.85" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.84-py3-none-any.whl", hash = "sha256:01f3c6390dba26c583bac8dd0e551ce3d0509c7f55cad714db0b5c8d36e4c7ff"}, - {file = "langsmith-0.1.84.tar.gz", hash = "sha256:5220c0439838b9a5bd320fd3686be505c5083dcee22d2452006c23891153bea1"}, + {file = "langsmith-0.1.85-py3-none-any.whl", hash = "sha256:c1f94384f10cea96f7b4d33fd3db7ec180c03c7468877d50846f881d2017ff94"}, + {file = "langsmith-0.1.85.tar.gz", hash = "sha256:acff31f9e53efa48586cf8e32f65625a335c74d7c4fa306d1655ac18452296f6"}, ] [package.dependencies] diff --git a/airbyte-integrations/connectors/source-aha/pyproject.toml b/airbyte-integrations/connectors/source-aha/pyproject.toml index 9c5d689bc07b..48273cb9fb5a 100644 --- a/airbyte-integrations/connectors/source-aha/pyproject.toml +++ b/airbyte-integrations/connectors/source-aha/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.3.8" +version = "0.3.9" name = "source-aha" description = "Source implementation for aha." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/aha.md b/docs/integrations/sources/aha.md index ffc9f0d5e37a..0f5b0bac4f4a 100644 --- a/docs/integrations/sources/aha.md +++ b/docs/integrations/sources/aha.md @@ -42,6 +42,7 @@ Rate Limiting information is updated [here](https://www.aha.io/api#rate-limiting | Version | Date | Pull Request | Subject | |:--------|:-----------| :------------------------------------------------------- |:------------------------------------------------------------------------| +| 0.3.9 | 2024-07-13 | [41914](https://github.com/airbytehq/airbyte/pull/41914) | Update dependencies | | 0.3.8 | 2024-07-10 | [41568](https://github.com/airbytehq/airbyte/pull/41568) | Update dependencies | | 0.3.7 | 2024-07-09 | [41170](https://github.com/airbytehq/airbyte/pull/41170) | Update dependencies | | 0.3.6 | 2024-07-06 | [40774](https://github.com/airbytehq/airbyte/pull/40774) | Update dependencies | From 5541db94b069ca7693febb16dda17cc12d415898 Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:18:20 +0200 Subject: [PATCH 027/260] =?UTF-8?q?=F0=9F=90=99=20source-square:=20run=20u?= =?UTF-8?q?p-to-date=20pipeline=20[2024-07-13]=20(#41913)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-square/metadata.yaml | 2 +- .../connectors/source-square/poetry.lock | 12 ++++++------ .../connectors/source-square/pyproject.toml | 2 +- docs/integrations/sources/square.md | 1 + 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/airbyte-integrations/connectors/source-square/metadata.yaml b/airbyte-integrations/connectors/source-square/metadata.yaml index f0cae91178e8..c2870f38b873 100644 --- a/airbyte-integrations/connectors/source-square/metadata.yaml +++ b/airbyte-integrations/connectors/source-square/metadata.yaml @@ -11,7 +11,7 @@ data: connectorSubtype: api connectorType: source definitionId: 77225a51-cd15-4a13-af02-65816bd0ecf4 - dockerImageTag: 1.6.10 + dockerImageTag: 1.6.11 dockerRepository: airbyte/source-square documentationUrl: https://docs.airbyte.com/integrations/sources/square githubIssueLabel: source-square diff --git a/airbyte-integrations/connectors/source-square/poetry.lock b/airbyte-integrations/connectors/source-square/poetry.lock index 086f110c7a47..2b4a3059f7e8 100644 --- a/airbyte-integrations/connectors/source-square/poetry.lock +++ b/airbyte-integrations/connectors/source-square/poetry.lock @@ -410,13 +410,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] @@ -580,13 +580,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.84" +version = "0.1.85" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.84-py3-none-any.whl", hash = "sha256:01f3c6390dba26c583bac8dd0e551ce3d0509c7f55cad714db0b5c8d36e4c7ff"}, - {file = "langsmith-0.1.84.tar.gz", hash = "sha256:5220c0439838b9a5bd320fd3686be505c5083dcee22d2452006c23891153bea1"}, + {file = "langsmith-0.1.85-py3-none-any.whl", hash = "sha256:c1f94384f10cea96f7b4d33fd3db7ec180c03c7468877d50846f881d2017ff94"}, + {file = "langsmith-0.1.85.tar.gz", hash = "sha256:acff31f9e53efa48586cf8e32f65625a335c74d7c4fa306d1655ac18452296f6"}, ] [package.dependencies] diff --git a/airbyte-integrations/connectors/source-square/pyproject.toml b/airbyte-integrations/connectors/source-square/pyproject.toml index 24471aa6bee2..6dc1aa871a1f 100644 --- a/airbyte-integrations/connectors/source-square/pyproject.toml +++ b/airbyte-integrations/connectors/source-square/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "1.6.10" +version = "1.6.11" name = "source-square" description = "Source implementation for Square." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/square.md b/docs/integrations/sources/square.md index 0f8f375eba69..ca9203709b0a 100644 --- a/docs/integrations/sources/square.md +++ b/docs/integrations/sources/square.md @@ -103,6 +103,7 @@ Exponential [Backoff](https://developer.squareup.com/forums/t/current-square-api | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :------------------------------------------------------------------------ | +| 1.6.11 | 2024-07-13 | [41913](https://github.com/airbytehq/airbyte/pull/41913) | Update dependencies | | 1.6.10 | 2024-07-10 | [41502](https://github.com/airbytehq/airbyte/pull/41502) | Update dependencies | | 1.6.9 | 2024-07-09 | [41124](https://github.com/airbytehq/airbyte/pull/41124) | Update dependencies | | 1.6.8 | 2024-07-06 | [40989](https://github.com/airbytehq/airbyte/pull/40989) | Update dependencies | From e8223c5b31f0e02cc3df564a51a95448de6ff234 Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:18:23 +0200 Subject: [PATCH 028/260] =?UTF-8?q?=F0=9F=90=99=20source-nytimes:=20run=20?= =?UTF-8?q?up-to-date=20pipeline=20[2024-07-13]=20(#41912)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-nytimes/metadata.yaml | 2 +- airbyte-integrations/connectors/source-nytimes/poetry.lock | 6 +++--- .../connectors/source-nytimes/pyproject.toml | 2 +- docs/integrations/sources/nytimes.md | 1 + 4 files changed, 6 insertions(+), 5 deletions(-) diff --git a/airbyte-integrations/connectors/source-nytimes/metadata.yaml b/airbyte-integrations/connectors/source-nytimes/metadata.yaml index 6dfd6f965fe0..f174bcb3a178 100644 --- a/airbyte-integrations/connectors/source-nytimes/metadata.yaml +++ b/airbyte-integrations/connectors/source-nytimes/metadata.yaml @@ -7,7 +7,7 @@ data: connectorSubtype: api connectorType: source definitionId: 0fae6a9a-04eb-44d4-96e1-e02d3dbc1d83 - dockerImageTag: 0.1.12 + dockerImageTag: 0.1.13 dockerRepository: airbyte/source-nytimes documentationUrl: https://docs.airbyte.com/integrations/sources/nytimes githubIssueLabel: source-nytimes diff --git a/airbyte-integrations/connectors/source-nytimes/poetry.lock b/airbyte-integrations/connectors/source-nytimes/poetry.lock index 6f83e5bed3a6..c0f7f643d050 100644 --- a/airbyte-integrations/connectors/source-nytimes/poetry.lock +++ b/airbyte-integrations/connectors/source-nytimes/poetry.lock @@ -288,13 +288,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] diff --git a/airbyte-integrations/connectors/source-nytimes/pyproject.toml b/airbyte-integrations/connectors/source-nytimes/pyproject.toml index 313ae9755067..a825b35c5e4a 100644 --- a/airbyte-integrations/connectors/source-nytimes/pyproject.toml +++ b/airbyte-integrations/connectors/source-nytimes/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.1.12" +version = "0.1.13" name = "source-nytimes" description = "Source implementation for Nytimes." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/nytimes.md b/docs/integrations/sources/nytimes.md index f7ed3c6ff24d..122415040348 100644 --- a/docs/integrations/sources/nytimes.md +++ b/docs/integrations/sources/nytimes.md @@ -45,6 +45,7 @@ The New York Times connector should not run into limitations under normal usage. | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :------------------------------------------------------------------------------ | +| 0.1.13 | 2024-07-13 | [41912](https://github.com/airbytehq/airbyte/pull/41912) | Update dependencies | | 0.1.12 | 2024-07-10 | [41580](https://github.com/airbytehq/airbyte/pull/41580) | Update dependencies | | 0.1.11 | 2024-07-10 | [41102](https://github.com/airbytehq/airbyte/pull/41102) | Update dependencies | | 0.1.10 | 2024-07-08 | [41030](https://github.com/airbytehq/airbyte/pull/41030) | Fix spec by removing invalid date properties | From 391678f238942421dc007ef89515fb274270b496 Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:18:26 +0200 Subject: [PATCH 029/260] =?UTF-8?q?=F0=9F=90=99=20source-google-ads:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-07-13]=20(#41911)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-google-ads/metadata.yaml | 2 +- .../connectors/source-google-ads/poetry.lock | 6 +++--- .../connectors/source-google-ads/pyproject.toml | 2 +- docs/integrations/sources/google-ads.md | 1 + 4 files changed, 6 insertions(+), 5 deletions(-) diff --git a/airbyte-integrations/connectors/source-google-ads/metadata.yaml b/airbyte-integrations/connectors/source-google-ads/metadata.yaml index cae9498b13ee..01c743b98650 100644 --- a/airbyte-integrations/connectors/source-google-ads/metadata.yaml +++ b/airbyte-integrations/connectors/source-google-ads/metadata.yaml @@ -11,7 +11,7 @@ data: connectorSubtype: api connectorType: source definitionId: 253487c0-2246-43ba-a21f-5116b20a2c50 - dockerImageTag: 3.5.7 + dockerImageTag: 3.5.8 dockerRepository: airbyte/source-google-ads documentationUrl: https://docs.airbyte.com/integrations/sources/google-ads githubIssueLabel: source-google-ads diff --git a/airbyte-integrations/connectors/source-google-ads/poetry.lock b/airbyte-integrations/connectors/source-google-ads/poetry.lock index a4adfb42de49..adf12ae4e07b 100644 --- a/airbyte-integrations/connectors/source-google-ads/poetry.lock +++ b/airbyte-integrations/connectors/source-google-ads/poetry.lock @@ -288,13 +288,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] diff --git a/airbyte-integrations/connectors/source-google-ads/pyproject.toml b/airbyte-integrations/connectors/source-google-ads/pyproject.toml index ce3d21bb33fd..086b2a369399 100644 --- a/airbyte-integrations/connectors/source-google-ads/pyproject.toml +++ b/airbyte-integrations/connectors/source-google-ads/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "3.5.7" +version = "3.5.8" name = "source-google-ads" description = "Source implementation for Google Ads." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/google-ads.md b/docs/integrations/sources/google-ads.md index e52a2771f570..9336e3bef461 100644 --- a/docs/integrations/sources/google-ads.md +++ b/docs/integrations/sources/google-ads.md @@ -310,6 +310,7 @@ Due to a limitation in the Google Ads API which does not allow getting performan | Version | Date | Pull Request | Subject | |:---------|:-----------|:---------------------------------------------------------|:-------------------------------------------------------------------------------------------------------------------------------------| +| 3.5.8 | 2024-07-13 | [41911](https://github.com/airbytehq/airbyte/pull/41911) | Update dependencies | | 3.5.7 | 2024-07-10 | [41528](https://github.com/airbytehq/airbyte/pull/41528) | Update dependencies | | 3.5.6 | 2024-07-09 | [41323](https://github.com/airbytehq/airbyte/pull/41323) | Update dependencies | | 3.5.5 | 2024-07-06 | [40933](https://github.com/airbytehq/airbyte/pull/40933) | Update dependencies | From 941b23413188d23bab11eb1e9b3a86c1ce357efe Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:18:29 +0200 Subject: [PATCH 030/260] =?UTF-8?q?=F0=9F=90=99=20source-twitter:=20run=20?= =?UTF-8?q?up-to-date=20pipeline=20[2024-07-13]=20(#41910)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-twitter/metadata.yaml | 2 +- .../connectors/source-twitter/poetry.lock | 12 ++++++------ .../connectors/source-twitter/pyproject.toml | 2 +- docs/integrations/sources/twitter.md | 1 + 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/airbyte-integrations/connectors/source-twitter/metadata.yaml b/airbyte-integrations/connectors/source-twitter/metadata.yaml index a3a088fb6220..11c08e02fd02 100644 --- a/airbyte-integrations/connectors/source-twitter/metadata.yaml +++ b/airbyte-integrations/connectors/source-twitter/metadata.yaml @@ -8,7 +8,7 @@ data: connectorSubtype: api connectorType: source definitionId: d7fd4f40-5e5a-4b8b-918f-a73077f8c131 - dockerImageTag: 0.1.8 + dockerImageTag: 0.1.9 dockerRepository: airbyte/source-twitter documentationUrl: https://docs.airbyte.com/integrations/sources/twitter githubIssueLabel: source-twitter diff --git a/airbyte-integrations/connectors/source-twitter/poetry.lock b/airbyte-integrations/connectors/source-twitter/poetry.lock index 4b03cc351726..13836360394d 100644 --- a/airbyte-integrations/connectors/source-twitter/poetry.lock +++ b/airbyte-integrations/connectors/source-twitter/poetry.lock @@ -410,13 +410,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] @@ -566,13 +566,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.84" +version = "0.1.85" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.84-py3-none-any.whl", hash = "sha256:01f3c6390dba26c583bac8dd0e551ce3d0509c7f55cad714db0b5c8d36e4c7ff"}, - {file = "langsmith-0.1.84.tar.gz", hash = "sha256:5220c0439838b9a5bd320fd3686be505c5083dcee22d2452006c23891153bea1"}, + {file = "langsmith-0.1.85-py3-none-any.whl", hash = "sha256:c1f94384f10cea96f7b4d33fd3db7ec180c03c7468877d50846f881d2017ff94"}, + {file = "langsmith-0.1.85.tar.gz", hash = "sha256:acff31f9e53efa48586cf8e32f65625a335c74d7c4fa306d1655ac18452296f6"}, ] [package.dependencies] diff --git a/airbyte-integrations/connectors/source-twitter/pyproject.toml b/airbyte-integrations/connectors/source-twitter/pyproject.toml index febe48d0c42d..f6f0c9f3d937 100644 --- a/airbyte-integrations/connectors/source-twitter/pyproject.toml +++ b/airbyte-integrations/connectors/source-twitter/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.1.8" +version = "0.1.9" name = "source-twitter" description = "Source implementation for Twitter." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/twitter.md b/docs/integrations/sources/twitter.md index 07a12beae0f2..acc9f9ce4b35 100644 --- a/docs/integrations/sources/twitter.md +++ b/docs/integrations/sources/twitter.md @@ -41,6 +41,7 @@ Rate limiting is mentioned in the API [documentation](https://developer.twitter. | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :------------------------------------------------ | +| 0.1.9 | 2024-07-13 | [41910](https://github.com/airbytehq/airbyte/pull/41910) | Update dependencies | | 0.1.8 | 2024-07-10 | [41394](https://github.com/airbytehq/airbyte/pull/41394) | Update dependencies | | 0.1.7 | 2024-07-06 | [40900](https://github.com/airbytehq/airbyte/pull/40900) | Update dependencies | | 0.1.6 | 2024-06-25 | [40396](https://github.com/airbytehq/airbyte/pull/40396) | Update dependencies | From 62d89987eec78c5b93651574f0e619b8a5dd2ab6 Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:18:32 +0200 Subject: [PATCH 031/260] =?UTF-8?q?=F0=9F=90=99=20source-spacex-api:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-07-13]=20(#41909)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-spacex-api/metadata.yaml | 2 +- .../connectors/source-spacex-api/poetry.lock | 12 ++++++------ .../connectors/source-spacex-api/pyproject.toml | 2 +- docs/integrations/sources/spacex-api.md | 1 + 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/airbyte-integrations/connectors/source-spacex-api/metadata.yaml b/airbyte-integrations/connectors/source-spacex-api/metadata.yaml index cba6e5132c1b..0b1ed379aa52 100644 --- a/airbyte-integrations/connectors/source-spacex-api/metadata.yaml +++ b/airbyte-integrations/connectors/source-spacex-api/metadata.yaml @@ -10,7 +10,7 @@ data: connectorSubtype: api connectorType: source definitionId: 62235e65-af7a-4138-9130-0bda954eb6a8 - dockerImageTag: 0.1.9 + dockerImageTag: 0.1.10 dockerRepository: airbyte/source-spacex-api githubIssueLabel: source-spacex-api icon: spacex.svg diff --git a/airbyte-integrations/connectors/source-spacex-api/poetry.lock b/airbyte-integrations/connectors/source-spacex-api/poetry.lock index f9a1a5c18529..4fffd5ec2a96 100644 --- a/airbyte-integrations/connectors/source-spacex-api/poetry.lock +++ b/airbyte-integrations/connectors/source-spacex-api/poetry.lock @@ -410,13 +410,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] @@ -566,13 +566,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.84" +version = "0.1.85" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.84-py3-none-any.whl", hash = "sha256:01f3c6390dba26c583bac8dd0e551ce3d0509c7f55cad714db0b5c8d36e4c7ff"}, - {file = "langsmith-0.1.84.tar.gz", hash = "sha256:5220c0439838b9a5bd320fd3686be505c5083dcee22d2452006c23891153bea1"}, + {file = "langsmith-0.1.85-py3-none-any.whl", hash = "sha256:c1f94384f10cea96f7b4d33fd3db7ec180c03c7468877d50846f881d2017ff94"}, + {file = "langsmith-0.1.85.tar.gz", hash = "sha256:acff31f9e53efa48586cf8e32f65625a335c74d7c4fa306d1655ac18452296f6"}, ] [package.dependencies] diff --git a/airbyte-integrations/connectors/source-spacex-api/pyproject.toml b/airbyte-integrations/connectors/source-spacex-api/pyproject.toml index 37803a70da8b..f679248353b7 100644 --- a/airbyte-integrations/connectors/source-spacex-api/pyproject.toml +++ b/airbyte-integrations/connectors/source-spacex-api/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.1.9" +version = "0.1.10" name = "source-spacex-api" description = "Source implementation for Spacex Api." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/spacex-api.md b/docs/integrations/sources/spacex-api.md index 0fa044e8e45b..fdfbb7cefae5 100644 --- a/docs/integrations/sources/spacex-api.md +++ b/docs/integrations/sources/spacex-api.md @@ -75,6 +75,7 @@ The SpaceX API has both v4 and v5 for [launches](https://github.com/r-spacex/Spa | Version | Date | Pull Request | Subject | |:--------|:-----------|:---------------------------------------------------------|:--------------------------------------------------| +| 0.1.10 | 2024-07-13 | [41909](https://github.com/airbytehq/airbyte/pull/41909) | Update dependencies | | 0.1.9 | 2024-07-10 | [41569](https://github.com/airbytehq/airbyte/pull/41569) | Update dependencies | | 0.1.8 | 2024-07-09 | [41089](https://github.com/airbytehq/airbyte/pull/41089) | Update dependencies | | 0.1.7 | 2024-07-06 | [40771](https://github.com/airbytehq/airbyte/pull/40771) | Update dependencies | From 9d6fd22616403423b1cc7db950fa8c8f39625dcc Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:18:36 +0200 Subject: [PATCH 032/260] =?UTF-8?q?=F0=9F=90=99=20source-dockerhub:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-07-13]=20(#41908)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-dockerhub/metadata.yaml | 2 +- .../connectors/source-dockerhub/poetry.lock | 6 +++--- .../connectors/source-dockerhub/pyproject.toml | 2 +- docs/integrations/sources/dockerhub.md | 1 + 4 files changed, 6 insertions(+), 5 deletions(-) diff --git a/airbyte-integrations/connectors/source-dockerhub/metadata.yaml b/airbyte-integrations/connectors/source-dockerhub/metadata.yaml index a26276a37ef1..5ad9ba8c5ef1 100644 --- a/airbyte-integrations/connectors/source-dockerhub/metadata.yaml +++ b/airbyte-integrations/connectors/source-dockerhub/metadata.yaml @@ -11,7 +11,7 @@ data: connectorSubtype: api connectorType: source definitionId: 72d405a3-56d8-499f-a571-667c03406e43 - dockerImageTag: 0.2.10 + dockerImageTag: 0.2.11 dockerRepository: airbyte/source-dockerhub documentationUrl: https://docs.airbyte.com/integrations/sources/dockerhub githubIssueLabel: source-dockerhub diff --git a/airbyte-integrations/connectors/source-dockerhub/poetry.lock b/airbyte-integrations/connectors/source-dockerhub/poetry.lock index cce71c3b0e79..a1ccc2d0271d 100644 --- a/airbyte-integrations/connectors/source-dockerhub/poetry.lock +++ b/airbyte-integrations/connectors/source-dockerhub/poetry.lock @@ -288,13 +288,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] diff --git a/airbyte-integrations/connectors/source-dockerhub/pyproject.toml b/airbyte-integrations/connectors/source-dockerhub/pyproject.toml index 86b360ac951d..f37004eb3378 100644 --- a/airbyte-integrations/connectors/source-dockerhub/pyproject.toml +++ b/airbyte-integrations/connectors/source-dockerhub/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.2.10" +version = "0.2.11" name = "source-dockerhub" description = "Source implementation for Dockerhub." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/dockerhub.md b/docs/integrations/sources/dockerhub.md index 48153a97104c..3b61c296c3e0 100644 --- a/docs/integrations/sources/dockerhub.md +++ b/docs/integrations/sources/dockerhub.md @@ -39,6 +39,7 @@ This connector has been tested for the Airbyte organization, which has 266 repos | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :------------------------------------------------------------------------------ | +| 0.2.11 | 2024-07-13 | [41908](https://github.com/airbytehq/airbyte/pull/41908) | Update dependencies | | 0.2.10 | 2024-07-10 | [41515](https://github.com/airbytehq/airbyte/pull/41515) | Update dependencies | | 0.2.9 | 2024-07-09 | [41079](https://github.com/airbytehq/airbyte/pull/41079) | Update dependencies | | 0.2.8 | 2024-07-06 | [40830](https://github.com/airbytehq/airbyte/pull/40830) | Update dependencies | From 09bbc81400db5dbb1a151f660d187a55486a9b3e Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:18:39 +0200 Subject: [PATCH 033/260] =?UTF-8?q?=F0=9F=90=99=20source-commcare:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-07-13]=20(#41907)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-commcare/metadata.yaml | 2 +- airbyte-integrations/connectors/source-commcare/poetry.lock | 6 +++--- .../connectors/source-commcare/pyproject.toml | 2 +- docs/integrations/sources/commcare.md | 1 + 4 files changed, 6 insertions(+), 5 deletions(-) diff --git a/airbyte-integrations/connectors/source-commcare/metadata.yaml b/airbyte-integrations/connectors/source-commcare/metadata.yaml index 19ec98a5e3ca..3e1c8f9049eb 100644 --- a/airbyte-integrations/connectors/source-commcare/metadata.yaml +++ b/airbyte-integrations/connectors/source-commcare/metadata.yaml @@ -2,7 +2,7 @@ data: connectorSubtype: api connectorType: source definitionId: f39208dc-7e1c-48b8-919b-5006360cc27f - dockerImageTag: 0.1.7 + dockerImageTag: 0.1.8 dockerRepository: airbyte/source-commcare githubIssueLabel: source-commcare icon: commcare.svg diff --git a/airbyte-integrations/connectors/source-commcare/poetry.lock b/airbyte-integrations/connectors/source-commcare/poetry.lock index 4ccd836d44c3..21ead83b391c 100644 --- a/airbyte-integrations/connectors/source-commcare/poetry.lock +++ b/airbyte-integrations/connectors/source-commcare/poetry.lock @@ -298,13 +298,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] diff --git a/airbyte-integrations/connectors/source-commcare/pyproject.toml b/airbyte-integrations/connectors/source-commcare/pyproject.toml index 8f46ffdb986c..825cd9fdcdaa 100644 --- a/airbyte-integrations/connectors/source-commcare/pyproject.toml +++ b/airbyte-integrations/connectors/source-commcare/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.1.7" +version = "0.1.8" name = "source-commcare" description = "Source implementation for Commcare." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/commcare.md b/docs/integrations/sources/commcare.md index a582728cb7b2..eacfb3cfea21 100644 --- a/docs/integrations/sources/commcare.md +++ b/docs/integrations/sources/commcare.md @@ -40,6 +40,7 @@ The Commcare source connector supports the following streams: | Version | Date | Pull Request | Subject | | ------- | ---------- | -------------------------------------------------------- | ------------------------- | +| 0.1.8 | 2024-07-13 | [41907](https://github.com/airbytehq/airbyte/pull/41907) | Update dependencies | | 0.1.7 | 2024-07-10 | [41512](https://github.com/airbytehq/airbyte/pull/41512) | Update dependencies | | 0.1.6 | 2024-07-06 | [40807](https://github.com/airbytehq/airbyte/pull/40807) | Update dependencies | | 0.1.5 | 2024-06-26 | [40542](https://github.com/airbytehq/airbyte/pull/40542) | Update dependencies | From 82885ea666ae8db50e16b4d8012013c57ec07123 Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:18:42 +0200 Subject: [PATCH 034/260] =?UTF-8?q?=F0=9F=90=99=20source-zapier-supported-?= =?UTF-8?q?storage:=20run=20up-to-date=20pipeline=20[2024-07-13]=20(#41906?= =?UTF-8?q?)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../source-zapier-supported-storage/metadata.yaml | 2 +- .../connectors/source-zapier-supported-storage/poetry.lock | 6 +++--- .../source-zapier-supported-storage/pyproject.toml | 2 +- docs/integrations/sources/zapier-supported-storage.md | 1 + 4 files changed, 6 insertions(+), 5 deletions(-) diff --git a/airbyte-integrations/connectors/source-zapier-supported-storage/metadata.yaml b/airbyte-integrations/connectors/source-zapier-supported-storage/metadata.yaml index e46dc02c051e..71173db62d5b 100644 --- a/airbyte-integrations/connectors/source-zapier-supported-storage/metadata.yaml +++ b/airbyte-integrations/connectors/source-zapier-supported-storage/metadata.yaml @@ -7,7 +7,7 @@ data: connectorSubtype: api connectorType: source definitionId: b8c917bc-7d1b-4828-995f-6726820266d0 - dockerImageTag: 0.1.10 + dockerImageTag: 0.1.11 dockerRepository: airbyte/source-zapier-supported-storage documentationUrl: https://docs.airbyte.com/integrations/sources/zapier-supported-storage githubIssueLabel: source-zapier-supported-storage diff --git a/airbyte-integrations/connectors/source-zapier-supported-storage/poetry.lock b/airbyte-integrations/connectors/source-zapier-supported-storage/poetry.lock index 6f83e5bed3a6..c0f7f643d050 100644 --- a/airbyte-integrations/connectors/source-zapier-supported-storage/poetry.lock +++ b/airbyte-integrations/connectors/source-zapier-supported-storage/poetry.lock @@ -288,13 +288,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] diff --git a/airbyte-integrations/connectors/source-zapier-supported-storage/pyproject.toml b/airbyte-integrations/connectors/source-zapier-supported-storage/pyproject.toml index d335ecbc213e..3c27321bbec9 100644 --- a/airbyte-integrations/connectors/source-zapier-supported-storage/pyproject.toml +++ b/airbyte-integrations/connectors/source-zapier-supported-storage/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.1.10" +version = "0.1.11" name = "source-zapier-supported-storage" description = "Source implementation for Zapier Supported Storage." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/zapier-supported-storage.md b/docs/integrations/sources/zapier-supported-storage.md index 650090b2bcaa..7e4a83f4cb3a 100644 --- a/docs/integrations/sources/zapier-supported-storage.md +++ b/docs/integrations/sources/zapier-supported-storage.md @@ -25,6 +25,7 @@ The Zapier Supported Storage Connector can be used to sync your [Zapier](https:/ | Version | Date | Pull Request | Subject | |:--------|:-----------|:---------------------------------------------------------| | +| 0.1.11 | 2024-07-13 | [41906](https://github.com/airbytehq/airbyte/pull/41906) | Update dependencies | | 0.1.10 | 2024-07-10 | [41563](https://github.com/airbytehq/airbyte/pull/41563) | Update dependencies | | 0.1.9 | 2024-07-09 | [41122](https://github.com/airbytehq/airbyte/pull/41122) | Update dependencies | | 0.1.8 | 2024-07-06 | [40980](https://github.com/airbytehq/airbyte/pull/40980) | Update dependencies | From 5174df40702fe8200570ad517ffb843ced5e3a7e Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:18:46 +0200 Subject: [PATCH 035/260] =?UTF-8?q?=F0=9F=90=99=20source-my-hours:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-07-13]=20(#41905)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-my-hours/metadata.yaml | 2 +- .../connectors/source-my-hours/poetry.lock | 12 ++++++------ .../connectors/source-my-hours/pyproject.toml | 2 +- docs/integrations/sources/my-hours.md | 1 + 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/airbyte-integrations/connectors/source-my-hours/metadata.yaml b/airbyte-integrations/connectors/source-my-hours/metadata.yaml index d57eba85bc4c..45d0cc7d5cc9 100644 --- a/airbyte-integrations/connectors/source-my-hours/metadata.yaml +++ b/airbyte-integrations/connectors/source-my-hours/metadata.yaml @@ -19,7 +19,7 @@ data: connectorSubtype: api connectorType: source definitionId: 722ba4bf-06ec-45a4-8dd5-72e4a5cf3903 - dockerImageTag: 0.2.5 + dockerImageTag: 0.2.6 dockerRepository: airbyte/source-my-hours githubIssueLabel: source-my-hours icon: my-hours.svg diff --git a/airbyte-integrations/connectors/source-my-hours/poetry.lock b/airbyte-integrations/connectors/source-my-hours/poetry.lock index cb1a23ecd43b..e0918c3f13c6 100644 --- a/airbyte-integrations/connectors/source-my-hours/poetry.lock +++ b/airbyte-integrations/connectors/source-my-hours/poetry.lock @@ -400,13 +400,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] @@ -556,13 +556,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.84" +version = "0.1.85" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.84-py3-none-any.whl", hash = "sha256:01f3c6390dba26c583bac8dd0e551ce3d0509c7f55cad714db0b5c8d36e4c7ff"}, - {file = "langsmith-0.1.84.tar.gz", hash = "sha256:5220c0439838b9a5bd320fd3686be505c5083dcee22d2452006c23891153bea1"}, + {file = "langsmith-0.1.85-py3-none-any.whl", hash = "sha256:c1f94384f10cea96f7b4d33fd3db7ec180c03c7468877d50846f881d2017ff94"}, + {file = "langsmith-0.1.85.tar.gz", hash = "sha256:acff31f9e53efa48586cf8e32f65625a335c74d7c4fa306d1655ac18452296f6"}, ] [package.dependencies] diff --git a/airbyte-integrations/connectors/source-my-hours/pyproject.toml b/airbyte-integrations/connectors/source-my-hours/pyproject.toml index 49175acf0a66..5563035ef166 100644 --- a/airbyte-integrations/connectors/source-my-hours/pyproject.toml +++ b/airbyte-integrations/connectors/source-my-hours/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.2.5" +version = "0.2.6" name = "source-my-hours" description = "Source implementation for my-hours." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/my-hours.md b/docs/integrations/sources/my-hours.md index 36c8ce8ff4b7..0af9a3678299 100644 --- a/docs/integrations/sources/my-hours.md +++ b/docs/integrations/sources/my-hours.md @@ -36,6 +36,7 @@ Depending on the amount of team members and time logs the source provides a prop | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :--------------------------------- | +| 0.2.6 | 2024-07-13 | [41905](https://github.com/airbytehq/airbyte/pull/41905) | Update dependencies | | 0.2.5 | 2024-07-10 | [41297](https://github.com/airbytehq/airbyte/pull/41297) | Update dependencies | | 0.2.4 | 2024-07-06 | [40993](https://github.com/airbytehq/airbyte/pull/40993) | Update dependencies | | 0.2.3 | 2024-06-25 | [40286](https://github.com/airbytehq/airbyte/pull/40286) | Update dependencies | From 45479a981e01d6fac357a64360284b70208763cf Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:18:48 +0200 Subject: [PATCH 036/260] =?UTF-8?q?=F0=9F=90=99=20source-us-census:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-07-13]=20(#41904)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-us-census/metadata.yaml | 2 +- .../connectors/source-us-census/poetry.lock | 6 +++--- .../connectors/source-us-census/pyproject.toml | 2 +- docs/integrations/sources/us-census.md | 1 + 4 files changed, 6 insertions(+), 5 deletions(-) diff --git a/airbyte-integrations/connectors/source-us-census/metadata.yaml b/airbyte-integrations/connectors/source-us-census/metadata.yaml index d0274d4890b6..0a5732f51fdd 100644 --- a/airbyte-integrations/connectors/source-us-census/metadata.yaml +++ b/airbyte-integrations/connectors/source-us-census/metadata.yaml @@ -2,7 +2,7 @@ data: connectorSubtype: api connectorType: source definitionId: c4cfaeda-c757-489a-8aba-859fb08b6970 - dockerImageTag: 0.1.11 + dockerImageTag: 0.1.12 dockerRepository: airbyte/source-us-census githubIssueLabel: source-us-census icon: uscensus.svg diff --git a/airbyte-integrations/connectors/source-us-census/poetry.lock b/airbyte-integrations/connectors/source-us-census/poetry.lock index e5b3be17c427..76668de856b0 100644 --- a/airbyte-integrations/connectors/source-us-census/poetry.lock +++ b/airbyte-integrations/connectors/source-us-census/poetry.lock @@ -288,13 +288,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] diff --git a/airbyte-integrations/connectors/source-us-census/pyproject.toml b/airbyte-integrations/connectors/source-us-census/pyproject.toml index e5592fd50e84..3f7b158e3a20 100644 --- a/airbyte-integrations/connectors/source-us-census/pyproject.toml +++ b/airbyte-integrations/connectors/source-us-census/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.1.11" +version = "0.1.12" name = "source-us-census" description = "Source implementation for Us Census." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/us-census.md b/docs/integrations/sources/us-census.md index 9bac0ae2c777..98355092479a 100644 --- a/docs/integrations/sources/us-census.md +++ b/docs/integrations/sources/us-census.md @@ -45,6 +45,7 @@ In addition, to understand how to configure the dataset path and query parameter | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :------------------------------------------------ | +| 0.1.12 | 2024-07-13 | [41904](https://github.com/airbytehq/airbyte/pull/41904) | Update dependencies | | 0.1.11 | 2024-07-10 | [41491](https://github.com/airbytehq/airbyte/pull/41491) | Update dependencies | | 0.1.10 | 2024-07-09 | [41166](https://github.com/airbytehq/airbyte/pull/41166) | Update dependencies | | 0.1.9 | 2024-07-06 | [40772](https://github.com/airbytehq/airbyte/pull/40772) | Update dependencies | From 3a1ec814c3a1f7a8e675328335c107004d37dac8 Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:18:51 +0200 Subject: [PATCH 037/260] =?UTF-8?q?=F0=9F=90=99=20source-klaviyo:=20run=20?= =?UTF-8?q?up-to-date=20pipeline=20[2024-07-13]=20(#41903)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-klaviyo/metadata.yaml | 2 +- .../connectors/source-klaviyo/poetry.lock | 12 ++++++------ .../connectors/source-klaviyo/pyproject.toml | 2 +- docs/integrations/sources/klaviyo.md | 1 + 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/airbyte-integrations/connectors/source-klaviyo/metadata.yaml b/airbyte-integrations/connectors/source-klaviyo/metadata.yaml index e2e019be0cab..a6411336db7c 100644 --- a/airbyte-integrations/connectors/source-klaviyo/metadata.yaml +++ b/airbyte-integrations/connectors/source-klaviyo/metadata.yaml @@ -8,7 +8,7 @@ data: definitionId: 95e8cffd-b8c4-4039-968e-d32fb4a69bde connectorBuildOptions: baseImage: docker.io/airbyte/python-connector-base:2.0.0@sha256:c44839ba84406116e8ba68722a0f30e8f6e7056c726f447681bb9e9ece8bd916 - dockerImageTag: 2.7.5 + dockerImageTag: 2.7.6 dockerRepository: airbyte/source-klaviyo githubIssueLabel: source-klaviyo icon: klaviyo.svg diff --git a/airbyte-integrations/connectors/source-klaviyo/poetry.lock b/airbyte-integrations/connectors/source-klaviyo/poetry.lock index e2563f018219..38772e0b63f6 100644 --- a/airbyte-integrations/connectors/source-klaviyo/poetry.lock +++ b/airbyte-integrations/connectors/source-klaviyo/poetry.lock @@ -410,13 +410,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] @@ -566,13 +566,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.84" +version = "0.1.85" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.84-py3-none-any.whl", hash = "sha256:01f3c6390dba26c583bac8dd0e551ce3d0509c7f55cad714db0b5c8d36e4c7ff"}, - {file = "langsmith-0.1.84.tar.gz", hash = "sha256:5220c0439838b9a5bd320fd3686be505c5083dcee22d2452006c23891153bea1"}, + {file = "langsmith-0.1.85-py3-none-any.whl", hash = "sha256:c1f94384f10cea96f7b4d33fd3db7ec180c03c7468877d50846f881d2017ff94"}, + {file = "langsmith-0.1.85.tar.gz", hash = "sha256:acff31f9e53efa48586cf8e32f65625a335c74d7c4fa306d1655ac18452296f6"}, ] [package.dependencies] diff --git a/airbyte-integrations/connectors/source-klaviyo/pyproject.toml b/airbyte-integrations/connectors/source-klaviyo/pyproject.toml index 86a886a05d8e..7a80de301774 100644 --- a/airbyte-integrations/connectors/source-klaviyo/pyproject.toml +++ b/airbyte-integrations/connectors/source-klaviyo/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "2.7.5" +version = "2.7.6" name = "source-klaviyo" description = "Source implementation for Klaviyo." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/klaviyo.md b/docs/integrations/sources/klaviyo.md index e742fbf0e3f1..78bbc711dce5 100644 --- a/docs/integrations/sources/klaviyo.md +++ b/docs/integrations/sources/klaviyo.md @@ -75,6 +75,7 @@ Stream `Events Detailed` contains field `name` for `metric` relationship - addit | Version | Date | Pull Request | Subject | |:---------|:-----------|:-----------------------------------------------------------|:------------------------------------------------------------------------------------------------------------------------------| +| 2.7.6 | 2024-07-13 | [41903](https://github.com/airbytehq/airbyte/pull/41903) | Update dependencies | | 2.7.5 | 2024-07-10 | [41548](https://github.com/airbytehq/airbyte/pull/41548) | Update dependencies | | 2.7.4 | 2024-07-09 | [41211](https://github.com/airbytehq/airbyte/pull/41211) | Update dependencies | | 2.7.3 | 2024-07-06 | [40770](https://github.com/airbytehq/airbyte/pull/40770) | Update dependencies | From 7ba45479afe7e6f6df64c872bf3c94c21b98e0c5 Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:18:54 +0200 Subject: [PATCH 038/260] =?UTF-8?q?=F0=9F=90=99=20source-genesys:=20run=20?= =?UTF-8?q?up-to-date=20pipeline=20[2024-07-13]=20(#41902)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-genesys/metadata.yaml | 2 +- airbyte-integrations/connectors/source-genesys/poetry.lock | 6 +++--- .../connectors/source-genesys/pyproject.toml | 2 +- docs/integrations/sources/genesys.md | 1 + 4 files changed, 6 insertions(+), 5 deletions(-) diff --git a/airbyte-integrations/connectors/source-genesys/metadata.yaml b/airbyte-integrations/connectors/source-genesys/metadata.yaml index ee4caa3c845d..203002c04cd3 100644 --- a/airbyte-integrations/connectors/source-genesys/metadata.yaml +++ b/airbyte-integrations/connectors/source-genesys/metadata.yaml @@ -2,7 +2,7 @@ data: connectorSubtype: api connectorType: source definitionId: 5ea4459a-8f1a-452a-830f-a65c38cc438d - dockerImageTag: 0.1.6 + dockerImageTag: 0.1.7 dockerRepository: airbyte/source-genesys githubIssueLabel: source-genesys icon: genesys.svg diff --git a/airbyte-integrations/connectors/source-genesys/poetry.lock b/airbyte-integrations/connectors/source-genesys/poetry.lock index 6f83e5bed3a6..c0f7f643d050 100644 --- a/airbyte-integrations/connectors/source-genesys/poetry.lock +++ b/airbyte-integrations/connectors/source-genesys/poetry.lock @@ -288,13 +288,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] diff --git a/airbyte-integrations/connectors/source-genesys/pyproject.toml b/airbyte-integrations/connectors/source-genesys/pyproject.toml index b8b9d3689bea..da3f41c2dd39 100644 --- a/airbyte-integrations/connectors/source-genesys/pyproject.toml +++ b/airbyte-integrations/connectors/source-genesys/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.1.6" +version = "0.1.7" name = "source-genesys" description = "Source implementation for Genesys." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/genesys.md b/docs/integrations/sources/genesys.md index da6fed0b3e76..5240f365554c 100644 --- a/docs/integrations/sources/genesys.md +++ b/docs/integrations/sources/genesys.md @@ -31,6 +31,7 @@ You can follow the documentation on [API credentials](https://developer.genesys. | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :----------------------------- | +| 0.1.7 | 2024-07-13 | [41902](https://github.com/airbytehq/airbyte/pull/41902) | Update dependencies | | 0.1.6 | 2024-07-10 | [41438](https://github.com/airbytehq/airbyte/pull/41438) | Update dependencies | | 0.1.5 | 2024-07-06 | [40945](https://github.com/airbytehq/airbyte/pull/40945) | Update dependencies | | 0.1.4 | 2024-06-25 | [40383](https://github.com/airbytehq/airbyte/pull/40383) | Update dependencies | From 22a1b7ccb1298dcfec13e056787603e055a08d8f Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:18:57 +0200 Subject: [PATCH 039/260] =?UTF-8?q?=F0=9F=90=99=20destination-pinecone:=20?= =?UTF-8?q?run=20up-to-date=20pipeline=20[2024-07-13]=20(#41901)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/destination-pinecone/metadata.yaml | 2 +- .../connectors/destination-pinecone/poetry.lock | 12 ++++++------ .../connectors/destination-pinecone/pyproject.toml | 2 +- docs/integrations/destinations/pinecone.md | 1 + 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/airbyte-integrations/connectors/destination-pinecone/metadata.yaml b/airbyte-integrations/connectors/destination-pinecone/metadata.yaml index c00fc8645353..e330bc38f335 100644 --- a/airbyte-integrations/connectors/destination-pinecone/metadata.yaml +++ b/airbyte-integrations/connectors/destination-pinecone/metadata.yaml @@ -13,7 +13,7 @@ data: connectorSubtype: vectorstore connectorType: destination definitionId: 3d2b6f84-7f0d-4e3f-a5e5-7c7d4b50eabd - dockerImageTag: 0.1.11 + dockerImageTag: 0.1.12 dockerRepository: airbyte/destination-pinecone documentationUrl: https://docs.airbyte.com/integrations/destinations/pinecone githubIssueLabel: destination-pinecone diff --git a/airbyte-integrations/connectors/destination-pinecone/poetry.lock b/airbyte-integrations/connectors/destination-pinecone/poetry.lock index 2b0c038e1852..77e50c48400d 100644 --- a/airbyte-integrations/connectors/destination-pinecone/poetry.lock +++ b/airbyte-integrations/connectors/destination-pinecone/poetry.lock @@ -648,13 +648,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] @@ -1400,13 +1400,13 @@ extended-testing = ["beautifulsoup4 (>=4.12.3,<5.0.0)", "lxml (>=4.9.3,<6.0)"] [[package]] name = "langsmith" -version = "0.1.84" +version = "0.1.85" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.84-py3-none-any.whl", hash = "sha256:01f3c6390dba26c583bac8dd0e551ce3d0509c7f55cad714db0b5c8d36e4c7ff"}, - {file = "langsmith-0.1.84.tar.gz", hash = "sha256:5220c0439838b9a5bd320fd3686be505c5083dcee22d2452006c23891153bea1"}, + {file = "langsmith-0.1.85-py3-none-any.whl", hash = "sha256:c1f94384f10cea96f7b4d33fd3db7ec180c03c7468877d50846f881d2017ff94"}, + {file = "langsmith-0.1.85.tar.gz", hash = "sha256:acff31f9e53efa48586cf8e32f65625a335c74d7c4fa306d1655ac18452296f6"}, ] [package.dependencies] diff --git a/airbyte-integrations/connectors/destination-pinecone/pyproject.toml b/airbyte-integrations/connectors/destination-pinecone/pyproject.toml index 122a79db74c1..180b72ce5a7e 100644 --- a/airbyte-integrations/connectors/destination-pinecone/pyproject.toml +++ b/airbyte-integrations/connectors/destination-pinecone/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name = "airbyte-destination-pinecone" -version = "0.1.11" +version = "0.1.12" description = "Airbyte destination implementation for Pinecone." authors = ["Airbyte "] license = "MIT" diff --git a/docs/integrations/destinations/pinecone.md b/docs/integrations/destinations/pinecone.md index cad9c8be640b..0d09516b44d1 100644 --- a/docs/integrations/destinations/pinecone.md +++ b/docs/integrations/destinations/pinecone.md @@ -79,6 +79,7 @@ OpenAI and Fake embeddings produce vectors with 1536 dimensions, and the Cohere | Version | Date | Pull Request | Subject | | :------ | :--------- | :-------------------------------------------------------- | :--------------------------------------------------------------------------------------------------------------------------- | +| 0.1.12 | 2024-07-13 | [41901](https://github.com/airbytehq/airbyte/pull/41901) | Update dependencies | | 0.1.11 | 2024-07-10 | [41598](https://github.com/airbytehq/airbyte/pull/41598) | Update dependencies | | 0.1.10 | 2024-07-09 | [41194](https://github.com/airbytehq/airbyte/pull/41194) | Update dependencies | | 0.1.9 | 2024-07-07 | [40753](https://github.com/airbytehq/airbyte/pull/40753) | Fix a regression with AirbyteLogger | From 74dcfde5348d0b992fa60bd91980f0d8778aa019 Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:19:01 +0200 Subject: [PATCH 040/260] =?UTF-8?q?=F0=9F=90=99=20source-firebase-realtime?= =?UTF-8?q?-database:=20run=20up-to-date=20pipeline=20[2024-07-13]=20(#419?= =?UTF-8?q?00)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../source-firebase-realtime-database/metadata.yaml | 2 +- .../source-firebase-realtime-database/poetry.lock | 12 ++++++------ .../source-firebase-realtime-database/pyproject.toml | 2 +- .../sources/firebase-realtime-database.md | 1 + 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/airbyte-integrations/connectors/source-firebase-realtime-database/metadata.yaml b/airbyte-integrations/connectors/source-firebase-realtime-database/metadata.yaml index 37b13c3afc4c..fbafebd1ea46 100644 --- a/airbyte-integrations/connectors/source-firebase-realtime-database/metadata.yaml +++ b/airbyte-integrations/connectors/source-firebase-realtime-database/metadata.yaml @@ -5,7 +5,7 @@ data: connectorSubtype: database connectorType: source definitionId: acb5f973-a565-441e-992f-4946f3e65662 - dockerImageTag: 0.1.10 + dockerImageTag: 0.1.11 dockerRepository: airbyte/source-firebase-realtime-database githubIssueLabel: source-firebase-realtime-database license: MIT diff --git a/airbyte-integrations/connectors/source-firebase-realtime-database/poetry.lock b/airbyte-integrations/connectors/source-firebase-realtime-database/poetry.lock index c869c01b3e10..be60678ef258 100644 --- a/airbyte-integrations/connectors/source-firebase-realtime-database/poetry.lock +++ b/airbyte-integrations/connectors/source-firebase-realtime-database/poetry.lock @@ -430,13 +430,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] @@ -951,13 +951,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.84" +version = "0.1.85" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.84-py3-none-any.whl", hash = "sha256:01f3c6390dba26c583bac8dd0e551ce3d0509c7f55cad714db0b5c8d36e4c7ff"}, - {file = "langsmith-0.1.84.tar.gz", hash = "sha256:5220c0439838b9a5bd320fd3686be505c5083dcee22d2452006c23891153bea1"}, + {file = "langsmith-0.1.85-py3-none-any.whl", hash = "sha256:c1f94384f10cea96f7b4d33fd3db7ec180c03c7468877d50846f881d2017ff94"}, + {file = "langsmith-0.1.85.tar.gz", hash = "sha256:acff31f9e53efa48586cf8e32f65625a335c74d7c4fa306d1655ac18452296f6"}, ] [package.dependencies] diff --git a/airbyte-integrations/connectors/source-firebase-realtime-database/pyproject.toml b/airbyte-integrations/connectors/source-firebase-realtime-database/pyproject.toml index 534bbb9a6d89..fd1efb50aa06 100644 --- a/airbyte-integrations/connectors/source-firebase-realtime-database/pyproject.toml +++ b/airbyte-integrations/connectors/source-firebase-realtime-database/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.1.10" +version = "0.1.11" name = "source-firebase-realtime-database" description = "Source implementation for Firebase Realtime Database." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/firebase-realtime-database.md b/docs/integrations/sources/firebase-realtime-database.md index ad785e441773..74a27cf33942 100644 --- a/docs/integrations/sources/firebase-realtime-database.md +++ b/docs/integrations/sources/firebase-realtime-database.md @@ -79,6 +79,7 @@ Once you've configured Firebase Realtime Database as a source, delete the Servic | Version | Date | Pull Request | Subject | | :------ | :--------- | :--------------------------------------------------------- | :----------------------------------------- | +| 0.1.11 | 2024-07-13 | [41900](https://github.com/airbytehq/airbyte/pull/41900) | Update dependencies | | 0.1.10 | 2024-07-10 | [41469](https://github.com/airbytehq/airbyte/pull/41469) | Update dependencies | | 0.1.9 | 2024-07-06 | [40816](https://github.com/airbytehq/airbyte/pull/40816) | Update dependencies | | 0.1.8 | 2024-06-29 | [40628](https://github.com/airbytehq/airbyte/pull/40628) | Update dependencies | From 92a25aa9a377ca40a1f8b1d316c2d5c91b97b076 Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:19:04 +0200 Subject: [PATCH 041/260] =?UTF-8?q?=F0=9F=90=99=20source-auth0:=20run=20up?= =?UTF-8?q?-to-date=20pipeline=20[2024-07-13]=20(#41899)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-auth0/metadata.yaml | 2 +- .../connectors/source-auth0/poetry.lock | 12 ++++++------ .../connectors/source-auth0/pyproject.toml | 2 +- docs/integrations/sources/auth0.md | 1 + 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/airbyte-integrations/connectors/source-auth0/metadata.yaml b/airbyte-integrations/connectors/source-auth0/metadata.yaml index 44a75b137116..67f7eb104660 100644 --- a/airbyte-integrations/connectors/source-auth0/metadata.yaml +++ b/airbyte-integrations/connectors/source-auth0/metadata.yaml @@ -10,7 +10,7 @@ data: connectorSubtype: api connectorType: source definitionId: 6c504e48-14aa-4221-9a72-19cf5ff1ae78 - dockerImageTag: 0.5.9 + dockerImageTag: 0.5.10 dockerRepository: airbyte/source-auth0 documentationUrl: https://docs.airbyte.com/integrations/sources/auth0 githubIssueLabel: source-auth0 diff --git a/airbyte-integrations/connectors/source-auth0/poetry.lock b/airbyte-integrations/connectors/source-auth0/poetry.lock index 9b0cf7c8a944..cc9d1ecb9669 100644 --- a/airbyte-integrations/connectors/source-auth0/poetry.lock +++ b/airbyte-integrations/connectors/source-auth0/poetry.lock @@ -410,13 +410,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] @@ -566,13 +566,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.84" +version = "0.1.85" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.84-py3-none-any.whl", hash = "sha256:01f3c6390dba26c583bac8dd0e551ce3d0509c7f55cad714db0b5c8d36e4c7ff"}, - {file = "langsmith-0.1.84.tar.gz", hash = "sha256:5220c0439838b9a5bd320fd3686be505c5083dcee22d2452006c23891153bea1"}, + {file = "langsmith-0.1.85-py3-none-any.whl", hash = "sha256:c1f94384f10cea96f7b4d33fd3db7ec180c03c7468877d50846f881d2017ff94"}, + {file = "langsmith-0.1.85.tar.gz", hash = "sha256:acff31f9e53efa48586cf8e32f65625a335c74d7c4fa306d1655ac18452296f6"}, ] [package.dependencies] diff --git a/airbyte-integrations/connectors/source-auth0/pyproject.toml b/airbyte-integrations/connectors/source-auth0/pyproject.toml index b3c208d85ba4..6a2156a02d41 100644 --- a/airbyte-integrations/connectors/source-auth0/pyproject.toml +++ b/airbyte-integrations/connectors/source-auth0/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.5.9" +version = "0.5.10" name = "source-auth0" description = "Source implementation for Auth0." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/auth0.md b/docs/integrations/sources/auth0.md index 08f1e05877d7..6d6345be61b0 100644 --- a/docs/integrations/sources/auth0.md +++ b/docs/integrations/sources/auth0.md @@ -60,6 +60,7 @@ The connector is restricted by Auth0 [rate limits](https://auth0.com/docs/troubl | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :---------------------------------------------------------------------- | +| 0.5.10 | 2024-07-13 | [41899](https://github.com/airbytehq/airbyte/pull/41899) | Update dependencies | | 0.5.9 | 2024-07-10 | [41417](https://github.com/airbytehq/airbyte/pull/41417) | Update dependencies | | 0.5.8 | 2024-07-09 | [41320](https://github.com/airbytehq/airbyte/pull/41320) | Update dependencies | | 0.5.7 | 2024-07-06 | [40840](https://github.com/airbytehq/airbyte/pull/40840) | Update dependencies | From c969fffea21cdc14c7345a6fc47781834790ebe2 Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:19:07 +0200 Subject: [PATCH 042/260] =?UTF-8?q?=F0=9F=90=99=20source-rd-station-market?= =?UTF-8?q?ing:=20run=20up-to-date=20pipeline=20[2024-07-13]=20(#41898)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-rd-station-marketing/metadata.yaml | 2 +- .../connectors/source-rd-station-marketing/poetry.lock | 6 +++--- .../connectors/source-rd-station-marketing/pyproject.toml | 2 +- docs/integrations/sources/rd-station-marketing.md | 1 + 4 files changed, 6 insertions(+), 5 deletions(-) diff --git a/airbyte-integrations/connectors/source-rd-station-marketing/metadata.yaml b/airbyte-integrations/connectors/source-rd-station-marketing/metadata.yaml index 2e3b2b0c09c4..f449418b48be 100644 --- a/airbyte-integrations/connectors/source-rd-station-marketing/metadata.yaml +++ b/airbyte-integrations/connectors/source-rd-station-marketing/metadata.yaml @@ -2,7 +2,7 @@ data: connectorSubtype: api connectorType: source definitionId: fb141f29-be2a-450b-a4f2-2cd203a00f84 - dockerImageTag: 0.2.3 + dockerImageTag: 0.2.4 dockerRepository: airbyte/source-rd-station-marketing githubIssueLabel: source-rd-station-marketing icon: rdstation.svg diff --git a/airbyte-integrations/connectors/source-rd-station-marketing/poetry.lock b/airbyte-integrations/connectors/source-rd-station-marketing/poetry.lock index 6198ca5bdcf7..0527fc979116 100644 --- a/airbyte-integrations/connectors/source-rd-station-marketing/poetry.lock +++ b/airbyte-integrations/connectors/source-rd-station-marketing/poetry.lock @@ -288,13 +288,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] diff --git a/airbyte-integrations/connectors/source-rd-station-marketing/pyproject.toml b/airbyte-integrations/connectors/source-rd-station-marketing/pyproject.toml index dfd8abfeacdb..d954f9a365f9 100644 --- a/airbyte-integrations/connectors/source-rd-station-marketing/pyproject.toml +++ b/airbyte-integrations/connectors/source-rd-station-marketing/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.2.3" +version = "0.2.4" name = "source-rd-station-marketing" description = "Source implementation for RD Station Marketing." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/rd-station-marketing.md b/docs/integrations/sources/rd-station-marketing.md index b1ddbe2a34c3..03d0d3c52794 100644 --- a/docs/integrations/sources/rd-station-marketing.md +++ b/docs/integrations/sources/rd-station-marketing.md @@ -47,6 +47,7 @@ Each endpoint has its own performance limitations, which also consider the accou | Version | Date | Pull Request | Subject | | :------ | :--------- | :-------------------------------------------------------- | :------------------------------- | +| 0.2.4 | 2024-07-13 | [41898](https://github.com/airbytehq/airbyte/pull/41898) | Update dependencies | | 0.2.3 | 2024-07-10 | [41525](https://github.com/airbytehq/airbyte/pull/41525) | Update dependencies | | 0.2.2 | 2024-07-09 | [41232](https://github.com/airbytehq/airbyte/pull/41232) | Update dependencies | | 0.2.1 | 2024-07-06 | [40791](https://github.com/airbytehq/airbyte/pull/40791) | Update dependencies | From 154848cf2facefc9dac7ca3cd1ad5e91ac966d1c Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:19:11 +0200 Subject: [PATCH 043/260] =?UTF-8?q?=F0=9F=90=99=20source-polygon-stock-api?= =?UTF-8?q?:=20run=20up-to-date=20pipeline=20[2024-07-13]=20(#41897)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-polygon-stock-api/metadata.yaml | 2 +- .../connectors/source-polygon-stock-api/poetry.lock | 6 +++--- .../connectors/source-polygon-stock-api/pyproject.toml | 2 +- docs/integrations/sources/polygon-stock-api.md | 1 + 4 files changed, 6 insertions(+), 5 deletions(-) diff --git a/airbyte-integrations/connectors/source-polygon-stock-api/metadata.yaml b/airbyte-integrations/connectors/source-polygon-stock-api/metadata.yaml index 639d9f09529d..5a9d91ce4256 100644 --- a/airbyte-integrations/connectors/source-polygon-stock-api/metadata.yaml +++ b/airbyte-integrations/connectors/source-polygon-stock-api/metadata.yaml @@ -10,7 +10,7 @@ data: connectorSubtype: api connectorType: source definitionId: 5807d72f-0abc-49f9-8fa5-ae820007032b - dockerImageTag: 0.1.11 + dockerImageTag: 0.1.12 dockerRepository: airbyte/source-polygon-stock-api documentationUrl: https://docs.airbyte.com/integrations/sources/polygon-stock-api githubIssueLabel: source-polygon-stock-api diff --git a/airbyte-integrations/connectors/source-polygon-stock-api/poetry.lock b/airbyte-integrations/connectors/source-polygon-stock-api/poetry.lock index 6f83e5bed3a6..c0f7f643d050 100644 --- a/airbyte-integrations/connectors/source-polygon-stock-api/poetry.lock +++ b/airbyte-integrations/connectors/source-polygon-stock-api/poetry.lock @@ -288,13 +288,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] diff --git a/airbyte-integrations/connectors/source-polygon-stock-api/pyproject.toml b/airbyte-integrations/connectors/source-polygon-stock-api/pyproject.toml index 34f45273afa5..8dd0dddd4d6e 100644 --- a/airbyte-integrations/connectors/source-polygon-stock-api/pyproject.toml +++ b/airbyte-integrations/connectors/source-polygon-stock-api/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.1.11" +version = "0.1.12" name = "source-polygon-stock-api" description = "Source implementation for Polygon Stock Api." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/polygon-stock-api.md b/docs/integrations/sources/polygon-stock-api.md index b0b8f6ab0d49..3a5c6751301e 100644 --- a/docs/integrations/sources/polygon-stock-api.md +++ b/docs/integrations/sources/polygon-stock-api.md @@ -53,6 +53,7 @@ The following fields are required fields for the connector to work: | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :------------------------------------------------------------------------------ | +| 0.1.12 | 2024-07-13 | [41897](https://github.com/airbytehq/airbyte/pull/41897) | Update dependencies | | 0.1.11 | 2024-07-10 | [41391](https://github.com/airbytehq/airbyte/pull/41391) | Update dependencies | | 0.1.10 | 2024-07-06 | [40912](https://github.com/airbytehq/airbyte/pull/40912) | Update dependencies | | 0.1.9 | 2024-06-25 | [40360](https://github.com/airbytehq/airbyte/pull/40360) | Update dependencies | From c2f1c1f08ac3ec3740c3aeef86456cb17251fd42 Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:19:14 +0200 Subject: [PATCH 044/260] =?UTF-8?q?=F0=9F=90=99=20source-close-com:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-07-13]=20(#41896)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-close-com/metadata.yaml | 2 +- .../connectors/source-close-com/poetry.lock | 9 +++++---- .../connectors/source-close-com/pyproject.toml | 2 +- docs/integrations/sources/close-com.md | 1 + 4 files changed, 8 insertions(+), 6 deletions(-) diff --git a/airbyte-integrations/connectors/source-close-com/metadata.yaml b/airbyte-integrations/connectors/source-close-com/metadata.yaml index e88ae72e1b47..322366956970 100644 --- a/airbyte-integrations/connectors/source-close-com/metadata.yaml +++ b/airbyte-integrations/connectors/source-close-com/metadata.yaml @@ -8,7 +8,7 @@ data: connectorSubtype: api connectorType: source definitionId: dfffecb7-9a13-43e9-acdc-b92af7997ca9 - dockerImageTag: 0.5.8 + dockerImageTag: 0.5.9 dockerRepository: airbyte/source-close-com documentationUrl: https://docs.airbyte.com/integrations/sources/close-com githubIssueLabel: source-close-com diff --git a/airbyte-integrations/connectors/source-close-com/poetry.lock b/airbyte-integrations/connectors/source-close-com/poetry.lock index f7dbb5b87e9c..222a92e62e72 100644 --- a/airbyte-integrations/connectors/source-close-com/poetry.lock +++ b/airbyte-integrations/connectors/source-close-com/poetry.lock @@ -1,4 +1,4 @@ -# This file is automatically @generated by Poetry 1.8.2 and should not be changed by hand. +# This file is automatically @generated by Poetry 1.6.1 and should not be changed by hand. [[package]] name = "airbyte-cdk" @@ -410,13 +410,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] @@ -1041,6 +1041,7 @@ files = [ {file = "PyYAML-6.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:bf07ee2fef7014951eeb99f56f39c9bb4af143d8aa3c21b1677805985307da34"}, {file = "PyYAML-6.0.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:855fb52b0dc35af121542a76b9a84f8d1cd886ea97c84703eaa6d88e37a2ad28"}, {file = "PyYAML-6.0.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:40df9b996c2b73138957fe23a16a4f0ba614f4c0efce1e9406a184b6d07fa3a9"}, + {file = "PyYAML-6.0.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a08c6f0fe150303c1c6b71ebcd7213c2858041a7e01975da3a99aed1e7a378ef"}, {file = "PyYAML-6.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6c22bec3fbe2524cde73d7ada88f6566758a8f7227bfbf93a408a9d86bcc12a0"}, {file = "PyYAML-6.0.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8d4e9c88387b0f5c7d5f281e55304de64cf7f9c0021a3525bd3b1c542da3b0e4"}, {file = "PyYAML-6.0.1-cp312-cp312-win32.whl", hash = "sha256:d483d2cdf104e7c9fa60c544d92981f12ad66a457afae824d146093b8c294c54"}, diff --git a/airbyte-integrations/connectors/source-close-com/pyproject.toml b/airbyte-integrations/connectors/source-close-com/pyproject.toml index 64b9e55cdcb5..d64177535ba6 100644 --- a/airbyte-integrations/connectors/source-close-com/pyproject.toml +++ b/airbyte-integrations/connectors/source-close-com/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.5.8" +version = "0.5.9" name = "source-close-com" description = "Source implementation for Close.com." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/close-com.md b/docs/integrations/sources/close-com.md index aa494ac63c17..ae10fb8d7020 100644 --- a/docs/integrations/sources/close-com.md +++ b/docs/integrations/sources/close-com.md @@ -109,6 +109,7 @@ The Close.com connector is subject to rate limits. For more information on this | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :----------------------------------------------------------------------------------------------------- | +| 0.5.9 | 2024-07-13 | [41896](https://github.com/airbytehq/airbyte/pull/41896) | Update dependencies | | 0.5.8 | 2024-07-10 | [40515](https://github.com/airbytehq/airbyte/pull/40515) | Add support for array type custom fields | | 0.5.7 | 2024-07-10 | [41374](https://github.com/airbytehq/airbyte/pull/41374) | Update dependencies | | 0.5.6 | 2024-07-09 | [41313](https://github.com/airbytehq/airbyte/pull/41313) | Update dependencies | From 9e712139f59b300616482f71acd2fbda9771cc38 Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:19:18 +0200 Subject: [PATCH 045/260] =?UTF-8?q?=F0=9F=90=99=20source-opsgenie:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-07-13]=20(#41895)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-opsgenie/metadata.yaml | 2 +- airbyte-integrations/connectors/source-opsgenie/poetry.lock | 6 +++--- .../connectors/source-opsgenie/pyproject.toml | 2 +- docs/integrations/sources/opsgenie.md | 1 + 4 files changed, 6 insertions(+), 5 deletions(-) diff --git a/airbyte-integrations/connectors/source-opsgenie/metadata.yaml b/airbyte-integrations/connectors/source-opsgenie/metadata.yaml index 55b39be2c07c..69a1890e0b4e 100644 --- a/airbyte-integrations/connectors/source-opsgenie/metadata.yaml +++ b/airbyte-integrations/connectors/source-opsgenie/metadata.yaml @@ -7,7 +7,7 @@ data: connectorSubtype: api connectorType: source definitionId: 06bdb480-2598-40b8-8b0f-fc2e2d2abdda - dockerImageTag: 0.3.11 + dockerImageTag: 0.3.12 dockerRepository: airbyte/source-opsgenie documentationUrl: https://docs.airbyte.com/integrations/sources/opsgenie githubIssueLabel: source-opsgenie diff --git a/airbyte-integrations/connectors/source-opsgenie/poetry.lock b/airbyte-integrations/connectors/source-opsgenie/poetry.lock index 7b34a821f476..a7a5ba5dbaf6 100644 --- a/airbyte-integrations/connectors/source-opsgenie/poetry.lock +++ b/airbyte-integrations/connectors/source-opsgenie/poetry.lock @@ -288,13 +288,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] diff --git a/airbyte-integrations/connectors/source-opsgenie/pyproject.toml b/airbyte-integrations/connectors/source-opsgenie/pyproject.toml index 4eab01e0478f..a61a27c645ba 100644 --- a/airbyte-integrations/connectors/source-opsgenie/pyproject.toml +++ b/airbyte-integrations/connectors/source-opsgenie/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.3.11" +version = "0.3.12" name = "source-opsgenie" description = "Source implementation for Opsgenie." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/opsgenie.md b/docs/integrations/sources/opsgenie.md index 1f718e417042..8dbd64f402fb 100644 --- a/docs/integrations/sources/opsgenie.md +++ b/docs/integrations/sources/opsgenie.md @@ -54,6 +54,7 @@ The Opsgenie connector uses the most recent API version for each source of data. | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :------------------------------------------------------------------------------ | +| 0.3.12 | 2024-07-13 | [41895](https://github.com/airbytehq/airbyte/pull/41895) | Update dependencies | | 0.3.11 | 2024-07-10 | [41493](https://github.com/airbytehq/airbyte/pull/41493) | Update dependencies | | 0.3.10 | 2024-07-09 | [41132](https://github.com/airbytehq/airbyte/pull/41132) | Update dependencies | | 0.3.9 | 2024-07-06 | [40988](https://github.com/airbytehq/airbyte/pull/40988) | Update dependencies | From 396294fd1a2853e70fb5ab235b642b006d66c005 Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:19:21 +0200 Subject: [PATCH 046/260] =?UTF-8?q?=F0=9F=90=99=20source-tplcentral:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-07-13]=20(#41894)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-tplcentral/metadata.yaml | 2 +- .../connectors/source-tplcentral/poetry.lock | 6 +++--- .../connectors/source-tplcentral/pyproject.toml | 2 +- docs/integrations/sources/tplcentral.md | 1 + 4 files changed, 6 insertions(+), 5 deletions(-) diff --git a/airbyte-integrations/connectors/source-tplcentral/metadata.yaml b/airbyte-integrations/connectors/source-tplcentral/metadata.yaml index d697ccf604b1..55001eb97b11 100644 --- a/airbyte-integrations/connectors/source-tplcentral/metadata.yaml +++ b/airbyte-integrations/connectors/source-tplcentral/metadata.yaml @@ -2,7 +2,7 @@ data: connectorSubtype: api connectorType: source definitionId: f9b6c538-ee12-42fe-8d4b-0c10f5955417 - dockerImageTag: 0.1.10 + dockerImageTag: 0.1.11 dockerRepository: airbyte/source-tplcentral githubIssueLabel: source-tplcentral icon: tplcentral.svg diff --git a/airbyte-integrations/connectors/source-tplcentral/poetry.lock b/airbyte-integrations/connectors/source-tplcentral/poetry.lock index e5a3fc4ef927..1ed6bd0bf9d2 100644 --- a/airbyte-integrations/connectors/source-tplcentral/poetry.lock +++ b/airbyte-integrations/connectors/source-tplcentral/poetry.lock @@ -302,13 +302,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] diff --git a/airbyte-integrations/connectors/source-tplcentral/pyproject.toml b/airbyte-integrations/connectors/source-tplcentral/pyproject.toml index 98b1c9016517..c1d802b3355d 100644 --- a/airbyte-integrations/connectors/source-tplcentral/pyproject.toml +++ b/airbyte-integrations/connectors/source-tplcentral/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.1.10" +version = "0.1.11" name = "source-tplcentral" description = "Source implementation for Tplcentral." authors = [ "Labanoras Tech ",] diff --git a/docs/integrations/sources/tplcentral.md b/docs/integrations/sources/tplcentral.md index 5d863d25f1ed..9daf6bbcf3ea 100644 --- a/docs/integrations/sources/tplcentral.md +++ b/docs/integrations/sources/tplcentral.md @@ -49,6 +49,7 @@ Please read [How to get your APIs credentials](https://help.3plcentral.com/hc/en | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :------------------------------------------------- | +| 0.1.11 | 2024-07-13 | [41894](https://github.com/airbytehq/airbyte/pull/41894) | Update dependencies | | 0.1.10 | 2024-07-10 | [41418](https://github.com/airbytehq/airbyte/pull/41418) | Update dependencies | | 0.1.9 | 2024-07-09 | [41087](https://github.com/airbytehq/airbyte/pull/41087) | Update dependencies | | 0.1.8 | 2024-07-06 | [40909](https://github.com/airbytehq/airbyte/pull/40909) | Update dependencies | From 2a21c95e24408995f0c4342ea7a31d7a3966689c Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:19:24 +0200 Subject: [PATCH 047/260] =?UTF-8?q?=F0=9F=90=99=20source-apify-dataset:=20?= =?UTF-8?q?run=20up-to-date=20pipeline=20[2024-07-13]=20(#41893)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-apify-dataset/metadata.yaml | 2 +- .../connectors/source-apify-dataset/poetry.lock | 6 +++--- .../connectors/source-apify-dataset/pyproject.toml | 2 +- docs/integrations/sources/apify-dataset.md | 1 + 4 files changed, 6 insertions(+), 5 deletions(-) diff --git a/airbyte-integrations/connectors/source-apify-dataset/metadata.yaml b/airbyte-integrations/connectors/source-apify-dataset/metadata.yaml index 7fd9d1ba5861..ab48ffedb525 100644 --- a/airbyte-integrations/connectors/source-apify-dataset/metadata.yaml +++ b/airbyte-integrations/connectors/source-apify-dataset/metadata.yaml @@ -7,7 +7,7 @@ data: connectorSubtype: api connectorType: source definitionId: 47f17145-fe20-4ef5-a548-e29b048adf84 - dockerImageTag: 2.1.11 + dockerImageTag: 2.1.12 dockerRepository: airbyte/source-apify-dataset documentationUrl: https://docs.airbyte.com/integrations/sources/apify-dataset githubIssueLabel: source-apify-dataset diff --git a/airbyte-integrations/connectors/source-apify-dataset/poetry.lock b/airbyte-integrations/connectors/source-apify-dataset/poetry.lock index cce71c3b0e79..a1ccc2d0271d 100644 --- a/airbyte-integrations/connectors/source-apify-dataset/poetry.lock +++ b/airbyte-integrations/connectors/source-apify-dataset/poetry.lock @@ -288,13 +288,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] diff --git a/airbyte-integrations/connectors/source-apify-dataset/pyproject.toml b/airbyte-integrations/connectors/source-apify-dataset/pyproject.toml index f152eadec2b2..ebcce30ee078 100644 --- a/airbyte-integrations/connectors/source-apify-dataset/pyproject.toml +++ b/airbyte-integrations/connectors/source-apify-dataset/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "2.1.11" +version = "2.1.12" name = "source-apify-dataset" description = "Source implementation for Apify Dataset." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/apify-dataset.md b/docs/integrations/sources/apify-dataset.md index 35bf2db048e5..702ed1880291 100644 --- a/docs/integrations/sources/apify-dataset.md +++ b/docs/integrations/sources/apify-dataset.md @@ -72,6 +72,7 @@ The Apify dataset connector uses [Apify Python Client](https://docs.apify.com/ap | Version | Date | Pull Request | Subject | | :------ | :--------- | :----------------------------------------------------------- | :------------------------------------------------------------------------------ | +| 2.1.12 | 2024-07-13 | [41893](https://github.com/airbytehq/airbyte/pull/41893) | Update dependencies | | 2.1.11 | 2024-07-10 | [41344](https://github.com/airbytehq/airbyte/pull/41344) | Update dependencies | | 2.1.10 | 2024-07-09 | [41189](https://github.com/airbytehq/airbyte/pull/41189) | Update dependencies | | 2.1.9 | 2024-07-06 | [40813](https://github.com/airbytehq/airbyte/pull/40813) | Update dependencies | From a5f1fd55ffcb6c3d14f39d50000d78d110284c3d Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:19:28 +0200 Subject: [PATCH 048/260] =?UTF-8?q?=F0=9F=90=99=20source-coda:=20run=20up-?= =?UTF-8?q?to-date=20pipeline=20[2024-07-13]=20(#41892)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-coda/metadata.yaml | 2 +- .../connectors/source-coda/poetry.lock | 12 ++++++------ .../connectors/source-coda/pyproject.toml | 2 +- docs/integrations/sources/coda.md | 1 + 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/airbyte-integrations/connectors/source-coda/metadata.yaml b/airbyte-integrations/connectors/source-coda/metadata.yaml index d90f4990ffbd..f581e0dd774a 100644 --- a/airbyte-integrations/connectors/source-coda/metadata.yaml +++ b/airbyte-integrations/connectors/source-coda/metadata.yaml @@ -10,7 +10,7 @@ data: connectorSubtype: api connectorType: source definitionId: 27f910fd-f832-4b2e-bcfd-6ab342e434d8 - dockerImageTag: 1.2.7 + dockerImageTag: 1.2.8 dockerRepository: airbyte/source-coda documentationUrl: https://docs.airbyte.com/integrations/sources/coda githubIssueLabel: source-coda diff --git a/airbyte-integrations/connectors/source-coda/poetry.lock b/airbyte-integrations/connectors/source-coda/poetry.lock index 9b0cf7c8a944..cc9d1ecb9669 100644 --- a/airbyte-integrations/connectors/source-coda/poetry.lock +++ b/airbyte-integrations/connectors/source-coda/poetry.lock @@ -410,13 +410,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] @@ -566,13 +566,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.84" +version = "0.1.85" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.84-py3-none-any.whl", hash = "sha256:01f3c6390dba26c583bac8dd0e551ce3d0509c7f55cad714db0b5c8d36e4c7ff"}, - {file = "langsmith-0.1.84.tar.gz", hash = "sha256:5220c0439838b9a5bd320fd3686be505c5083dcee22d2452006c23891153bea1"}, + {file = "langsmith-0.1.85-py3-none-any.whl", hash = "sha256:c1f94384f10cea96f7b4d33fd3db7ec180c03c7468877d50846f881d2017ff94"}, + {file = "langsmith-0.1.85.tar.gz", hash = "sha256:acff31f9e53efa48586cf8e32f65625a335c74d7c4fa306d1655ac18452296f6"}, ] [package.dependencies] diff --git a/airbyte-integrations/connectors/source-coda/pyproject.toml b/airbyte-integrations/connectors/source-coda/pyproject.toml index 2fa04b81938c..5e4773873822 100644 --- a/airbyte-integrations/connectors/source-coda/pyproject.toml +++ b/airbyte-integrations/connectors/source-coda/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "1.2.7" +version = "1.2.8" name = "source-coda" description = "Source implementation for Coda." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/coda.md b/docs/integrations/sources/coda.md index 74ce19b365aa..a9e6117e56e8 100644 --- a/docs/integrations/sources/coda.md +++ b/docs/integrations/sources/coda.md @@ -67,6 +67,7 @@ The Coda source connector supports the following [sync modes](https://docs.airby | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- |:------------------------------------------------------------------------------------------------------------| +| 1.2.8 | 2024-07-13 | [41892](https://github.com/airbytehq/airbyte/pull/41892) | Update dependencies | | 1.2.7 | 2024-07-10 | [41329](https://github.com/airbytehq/airbyte/pull/41329) | Update dependencies | | 1.2.6 | 2024-07-06 | [40810](https://github.com/airbytehq/airbyte/pull/40810) | Update dependencies | | 1.2.5 | 2024-06-25 | [40413](https://github.com/airbytehq/airbyte/pull/40413) | Update dependencies | From 99012c669bdbf95f26a60be9f7d30197fbb796a3 Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:19:31 +0200 Subject: [PATCH 049/260] =?UTF-8?q?=F0=9F=90=99=20source-ringcentral:=20ru?= =?UTF-8?q?n=20up-to-date=20pipeline=20[2024-07-13]=20(#41891)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-ringcentral/metadata.yaml | 2 +- .../connectors/source-ringcentral/poetry.lock | 12 ++++++------ .../connectors/source-ringcentral/pyproject.toml | 2 +- docs/integrations/sources/ringcentral.md | 1 + 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/airbyte-integrations/connectors/source-ringcentral/metadata.yaml b/airbyte-integrations/connectors/source-ringcentral/metadata.yaml index e0fc4f2ecfa2..5159ee3f1c24 100644 --- a/airbyte-integrations/connectors/source-ringcentral/metadata.yaml +++ b/airbyte-integrations/connectors/source-ringcentral/metadata.yaml @@ -2,7 +2,7 @@ data: connectorSubtype: api connectorType: source definitionId: 213d69b9-da66-419e-af29-c23142d4af5f - dockerImageTag: 0.1.8 + dockerImageTag: 0.1.9 dockerRepository: airbyte/source-ringcentral githubIssueLabel: source-ringcentral icon: icon.svg diff --git a/airbyte-integrations/connectors/source-ringcentral/poetry.lock b/airbyte-integrations/connectors/source-ringcentral/poetry.lock index 1c7c00978d43..728f233c17e0 100644 --- a/airbyte-integrations/connectors/source-ringcentral/poetry.lock +++ b/airbyte-integrations/connectors/source-ringcentral/poetry.lock @@ -410,13 +410,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] @@ -566,13 +566,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.84" +version = "0.1.85" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.84-py3-none-any.whl", hash = "sha256:01f3c6390dba26c583bac8dd0e551ce3d0509c7f55cad714db0b5c8d36e4c7ff"}, - {file = "langsmith-0.1.84.tar.gz", hash = "sha256:5220c0439838b9a5bd320fd3686be505c5083dcee22d2452006c23891153bea1"}, + {file = "langsmith-0.1.85-py3-none-any.whl", hash = "sha256:c1f94384f10cea96f7b4d33fd3db7ec180c03c7468877d50846f881d2017ff94"}, + {file = "langsmith-0.1.85.tar.gz", hash = "sha256:acff31f9e53efa48586cf8e32f65625a335c74d7c4fa306d1655ac18452296f6"}, ] [package.dependencies] diff --git a/airbyte-integrations/connectors/source-ringcentral/pyproject.toml b/airbyte-integrations/connectors/source-ringcentral/pyproject.toml index 06ea0db3fc7a..cf7de394b038 100644 --- a/airbyte-integrations/connectors/source-ringcentral/pyproject.toml +++ b/airbyte-integrations/connectors/source-ringcentral/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.1.8" +version = "0.1.9" name = "source-ringcentral" description = "Source implementation for Ringcentral." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/ringcentral.md b/docs/integrations/sources/ringcentral.md index 5d3e0f4ac6fe..170df7014aad 100644 --- a/docs/integrations/sources/ringcentral.md +++ b/docs/integrations/sources/ringcentral.md @@ -80,6 +80,7 @@ RingCentral [API reference](https://platform.devtest.ringcentral.com/restapi/v1. | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------- | :------------- | +| 0.1.9 | 2024-07-13 | [41891](https://github.com/airbytehq/airbyte/pull/41891) | Update dependencies | | 0.1.8 | 2024-07-10 | [41433](https://github.com/airbytehq/airbyte/pull/41433) | Update dependencies | | 0.1.7 | 2024-07-10 | [41328](https://github.com/airbytehq/airbyte/pull/41328) | Update dependencies | | 0.1.6 | 2024-07-06 | [40973](https://github.com/airbytehq/airbyte/pull/40973) | Update dependencies | From e3c8dd4a53a034a0b9dda0805b174d065c49d875 Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:19:35 +0200 Subject: [PATCH 050/260] =?UTF-8?q?=F0=9F=90=99=20source-mailgun:=20run=20?= =?UTF-8?q?up-to-date=20pipeline=20[2024-07-13]=20(#41890)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-mailgun/metadata.yaml | 2 +- .../connectors/source-mailgun/poetry.lock | 12 ++++++------ .../connectors/source-mailgun/pyproject.toml | 2 +- docs/integrations/sources/mailgun.md | 1 + 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/airbyte-integrations/connectors/source-mailgun/metadata.yaml b/airbyte-integrations/connectors/source-mailgun/metadata.yaml index c7d95ee555e0..2595de37cf29 100644 --- a/airbyte-integrations/connectors/source-mailgun/metadata.yaml +++ b/airbyte-integrations/connectors/source-mailgun/metadata.yaml @@ -10,7 +10,7 @@ data: connectorSubtype: api connectorType: source definitionId: 5b9cb09e-1003-4f9c-983d-5779d1b2cd51 - dockerImageTag: 0.2.12 + dockerImageTag: 0.2.13 dockerRepository: airbyte/source-mailgun documentationUrl: https://docs.airbyte.com/integrations/sources/mailgun githubIssueLabel: source-mailgun diff --git a/airbyte-integrations/connectors/source-mailgun/poetry.lock b/airbyte-integrations/connectors/source-mailgun/poetry.lock index 9b0cf7c8a944..cc9d1ecb9669 100644 --- a/airbyte-integrations/connectors/source-mailgun/poetry.lock +++ b/airbyte-integrations/connectors/source-mailgun/poetry.lock @@ -410,13 +410,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] @@ -566,13 +566,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.84" +version = "0.1.85" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.84-py3-none-any.whl", hash = "sha256:01f3c6390dba26c583bac8dd0e551ce3d0509c7f55cad714db0b5c8d36e4c7ff"}, - {file = "langsmith-0.1.84.tar.gz", hash = "sha256:5220c0439838b9a5bd320fd3686be505c5083dcee22d2452006c23891153bea1"}, + {file = "langsmith-0.1.85-py3-none-any.whl", hash = "sha256:c1f94384f10cea96f7b4d33fd3db7ec180c03c7468877d50846f881d2017ff94"}, + {file = "langsmith-0.1.85.tar.gz", hash = "sha256:acff31f9e53efa48586cf8e32f65625a335c74d7c4fa306d1655ac18452296f6"}, ] [package.dependencies] diff --git a/airbyte-integrations/connectors/source-mailgun/pyproject.toml b/airbyte-integrations/connectors/source-mailgun/pyproject.toml index 544cc6d9dce6..d6839f79c0e2 100644 --- a/airbyte-integrations/connectors/source-mailgun/pyproject.toml +++ b/airbyte-integrations/connectors/source-mailgun/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.2.12" +version = "0.2.13" name = "source-mailgun" description = "Source implementation for Mailgun." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/mailgun.md b/docs/integrations/sources/mailgun.md index 124d65b4c30a..ce38ee33e5dd 100644 --- a/docs/integrations/sources/mailgun.md +++ b/docs/integrations/sources/mailgun.md @@ -68,6 +68,7 @@ MailGun's [API reference](https://documentation.mailgun.com/en/latest/api_refere | Version | Date | Pull Request | Subject | | :------ |:-----------| :------------------------------------------------------- |:--------------------------------------------------------------------------------| +| 0.2.13 | 2024-07-13 | [41890](https://github.com/airbytehq/airbyte/pull/41890) | Update dependencies | | 0.2.12 | 2024-07-10 | [41582](https://github.com/airbytehq/airbyte/pull/41582) | Update dependencies | | 0.2.11 | 2024-07-06 | [40790](https://github.com/airbytehq/airbyte/pull/40790) | Update dependencies | | 0.2.10 | 2024-06-25 | [40491](https://github.com/airbytehq/airbyte/pull/40491) | Update dependencies | From 3a6a619871abe7a92bb109e4b6397e8d8aac8af7 Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:19:38 +0200 Subject: [PATCH 051/260] =?UTF-8?q?=F0=9F=90=99=20source-delighted:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-07-13]=20(#41889)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-delighted/metadata.yaml | 2 +- .../connectors/source-delighted/poetry.lock | 6 +++--- .../connectors/source-delighted/pyproject.toml | 2 +- docs/integrations/sources/delighted.md | 1 + 4 files changed, 6 insertions(+), 5 deletions(-) diff --git a/airbyte-integrations/connectors/source-delighted/metadata.yaml b/airbyte-integrations/connectors/source-delighted/metadata.yaml index a4877fbb2726..c053845075de 100644 --- a/airbyte-integrations/connectors/source-delighted/metadata.yaml +++ b/airbyte-integrations/connectors/source-delighted/metadata.yaml @@ -10,7 +10,7 @@ data: connectorSubtype: api connectorType: source definitionId: cc88c43f-6f53-4e8a-8c4d-b284baaf9635 - dockerImageTag: 0.2.14 + dockerImageTag: 0.2.15 dockerRepository: airbyte/source-delighted documentationUrl: https://docs.airbyte.com/integrations/sources/delighted githubIssueLabel: source-delighted diff --git a/airbyte-integrations/connectors/source-delighted/poetry.lock b/airbyte-integrations/connectors/source-delighted/poetry.lock index 62cc5d2a5040..9b05c8d7333b 100644 --- a/airbyte-integrations/connectors/source-delighted/poetry.lock +++ b/airbyte-integrations/connectors/source-delighted/poetry.lock @@ -288,13 +288,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] diff --git a/airbyte-integrations/connectors/source-delighted/pyproject.toml b/airbyte-integrations/connectors/source-delighted/pyproject.toml index ae005844ac2d..f788322dc721 100644 --- a/airbyte-integrations/connectors/source-delighted/pyproject.toml +++ b/airbyte-integrations/connectors/source-delighted/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.2.14" +version = "0.2.15" name = "source-delighted" description = "Source implementation for Delighted." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/delighted.md b/docs/integrations/sources/delighted.md index 9a459c5039ed..3197da7d766d 100644 --- a/docs/integrations/sources/delighted.md +++ b/docs/integrations/sources/delighted.md @@ -54,6 +54,7 @@ This source is capable of syncing the following core streams: | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :--------------------------------------------------------------------------------------------------- | +| 0.2.15 | 2024-07-13 | [41889](https://github.com/airbytehq/airbyte/pull/41889) | Update dependencies | | 0.2.14 | 2024-07-10 | [41553](https://github.com/airbytehq/airbyte/pull/41553) | Update dependencies | | 0.2.13 | 2024-07-09 | [41251](https://github.com/airbytehq/airbyte/pull/41251) | Update dependencies | | 0.2.12 | 2024-07-06 | [40957](https://github.com/airbytehq/airbyte/pull/40957) | Update dependencies | From 1c8f946cc48c952cfc4157a36b6873a429b5b04a Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:19:41 +0200 Subject: [PATCH 052/260] =?UTF-8?q?=F0=9F=90=99=20source-hellobaton:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-07-13]=20(#41888)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-hellobaton/metadata.yaml | 2 +- .../connectors/source-hellobaton/poetry.lock | 12 ++++++------ .../connectors/source-hellobaton/pyproject.toml | 2 +- docs/integrations/sources/hellobaton.md | 1 + 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/airbyte-integrations/connectors/source-hellobaton/metadata.yaml b/airbyte-integrations/connectors/source-hellobaton/metadata.yaml index 7a48e4e0cdb4..d2fd0fb657f5 100644 --- a/airbyte-integrations/connectors/source-hellobaton/metadata.yaml +++ b/airbyte-integrations/connectors/source-hellobaton/metadata.yaml @@ -14,7 +14,7 @@ data: connectorSubtype: api connectorType: source definitionId: 492b56d1-937c-462e-8076-21ad2031e784 - dockerImageTag: 0.2.8 + dockerImageTag: 0.2.9 dockerRepository: airbyte/source-hellobaton githubIssueLabel: source-hellobaton icon: hellobaton.svg diff --git a/airbyte-integrations/connectors/source-hellobaton/poetry.lock b/airbyte-integrations/connectors/source-hellobaton/poetry.lock index 1c7c00978d43..728f233c17e0 100644 --- a/airbyte-integrations/connectors/source-hellobaton/poetry.lock +++ b/airbyte-integrations/connectors/source-hellobaton/poetry.lock @@ -410,13 +410,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] @@ -566,13 +566,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.84" +version = "0.1.85" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.84-py3-none-any.whl", hash = "sha256:01f3c6390dba26c583bac8dd0e551ce3d0509c7f55cad714db0b5c8d36e4c7ff"}, - {file = "langsmith-0.1.84.tar.gz", hash = "sha256:5220c0439838b9a5bd320fd3686be505c5083dcee22d2452006c23891153bea1"}, + {file = "langsmith-0.1.85-py3-none-any.whl", hash = "sha256:c1f94384f10cea96f7b4d33fd3db7ec180c03c7468877d50846f881d2017ff94"}, + {file = "langsmith-0.1.85.tar.gz", hash = "sha256:acff31f9e53efa48586cf8e32f65625a335c74d7c4fa306d1655ac18452296f6"}, ] [package.dependencies] diff --git a/airbyte-integrations/connectors/source-hellobaton/pyproject.toml b/airbyte-integrations/connectors/source-hellobaton/pyproject.toml index 934cf46f60eb..88d1af331a7e 100644 --- a/airbyte-integrations/connectors/source-hellobaton/pyproject.toml +++ b/airbyte-integrations/connectors/source-hellobaton/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.2.8" +version = "0.2.9" name = "source-hellobaton" description = "Source implementation for Hellobaton." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/hellobaton.md b/docs/integrations/sources/hellobaton.md index d70bd26979ae..f15d324aec91 100644 --- a/docs/integrations/sources/hellobaton.md +++ b/docs/integrations/sources/hellobaton.md @@ -56,6 +56,7 @@ The connector is rate limited at 1000 requests per minute per api key. If you fi | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :---------------------------------- | +| 0.2.9 | 2024-07-13 | [41888](https://github.com/airbytehq/airbyte/pull/41888) | Update dependencies | | 0.2.8 | 2024-07-10 | [41538](https://github.com/airbytehq/airbyte/pull/41538) | Update dependencies | | 0.2.7 | 2024-07-09 | [41277](https://github.com/airbytehq/airbyte/pull/41277) | Update dependencies | | 0.2.6 | 2024-07-06 | [40838](https://github.com/airbytehq/airbyte/pull/40838) | Update dependencies | From c66961cd35ee6d0552c1905c56ce8e083879d3be Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:19:44 +0200 Subject: [PATCH 053/260] =?UTF-8?q?=F0=9F=90=99=20source-weatherstack:=20r?= =?UTF-8?q?un=20up-to-date=20pipeline=20[2024-07-13]=20(#41887)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-weatherstack/metadata.yaml | 2 +- .../connectors/source-weatherstack/poetry.lock | 12 ++++++------ .../connectors/source-weatherstack/pyproject.toml | 2 +- docs/integrations/sources/weatherstack.md | 1 + 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/airbyte-integrations/connectors/source-weatherstack/metadata.yaml b/airbyte-integrations/connectors/source-weatherstack/metadata.yaml index e0368ffad536..b8513c1ecb1a 100644 --- a/airbyte-integrations/connectors/source-weatherstack/metadata.yaml +++ b/airbyte-integrations/connectors/source-weatherstack/metadata.yaml @@ -2,7 +2,7 @@ data: connectorSubtype: api connectorType: source definitionId: 5db8292c-5f5a-11ed-9b6a-0242ac120002 - dockerImageTag: 0.1.8 + dockerImageTag: 0.1.9 dockerRepository: airbyte/source-weatherstack githubIssueLabel: source-weatherstack icon: weatherstack.svg diff --git a/airbyte-integrations/connectors/source-weatherstack/poetry.lock b/airbyte-integrations/connectors/source-weatherstack/poetry.lock index 483507e32356..3a76135ef536 100644 --- a/airbyte-integrations/connectors/source-weatherstack/poetry.lock +++ b/airbyte-integrations/connectors/source-weatherstack/poetry.lock @@ -409,13 +409,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] @@ -565,13 +565,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.84" +version = "0.1.85" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.84-py3-none-any.whl", hash = "sha256:01f3c6390dba26c583bac8dd0e551ce3d0509c7f55cad714db0b5c8d36e4c7ff"}, - {file = "langsmith-0.1.84.tar.gz", hash = "sha256:5220c0439838b9a5bd320fd3686be505c5083dcee22d2452006c23891153bea1"}, + {file = "langsmith-0.1.85-py3-none-any.whl", hash = "sha256:c1f94384f10cea96f7b4d33fd3db7ec180c03c7468877d50846f881d2017ff94"}, + {file = "langsmith-0.1.85.tar.gz", hash = "sha256:acff31f9e53efa48586cf8e32f65625a335c74d7c4fa306d1655ac18452296f6"}, ] [package.dependencies] diff --git a/airbyte-integrations/connectors/source-weatherstack/pyproject.toml b/airbyte-integrations/connectors/source-weatherstack/pyproject.toml index 3303f77b5cad..4dac562fa456 100644 --- a/airbyte-integrations/connectors/source-weatherstack/pyproject.toml +++ b/airbyte-integrations/connectors/source-weatherstack/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.1.8" +version = "0.1.9" name = "source-weatherstack" description = "Source implementation for Weatherstack." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/weatherstack.md b/docs/integrations/sources/weatherstack.md index 5d7f09b5119e..aa31682b3538 100644 --- a/docs/integrations/sources/weatherstack.md +++ b/docs/integrations/sources/weatherstack.md @@ -39,6 +39,7 @@ The free plan allows 250 calls per month, you won't get beyond these limits with | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :-------------- | +| 0.1.9 | 2024-07-13 | [41887](https://github.com/airbytehq/airbyte/pull/41887) | Update dependencies | | 0.1.8 | 2024-07-10 | [41566](https://github.com/airbytehq/airbyte/pull/41566) | Update dependencies | | 0.1.7 | 2024-07-09 | [41241](https://github.com/airbytehq/airbyte/pull/41241) | Update dependencies | | 0.1.6 | 2024-07-06 | [40876](https://github.com/airbytehq/airbyte/pull/40876) | Update dependencies | From 80ea4e87fad3ac444d1b259fbcfc52ea8fbe2106 Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:19:47 +0200 Subject: [PATCH 054/260] =?UTF-8?q?=F0=9F=90=99=20source-pardot:=20run=20u?= =?UTF-8?q?p-to-date=20pipeline=20[2024-07-13]=20(#41886)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-pardot/metadata.yaml | 2 +- airbyte-integrations/connectors/source-pardot/poetry.lock | 6 +++--- .../connectors/source-pardot/pyproject.toml | 2 +- docs/integrations/sources/pardot.md | 1 + 4 files changed, 6 insertions(+), 5 deletions(-) diff --git a/airbyte-integrations/connectors/source-pardot/metadata.yaml b/airbyte-integrations/connectors/source-pardot/metadata.yaml index b943c3a9427c..d74876516c99 100644 --- a/airbyte-integrations/connectors/source-pardot/metadata.yaml +++ b/airbyte-integrations/connectors/source-pardot/metadata.yaml @@ -2,7 +2,7 @@ data: connectorSubtype: api connectorType: source definitionId: ad15c7ba-72a7-440b-af15-b9a963dc1a8a - dockerImageTag: 0.1.8 + dockerImageTag: 0.1.9 dockerRepository: airbyte/source-pardot githubIssueLabel: source-pardot icon: salesforcepardot.svg diff --git a/airbyte-integrations/connectors/source-pardot/poetry.lock b/airbyte-integrations/connectors/source-pardot/poetry.lock index 6f83e5bed3a6..c0f7f643d050 100644 --- a/airbyte-integrations/connectors/source-pardot/poetry.lock +++ b/airbyte-integrations/connectors/source-pardot/poetry.lock @@ -288,13 +288,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] diff --git a/airbyte-integrations/connectors/source-pardot/pyproject.toml b/airbyte-integrations/connectors/source-pardot/pyproject.toml index 6a3f518ff61a..f098b4517a37 100644 --- a/airbyte-integrations/connectors/source-pardot/pyproject.toml +++ b/airbyte-integrations/connectors/source-pardot/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.1.8" +version = "0.1.9" name = "source-pardot" description = "Source implementation for Pardot." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/pardot.md b/docs/integrations/sources/pardot.md index 02a9de3346c4..3b4d5d14da0e 100644 --- a/docs/integrations/sources/pardot.md +++ b/docs/integrations/sources/pardot.md @@ -61,6 +61,7 @@ The Pardot connector should not run into Pardot API limitations under normal usa | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :-------------------- | +| 0.1.9 | 2024-07-13 | [41886](https://github.com/airbytehq/airbyte/pull/41886) | Update dependencies | | 0.1.8 | 2024-07-10 | [41565](https://github.com/airbytehq/airbyte/pull/41565) | Update dependencies | | 0.1.7 | 2024-07-09 | [40884](https://github.com/airbytehq/airbyte/pull/40884) | Update dependencies | | 0.1.6 | 2024-06-26 | [40549](https://github.com/airbytehq/airbyte/pull/40549) | Migrate off deprecated auth package | From bc7c52c5cbf7590bde1e7c967bd0be572462b60b Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:19:51 +0200 Subject: [PATCH 055/260] =?UTF-8?q?=F0=9F=90=99=20source-kyriba:=20run=20u?= =?UTF-8?q?p-to-date=20pipeline=20[2024-07-13]=20(#41885)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-kyriba/metadata.yaml | 2 +- airbyte-integrations/connectors/source-kyriba/poetry.lock | 6 +++--- .../connectors/source-kyriba/pyproject.toml | 2 +- docs/integrations/sources/kyriba.md | 1 + 4 files changed, 6 insertions(+), 5 deletions(-) diff --git a/airbyte-integrations/connectors/source-kyriba/metadata.yaml b/airbyte-integrations/connectors/source-kyriba/metadata.yaml index 7a016e4868b0..422181a71ed8 100644 --- a/airbyte-integrations/connectors/source-kyriba/metadata.yaml +++ b/airbyte-integrations/connectors/source-kyriba/metadata.yaml @@ -7,7 +7,7 @@ data: connectorSubtype: api connectorType: source definitionId: 547dc08e-ab51-421d-953b-8f3745201a8c - dockerImageTag: 0.1.9 + dockerImageTag: 0.1.10 dockerRepository: airbyte/source-kyriba documentationUrl: https://docs.airbyte.com/integrations/sources/kyriba githubIssueLabel: source-kyriba diff --git a/airbyte-integrations/connectors/source-kyriba/poetry.lock b/airbyte-integrations/connectors/source-kyriba/poetry.lock index 6f83e5bed3a6..c0f7f643d050 100644 --- a/airbyte-integrations/connectors/source-kyriba/poetry.lock +++ b/airbyte-integrations/connectors/source-kyriba/poetry.lock @@ -288,13 +288,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] diff --git a/airbyte-integrations/connectors/source-kyriba/pyproject.toml b/airbyte-integrations/connectors/source-kyriba/pyproject.toml index 81dca6955ba0..5d71fa1caa77 100644 --- a/airbyte-integrations/connectors/source-kyriba/pyproject.toml +++ b/airbyte-integrations/connectors/source-kyriba/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.1.9" +version = "0.1.10" name = "source-kyriba" description = "Source implementation for Kyriba." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/kyriba.md b/docs/integrations/sources/kyriba.md index 57715b228618..da757a0fce7d 100644 --- a/docs/integrations/sources/kyriba.md +++ b/docs/integrations/sources/kyriba.md @@ -71,6 +71,7 @@ The Kyriba connector should not run into API limitations under normal usage. [Cr | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :------------------------------------------------------------------------------------------- | +| 0.1.10 | 2024-07-13 | [41885](https://github.com/airbytehq/airbyte/pull/41885) | Update dependencies | | 0.1.9 | 2024-07-10 | [41452](https://github.com/airbytehq/airbyte/pull/41452) | Update dependencies | | 0.1.8 | 2024-07-09 | [41147](https://github.com/airbytehq/airbyte/pull/41147) | Update dependencies | | 0.1.7 | 2024-07-06 | [40874](https://github.com/airbytehq/airbyte/pull/40874) | Update dependencies | From d3e6089aa5d08c483a610a8d6a1550cf00f443e5 Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:19:54 +0200 Subject: [PATCH 056/260] =?UTF-8?q?=F0=9F=90=99=20source-qonto:=20run=20up?= =?UTF-8?q?-to-date=20pipeline=20[2024-07-13]=20(#41884)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-qonto/metadata.yaml | 2 +- .../connectors/source-qonto/poetry.lock | 12 ++++++------ .../connectors/source-qonto/pyproject.toml | 2 +- docs/integrations/sources/qonto.md | 1 + 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/airbyte-integrations/connectors/source-qonto/metadata.yaml b/airbyte-integrations/connectors/source-qonto/metadata.yaml index a0c9f2c7c99f..34eacc275cd1 100644 --- a/airbyte-integrations/connectors/source-qonto/metadata.yaml +++ b/airbyte-integrations/connectors/source-qonto/metadata.yaml @@ -2,7 +2,7 @@ data: connectorSubtype: api connectorType: source definitionId: ccd3901d-edf3-4e58-900c-942d6990aa59 - dockerImageTag: 0.2.8 + dockerImageTag: 0.2.9 dockerRepository: airbyte/source-qonto githubIssueLabel: source-qonto icon: qonto.svg diff --git a/airbyte-integrations/connectors/source-qonto/poetry.lock b/airbyte-integrations/connectors/source-qonto/poetry.lock index 1c7c00978d43..728f233c17e0 100644 --- a/airbyte-integrations/connectors/source-qonto/poetry.lock +++ b/airbyte-integrations/connectors/source-qonto/poetry.lock @@ -410,13 +410,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] @@ -566,13 +566,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.84" +version = "0.1.85" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.84-py3-none-any.whl", hash = "sha256:01f3c6390dba26c583bac8dd0e551ce3d0509c7f55cad714db0b5c8d36e4c7ff"}, - {file = "langsmith-0.1.84.tar.gz", hash = "sha256:5220c0439838b9a5bd320fd3686be505c5083dcee22d2452006c23891153bea1"}, + {file = "langsmith-0.1.85-py3-none-any.whl", hash = "sha256:c1f94384f10cea96f7b4d33fd3db7ec180c03c7468877d50846f881d2017ff94"}, + {file = "langsmith-0.1.85.tar.gz", hash = "sha256:acff31f9e53efa48586cf8e32f65625a335c74d7c4fa306d1655ac18452296f6"}, ] [package.dependencies] diff --git a/airbyte-integrations/connectors/source-qonto/pyproject.toml b/airbyte-integrations/connectors/source-qonto/pyproject.toml index 3a16f17d2f45..439bf5a275d5 100644 --- a/airbyte-integrations/connectors/source-qonto/pyproject.toml +++ b/airbyte-integrations/connectors/source-qonto/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.2.8" +version = "0.2.9" name = "source-qonto" description = "Source implementation for Qonto." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/qonto.md b/docs/integrations/sources/qonto.md index e28f5b41e62c..d5aca2ead0ce 100644 --- a/docs/integrations/sources/qonto.md +++ b/docs/integrations/sources/qonto.md @@ -10,6 +10,7 @@ The Airbyte Source for [Qonto](https://qonto.com) | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :-------------------------------- | +| 0.2.9 | 2024-07-13 | [41884](https://github.com/airbytehq/airbyte/pull/41884) | Update dependencies | | 0.2.8 | 2024-07-10 | [41542](https://github.com/airbytehq/airbyte/pull/41542) | Update dependencies | | 0.2.7 | 2024-07-09 | [41136](https://github.com/airbytehq/airbyte/pull/41136) | Update dependencies | | 0.2.6 | 2024-07-06 | [41006](https://github.com/airbytehq/airbyte/pull/41006) | Update dependencies | From e3270155373f7df681cd5064beebd009bcdd54fe Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:19:57 +0200 Subject: [PATCH 057/260] =?UTF-8?q?=F0=9F=90=99=20source-bigcommerce:=20ru?= =?UTF-8?q?n=20up-to-date=20pipeline=20[2024-07-13]=20(#41883)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-bigcommerce/metadata.yaml | 2 +- .../connectors/source-bigcommerce/poetry.lock | 12 ++++++------ .../connectors/source-bigcommerce/pyproject.toml | 2 +- docs/integrations/sources/bigcommerce.md | 1 + 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/airbyte-integrations/connectors/source-bigcommerce/metadata.yaml b/airbyte-integrations/connectors/source-bigcommerce/metadata.yaml index d650f76d568e..de3a9a858858 100644 --- a/airbyte-integrations/connectors/source-bigcommerce/metadata.yaml +++ b/airbyte-integrations/connectors/source-bigcommerce/metadata.yaml @@ -14,7 +14,7 @@ data: connectorSubtype: api connectorType: source definitionId: 59c5501b-9f95-411e-9269-7143c939adbd - dockerImageTag: 0.2.7 + dockerImageTag: 0.2.8 dockerRepository: airbyte/source-bigcommerce documentationUrl: https://docs.airbyte.com/integrations/sources/bigcommerce githubIssueLabel: source-bigcommerce diff --git a/airbyte-integrations/connectors/source-bigcommerce/poetry.lock b/airbyte-integrations/connectors/source-bigcommerce/poetry.lock index 1c7c00978d43..728f233c17e0 100644 --- a/airbyte-integrations/connectors/source-bigcommerce/poetry.lock +++ b/airbyte-integrations/connectors/source-bigcommerce/poetry.lock @@ -410,13 +410,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] @@ -566,13 +566,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.84" +version = "0.1.85" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.84-py3-none-any.whl", hash = "sha256:01f3c6390dba26c583bac8dd0e551ce3d0509c7f55cad714db0b5c8d36e4c7ff"}, - {file = "langsmith-0.1.84.tar.gz", hash = "sha256:5220c0439838b9a5bd320fd3686be505c5083dcee22d2452006c23891153bea1"}, + {file = "langsmith-0.1.85-py3-none-any.whl", hash = "sha256:c1f94384f10cea96f7b4d33fd3db7ec180c03c7468877d50846f881d2017ff94"}, + {file = "langsmith-0.1.85.tar.gz", hash = "sha256:acff31f9e53efa48586cf8e32f65625a335c74d7c4fa306d1655ac18452296f6"}, ] [package.dependencies] diff --git a/airbyte-integrations/connectors/source-bigcommerce/pyproject.toml b/airbyte-integrations/connectors/source-bigcommerce/pyproject.toml index c2df2990aba3..7610df7e94ce 100644 --- a/airbyte-integrations/connectors/source-bigcommerce/pyproject.toml +++ b/airbyte-integrations/connectors/source-bigcommerce/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.2.7" +version = "0.2.8" name = "source-bigcommerce" description = "Source implementation for Bigcommerce." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/bigcommerce.md b/docs/integrations/sources/bigcommerce.md index 596ef48a9718..ca722b3c2546 100644 --- a/docs/integrations/sources/bigcommerce.md +++ b/docs/integrations/sources/bigcommerce.md @@ -58,6 +58,7 @@ BigCommerce has some [rate limit restrictions](https://developer.bigcommerce.com | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :---------------------------------------------------------- | +| 0.2.8 | 2024-07-13 | [41883](https://github.com/airbytehq/airbyte/pull/41883) | Update dependencies | | 0.2.7 | 2024-07-10 | [41540](https://github.com/airbytehq/airbyte/pull/41540) | Update dependencies | | 0.2.6 | 2024-07-09 | [41256](https://github.com/airbytehq/airbyte/pull/41256) | Update dependencies | | 0.2.5 | 2024-07-06 | [40997](https://github.com/airbytehq/airbyte/pull/40997) | Update dependencies | From de2edb1db859cdeaed9ea75b8ed52de869eea478 Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:20:00 +0200 Subject: [PATCH 058/260] =?UTF-8?q?=F0=9F=90=99=20destination-duckdb:=20ru?= =?UTF-8?q?n=20up-to-date=20pipeline=20[2024-07-13]=20(#41882)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../destination-duckdb/metadata.yaml | 2 +- .../connectors/destination-duckdb/poetry.lock | 112 +++++++++--------- .../destination-duckdb/pyproject.toml | 2 +- docs/integrations/destinations/duckdb.md | 1 + 4 files changed, 59 insertions(+), 58 deletions(-) diff --git a/airbyte-integrations/connectors/destination-duckdb/metadata.yaml b/airbyte-integrations/connectors/destination-duckdb/metadata.yaml index a4427e242c5c..23a9cfb5dd7b 100644 --- a/airbyte-integrations/connectors/destination-duckdb/metadata.yaml +++ b/airbyte-integrations/connectors/destination-duckdb/metadata.yaml @@ -4,7 +4,7 @@ data: connectorSubtype: database connectorType: destination definitionId: 94bd199c-2ff0-4aa2-b98e-17f0acb72610 - dockerImageTag: 0.4.8 + dockerImageTag: 0.4.9 dockerRepository: airbyte/destination-duckdb githubIssueLabel: destination-duckdb icon: duckdb.svg diff --git a/airbyte-integrations/connectors/destination-duckdb/poetry.lock b/airbyte-integrations/connectors/destination-duckdb/poetry.lock index a793af7410a2..26bd657393a2 100644 --- a/airbyte-integrations/connectors/destination-duckdb/poetry.lock +++ b/airbyte-integrations/connectors/destination-duckdb/poetry.lock @@ -338,63 +338,63 @@ files = [ [[package]] name = "coverage" -version = "7.5.4" +version = "7.6.0" description = "Code coverage measurement for Python" optional = false python-versions = ">=3.8" files = [ - {file = "coverage-7.5.4-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:6cfb5a4f556bb51aba274588200a46e4dd6b505fb1a5f8c5ae408222eb416f99"}, - {file = "coverage-7.5.4-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:2174e7c23e0a454ffe12267a10732c273243b4f2d50d07544a91198f05c48f47"}, - {file = "coverage-7.5.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2214ee920787d85db1b6a0bd9da5f8503ccc8fcd5814d90796c2f2493a2f4d2e"}, - {file = "coverage-7.5.4-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1137f46adb28e3813dec8c01fefadcb8c614f33576f672962e323b5128d9a68d"}, - {file = "coverage-7.5.4-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b385d49609f8e9efc885790a5a0e89f2e3ae042cdf12958b6034cc442de428d3"}, - {file = "coverage-7.5.4-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:b4a474f799456e0eb46d78ab07303286a84a3140e9700b9e154cfebc8f527016"}, - {file = "coverage-7.5.4-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:5cd64adedf3be66f8ccee418473c2916492d53cbafbfcff851cbec5a8454b136"}, - {file = "coverage-7.5.4-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:e564c2cf45d2f44a9da56f4e3a26b2236504a496eb4cb0ca7221cd4cc7a9aca9"}, - {file = "coverage-7.5.4-cp310-cp310-win32.whl", hash = "sha256:7076b4b3a5f6d2b5d7f1185fde25b1e54eb66e647a1dfef0e2c2bfaf9b4c88c8"}, - {file = "coverage-7.5.4-cp310-cp310-win_amd64.whl", hash = "sha256:018a12985185038a5b2bcafab04ab833a9a0f2c59995b3cec07e10074c78635f"}, - {file = "coverage-7.5.4-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:db14f552ac38f10758ad14dd7b983dbab424e731588d300c7db25b6f89e335b5"}, - {file = "coverage-7.5.4-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:3257fdd8e574805f27bb5342b77bc65578e98cbc004a92232106344053f319ba"}, - {file = "coverage-7.5.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3a6612c99081d8d6134005b1354191e103ec9705d7ba2754e848211ac8cacc6b"}, - {file = "coverage-7.5.4-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d45d3cbd94159c468b9b8c5a556e3f6b81a8d1af2a92b77320e887c3e7a5d080"}, - {file = "coverage-7.5.4-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ed550e7442f278af76d9d65af48069f1fb84c9f745ae249c1a183c1e9d1b025c"}, - {file = "coverage-7.5.4-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:7a892be37ca35eb5019ec85402c3371b0f7cda5ab5056023a7f13da0961e60da"}, - {file = "coverage-7.5.4-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:8192794d120167e2a64721d88dbd688584675e86e15d0569599257566dec9bf0"}, - {file = "coverage-7.5.4-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:820bc841faa502e727a48311948e0461132a9c8baa42f6b2b84a29ced24cc078"}, - {file = "coverage-7.5.4-cp311-cp311-win32.whl", hash = "sha256:6aae5cce399a0f065da65c7bb1e8abd5c7a3043da9dceb429ebe1b289bc07806"}, - {file = "coverage-7.5.4-cp311-cp311-win_amd64.whl", hash = "sha256:d2e344d6adc8ef81c5a233d3a57b3c7d5181f40e79e05e1c143da143ccb6377d"}, - {file = "coverage-7.5.4-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:54317c2b806354cbb2dc7ac27e2b93f97096912cc16b18289c5d4e44fc663233"}, - {file = "coverage-7.5.4-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:042183de01f8b6d531e10c197f7f0315a61e8d805ab29c5f7b51a01d62782747"}, - {file = "coverage-7.5.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a6bb74ed465d5fb204b2ec41d79bcd28afccf817de721e8a807d5141c3426638"}, - {file = "coverage-7.5.4-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b3d45ff86efb129c599a3b287ae2e44c1e281ae0f9a9bad0edc202179bcc3a2e"}, - {file = "coverage-7.5.4-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5013ed890dc917cef2c9f765c4c6a8ae9df983cd60dbb635df8ed9f4ebc9f555"}, - {file = "coverage-7.5.4-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:1014fbf665fef86cdfd6cb5b7371496ce35e4d2a00cda501cf9f5b9e6fced69f"}, - {file = "coverage-7.5.4-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:3684bc2ff328f935981847082ba4fdc950d58906a40eafa93510d1b54c08a66c"}, - {file = "coverage-7.5.4-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:581ea96f92bf71a5ec0974001f900db495488434a6928a2ca7f01eee20c23805"}, - {file = "coverage-7.5.4-cp312-cp312-win32.whl", hash = "sha256:73ca8fbc5bc622e54627314c1a6f1dfdd8db69788f3443e752c215f29fa87a0b"}, - {file = "coverage-7.5.4-cp312-cp312-win_amd64.whl", hash = "sha256:cef4649ec906ea7ea5e9e796e68b987f83fa9a718514fe147f538cfeda76d7a7"}, - {file = "coverage-7.5.4-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:cdd31315fc20868c194130de9ee6bfd99755cc9565edff98ecc12585b90be882"}, - {file = "coverage-7.5.4-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:02ff6e898197cc1e9fa375581382b72498eb2e6d5fc0b53f03e496cfee3fac6d"}, - {file = "coverage-7.5.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d05c16cf4b4c2fc880cb12ba4c9b526e9e5d5bb1d81313d4d732a5b9fe2b9d53"}, - {file = "coverage-7.5.4-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c5986ee7ea0795a4095ac4d113cbb3448601efca7f158ec7f7087a6c705304e4"}, - {file = "coverage-7.5.4-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5df54843b88901fdc2f598ac06737f03d71168fd1175728054c8f5a2739ac3e4"}, - {file = "coverage-7.5.4-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:ab73b35e8d109bffbda9a3e91c64e29fe26e03e49addf5b43d85fc426dde11f9"}, - {file = "coverage-7.5.4-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:aea072a941b033813f5e4814541fc265a5c12ed9720daef11ca516aeacd3bd7f"}, - {file = "coverage-7.5.4-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:16852febd96acd953b0d55fc842ce2dac1710f26729b31c80b940b9afcd9896f"}, - {file = "coverage-7.5.4-cp38-cp38-win32.whl", hash = "sha256:8f894208794b164e6bd4bba61fc98bf6b06be4d390cf2daacfa6eca0a6d2bb4f"}, - {file = "coverage-7.5.4-cp38-cp38-win_amd64.whl", hash = "sha256:e2afe743289273209c992075a5a4913e8d007d569a406ffed0bd080ea02b0633"}, - {file = "coverage-7.5.4-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:b95c3a8cb0463ba9f77383d0fa8c9194cf91f64445a63fc26fb2327e1e1eb088"}, - {file = "coverage-7.5.4-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:3d7564cc09dd91b5a6001754a5b3c6ecc4aba6323baf33a12bd751036c998be4"}, - {file = "coverage-7.5.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:44da56a2589b684813f86d07597fdf8a9c6ce77f58976727329272f5a01f99f7"}, - {file = "coverage-7.5.4-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e16f3d6b491c48c5ae726308e6ab1e18ee830b4cdd6913f2d7f77354b33f91c8"}, - {file = "coverage-7.5.4-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dbc5958cb471e5a5af41b0ddaea96a37e74ed289535e8deca404811f6cb0bc3d"}, - {file = "coverage-7.5.4-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:a04e990a2a41740b02d6182b498ee9796cf60eefe40cf859b016650147908029"}, - {file = "coverage-7.5.4-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:ddbd2f9713a79e8e7242d7c51f1929611e991d855f414ca9996c20e44a895f7c"}, - {file = "coverage-7.5.4-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:b1ccf5e728ccf83acd313c89f07c22d70d6c375a9c6f339233dcf792094bcbf7"}, - {file = "coverage-7.5.4-cp39-cp39-win32.whl", hash = "sha256:56b4eafa21c6c175b3ede004ca12c653a88b6f922494b023aeb1e836df953ace"}, - {file = "coverage-7.5.4-cp39-cp39-win_amd64.whl", hash = "sha256:65e528e2e921ba8fd67d9055e6b9f9e34b21ebd6768ae1c1723f4ea6ace1234d"}, - {file = "coverage-7.5.4-pp38.pp39.pp310-none-any.whl", hash = "sha256:79b356f3dd5b26f3ad23b35c75dbdaf1f9e2450b6bcefc6d0825ea0aa3f86ca5"}, - {file = "coverage-7.5.4.tar.gz", hash = "sha256:a44963520b069e12789d0faea4e9fdb1e410cdc4aab89d94f7f55cbb7fef0353"}, + {file = "coverage-7.6.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:dff044f661f59dace805eedb4a7404c573b6ff0cdba4a524141bc63d7be5c7fd"}, + {file = "coverage-7.6.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:a8659fd33ee9e6ca03950cfdcdf271d645cf681609153f218826dd9805ab585c"}, + {file = "coverage-7.6.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7792f0ab20df8071d669d929c75c97fecfa6bcab82c10ee4adb91c7a54055463"}, + {file = "coverage-7.6.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d4b3cd1ca7cd73d229487fa5caca9e4bc1f0bca96526b922d61053ea751fe791"}, + {file = "coverage-7.6.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e7e128f85c0b419907d1f38e616c4f1e9f1d1b37a7949f44df9a73d5da5cd53c"}, + {file = "coverage-7.6.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:a94925102c89247530ae1dab7dc02c690942566f22e189cbd53579b0693c0783"}, + {file = "coverage-7.6.0-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:dcd070b5b585b50e6617e8972f3fbbee786afca71b1936ac06257f7e178f00f6"}, + {file = "coverage-7.6.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:d50a252b23b9b4dfeefc1f663c568a221092cbaded20a05a11665d0dbec9b8fb"}, + {file = "coverage-7.6.0-cp310-cp310-win32.whl", hash = "sha256:0e7b27d04131c46e6894f23a4ae186a6a2207209a05df5b6ad4caee6d54a222c"}, + {file = "coverage-7.6.0-cp310-cp310-win_amd64.whl", hash = "sha256:54dece71673b3187c86226c3ca793c5f891f9fc3d8aa183f2e3653da18566169"}, + {file = "coverage-7.6.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:c7b525ab52ce18c57ae232ba6f7010297a87ced82a2383b1afd238849c1ff933"}, + {file = "coverage-7.6.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:4bea27c4269234e06f621f3fac3925f56ff34bc14521484b8f66a580aacc2e7d"}, + {file = "coverage-7.6.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ed8d1d1821ba5fc88d4a4f45387b65de52382fa3ef1f0115a4f7a20cdfab0e94"}, + {file = "coverage-7.6.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:01c322ef2bbe15057bc4bf132b525b7e3f7206f071799eb8aa6ad1940bcf5fb1"}, + {file = "coverage-7.6.0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:03cafe82c1b32b770a29fd6de923625ccac3185a54a5e66606da26d105f37dac"}, + {file = "coverage-7.6.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:0d1b923fc4a40c5832be4f35a5dab0e5ff89cddf83bb4174499e02ea089daf57"}, + {file = "coverage-7.6.0-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:4b03741e70fb811d1a9a1d75355cf391f274ed85847f4b78e35459899f57af4d"}, + {file = "coverage-7.6.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:a73d18625f6a8a1cbb11eadc1d03929f9510f4131879288e3f7922097a429f63"}, + {file = "coverage-7.6.0-cp311-cp311-win32.whl", hash = "sha256:65fa405b837060db569a61ec368b74688f429b32fa47a8929a7a2f9b47183713"}, + {file = "coverage-7.6.0-cp311-cp311-win_amd64.whl", hash = "sha256:6379688fb4cfa921ae349c76eb1a9ab26b65f32b03d46bb0eed841fd4cb6afb1"}, + {file = "coverage-7.6.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:f7db0b6ae1f96ae41afe626095149ecd1b212b424626175a6633c2999eaad45b"}, + {file = "coverage-7.6.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:bbdf9a72403110a3bdae77948b8011f644571311c2fb35ee15f0f10a8fc082e8"}, + {file = "coverage-7.6.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9cc44bf0315268e253bf563f3560e6c004efe38f76db03a1558274a6e04bf5d5"}, + {file = "coverage-7.6.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:da8549d17489cd52f85a9829d0e1d91059359b3c54a26f28bec2c5d369524807"}, + {file = "coverage-7.6.0-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0086cd4fc71b7d485ac93ca4239c8f75732c2ae3ba83f6be1c9be59d9e2c6382"}, + {file = "coverage-7.6.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:1fad32ee9b27350687035cb5fdf9145bc9cf0a094a9577d43e909948ebcfa27b"}, + {file = "coverage-7.6.0-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:044a0985a4f25b335882b0966625270a8d9db3d3409ddc49a4eb00b0ef5e8cee"}, + {file = "coverage-7.6.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:76d5f82213aa78098b9b964ea89de4617e70e0d43e97900c2778a50856dac605"}, + {file = "coverage-7.6.0-cp312-cp312-win32.whl", hash = "sha256:3c59105f8d58ce500f348c5b56163a4113a440dad6daa2294b5052a10db866da"}, + {file = "coverage-7.6.0-cp312-cp312-win_amd64.whl", hash = "sha256:ca5d79cfdae420a1d52bf177de4bc2289c321d6c961ae321503b2ca59c17ae67"}, + {file = "coverage-7.6.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:d39bd10f0ae453554798b125d2f39884290c480f56e8a02ba7a6ed552005243b"}, + {file = "coverage-7.6.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:beb08e8508e53a568811016e59f3234d29c2583f6b6e28572f0954a6b4f7e03d"}, + {file = "coverage-7.6.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b2e16f4cd2bc4d88ba30ca2d3bbf2f21f00f382cf4e1ce3b1ddc96c634bc48ca"}, + {file = "coverage-7.6.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6616d1c9bf1e3faea78711ee42a8b972367d82ceae233ec0ac61cc7fec09fa6b"}, + {file = "coverage-7.6.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ad4567d6c334c46046d1c4c20024de2a1c3abc626817ae21ae3da600f5779b44"}, + {file = "coverage-7.6.0-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:d17c6a415d68cfe1091d3296ba5749d3d8696e42c37fca5d4860c5bf7b729f03"}, + {file = "coverage-7.6.0-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:9146579352d7b5f6412735d0f203bbd8d00113a680b66565e205bc605ef81bc6"}, + {file = "coverage-7.6.0-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:cdab02a0a941af190df8782aafc591ef3ad08824f97850b015c8c6a8b3877b0b"}, + {file = "coverage-7.6.0-cp38-cp38-win32.whl", hash = "sha256:df423f351b162a702c053d5dddc0fc0ef9a9e27ea3f449781ace5f906b664428"}, + {file = "coverage-7.6.0-cp38-cp38-win_amd64.whl", hash = "sha256:f2501d60d7497fd55e391f423f965bbe9e650e9ffc3c627d5f0ac516026000b8"}, + {file = "coverage-7.6.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:7221f9ac9dad9492cecab6f676b3eaf9185141539d5c9689d13fd6b0d7de840c"}, + {file = "coverage-7.6.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:ddaaa91bfc4477d2871442bbf30a125e8fe6b05da8a0015507bfbf4718228ab2"}, + {file = "coverage-7.6.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c4cbe651f3904e28f3a55d6f371203049034b4ddbce65a54527a3f189ca3b390"}, + {file = "coverage-7.6.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:831b476d79408ab6ccfadaaf199906c833f02fdb32c9ab907b1d4aa0713cfa3b"}, + {file = "coverage-7.6.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:46c3d091059ad0b9c59d1034de74a7f36dcfa7f6d3bde782c49deb42438f2450"}, + {file = "coverage-7.6.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:4d5fae0a22dc86259dee66f2cc6c1d3e490c4a1214d7daa2a93d07491c5c04b6"}, + {file = "coverage-7.6.0-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:07ed352205574aad067482e53dd606926afebcb5590653121063fbf4e2175166"}, + {file = "coverage-7.6.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:49c76cdfa13015c4560702574bad67f0e15ca5a2872c6a125f6327ead2b731dd"}, + {file = "coverage-7.6.0-cp39-cp39-win32.whl", hash = "sha256:482855914928c8175735a2a59c8dc5806cf7d8f032e4820d52e845d1f731dca2"}, + {file = "coverage-7.6.0-cp39-cp39-win_amd64.whl", hash = "sha256:543ef9179bc55edfd895154a51792b01c017c87af0ebaae092720152e19e42ca"}, + {file = "coverage-7.6.0-pp38.pp39.pp310-none-any.whl", hash = "sha256:6fe885135c8a479d3e37a7aae61cbd3a0fb2deccb4dda3c25f92a49189f766d6"}, + {file = "coverage-7.6.0.tar.gz", hash = "sha256:289cc803fa1dc901f84701ac10c9ee873619320f2f9aff38794db4a4a0268d51"}, ] [package.extras] @@ -486,13 +486,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] diff --git a/airbyte-integrations/connectors/destination-duckdb/pyproject.toml b/airbyte-integrations/connectors/destination-duckdb/pyproject.toml index 84f474f343e0..bb92a514f556 100644 --- a/airbyte-integrations/connectors/destination-duckdb/pyproject.toml +++ b/airbyte-integrations/connectors/destination-duckdb/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "destination-duckdb" -version = "0.4.8" +version = "0.4.9" description = "Destination implementation for Duckdb." authors = ["Simon Späti, Airbyte"] license = "MIT" diff --git a/docs/integrations/destinations/duckdb.md b/docs/integrations/destinations/duckdb.md index d2a865a043c9..7917ecc80083 100644 --- a/docs/integrations/destinations/duckdb.md +++ b/docs/integrations/destinations/duckdb.md @@ -116,6 +116,7 @@ This error may indicate that you are connecting with a `0.10.x` DuckDB client (a | Version | Date | Pull Request | Subject | | :------ | :--------- | :-------------------------------------------------------- | :----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| 0.4.9 | 2024-07-13 | [41882](https://github.com/airbytehq/airbyte/pull/41882) | Update dependencies | | 0.4.8 | 2024-07-10 | [41521](https://github.com/airbytehq/airbyte/pull/41521) | Update dependencies | | 0.4.7 | 2024-07-09 | [41253](https://github.com/airbytehq/airbyte/pull/41253) | Update dependencies | | 0.4.6 | 2024-07-06 | [41014](https://github.com/airbytehq/airbyte/pull/41014) | Update dependencies | From 216632d03a2277633881e3f5ceba4fd0eb34aa8b Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:20:05 +0200 Subject: [PATCH 059/260] =?UTF-8?q?=F0=9F=90=99=20destination-typesense:?= =?UTF-8?q?=20run=20up-to-date=20pipeline=20[2024-07-13]=20(#41881)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/destination-typesense/metadata.yaml | 2 +- .../connectors/destination-typesense/poetry.lock | 6 +++--- .../connectors/destination-typesense/pyproject.toml | 2 +- docs/integrations/destinations/typesense.md | 1 + 4 files changed, 6 insertions(+), 5 deletions(-) diff --git a/airbyte-integrations/connectors/destination-typesense/metadata.yaml b/airbyte-integrations/connectors/destination-typesense/metadata.yaml index fa2ce1416f80..b499b840bc97 100644 --- a/airbyte-integrations/connectors/destination-typesense/metadata.yaml +++ b/airbyte-integrations/connectors/destination-typesense/metadata.yaml @@ -2,7 +2,7 @@ data: connectorSubtype: database connectorType: destination definitionId: 36be8dc6-9851-49af-b776-9d4c30e4ab6a - dockerImageTag: 0.1.12 + dockerImageTag: 0.1.13 dockerRepository: airbyte/destination-typesense connectorBuildOptions: baseImage: docker.io/airbyte/python-connector-base:2.0.0@sha256:c44839ba84406116e8ba68722a0f30e8f6e7056c726f447681bb9e9ece8bd916 diff --git a/airbyte-integrations/connectors/destination-typesense/poetry.lock b/airbyte-integrations/connectors/destination-typesense/poetry.lock index 8a93544cd54d..89430f0af66b 100644 --- a/airbyte-integrations/connectors/destination-typesense/poetry.lock +++ b/airbyte-integrations/connectors/destination-typesense/poetry.lock @@ -289,13 +289,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] diff --git a/airbyte-integrations/connectors/destination-typesense/pyproject.toml b/airbyte-integrations/connectors/destination-typesense/pyproject.toml index c47e9f151bac..018f4eeb9ba3 100644 --- a/airbyte-integrations/connectors/destination-typesense/pyproject.toml +++ b/airbyte-integrations/connectors/destination-typesense/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.1.12" +version = "0.1.13" name = "destination-typesense" description = "Destination Implementation for Typesense." authors = [ "Airbyte ",] diff --git a/docs/integrations/destinations/typesense.md b/docs/integrations/destinations/typesense.md index 94f5a664b2c8..193c275d57d0 100644 --- a/docs/integrations/destinations/typesense.md +++ b/docs/integrations/destinations/typesense.md @@ -40,6 +40,7 @@ The setup only requires two fields. First is the `host` which is the address at | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :---------------------------- | +| 0.1.13 | 2024-07-13 | [41881](https://github.com/airbytehq/airbyte/pull/41881) | Update dependencies | | 0.1.12 | 2024-07-10 | [41361](https://github.com/airbytehq/airbyte/pull/41361) | Update dependencies | | 0.1.11 | 2024-07-09 | [41220](https://github.com/airbytehq/airbyte/pull/41220) | Update dependencies | | 0.1.10 | 2024-07-06 | [40918](https://github.com/airbytehq/airbyte/pull/40918) | Update dependencies | From f58001210f2f5bf6b90f97f78d4c0dd1c654b193 Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:20:09 +0200 Subject: [PATCH 060/260] =?UTF-8?q?=F0=9F=90=99=20source-zendesk-sunshine:?= =?UTF-8?q?=20run=20up-to-date=20pipeline=20[2024-07-13]=20(#41880)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-zendesk-sunshine/metadata.yaml | 2 +- .../connectors/source-zendesk-sunshine/poetry.lock | 6 +++--- .../connectors/source-zendesk-sunshine/pyproject.toml | 2 +- docs/integrations/sources/zendesk-sunshine.md | 1 + 4 files changed, 6 insertions(+), 5 deletions(-) diff --git a/airbyte-integrations/connectors/source-zendesk-sunshine/metadata.yaml b/airbyte-integrations/connectors/source-zendesk-sunshine/metadata.yaml index 00131483b61b..702f57efda8c 100644 --- a/airbyte-integrations/connectors/source-zendesk-sunshine/metadata.yaml +++ b/airbyte-integrations/connectors/source-zendesk-sunshine/metadata.yaml @@ -10,7 +10,7 @@ data: connectorSubtype: api connectorType: source definitionId: 325e0640-e7b3-4e24-b823-3361008f603f - dockerImageTag: 0.2.10 + dockerImageTag: 0.2.11 dockerRepository: airbyte/source-zendesk-sunshine documentationUrl: https://docs.airbyte.com/integrations/sources/zendesk-sunshine githubIssueLabel: source-zendesk-sunshine diff --git a/airbyte-integrations/connectors/source-zendesk-sunshine/poetry.lock b/airbyte-integrations/connectors/source-zendesk-sunshine/poetry.lock index cce71c3b0e79..a1ccc2d0271d 100644 --- a/airbyte-integrations/connectors/source-zendesk-sunshine/poetry.lock +++ b/airbyte-integrations/connectors/source-zendesk-sunshine/poetry.lock @@ -288,13 +288,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] diff --git a/airbyte-integrations/connectors/source-zendesk-sunshine/pyproject.toml b/airbyte-integrations/connectors/source-zendesk-sunshine/pyproject.toml index dd33a7ab15f5..74a94b4f0d77 100644 --- a/airbyte-integrations/connectors/source-zendesk-sunshine/pyproject.toml +++ b/airbyte-integrations/connectors/source-zendesk-sunshine/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.2.10" +version = "0.2.11" name = "source-zendesk-sunshine" description = "Source implementation for Zendesk Sunshine." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/zendesk-sunshine.md b/docs/integrations/sources/zendesk-sunshine.md index 558c8ab63433..03bea033f1c9 100644 --- a/docs/integrations/sources/zendesk-sunshine.md +++ b/docs/integrations/sources/zendesk-sunshine.md @@ -68,6 +68,7 @@ We recommend creating a restricted, read-only key specifically for Airbyte acces | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :------------------------------------------------------------------------------ | +| 0.2.11 | 2024-07-13 | [41880](https://github.com/airbytehq/airbyte/pull/41880) | Update dependencies | | 0.2.10 | 2024-07-10 | [41496](https://github.com/airbytehq/airbyte/pull/41496) | Update dependencies | | 0.2.9 | 2024-07-09 | [41205](https://github.com/airbytehq/airbyte/pull/41205) | Update dependencies | | 0.2.8 | 2024-07-06 | [40850](https://github.com/airbytehq/airbyte/pull/40850) | Update dependencies | From 298fd799a7d548c5459e19a608eb6c6fc07a956b Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:20:12 +0200 Subject: [PATCH 061/260] =?UTF-8?q?=F0=9F=90=99=20source-rocket-chat:=20ru?= =?UTF-8?q?n=20up-to-date=20pipeline=20[2024-07-13]=20(#41879)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-rocket-chat/metadata.yaml | 2 +- .../connectors/source-rocket-chat/poetry.lock | 12 ++++++------ .../connectors/source-rocket-chat/pyproject.toml | 2 +- docs/integrations/sources/rocket-chat.md | 1 + 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/airbyte-integrations/connectors/source-rocket-chat/metadata.yaml b/airbyte-integrations/connectors/source-rocket-chat/metadata.yaml index b0ef483a1c12..773ea4f94471 100644 --- a/airbyte-integrations/connectors/source-rocket-chat/metadata.yaml +++ b/airbyte-integrations/connectors/source-rocket-chat/metadata.yaml @@ -2,7 +2,7 @@ data: connectorSubtype: api connectorType: source definitionId: 921d9608-3915-450b-8078-0af18801ea1b - dockerImageTag: 0.1.7 + dockerImageTag: 0.1.8 dockerRepository: airbyte/source-rocket-chat githubIssueLabel: source-rocket-chat icon: rocket-chat.svg diff --git a/airbyte-integrations/connectors/source-rocket-chat/poetry.lock b/airbyte-integrations/connectors/source-rocket-chat/poetry.lock index 4b03cc351726..13836360394d 100644 --- a/airbyte-integrations/connectors/source-rocket-chat/poetry.lock +++ b/airbyte-integrations/connectors/source-rocket-chat/poetry.lock @@ -410,13 +410,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] @@ -566,13 +566,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.84" +version = "0.1.85" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.84-py3-none-any.whl", hash = "sha256:01f3c6390dba26c583bac8dd0e551ce3d0509c7f55cad714db0b5c8d36e4c7ff"}, - {file = "langsmith-0.1.84.tar.gz", hash = "sha256:5220c0439838b9a5bd320fd3686be505c5083dcee22d2452006c23891153bea1"}, + {file = "langsmith-0.1.85-py3-none-any.whl", hash = "sha256:c1f94384f10cea96f7b4d33fd3db7ec180c03c7468877d50846f881d2017ff94"}, + {file = "langsmith-0.1.85.tar.gz", hash = "sha256:acff31f9e53efa48586cf8e32f65625a335c74d7c4fa306d1655ac18452296f6"}, ] [package.dependencies] diff --git a/airbyte-integrations/connectors/source-rocket-chat/pyproject.toml b/airbyte-integrations/connectors/source-rocket-chat/pyproject.toml index d85f32f18706..49dbb3208f4b 100644 --- a/airbyte-integrations/connectors/source-rocket-chat/pyproject.toml +++ b/airbyte-integrations/connectors/source-rocket-chat/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.1.7" +version = "0.1.8" name = "source-rocket-chat" description = "Source implementation for Rocket Chat." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/rocket-chat.md b/docs/integrations/sources/rocket-chat.md index a863d3b13286..cbe1e35fa0d9 100644 --- a/docs/integrations/sources/rocket-chat.md +++ b/docs/integrations/sources/rocket-chat.md @@ -41,6 +41,7 @@ You need to setup a personal access token within the Rocket.chat workspace, see | Version | Date | Pull Request | Subject | | :------ | :--------- | :-------------------------------------------------------- | :-------------------------------------------- | +| 0.1.8 | 2024-07-13 | [41879](https://github.com/airbytehq/airbyte/pull/41879) | Update dependencies | | 0.1.7 | 2024-07-10 | [41518](https://github.com/airbytehq/airbyte/pull/41518) | Update dependencies | | 0.1.6 | 2024-07-06 | [40952](https://github.com/airbytehq/airbyte/pull/40952) | Update dependencies | | 0.1.5 | 2024-06-25 | [40346](https://github.com/airbytehq/airbyte/pull/40346) | Update dependencies | From 187a68d60e9dd97ff8e827cc6ae2e366f4f4c578 Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:20:15 +0200 Subject: [PATCH 062/260] =?UTF-8?q?=F0=9F=90=99=20source-the-guardian-api:?= =?UTF-8?q?=20run=20up-to-date=20pipeline=20[2024-07-13]=20(#41878)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-the-guardian-api/metadata.yaml | 2 +- .../connectors/source-the-guardian-api/poetry.lock | 8 ++++---- .../connectors/source-the-guardian-api/pyproject.toml | 2 +- docs/integrations/sources/the-guardian-api.md | 1 + 4 files changed, 7 insertions(+), 6 deletions(-) diff --git a/airbyte-integrations/connectors/source-the-guardian-api/metadata.yaml b/airbyte-integrations/connectors/source-the-guardian-api/metadata.yaml index 454e0f1970d0..f9ce91be4c82 100644 --- a/airbyte-integrations/connectors/source-the-guardian-api/metadata.yaml +++ b/airbyte-integrations/connectors/source-the-guardian-api/metadata.yaml @@ -15,7 +15,7 @@ data: type: GSM connectorType: source definitionId: d42bd69f-6bf0-4d0b-9209-16231af07a92 - dockerImageTag: 0.1.2 + dockerImageTag: 0.1.3 dockerRepository: airbyte/source-the-guardian-api documentationUrl: https://docs.airbyte.com/integrations/sources/the-guardian-api githubIssueLabel: source-the-guardian-api diff --git a/airbyte-integrations/connectors/source-the-guardian-api/poetry.lock b/airbyte-integrations/connectors/source-the-guardian-api/poetry.lock index 5f9adc433357..031cbe6e2a9d 100644 --- a/airbyte-integrations/connectors/source-the-guardian-api/poetry.lock +++ b/airbyte-integrations/connectors/source-the-guardian-api/poetry.lock @@ -1,4 +1,4 @@ -# This file is automatically @generated by Poetry 1.8.3 and should not be changed by hand. +# This file is automatically @generated by Poetry 1.6.1 and should not be changed by hand. [[package]] name = "airbyte-cdk" @@ -279,13 +279,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] diff --git a/airbyte-integrations/connectors/source-the-guardian-api/pyproject.toml b/airbyte-integrations/connectors/source-the-guardian-api/pyproject.toml index f26a8480c739..07cefbcef374 100644 --- a/airbyte-integrations/connectors/source-the-guardian-api/pyproject.toml +++ b/airbyte-integrations/connectors/source-the-guardian-api/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.1.2" +version = "0.1.3" name = "source-the-guardian-api" description = "Source implementation for the guardian api." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/the-guardian-api.md b/docs/integrations/sources/the-guardian-api.md index 8fc2c0adf355..df58cc106337 100644 --- a/docs/integrations/sources/the-guardian-api.md +++ b/docs/integrations/sources/the-guardian-api.md @@ -113,6 +113,7 @@ The key that you are assigned is rate-limited and as such any applications that | Version | Date | Pull Request | Subject | | :------ | :--------- | :-------------------------------------------------------- | :--------------------------------------------- | +| 0.1.3 | 2024-07-13 | [41878](https://github.com/airbytehq/airbyte/pull/41878) | Update dependencies | | 0.1.2 | 2024-07-10 | [41505](https://github.com/airbytehq/airbyte/pull/41505) | Update dependencies | | 0.1.1 | 2024-07-10 | [41049](https://github.com/airbytehq/airbyte/pull/41049) | Migrate to poetry | | 0.1.0 | 2022-10-30 | [#18654](https://github.com/airbytehq/airbyte/pull/18654) | 🎉 New Source: The Guardian API [low-code CDK] | From 3289a50742897db3bc8dc92cf206ba9548191b52 Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:20:20 +0200 Subject: [PATCH 063/260] =?UTF-8?q?=F0=9F=90=99=20source-amazon-ads:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-07-13]=20(#41876)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-amazon-ads/metadata.yaml | 2 +- .../connectors/source-amazon-ads/poetry.lock | 12 ++++++------ .../connectors/source-amazon-ads/pyproject.toml | 2 +- docs/integrations/sources/amazon-ads.md | 1 + 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/airbyte-integrations/connectors/source-amazon-ads/metadata.yaml b/airbyte-integrations/connectors/source-amazon-ads/metadata.yaml index 15d4f3c89d4c..678d4df2e84b 100644 --- a/airbyte-integrations/connectors/source-amazon-ads/metadata.yaml +++ b/airbyte-integrations/connectors/source-amazon-ads/metadata.yaml @@ -13,7 +13,7 @@ data: connectorSubtype: api connectorType: source definitionId: c6b0a29e-1da9-4512-9002-7bfd0cba2246 - dockerImageTag: 5.0.8 + dockerImageTag: 5.0.9 dockerRepository: airbyte/source-amazon-ads documentationUrl: https://docs.airbyte.com/integrations/sources/amazon-ads githubIssueLabel: source-amazon-ads diff --git a/airbyte-integrations/connectors/source-amazon-ads/poetry.lock b/airbyte-integrations/connectors/source-amazon-ads/poetry.lock index ee3f7672895a..b30f5e60d9f9 100644 --- a/airbyte-integrations/connectors/source-amazon-ads/poetry.lock +++ b/airbyte-integrations/connectors/source-amazon-ads/poetry.lock @@ -410,13 +410,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] @@ -580,13 +580,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.84" +version = "0.1.85" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.84-py3-none-any.whl", hash = "sha256:01f3c6390dba26c583bac8dd0e551ce3d0509c7f55cad714db0b5c8d36e4c7ff"}, - {file = "langsmith-0.1.84.tar.gz", hash = "sha256:5220c0439838b9a5bd320fd3686be505c5083dcee22d2452006c23891153bea1"}, + {file = "langsmith-0.1.85-py3-none-any.whl", hash = "sha256:c1f94384f10cea96f7b4d33fd3db7ec180c03c7468877d50846f881d2017ff94"}, + {file = "langsmith-0.1.85.tar.gz", hash = "sha256:acff31f9e53efa48586cf8e32f65625a335c74d7c4fa306d1655ac18452296f6"}, ] [package.dependencies] diff --git a/airbyte-integrations/connectors/source-amazon-ads/pyproject.toml b/airbyte-integrations/connectors/source-amazon-ads/pyproject.toml index 1fcc1295afcf..e1089e233f7b 100644 --- a/airbyte-integrations/connectors/source-amazon-ads/pyproject.toml +++ b/airbyte-integrations/connectors/source-amazon-ads/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "5.0.8" +version = "5.0.9" name = "source-amazon-ads" description = "Source implementation for Amazon Ads." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/amazon-ads.md b/docs/integrations/sources/amazon-ads.md index b697638371ed..978fb339a2a4 100644 --- a/docs/integrations/sources/amazon-ads.md +++ b/docs/integrations/sources/amazon-ads.md @@ -132,6 +132,7 @@ Information about expected report generation waiting time can be found [here](ht | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :-------------------------------------------------------------------------------------------------------------- | +| 5.0.9 | 2024-07-13 | [41876](https://github.com/airbytehq/airbyte/pull/41876) | Update dependencies | | 5.0.8 | 2024-07-10 | [41487](https://github.com/airbytehq/airbyte/pull/41487) | Update dependencies | | 5.0.7 | 2024-07-09 | [41143](https://github.com/airbytehq/airbyte/pull/41143) | Update dependencies | | 5.0.6 | 2024-07-06 | [40798](https://github.com/airbytehq/airbyte/pull/40798) | Update dependencies | From 96ef429541357681afce951c2544de83306fce56 Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:20:23 +0200 Subject: [PATCH 064/260] =?UTF-8?q?=F0=9F=90=99=20source-bing-ads:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-07-13]=20(#41875)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-bing-ads/metadata.yaml | 2 +- .../connectors/source-bing-ads/poetry.lock | 12 ++++++------ .../connectors/source-bing-ads/pyproject.toml | 2 +- docs/integrations/sources/bing-ads.md | 1 + 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/airbyte-integrations/connectors/source-bing-ads/metadata.yaml b/airbyte-integrations/connectors/source-bing-ads/metadata.yaml index 221b11fc4f7f..4f5b4cfb8efd 100644 --- a/airbyte-integrations/connectors/source-bing-ads/metadata.yaml +++ b/airbyte-integrations/connectors/source-bing-ads/metadata.yaml @@ -16,7 +16,7 @@ data: connectorSubtype: api connectorType: source definitionId: 47f25999-dd5e-4636-8c39-e7cea2453331 - dockerImageTag: 2.6.9 + dockerImageTag: 2.6.10 dockerRepository: airbyte/source-bing-ads documentationUrl: https://docs.airbyte.com/integrations/sources/bing-ads githubIssueLabel: source-bing-ads diff --git a/airbyte-integrations/connectors/source-bing-ads/poetry.lock b/airbyte-integrations/connectors/source-bing-ads/poetry.lock index 71cd3e917d4c..eea7eceb5a9b 100644 --- a/airbyte-integrations/connectors/source-bing-ads/poetry.lock +++ b/airbyte-integrations/connectors/source-bing-ads/poetry.lock @@ -434,13 +434,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] @@ -604,13 +604,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.84" +version = "0.1.85" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.84-py3-none-any.whl", hash = "sha256:01f3c6390dba26c583bac8dd0e551ce3d0509c7f55cad714db0b5c8d36e4c7ff"}, - {file = "langsmith-0.1.84.tar.gz", hash = "sha256:5220c0439838b9a5bd320fd3686be505c5083dcee22d2452006c23891153bea1"}, + {file = "langsmith-0.1.85-py3-none-any.whl", hash = "sha256:c1f94384f10cea96f7b4d33fd3db7ec180c03c7468877d50846f881d2017ff94"}, + {file = "langsmith-0.1.85.tar.gz", hash = "sha256:acff31f9e53efa48586cf8e32f65625a335c74d7c4fa306d1655ac18452296f6"}, ] [package.dependencies] diff --git a/airbyte-integrations/connectors/source-bing-ads/pyproject.toml b/airbyte-integrations/connectors/source-bing-ads/pyproject.toml index f466027acf7e..5ffcee1cdc1e 100644 --- a/airbyte-integrations/connectors/source-bing-ads/pyproject.toml +++ b/airbyte-integrations/connectors/source-bing-ads/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "2.6.9" +version = "2.6.10" name = "source-bing-ads" description = "Source implementation for Bing Ads." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/bing-ads.md b/docs/integrations/sources/bing-ads.md index 9a8cbeecf164..a449856e2c7b 100644 --- a/docs/integrations/sources/bing-ads.md +++ b/docs/integrations/sources/bing-ads.md @@ -258,6 +258,7 @@ The Bing Ads API limits the number of requests for all Microsoft Advertising cli | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------------------------------------------------------------------------------- | :--------------------------------------------------------------------------------------------------------------------------------------------- | +| 2.6.10 | 2024-07-13 | [41875](https://github.com/airbytehq/airbyte/pull/41875) | Update dependencies | | 2.6.9 | 2024-07-10 | [41383](https://github.com/airbytehq/airbyte/pull/41383) | Update dependencies | | 2.6.8 | 2024-07-09 | [41314](https://github.com/airbytehq/airbyte/pull/41314) | Update dependencies | | 2.6.7 | 2024-07-06 | [40906](https://github.com/airbytehq/airbyte/pull/40906) | Update dependencies | From a5835d45a1307e0e8fe10154977659ad75999807 Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:20:25 +0200 Subject: [PATCH 065/260] =?UTF-8?q?=F0=9F=90=99=20source-klarna:=20run=20u?= =?UTF-8?q?p-to-date=20pipeline=20[2024-07-13]=20(#41874)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-klarna/metadata.yaml | 2 +- airbyte-integrations/connectors/source-klarna/poetry.lock | 6 +++--- .../connectors/source-klarna/pyproject.toml | 2 +- docs/integrations/sources/klarna.md | 1 + 4 files changed, 6 insertions(+), 5 deletions(-) diff --git a/airbyte-integrations/connectors/source-klarna/metadata.yaml b/airbyte-integrations/connectors/source-klarna/metadata.yaml index 3d3dbaf8728f..8c322ee47900 100644 --- a/airbyte-integrations/connectors/source-klarna/metadata.yaml +++ b/airbyte-integrations/connectors/source-klarna/metadata.yaml @@ -13,7 +13,7 @@ data: connectorSubtype: api connectorType: source definitionId: 60c24725-00ae-490c-991d-55b78c3197e0 - dockerImageTag: 0.2.11 + dockerImageTag: 0.2.12 dockerRepository: airbyte/source-klarna documentationUrl: https://docs.airbyte.com/integrations/sources/klarna githubIssueLabel: source-klarna diff --git a/airbyte-integrations/connectors/source-klarna/poetry.lock b/airbyte-integrations/connectors/source-klarna/poetry.lock index cce71c3b0e79..a1ccc2d0271d 100644 --- a/airbyte-integrations/connectors/source-klarna/poetry.lock +++ b/airbyte-integrations/connectors/source-klarna/poetry.lock @@ -288,13 +288,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] diff --git a/airbyte-integrations/connectors/source-klarna/pyproject.toml b/airbyte-integrations/connectors/source-klarna/pyproject.toml index 57f21f3a3375..b31ec7b97537 100644 --- a/airbyte-integrations/connectors/source-klarna/pyproject.toml +++ b/airbyte-integrations/connectors/source-klarna/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.2.11" +version = "0.2.12" name = "source-klarna" description = "Source implementation for Klarna." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/klarna.md b/docs/integrations/sources/klarna.md index c42a8368a778..b69dbc10b593 100644 --- a/docs/integrations/sources/klarna.md +++ b/docs/integrations/sources/klarna.md @@ -62,6 +62,7 @@ Connector will handle an issue with rate limiting as Klarna returns 429 status c | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :------------------------------------------------------------------------------ | +| 0.2.12 | 2024-07-13 | [41874](https://github.com/airbytehq/airbyte/pull/41874) | Update dependencies | | 0.2.11 | 2024-07-10 | [41483](https://github.com/airbytehq/airbyte/pull/41483) | Update dependencies | | 0.2.10 | 2024-07-09 | [41267](https://github.com/airbytehq/airbyte/pull/41267) | Update dependencies | | 0.2.9 | 2024-07-06 | [40819](https://github.com/airbytehq/airbyte/pull/40819) | Update dependencies | From 2f040a660e04ee3a929ec77dded76fbe46cfc449 Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:20:28 +0200 Subject: [PATCH 066/260] =?UTF-8?q?=F0=9F=90=99=20source-amazon-seller-par?= =?UTF-8?q?tner:=20run=20up-to-date=20pipeline=20[2024-07-13]=20(#41873)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../source-amazon-seller-partner/metadata.yaml | 2 +- .../source-amazon-seller-partner/poetry.lock | 12 ++++++------ .../source-amazon-seller-partner/pyproject.toml | 2 +- docs/integrations/sources/amazon-seller-partner.md | 1 + 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/airbyte-integrations/connectors/source-amazon-seller-partner/metadata.yaml b/airbyte-integrations/connectors/source-amazon-seller-partner/metadata.yaml index f157dbcc7b00..a34aea420ace 100644 --- a/airbyte-integrations/connectors/source-amazon-seller-partner/metadata.yaml +++ b/airbyte-integrations/connectors/source-amazon-seller-partner/metadata.yaml @@ -15,7 +15,7 @@ data: connectorSubtype: api connectorType: source definitionId: e55879a8-0ef8-4557-abcf-ab34c53ec460 - dockerImageTag: 4.3.10 + dockerImageTag: 4.3.11 dockerRepository: airbyte/source-amazon-seller-partner documentationUrl: https://docs.airbyte.com/integrations/sources/amazon-seller-partner githubIssueLabel: source-amazon-seller-partner diff --git a/airbyte-integrations/connectors/source-amazon-seller-partner/poetry.lock b/airbyte-integrations/connectors/source-amazon-seller-partner/poetry.lock index a45038dbc36f..36e4c59004ba 100644 --- a/airbyte-integrations/connectors/source-amazon-seller-partner/poetry.lock +++ b/airbyte-integrations/connectors/source-amazon-seller-partner/poetry.lock @@ -432,13 +432,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] @@ -602,13 +602,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.84" +version = "0.1.85" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.84-py3-none-any.whl", hash = "sha256:01f3c6390dba26c583bac8dd0e551ce3d0509c7f55cad714db0b5c8d36e4c7ff"}, - {file = "langsmith-0.1.84.tar.gz", hash = "sha256:5220c0439838b9a5bd320fd3686be505c5083dcee22d2452006c23891153bea1"}, + {file = "langsmith-0.1.85-py3-none-any.whl", hash = "sha256:c1f94384f10cea96f7b4d33fd3db7ec180c03c7468877d50846f881d2017ff94"}, + {file = "langsmith-0.1.85.tar.gz", hash = "sha256:acff31f9e53efa48586cf8e32f65625a335c74d7c4fa306d1655ac18452296f6"}, ] [package.dependencies] diff --git a/airbyte-integrations/connectors/source-amazon-seller-partner/pyproject.toml b/airbyte-integrations/connectors/source-amazon-seller-partner/pyproject.toml index 38ab3a03d560..6f942017725e 100644 --- a/airbyte-integrations/connectors/source-amazon-seller-partner/pyproject.toml +++ b/airbyte-integrations/connectors/source-amazon-seller-partner/pyproject.toml @@ -3,7 +3,7 @@ requires = ["poetry-core>=1.0.0"] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "4.3.10" +version = "4.3.11" name = "source-amazon-seller-partner" description = "Source implementation for Amazon Seller Partner." authors = ["Airbyte "] diff --git a/docs/integrations/sources/amazon-seller-partner.md b/docs/integrations/sources/amazon-seller-partner.md index 91afe0b1c07b..bc7e57ecf7f4 100644 --- a/docs/integrations/sources/amazon-seller-partner.md +++ b/docs/integrations/sources/amazon-seller-partner.md @@ -178,6 +178,7 @@ Information about rate limits you may find [here](https://developer-docs.amazon. | Version | Date | Pull Request | Subject | |:--------|:-----------|:----------------------------------------------------------|:------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| +| 4.3.11 | 2024-07-13 | [41873](https://github.com/airbytehq/airbyte/pull/41873) | Update dependencies | | 4.3.10 | 2024-07-10 | [41345](https://github.com/airbytehq/airbyte/pull/41345) | Update dependencies | | 4.3.9 | 2024-07-09 | [41158](https://github.com/airbytehq/airbyte/pull/41158) | Update dependencies | | 4.3.8 | 2024-07-08 | [40751](https://github.com/airbytehq/airbyte/pull/40751) | Improve error messaging and turning on alerting | From 528c39fbb205d44b8af5e1e40e0147eea7e0be21 Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:20:32 +0200 Subject: [PATCH 067/260] =?UTF-8?q?=F0=9F=90=99=20source-lemlist:=20run=20?= =?UTF-8?q?up-to-date=20pipeline=20[2024-07-13]=20(#41872)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-lemlist/metadata.yaml | 2 +- .../connectors/source-lemlist/poetry.lock | 12 ++++++------ .../connectors/source-lemlist/pyproject.toml | 2 +- docs/integrations/sources/lemlist.md | 1 + 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/airbyte-integrations/connectors/source-lemlist/metadata.yaml b/airbyte-integrations/connectors/source-lemlist/metadata.yaml index 6659f8fc235c..c3319ead1123 100644 --- a/airbyte-integrations/connectors/source-lemlist/metadata.yaml +++ b/airbyte-integrations/connectors/source-lemlist/metadata.yaml @@ -16,7 +16,7 @@ data: connectorBuildOptions: baseImage: docker.io/airbyte/python-connector-base:2.0.0@sha256:c44839ba84406116e8ba68722a0f30e8f6e7056c726f447681bb9e9ece8bd916 definitionId: 789f8e7a-2d28-11ec-8d3d-0242ac130003 - dockerImageTag: 0.2.8 + dockerImageTag: 0.2.9 dockerRepository: airbyte/source-lemlist githubIssueLabel: source-lemlist icon: lemlist.svg diff --git a/airbyte-integrations/connectors/source-lemlist/poetry.lock b/airbyte-integrations/connectors/source-lemlist/poetry.lock index 1ac306a5c0f1..31731153c82e 100644 --- a/airbyte-integrations/connectors/source-lemlist/poetry.lock +++ b/airbyte-integrations/connectors/source-lemlist/poetry.lock @@ -410,13 +410,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] @@ -566,13 +566,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.84" +version = "0.1.85" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.84-py3-none-any.whl", hash = "sha256:01f3c6390dba26c583bac8dd0e551ce3d0509c7f55cad714db0b5c8d36e4c7ff"}, - {file = "langsmith-0.1.84.tar.gz", hash = "sha256:5220c0439838b9a5bd320fd3686be505c5083dcee22d2452006c23891153bea1"}, + {file = "langsmith-0.1.85-py3-none-any.whl", hash = "sha256:c1f94384f10cea96f7b4d33fd3db7ec180c03c7468877d50846f881d2017ff94"}, + {file = "langsmith-0.1.85.tar.gz", hash = "sha256:acff31f9e53efa48586cf8e32f65625a335c74d7c4fa306d1655ac18452296f6"}, ] [package.dependencies] diff --git a/airbyte-integrations/connectors/source-lemlist/pyproject.toml b/airbyte-integrations/connectors/source-lemlist/pyproject.toml index 17d0d1e408d5..986efc02cd8c 100644 --- a/airbyte-integrations/connectors/source-lemlist/pyproject.toml +++ b/airbyte-integrations/connectors/source-lemlist/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.2.8" +version = "0.2.9" name = "source-lemlist" description = "Source implementation for Lemlist." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/lemlist.md b/docs/integrations/sources/lemlist.md index 5270c0783400..db7d51effc6a 100644 --- a/docs/integrations/sources/lemlist.md +++ b/docs/integrations/sources/lemlist.md @@ -40,6 +40,7 @@ The Lemlist connector should not run into Lemlist API limitations under normal u | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :----------------------- | +| 0.2.9 | 2024-07-13 | [41872](https://github.com/airbytehq/airbyte/pull/41872) | Update dependencies | | 0.2.8 | 2024-07-10 | [41415](https://github.com/airbytehq/airbyte/pull/41415) | Update dependencies | | 0.2.7 | 2024-07-09 | [41309](https://github.com/airbytehq/airbyte/pull/41309) | Update dependencies | | 0.2.6 | 2024-07-06 | [40942](https://github.com/airbytehq/airbyte/pull/40942) | Update dependencies | From 8fb64e3137a496d96b68af135def6894ce899cc4 Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:20:35 +0200 Subject: [PATCH 068/260] =?UTF-8?q?=F0=9F=90=99=20source-k6-cloud:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-07-13]=20(#41871)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-k6-cloud/metadata.yaml | 2 +- airbyte-integrations/connectors/source-k6-cloud/poetry.lock | 6 +++--- .../connectors/source-k6-cloud/pyproject.toml | 2 +- docs/integrations/sources/k6-cloud.md | 1 + 4 files changed, 6 insertions(+), 5 deletions(-) diff --git a/airbyte-integrations/connectors/source-k6-cloud/metadata.yaml b/airbyte-integrations/connectors/source-k6-cloud/metadata.yaml index f8e6831c2d5a..d13cc9caeec6 100644 --- a/airbyte-integrations/connectors/source-k6-cloud/metadata.yaml +++ b/airbyte-integrations/connectors/source-k6-cloud/metadata.yaml @@ -7,7 +7,7 @@ data: connectorSubtype: api connectorType: source definitionId: e300ece7-b073-43a3-852e-8aff36a57f13 - dockerImageTag: 0.1.10 + dockerImageTag: 0.1.11 dockerRepository: airbyte/source-k6-cloud documentationUrl: https://docs.airbyte.com/integrations/sources/k6-cloud githubIssueLabel: source-k6-cloud diff --git a/airbyte-integrations/connectors/source-k6-cloud/poetry.lock b/airbyte-integrations/connectors/source-k6-cloud/poetry.lock index 6f83e5bed3a6..c0f7f643d050 100644 --- a/airbyte-integrations/connectors/source-k6-cloud/poetry.lock +++ b/airbyte-integrations/connectors/source-k6-cloud/poetry.lock @@ -288,13 +288,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] diff --git a/airbyte-integrations/connectors/source-k6-cloud/pyproject.toml b/airbyte-integrations/connectors/source-k6-cloud/pyproject.toml index 12b2a5dccb60..6c16dccd8695 100644 --- a/airbyte-integrations/connectors/source-k6-cloud/pyproject.toml +++ b/airbyte-integrations/connectors/source-k6-cloud/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.1.10" +version = "0.1.11" name = "source-k6-cloud" description = "Source implementation for K6 Cloud." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/k6-cloud.md b/docs/integrations/sources/k6-cloud.md index ce8e33a2b426..a982fe565bcb 100644 --- a/docs/integrations/sources/k6-cloud.md +++ b/docs/integrations/sources/k6-cloud.md @@ -32,6 +32,7 @@ This source can sync data from the [K6 Cloud API](https://developers.k6.io). At | Version | Date | Pull Request | Subject | | :------ | :--------- | :-------------------------------------------------------- | :------------------------------------------------------------------------------ | +| 0.1.11 | 2024-07-13 | [41871](https://github.com/airbytehq/airbyte/pull/41871) | Update dependencies | | 0.1.10 | 2024-07-10 | [41462](https://github.com/airbytehq/airbyte/pull/41462) | Update dependencies | | 0.1.9 | 2024-07-10 | [41324](https://github.com/airbytehq/airbyte/pull/41324) | Update dependencies | | 0.1.8 | 2024-07-06 | [40875](https://github.com/airbytehq/airbyte/pull/40875) | Update dependencies | From 1e4bef8e142a032858f77d636f15723e12b2412a Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:20:38 +0200 Subject: [PATCH 069/260] =?UTF-8?q?=F0=9F=90=99=20source-unleash:=20run=20?= =?UTF-8?q?up-to-date=20pipeline=20[2024-07-13]=20(#41870)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-unleash/metadata.yaml | 2 +- airbyte-integrations/connectors/source-unleash/poetry.lock | 6 +++--- .../connectors/source-unleash/pyproject.toml | 2 +- docs/integrations/sources/unleash.md | 1 + 4 files changed, 6 insertions(+), 5 deletions(-) diff --git a/airbyte-integrations/connectors/source-unleash/metadata.yaml b/airbyte-integrations/connectors/source-unleash/metadata.yaml index 6bc5783d1247..17df3b79e1e4 100644 --- a/airbyte-integrations/connectors/source-unleash/metadata.yaml +++ b/airbyte-integrations/connectors/source-unleash/metadata.yaml @@ -2,7 +2,7 @@ data: connectorSubtype: api connectorType: source definitionId: f77914a1-442b-4195-9355-8810a1f4ed3f - dockerImageTag: 0.1.6 + dockerImageTag: 0.1.7 dockerRepository: airbyte/source-unleash githubIssueLabel: source-unleash icon: unleash.svg diff --git a/airbyte-integrations/connectors/source-unleash/poetry.lock b/airbyte-integrations/connectors/source-unleash/poetry.lock index cce71c3b0e79..a1ccc2d0271d 100644 --- a/airbyte-integrations/connectors/source-unleash/poetry.lock +++ b/airbyte-integrations/connectors/source-unleash/poetry.lock @@ -288,13 +288,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] diff --git a/airbyte-integrations/connectors/source-unleash/pyproject.toml b/airbyte-integrations/connectors/source-unleash/pyproject.toml index c04eefca257c..3c500ac6b722 100644 --- a/airbyte-integrations/connectors/source-unleash/pyproject.toml +++ b/airbyte-integrations/connectors/source-unleash/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.1.6" +version = "0.1.7" name = "source-unleash" description = "Source implementation for Unleash." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/unleash.md b/docs/integrations/sources/unleash.md index d590cf670e6e..ff67761222ab 100644 --- a/docs/integrations/sources/unleash.md +++ b/docs/integrations/sources/unleash.md @@ -58,6 +58,7 @@ The API key that you are assigned is rate-limited. | Version | Date | Pull Request | Subject | | :------ | :--------- | :-------------------------------------------------------- | :------------------------------------ | +| 0.1.7 | 2024-07-13 | [41870](https://github.com/airbytehq/airbyte/pull/41870) | Update dependencies | | 0.1.6 | 2024-07-10 | [41554](https://github.com/airbytehq/airbyte/pull/41554) | Update dependencies | | 0.1.5 | 2024-07-09 | [41114](https://github.com/airbytehq/airbyte/pull/41114) | Update dependencies | | 0.1.4 | 2024-07-06 | [40978](https://github.com/airbytehq/airbyte/pull/40978) | Update dependencies | From a658122d430799113fd1ff31bf8007f8390d3c48 Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:20:42 +0200 Subject: [PATCH 070/260] =?UTF-8?q?=F0=9F=90=99=20source-outbrain-amplify:?= =?UTF-8?q?=20run=20up-to-date=20pipeline=20[2024-07-13]=20(#41869)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-outbrain-amplify/metadata.yaml | 2 +- .../connectors/source-outbrain-amplify/poetry.lock | 6 +++--- .../connectors/source-outbrain-amplify/pyproject.toml | 2 +- docs/integrations/sources/outbrain-amplify.md | 1 + 4 files changed, 6 insertions(+), 5 deletions(-) diff --git a/airbyte-integrations/connectors/source-outbrain-amplify/metadata.yaml b/airbyte-integrations/connectors/source-outbrain-amplify/metadata.yaml index 885f6eeffc5d..1249479aa036 100644 --- a/airbyte-integrations/connectors/source-outbrain-amplify/metadata.yaml +++ b/airbyte-integrations/connectors/source-outbrain-amplify/metadata.yaml @@ -16,7 +16,7 @@ data: type: GSM connectorType: source definitionId: 4fe962d0-a70e-4516-aa99-c551abf46352 - dockerImageTag: 0.1.4 + dockerImageTag: 0.1.5 dockerRepository: airbyte/source-outbrain-amplify documentationUrl: https://docs.airbyte.com/integrations/sources/outbrain-amplify githubIssueLabel: source-outbrain-amplify diff --git a/airbyte-integrations/connectors/source-outbrain-amplify/poetry.lock b/airbyte-integrations/connectors/source-outbrain-amplify/poetry.lock index e8f1f4ee423f..09b5fd52d3a3 100644 --- a/airbyte-integrations/connectors/source-outbrain-amplify/poetry.lock +++ b/airbyte-integrations/connectors/source-outbrain-amplify/poetry.lock @@ -278,13 +278,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] diff --git a/airbyte-integrations/connectors/source-outbrain-amplify/pyproject.toml b/airbyte-integrations/connectors/source-outbrain-amplify/pyproject.toml index 2f599f8b93a2..b48d4d2be401 100644 --- a/airbyte-integrations/connectors/source-outbrain-amplify/pyproject.toml +++ b/airbyte-integrations/connectors/source-outbrain-amplify/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.1.4" +version = "0.1.5" name = "source-outbrain-amplify" description = "Source implementation for outbrain amplify." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/outbrain-amplify.md b/docs/integrations/sources/outbrain-amplify.md index 71b44613b1fe..c9d47580627c 100644 --- a/docs/integrations/sources/outbrain-amplify.md +++ b/docs/integrations/sources/outbrain-amplify.md @@ -65,6 +65,7 @@ Specify credentials and a start date. | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :--------------------------------- | +| 0.1.5 | 2024-07-13 | [41869](https://github.com/airbytehq/airbyte/pull/41869) | Update dependencies | | 0.1.4 | 2024-07-10 | [41574](https://github.com/airbytehq/airbyte/pull/41574) | Update dependencies | | 0.1.3 | 2024-07-08 | [41035](https://github.com/airbytehq/airbyte/pull/41035) | Migrate to poetry | | 0.1.2 | 2022-08-25 | [15667](https://github.com/airbytehq/airbyte/pull/15667) | Add message when no data available | From bff3a6f6d808dc976770188927bc51d9caa361cd Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:20:45 +0200 Subject: [PATCH 071/260] =?UTF-8?q?=F0=9F=90=99=20source-convex:=20run=20u?= =?UTF-8?q?p-to-date=20pipeline=20[2024-07-13]=20(#41868)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-convex/metadata.yaml | 2 +- airbyte-integrations/connectors/source-convex/poetry.lock | 6 +++--- .../connectors/source-convex/pyproject.toml | 2 +- docs/integrations/sources/convex.md | 1 + 4 files changed, 6 insertions(+), 5 deletions(-) diff --git a/airbyte-integrations/connectors/source-convex/metadata.yaml b/airbyte-integrations/connectors/source-convex/metadata.yaml index ae246505a3d0..6e36fd0a0729 100644 --- a/airbyte-integrations/connectors/source-convex/metadata.yaml +++ b/airbyte-integrations/connectors/source-convex/metadata.yaml @@ -2,7 +2,7 @@ data: connectorSubtype: api connectorType: source definitionId: c332628c-f55c-4017-8222-378cfafda9b2 - dockerImageTag: 0.4.7 + dockerImageTag: 0.4.8 dockerRepository: airbyte/source-convex githubIssueLabel: source-convex icon: convex.svg diff --git a/airbyte-integrations/connectors/source-convex/poetry.lock b/airbyte-integrations/connectors/source-convex/poetry.lock index 62cc5d2a5040..9b05c8d7333b 100644 --- a/airbyte-integrations/connectors/source-convex/poetry.lock +++ b/airbyte-integrations/connectors/source-convex/poetry.lock @@ -288,13 +288,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] diff --git a/airbyte-integrations/connectors/source-convex/pyproject.toml b/airbyte-integrations/connectors/source-convex/pyproject.toml index 756d10f5c5fa..42fd85ee0fd1 100644 --- a/airbyte-integrations/connectors/source-convex/pyproject.toml +++ b/airbyte-integrations/connectors/source-convex/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.4.7" +version = "0.4.8" name = "source-convex" description = "Source implementation for Convex." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/convex.md b/docs/integrations/sources/convex.md index 6cb24f14c02f..55236de17d40 100644 --- a/docs/integrations/sources/convex.md +++ b/docs/integrations/sources/convex.md @@ -75,6 +75,7 @@ In the Data tab, you should see the tables and a sample of the data that will be | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :--------------------------------------------------------------- | +| 0.4.8 | 2024-07-13 | [41868](https://github.com/airbytehq/airbyte/pull/41868) | Update dependencies | | 0.4.7 | 2024-07-10 | [41584](https://github.com/airbytehq/airbyte/pull/41584) | Update dependencies | | 0.4.6 | 2024-07-09 | [41261](https://github.com/airbytehq/airbyte/pull/41261) | Update dependencies | | 0.4.5 | 2024-07-06 | [40799](https://github.com/airbytehq/airbyte/pull/40799) | Update dependencies | From e4004c365ff9c84f19b628c7f3390f896a3bf8ba Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:20:48 +0200 Subject: [PATCH 072/260] =?UTF-8?q?=F0=9F=90=99=20source-mailjet-mail:=20r?= =?UTF-8?q?un=20up-to-date=20pipeline=20[2024-07-13]=20(#41867)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-mailjet-mail/metadata.yaml | 2 +- .../connectors/source-mailjet-mail/poetry.lock | 12 ++++++------ .../connectors/source-mailjet-mail/pyproject.toml | 2 +- docs/integrations/sources/mailjet-mail.md | 1 + 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/airbyte-integrations/connectors/source-mailjet-mail/metadata.yaml b/airbyte-integrations/connectors/source-mailjet-mail/metadata.yaml index 27a4195ba175..1b7feda5310c 100644 --- a/airbyte-integrations/connectors/source-mailjet-mail/metadata.yaml +++ b/airbyte-integrations/connectors/source-mailjet-mail/metadata.yaml @@ -2,7 +2,7 @@ data: connectorSubtype: api connectorType: source definitionId: 56582331-5de2-476b-b913-5798de77bbdf - dockerImageTag: 0.1.10 + dockerImageTag: 0.1.11 dockerRepository: airbyte/source-mailjet-mail githubIssueLabel: source-mailjet-mail icon: mailjetmail.svg diff --git a/airbyte-integrations/connectors/source-mailjet-mail/poetry.lock b/airbyte-integrations/connectors/source-mailjet-mail/poetry.lock index 89b2d5c4065d..4f022c500f8d 100644 --- a/airbyte-integrations/connectors/source-mailjet-mail/poetry.lock +++ b/airbyte-integrations/connectors/source-mailjet-mail/poetry.lock @@ -400,13 +400,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] @@ -556,13 +556,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.84" +version = "0.1.85" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.84-py3-none-any.whl", hash = "sha256:01f3c6390dba26c583bac8dd0e551ce3d0509c7f55cad714db0b5c8d36e4c7ff"}, - {file = "langsmith-0.1.84.tar.gz", hash = "sha256:5220c0439838b9a5bd320fd3686be505c5083dcee22d2452006c23891153bea1"}, + {file = "langsmith-0.1.85-py3-none-any.whl", hash = "sha256:c1f94384f10cea96f7b4d33fd3db7ec180c03c7468877d50846f881d2017ff94"}, + {file = "langsmith-0.1.85.tar.gz", hash = "sha256:acff31f9e53efa48586cf8e32f65625a335c74d7c4fa306d1655ac18452296f6"}, ] [package.dependencies] diff --git a/airbyte-integrations/connectors/source-mailjet-mail/pyproject.toml b/airbyte-integrations/connectors/source-mailjet-mail/pyproject.toml index 619f3ec56393..97c59a0f3c9b 100644 --- a/airbyte-integrations/connectors/source-mailjet-mail/pyproject.toml +++ b/airbyte-integrations/connectors/source-mailjet-mail/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.1.10" +version = "0.1.11" name = "source-mailjet-mail" description = "Source implementation for Mailjet Mail." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/mailjet-mail.md b/docs/integrations/sources/mailjet-mail.md index c8f7c89bdc3a..146836647fb6 100644 --- a/docs/integrations/sources/mailjet-mail.md +++ b/docs/integrations/sources/mailjet-mail.md @@ -37,6 +37,7 @@ Mailjet APIs are under rate limits for the number of API calls allowed per API k | Version | Date | Pull Request | Subject | | :------ | :--------- | :-------------------------------------------------------- | :--------------------------------------------- | +| 0.1.11 | 2024-07-13 | [41867](https://github.com/airbytehq/airbyte/pull/41867) | Update dependencies | | 0.1.10 | 2024-07-10 | [41587](https://github.com/airbytehq/airbyte/pull/41587) | Update dependencies | | 0.1.9 | 2024-07-09 | [41177](https://github.com/airbytehq/airbyte/pull/41177) | Update dependencies | | 0.1.8 | 2024-07-06 | [40930](https://github.com/airbytehq/airbyte/pull/40930) | Update dependencies | From bc66ac92d9e8d0c1b63ff036075528fcab78893c Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:20:52 +0200 Subject: [PATCH 073/260] =?UTF-8?q?=F0=9F=90=99=20source-gcs:=20run=20up-t?= =?UTF-8?q?o-date=20pipeline=20[2024-07-13]=20(#41865)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-gcs/metadata.yaml | 2 +- .../connectors/source-gcs/poetry.lock | 12 ++++++------ .../connectors/source-gcs/pyproject.toml | 2 +- docs/integrations/sources/gcs.md | 1 + 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/airbyte-integrations/connectors/source-gcs/metadata.yaml b/airbyte-integrations/connectors/source-gcs/metadata.yaml index 32a672b35ef9..16696270fc69 100644 --- a/airbyte-integrations/connectors/source-gcs/metadata.yaml +++ b/airbyte-integrations/connectors/source-gcs/metadata.yaml @@ -7,7 +7,7 @@ data: connectorSubtype: file connectorType: source definitionId: 2a8c41ae-8c23-4be0-a73f-2ab10ca1a820 - dockerImageTag: 0.4.9 + dockerImageTag: 0.4.10 dockerRepository: airbyte/source-gcs documentationUrl: https://docs.airbyte.com/integrations/sources/gcs githubIssueLabel: source-gcs diff --git a/airbyte-integrations/connectors/source-gcs/poetry.lock b/airbyte-integrations/connectors/source-gcs/poetry.lock index 71c37a27c868..ce1cdad2a898 100644 --- a/airbyte-integrations/connectors/source-gcs/poetry.lock +++ b/airbyte-integrations/connectors/source-gcs/poetry.lock @@ -501,13 +501,13 @@ dev = ["coverage", "pytest (>=7.4.4)"] [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] @@ -959,13 +959,13 @@ six = "*" [[package]] name = "langsmith" -version = "0.1.84" +version = "0.1.85" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.84-py3-none-any.whl", hash = "sha256:01f3c6390dba26c583bac8dd0e551ce3d0509c7f55cad714db0b5c8d36e4c7ff"}, - {file = "langsmith-0.1.84.tar.gz", hash = "sha256:5220c0439838b9a5bd320fd3686be505c5083dcee22d2452006c23891153bea1"}, + {file = "langsmith-0.1.85-py3-none-any.whl", hash = "sha256:c1f94384f10cea96f7b4d33fd3db7ec180c03c7468877d50846f881d2017ff94"}, + {file = "langsmith-0.1.85.tar.gz", hash = "sha256:acff31f9e53efa48586cf8e32f65625a335c74d7c4fa306d1655ac18452296f6"}, ] [package.dependencies] diff --git a/airbyte-integrations/connectors/source-gcs/pyproject.toml b/airbyte-integrations/connectors/source-gcs/pyproject.toml index 77c83fe36277..503b80b88163 100644 --- a/airbyte-integrations/connectors/source-gcs/pyproject.toml +++ b/airbyte-integrations/connectors/source-gcs/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.4.9" +version = "0.4.10" name = "source-gcs" description = "Source implementation for Gcs." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/gcs.md b/docs/integrations/sources/gcs.md index 7b69f48b9497..0300ba1fb1e2 100644 --- a/docs/integrations/sources/gcs.md +++ b/docs/integrations/sources/gcs.md @@ -151,6 +151,7 @@ Leaving this field blank (default option) will disallow escaping. | Version | Date | Pull Request | Subject | |:--------|:-----------|:---------------------------------------------------------|:------------------------------------------------------------------------| +| 0.4.10 | 2024-07-13 | [41865](https://github.com/airbytehq/airbyte/pull/41865) | Update dependencies | | 0.4.9 | 2024-07-10 | [41430](https://github.com/airbytehq/airbyte/pull/41430) | Update dependencies | | 0.4.8 | 2024-07-09 | [41148](https://github.com/airbytehq/airbyte/pull/41148) | Update dependencies | | 0.4.7 | 2024-07-06 | [41015](https://github.com/airbytehq/airbyte/pull/41015) | Update dependencies | From 559d26c66f1d46da807e837785307b35cd0b3d7c Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:20:55 +0200 Subject: [PATCH 074/260] =?UTF-8?q?=F0=9F=90=99=20source-retently:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-07-13]=20(#41864)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-retently/metadata.yaml | 2 +- airbyte-integrations/connectors/source-retently/poetry.lock | 6 +++--- .../connectors/source-retently/pyproject.toml | 2 +- docs/integrations/sources/retently.md | 1 + 4 files changed, 6 insertions(+), 5 deletions(-) diff --git a/airbyte-integrations/connectors/source-retently/metadata.yaml b/airbyte-integrations/connectors/source-retently/metadata.yaml index 47be357b5af8..4883a800853b 100644 --- a/airbyte-integrations/connectors/source-retently/metadata.yaml +++ b/airbyte-integrations/connectors/source-retently/metadata.yaml @@ -10,7 +10,7 @@ data: connectorSubtype: api connectorType: source definitionId: db04ecd1-42e7-4115-9cec-95812905c626 - dockerImageTag: 0.2.10 + dockerImageTag: 0.2.11 dockerRepository: airbyte/source-retently documentationUrl: https://docs.airbyte.com/integrations/sources/retently githubIssueLabel: source-retently diff --git a/airbyte-integrations/connectors/source-retently/poetry.lock b/airbyte-integrations/connectors/source-retently/poetry.lock index cce71c3b0e79..a1ccc2d0271d 100644 --- a/airbyte-integrations/connectors/source-retently/poetry.lock +++ b/airbyte-integrations/connectors/source-retently/poetry.lock @@ -288,13 +288,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] diff --git a/airbyte-integrations/connectors/source-retently/pyproject.toml b/airbyte-integrations/connectors/source-retently/pyproject.toml index 3f6937dc8501..94bdd3a43322 100644 --- a/airbyte-integrations/connectors/source-retently/pyproject.toml +++ b/airbyte-integrations/connectors/source-retently/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.2.10" +version = "0.2.11" name = "source-retently" description = "Source implementation for Retently." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/retently.md b/docs/integrations/sources/retently.md index fd5cc38823a4..1a7728375330 100644 --- a/docs/integrations/sources/retently.md +++ b/docs/integrations/sources/retently.md @@ -49,6 +49,7 @@ OAuth application is [here](https://app.retently.com/settings/oauth). | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :------------------------------------------------------------------------------ | +| 0.2.11 | 2024-07-13 | [41864](https://github.com/airbytehq/airbyte/pull/41864) | Update dependencies | | 0.2.10 | 2024-07-10 | [41371](https://github.com/airbytehq/airbyte/pull/41371) | Update dependencies | | 0.2.9 | 2024-07-09 | [41287](https://github.com/airbytehq/airbyte/pull/41287) | Update dependencies | | 0.2.8 | 2024-07-06 | [40977](https://github.com/airbytehq/airbyte/pull/40977) | Update dependencies | From 86dca2a793d35dee28cde2062e622ca70d8d0463 Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:20:58 +0200 Subject: [PATCH 075/260] =?UTF-8?q?=F0=9F=90=99=20source-slack:=20run=20up?= =?UTF-8?q?-to-date=20pipeline=20[2024-07-13]=20(#41863)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-slack/metadata.yaml | 2 +- .../connectors/source-slack/poetry.lock | 12 ++++++------ .../connectors/source-slack/pyproject.toml | 2 +- docs/integrations/sources/slack.md | 1 + 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/airbyte-integrations/connectors/source-slack/metadata.yaml b/airbyte-integrations/connectors/source-slack/metadata.yaml index f279bde765b7..b38954c2c275 100644 --- a/airbyte-integrations/connectors/source-slack/metadata.yaml +++ b/airbyte-integrations/connectors/source-slack/metadata.yaml @@ -10,7 +10,7 @@ data: connectorSubtype: api connectorType: source definitionId: c2281cee-86f9-4a86-bb48-d23286b4c7bd - dockerImageTag: 1.1.12 + dockerImageTag: 1.1.13 dockerRepository: airbyte/source-slack documentationUrl: https://docs.airbyte.com/integrations/sources/slack githubIssueLabel: source-slack diff --git a/airbyte-integrations/connectors/source-slack/poetry.lock b/airbyte-integrations/connectors/source-slack/poetry.lock index 119476f7ebdb..f4cfb9eb066e 100644 --- a/airbyte-integrations/connectors/source-slack/poetry.lock +++ b/airbyte-integrations/connectors/source-slack/poetry.lock @@ -410,13 +410,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] @@ -580,13 +580,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.84" +version = "0.1.85" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.84-py3-none-any.whl", hash = "sha256:01f3c6390dba26c583bac8dd0e551ce3d0509c7f55cad714db0b5c8d36e4c7ff"}, - {file = "langsmith-0.1.84.tar.gz", hash = "sha256:5220c0439838b9a5bd320fd3686be505c5083dcee22d2452006c23891153bea1"}, + {file = "langsmith-0.1.85-py3-none-any.whl", hash = "sha256:c1f94384f10cea96f7b4d33fd3db7ec180c03c7468877d50846f881d2017ff94"}, + {file = "langsmith-0.1.85.tar.gz", hash = "sha256:acff31f9e53efa48586cf8e32f65625a335c74d7c4fa306d1655ac18452296f6"}, ] [package.dependencies] diff --git a/airbyte-integrations/connectors/source-slack/pyproject.toml b/airbyte-integrations/connectors/source-slack/pyproject.toml index 568640f3be95..174295d139cd 100644 --- a/airbyte-integrations/connectors/source-slack/pyproject.toml +++ b/airbyte-integrations/connectors/source-slack/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "1.1.12" +version = "1.1.13" name = "source-slack" description = "Source implementation for Slack." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/slack.md b/docs/integrations/sources/slack.md index d00507b1768b..22474022d611 100644 --- a/docs/integrations/sources/slack.md +++ b/docs/integrations/sources/slack.md @@ -171,6 +171,7 @@ Slack has [rate limit restrictions](https://api.slack.com/docs/rate-limits). | Version | Date | Pull Request | Subject | |:--------|:-----------| :------------------------------------------------------- |:--------------------------------------------------------------------------------------| +| 1.1.13 | 2024-07-13 | [41863](https://github.com/airbytehq/airbyte/pull/41863) | Update dependencies | | 1.1.12 | 2024-07-10 | [41485](https://github.com/airbytehq/airbyte/pull/41485) | Update dependencies | | 1.1.11 | 2024-07-09 | [41231](https://github.com/airbytehq/airbyte/pull/41231) | Update dependencies | | 1.1.10 | 2024-07-06 | [40839](https://github.com/airbytehq/airbyte/pull/40839) | Update dependencies | From 9d29c2939b838d9098becc99983e70a7875e5bb5 Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:21:01 +0200 Subject: [PATCH 076/260] =?UTF-8?q?=F0=9F=90=99=20source-merge:=20run=20up?= =?UTF-8?q?-to-date=20pipeline=20[2024-07-13]=20(#41862)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-merge/metadata.yaml | 2 +- .../connectors/source-merge/poetry.lock | 12 ++++++------ .../connectors/source-merge/pyproject.toml | 2 +- docs/integrations/sources/merge.md | 1 + 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/airbyte-integrations/connectors/source-merge/metadata.yaml b/airbyte-integrations/connectors/source-merge/metadata.yaml index 5674e0cf5c3d..61840cb2689a 100644 --- a/airbyte-integrations/connectors/source-merge/metadata.yaml +++ b/airbyte-integrations/connectors/source-merge/metadata.yaml @@ -2,7 +2,7 @@ data: connectorSubtype: api connectorType: source definitionId: 23240e9e-d14a-43bc-899f-72ea304d1994 - dockerImageTag: 0.1.7 + dockerImageTag: 0.1.8 dockerRepository: airbyte/source-merge githubIssueLabel: source-merge icon: merge.svg diff --git a/airbyte-integrations/connectors/source-merge/poetry.lock b/airbyte-integrations/connectors/source-merge/poetry.lock index 1c7c00978d43..728f233c17e0 100644 --- a/airbyte-integrations/connectors/source-merge/poetry.lock +++ b/airbyte-integrations/connectors/source-merge/poetry.lock @@ -410,13 +410,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] @@ -566,13 +566,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.84" +version = "0.1.85" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.84-py3-none-any.whl", hash = "sha256:01f3c6390dba26c583bac8dd0e551ce3d0509c7f55cad714db0b5c8d36e4c7ff"}, - {file = "langsmith-0.1.84.tar.gz", hash = "sha256:5220c0439838b9a5bd320fd3686be505c5083dcee22d2452006c23891153bea1"}, + {file = "langsmith-0.1.85-py3-none-any.whl", hash = "sha256:c1f94384f10cea96f7b4d33fd3db7ec180c03c7468877d50846f881d2017ff94"}, + {file = "langsmith-0.1.85.tar.gz", hash = "sha256:acff31f9e53efa48586cf8e32f65625a335c74d7c4fa306d1655ac18452296f6"}, ] [package.dependencies] diff --git a/airbyte-integrations/connectors/source-merge/pyproject.toml b/airbyte-integrations/connectors/source-merge/pyproject.toml index 69c931399a18..96366e703eff 100644 --- a/airbyte-integrations/connectors/source-merge/pyproject.toml +++ b/airbyte-integrations/connectors/source-merge/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.1.7" +version = "0.1.8" name = "source-merge" description = "Source implementation for Merge." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/merge.md b/docs/integrations/sources/merge.md index 0869596c2a7c..d4bc6ad48c17 100644 --- a/docs/integrations/sources/merge.md +++ b/docs/integrations/sources/merge.md @@ -79,6 +79,7 @@ Merge [API reference](https://api.merge.dev/api/ats/v1/) has v1 at present. The | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------- | :------------- | +| 0.1.8 | 2024-07-13 | [41862](https://github.com/airbytehq/airbyte/pull/41862) | Update dependencies | | 0.1.7 | 2024-07-10 | [41572](https://github.com/airbytehq/airbyte/pull/41572) | Update dependencies | | 0.1.6 | 2024-07-09 | [41246](https://github.com/airbytehq/airbyte/pull/41246) | Update dependencies | | 0.1.5 | 2024-07-06 | [40932](https://github.com/airbytehq/airbyte/pull/40932) | Update dependencies | From 0544a75359bd9df8e9f1465db4d4a36eaa63f26d Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:21:05 +0200 Subject: [PATCH 077/260] =?UTF-8?q?=F0=9F=90=99=20destination-timeplus:=20?= =?UTF-8?q?run=20up-to-date=20pipeline=20[2024-07-13]=20(#41861)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/destination-timeplus/metadata.yaml | 2 +- .../connectors/destination-timeplus/poetry.lock | 6 +++--- .../connectors/destination-timeplus/pyproject.toml | 2 +- docs/integrations/destinations/timeplus.md | 1 + 4 files changed, 6 insertions(+), 5 deletions(-) diff --git a/airbyte-integrations/connectors/destination-timeplus/metadata.yaml b/airbyte-integrations/connectors/destination-timeplus/metadata.yaml index 0fc9e4bac9a2..36cd129dbbee 100644 --- a/airbyte-integrations/connectors/destination-timeplus/metadata.yaml +++ b/airbyte-integrations/connectors/destination-timeplus/metadata.yaml @@ -2,7 +2,7 @@ data: connectorSubtype: database connectorType: destination definitionId: f70a8ece-351e-4790-b37b-cb790bcd6d54 - dockerImageTag: 0.1.9 + dockerImageTag: 0.1.10 dockerRepository: airbyte/destination-timeplus githubIssueLabel: destination-timeplus icon: timeplus.svg diff --git a/airbyte-integrations/connectors/destination-timeplus/poetry.lock b/airbyte-integrations/connectors/destination-timeplus/poetry.lock index 6521d618be37..860373b112e6 100644 --- a/airbyte-integrations/connectors/destination-timeplus/poetry.lock +++ b/airbyte-integrations/connectors/destination-timeplus/poetry.lock @@ -289,13 +289,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] diff --git a/airbyte-integrations/connectors/destination-timeplus/pyproject.toml b/airbyte-integrations/connectors/destination-timeplus/pyproject.toml index 59480d3fc183..c02ae42f35bf 100644 --- a/airbyte-integrations/connectors/destination-timeplus/pyproject.toml +++ b/airbyte-integrations/connectors/destination-timeplus/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.1.9" +version = "0.1.10" name = "destination-timeplus" description = "Destination implementation for Timeplus." authors = [ "Airbyte ",] diff --git a/docs/integrations/destinations/timeplus.md b/docs/integrations/destinations/timeplus.md index 9409bf792d7c..4f1fdc407308 100644 --- a/docs/integrations/destinations/timeplus.md +++ b/docs/integrations/destinations/timeplus.md @@ -41,6 +41,7 @@ You'll need the following information to configure the Timeplus destination: | Version | Date | Pull Request | Subject | | :------ | :--------- | :-------------------------------------------------------- | :------------------- | +| 0.1.10 | 2024-07-13 | [41861](https://github.com/airbytehq/airbyte/pull/41861) | Update dependencies | | 0.1.9 | 2024-07-10 | [41392](https://github.com/airbytehq/airbyte/pull/41392) | Update dependencies | | 0.1.8 | 2024-07-09 | [41257](https://github.com/airbytehq/airbyte/pull/41257) | Update dependencies | | 0.1.7 | 2024-07-06 | [40864](https://github.com/airbytehq/airbyte/pull/40864) | Update dependencies | From 694f0f10ffd1190d153210607e002b4d0a0b29f7 Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:21:08 +0200 Subject: [PATCH 078/260] =?UTF-8?q?=F0=9F=90=99=20source-ip2whois:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-07-13]=20(#41860)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-ip2whois/metadata.yaml | 2 +- airbyte-integrations/connectors/source-ip2whois/poetry.lock | 6 +++--- .../connectors/source-ip2whois/pyproject.toml | 2 +- docs/integrations/sources/ip2whois.md | 1 + 4 files changed, 6 insertions(+), 5 deletions(-) diff --git a/airbyte-integrations/connectors/source-ip2whois/metadata.yaml b/airbyte-integrations/connectors/source-ip2whois/metadata.yaml index 4b14726cf33e..1d772066d9f6 100644 --- a/airbyte-integrations/connectors/source-ip2whois/metadata.yaml +++ b/airbyte-integrations/connectors/source-ip2whois/metadata.yaml @@ -7,7 +7,7 @@ data: connectorSubtype: api connectorType: source definitionId: f23b7b7c-d705-49a3-9042-09add3b104a5 - dockerImageTag: 0.1.10 + dockerImageTag: 0.1.11 dockerRepository: airbyte/source-ip2whois documentationUrl: https://docs.airbyte.com/integrations/sources/ip2whois githubIssueLabel: source-ip2whois diff --git a/airbyte-integrations/connectors/source-ip2whois/poetry.lock b/airbyte-integrations/connectors/source-ip2whois/poetry.lock index 6f83e5bed3a6..c0f7f643d050 100644 --- a/airbyte-integrations/connectors/source-ip2whois/poetry.lock +++ b/airbyte-integrations/connectors/source-ip2whois/poetry.lock @@ -288,13 +288,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] diff --git a/airbyte-integrations/connectors/source-ip2whois/pyproject.toml b/airbyte-integrations/connectors/source-ip2whois/pyproject.toml index 63b3d4cc163c..dcc525e0ec03 100644 --- a/airbyte-integrations/connectors/source-ip2whois/pyproject.toml +++ b/airbyte-integrations/connectors/source-ip2whois/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.1.10" +version = "0.1.11" name = "source-ip2whois" description = "Source implementation for Ip2whois." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/ip2whois.md b/docs/integrations/sources/ip2whois.md index 9905f829c2b4..5d7ad95f7abc 100644 --- a/docs/integrations/sources/ip2whois.md +++ b/docs/integrations/sources/ip2whois.md @@ -32,6 +32,7 @@ Ip2whois APIs allows you to query up to 500 WHOIS domain name per month. | Version | Date | Pull Request | Subject | | :------ | :--------- | :-------------------------------------------------------- | :------------------------------------------------------------------------------ | +| 0.1.11 | 2024-07-13 | [41860](https://github.com/airbytehq/airbyte/pull/41860) | Update dependencies | | 0.1.10 | 2024-07-10 | [41445](https://github.com/airbytehq/airbyte/pull/41445) | Update dependencies | | 0.1.9 | 2024-07-09 | [41310](https://github.com/airbytehq/airbyte/pull/41310) | Update dependencies | | 0.1.8 | 2024-07-06 | [40966](https://github.com/airbytehq/airbyte/pull/40966) | Update dependencies | From 0f50e7f73740778bb1e9df8aa0029c5c3150a7af Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:21:11 +0200 Subject: [PATCH 079/260] =?UTF-8?q?=F0=9F=90=99=20source-mailerlite:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-07-13]=20(#41859)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-mailerlite/metadata.yaml | 2 +- .../connectors/source-mailerlite/poetry.lock | 12 ++++++------ .../connectors/source-mailerlite/pyproject.toml | 2 +- docs/integrations/sources/mailerlite.md | 1 + 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/airbyte-integrations/connectors/source-mailerlite/metadata.yaml b/airbyte-integrations/connectors/source-mailerlite/metadata.yaml index b7c3c09a3f2b..6aaff580dc9a 100644 --- a/airbyte-integrations/connectors/source-mailerlite/metadata.yaml +++ b/airbyte-integrations/connectors/source-mailerlite/metadata.yaml @@ -10,7 +10,7 @@ data: connectorSubtype: api connectorType: source definitionId: dc3b9003-2432-4e93-a7f4-4620b0f14674 - dockerImageTag: 1.0.7 + dockerImageTag: 1.0.8 dockerRepository: airbyte/source-mailerlite githubIssueLabel: source-mailerlite icon: mailerlite.svg diff --git a/airbyte-integrations/connectors/source-mailerlite/poetry.lock b/airbyte-integrations/connectors/source-mailerlite/poetry.lock index f9a1a5c18529..4fffd5ec2a96 100644 --- a/airbyte-integrations/connectors/source-mailerlite/poetry.lock +++ b/airbyte-integrations/connectors/source-mailerlite/poetry.lock @@ -410,13 +410,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] @@ -566,13 +566,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.84" +version = "0.1.85" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.84-py3-none-any.whl", hash = "sha256:01f3c6390dba26c583bac8dd0e551ce3d0509c7f55cad714db0b5c8d36e4c7ff"}, - {file = "langsmith-0.1.84.tar.gz", hash = "sha256:5220c0439838b9a5bd320fd3686be505c5083dcee22d2452006c23891153bea1"}, + {file = "langsmith-0.1.85-py3-none-any.whl", hash = "sha256:c1f94384f10cea96f7b4d33fd3db7ec180c03c7468877d50846f881d2017ff94"}, + {file = "langsmith-0.1.85.tar.gz", hash = "sha256:acff31f9e53efa48586cf8e32f65625a335c74d7c4fa306d1655ac18452296f6"}, ] [package.dependencies] diff --git a/airbyte-integrations/connectors/source-mailerlite/pyproject.toml b/airbyte-integrations/connectors/source-mailerlite/pyproject.toml index 69412bb4812d..1f84161a89c9 100644 --- a/airbyte-integrations/connectors/source-mailerlite/pyproject.toml +++ b/airbyte-integrations/connectors/source-mailerlite/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "1.0.7" +version = "1.0.8" name = "source-mailerlite" description = "Source implementation for Mailerlite." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/mailerlite.md b/docs/integrations/sources/mailerlite.md index 89a47a694671..aa061da138fb 100644 --- a/docs/integrations/sources/mailerlite.md +++ b/docs/integrations/sources/mailerlite.md @@ -39,6 +39,7 @@ MailerLite API has a global rate limit of 120 requests per minute. | Version | Date | Pull Request | Subject | |:--------|:-----------|:---------------------------------------------------------|:--------------------------------------------| +| 1.0.8 | 2024-07-13 | [41859](https://github.com/airbytehq/airbyte/pull/41859) | Update dependencies | | 1.0.7 | 2024-07-10 | [41404](https://github.com/airbytehq/airbyte/pull/41404) | Update dependencies | | 1.0.6 | 2024-07-09 | [41150](https://github.com/airbytehq/airbyte/pull/41150) | Update dependencies | | 1.0.5 | 2024-07-06 | [40858](https://github.com/airbytehq/airbyte/pull/40858) | Update dependencies | From 278795f46cd674c3f810e222f10eb71648f019cd Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:21:14 +0200 Subject: [PATCH 080/260] =?UTF-8?q?=F0=9F=90=99=20source-twilio-taskrouter?= =?UTF-8?q?:=20run=20up-to-date=20pipeline=20[2024-07-13]=20(#41858)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-twilio-taskrouter/metadata.yaml | 2 +- .../connectors/source-twilio-taskrouter/poetry.lock | 6 +++--- .../connectors/source-twilio-taskrouter/pyproject.toml | 2 +- docs/integrations/sources/twilio-taskrouter.md | 1 + 4 files changed, 6 insertions(+), 5 deletions(-) diff --git a/airbyte-integrations/connectors/source-twilio-taskrouter/metadata.yaml b/airbyte-integrations/connectors/source-twilio-taskrouter/metadata.yaml index 055bc39d09f1..d1805d467cc7 100644 --- a/airbyte-integrations/connectors/source-twilio-taskrouter/metadata.yaml +++ b/airbyte-integrations/connectors/source-twilio-taskrouter/metadata.yaml @@ -7,7 +7,7 @@ data: connectorSubtype: api connectorType: source definitionId: 2446953b-b794-429b-a9b3-c821ba992a48 - dockerImageTag: 0.1.10 + dockerImageTag: 0.1.11 dockerRepository: airbyte/source-twilio-taskrouter documentationUrl: https://docs.airbyte.com/integrations/sources/twilio-taskrouter githubIssueLabel: source-twilio-taskrouter diff --git a/airbyte-integrations/connectors/source-twilio-taskrouter/poetry.lock b/airbyte-integrations/connectors/source-twilio-taskrouter/poetry.lock index 6f83e5bed3a6..c0f7f643d050 100644 --- a/airbyte-integrations/connectors/source-twilio-taskrouter/poetry.lock +++ b/airbyte-integrations/connectors/source-twilio-taskrouter/poetry.lock @@ -288,13 +288,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] diff --git a/airbyte-integrations/connectors/source-twilio-taskrouter/pyproject.toml b/airbyte-integrations/connectors/source-twilio-taskrouter/pyproject.toml index e8425fd10cbd..d8d8bf5aea8e 100644 --- a/airbyte-integrations/connectors/source-twilio-taskrouter/pyproject.toml +++ b/airbyte-integrations/connectors/source-twilio-taskrouter/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.1.10" +version = "0.1.11" name = "source-twilio-taskrouter" description = "Source implementation for Twilio Taskrouter." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/twilio-taskrouter.md b/docs/integrations/sources/twilio-taskrouter.md index 814bfcff86bb..a0015ca5506e 100644 --- a/docs/integrations/sources/twilio-taskrouter.md +++ b/docs/integrations/sources/twilio-taskrouter.md @@ -61,6 +61,7 @@ For more information, see [the Twilio docs for rate limitations](https://support | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :------------------------------------------------------------------------------ | +| 0.1.11 | 2024-07-13 | [41858](https://github.com/airbytehq/airbyte/pull/41858) | Update dependencies | | 0.1.10 | 2024-07-10 | [41585](https://github.com/airbytehq/airbyte/pull/41585) | Update dependencies | | 0.1.9 | 2024-07-09 | [41125](https://github.com/airbytehq/airbyte/pull/41125) | Update dependencies | | 0.1.8 | 2024-07-06 | [40827](https://github.com/airbytehq/airbyte/pull/40827) | Update dependencies | From 9501bb6f1fcdd7138533616f358cdb9ada21517b Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:21:18 +0200 Subject: [PATCH 081/260] =?UTF-8?q?=F0=9F=90=99=20source-confluence:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-07-13]=20(#41857)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-confluence/metadata.yaml | 2 +- .../connectors/source-confluence/poetry.lock | 6 +++--- .../connectors/source-confluence/pyproject.toml | 2 +- docs/integrations/sources/confluence.md | 1 + 4 files changed, 6 insertions(+), 5 deletions(-) diff --git a/airbyte-integrations/connectors/source-confluence/metadata.yaml b/airbyte-integrations/connectors/source-confluence/metadata.yaml index fee69b697a5a..d8ffdf914b78 100644 --- a/airbyte-integrations/connectors/source-confluence/metadata.yaml +++ b/airbyte-integrations/connectors/source-confluence/metadata.yaml @@ -10,7 +10,7 @@ data: connectorSubtype: api connectorType: source definitionId: cf40a7f8-71f8-45ce-a7fa-fca053e4028c - dockerImageTag: 0.2.11 + dockerImageTag: 0.2.12 dockerRepository: airbyte/source-confluence documentationUrl: https://docs.airbyte.com/integrations/sources/confluence githubIssueLabel: source-confluence diff --git a/airbyte-integrations/connectors/source-confluence/poetry.lock b/airbyte-integrations/connectors/source-confluence/poetry.lock index 62cc5d2a5040..9b05c8d7333b 100644 --- a/airbyte-integrations/connectors/source-confluence/poetry.lock +++ b/airbyte-integrations/connectors/source-confluence/poetry.lock @@ -288,13 +288,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] diff --git a/airbyte-integrations/connectors/source-confluence/pyproject.toml b/airbyte-integrations/connectors/source-confluence/pyproject.toml index 7ac76de7b4bd..fc8273a2b427 100644 --- a/airbyte-integrations/connectors/source-confluence/pyproject.toml +++ b/airbyte-integrations/connectors/source-confluence/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.2.11" +version = "0.2.12" name = "source-confluence" description = "Source implementation for Confluence." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/confluence.md b/docs/integrations/sources/confluence.md index af07138e5749..8abc29d0b413 100644 --- a/docs/integrations/sources/confluence.md +++ b/docs/integrations/sources/confluence.md @@ -63,6 +63,7 @@ The Confluence connector should not run into Confluence API limitations under no | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :------------------------------------------------------------------------------ | +| 0.2.12 | 2024-07-13 | [41857](https://github.com/airbytehq/airbyte/pull/41857) | Update dependencies | | 0.2.11 | 2024-07-10 | [41398](https://github.com/airbytehq/airbyte/pull/41398) | Update dependencies | | 0.2.10 | 2024-07-09 | [41270](https://github.com/airbytehq/airbyte/pull/41270) | Update dependencies | | 0.2.9 | 2024-07-06 | [41013](https://github.com/airbytehq/airbyte/pull/41013) | Update dependencies | From b32fabfbcacba336f83c5a256d057e28a5e96110 Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:21:21 +0200 Subject: [PATCH 082/260] =?UTF-8?q?=F0=9F=90=99=20source-coinmarketcap:=20?= =?UTF-8?q?run=20up-to-date=20pipeline=20[2024-07-13]=20(#41856)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-coinmarketcap/metadata.yaml | 2 +- .../connectors/source-coinmarketcap/poetry.lock | 12 ++++++------ .../connectors/source-coinmarketcap/pyproject.toml | 2 +- docs/integrations/sources/coinmarketcap.md | 1 + 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/airbyte-integrations/connectors/source-coinmarketcap/metadata.yaml b/airbyte-integrations/connectors/source-coinmarketcap/metadata.yaml index 80a9df344933..ea3ad26d91ee 100644 --- a/airbyte-integrations/connectors/source-coinmarketcap/metadata.yaml +++ b/airbyte-integrations/connectors/source-coinmarketcap/metadata.yaml @@ -19,7 +19,7 @@ data: connectorSubtype: api connectorType: source definitionId: 239463f5-64bb-4d88-b4bd-18ce673fd572 - dockerImageTag: 0.1.8 + dockerImageTag: 0.1.9 dockerRepository: airbyte/source-coinmarketcap githubIssueLabel: source-coinmarketcap icon: coinmarketcap.svg diff --git a/airbyte-integrations/connectors/source-coinmarketcap/poetry.lock b/airbyte-integrations/connectors/source-coinmarketcap/poetry.lock index cb1a23ecd43b..e0918c3f13c6 100644 --- a/airbyte-integrations/connectors/source-coinmarketcap/poetry.lock +++ b/airbyte-integrations/connectors/source-coinmarketcap/poetry.lock @@ -400,13 +400,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] @@ -556,13 +556,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.84" +version = "0.1.85" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.84-py3-none-any.whl", hash = "sha256:01f3c6390dba26c583bac8dd0e551ce3d0509c7f55cad714db0b5c8d36e4c7ff"}, - {file = "langsmith-0.1.84.tar.gz", hash = "sha256:5220c0439838b9a5bd320fd3686be505c5083dcee22d2452006c23891153bea1"}, + {file = "langsmith-0.1.85-py3-none-any.whl", hash = "sha256:c1f94384f10cea96f7b4d33fd3db7ec180c03c7468877d50846f881d2017ff94"}, + {file = "langsmith-0.1.85.tar.gz", hash = "sha256:acff31f9e53efa48586cf8e32f65625a335c74d7c4fa306d1655ac18452296f6"}, ] [package.dependencies] diff --git a/airbyte-integrations/connectors/source-coinmarketcap/pyproject.toml b/airbyte-integrations/connectors/source-coinmarketcap/pyproject.toml index d3b177712704..37546fe129ec 100644 --- a/airbyte-integrations/connectors/source-coinmarketcap/pyproject.toml +++ b/airbyte-integrations/connectors/source-coinmarketcap/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.1.8" +version = "0.1.9" name = "source-coinmarketcap" description = "Source implementation for coinmarketcap." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/coinmarketcap.md b/docs/integrations/sources/coinmarketcap.md index 9751e7f07b92..62dffedc5b2f 100644 --- a/docs/integrations/sources/coinmarketcap.md +++ b/docs/integrations/sources/coinmarketcap.md @@ -39,6 +39,7 @@ Coinmarketcap APIs are under rate limits for the number of API calls allowed per | Version | Date | Pull Request | Subject | | :------ | :--------- | :-------------------------------------------------------- | :---------------------------------------------- | +| 0.1.9 | 2024-07-13 | [41856](https://github.com/airbytehq/airbyte/pull/41856) | Update dependencies | | 0.1.8 | 2024-07-10 | [41442](https://github.com/airbytehq/airbyte/pull/41442) | Update dependencies | | 0.1.7 | 2024-07-09 | [41141](https://github.com/airbytehq/airbyte/pull/41141) | Update dependencies | | 0.1.6 | 2024-07-06 | [40961](https://github.com/airbytehq/airbyte/pull/40961) | Update dependencies | From bd60f1dac351c97850664700db6fa515813cf927 Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:21:24 +0200 Subject: [PATCH 083/260] =?UTF-8?q?=F0=9F=90=99=20source-snapchat-marketin?= =?UTF-8?q?g:=20run=20up-to-date=20pipeline=20[2024-07-13]=20(#41855)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../source-snapchat-marketing/metadata.yaml | 2 +- .../connectors/source-snapchat-marketing/poetry.lock | 12 ++++++------ .../source-snapchat-marketing/pyproject.toml | 2 +- docs/integrations/sources/snapchat-marketing.md | 1 + 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/airbyte-integrations/connectors/source-snapchat-marketing/metadata.yaml b/airbyte-integrations/connectors/source-snapchat-marketing/metadata.yaml index 891a14c4b697..ee3feef8a274 100644 --- a/airbyte-integrations/connectors/source-snapchat-marketing/metadata.yaml +++ b/airbyte-integrations/connectors/source-snapchat-marketing/metadata.yaml @@ -8,7 +8,7 @@ data: connectorSubtype: api connectorType: source definitionId: 200330b2-ea62-4d11-ac6d-cfe3e3f8ab2b - dockerImageTag: 1.0.2 + dockerImageTag: 1.0.3 dockerRepository: airbyte/source-snapchat-marketing githubIssueLabel: source-snapchat-marketing icon: snapchat.svg diff --git a/airbyte-integrations/connectors/source-snapchat-marketing/poetry.lock b/airbyte-integrations/connectors/source-snapchat-marketing/poetry.lock index f9a1a5c18529..4fffd5ec2a96 100644 --- a/airbyte-integrations/connectors/source-snapchat-marketing/poetry.lock +++ b/airbyte-integrations/connectors/source-snapchat-marketing/poetry.lock @@ -410,13 +410,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] @@ -566,13 +566,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.84" +version = "0.1.85" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.84-py3-none-any.whl", hash = "sha256:01f3c6390dba26c583bac8dd0e551ce3d0509c7f55cad714db0b5c8d36e4c7ff"}, - {file = "langsmith-0.1.84.tar.gz", hash = "sha256:5220c0439838b9a5bd320fd3686be505c5083dcee22d2452006c23891153bea1"}, + {file = "langsmith-0.1.85-py3-none-any.whl", hash = "sha256:c1f94384f10cea96f7b4d33fd3db7ec180c03c7468877d50846f881d2017ff94"}, + {file = "langsmith-0.1.85.tar.gz", hash = "sha256:acff31f9e53efa48586cf8e32f65625a335c74d7c4fa306d1655ac18452296f6"}, ] [package.dependencies] diff --git a/airbyte-integrations/connectors/source-snapchat-marketing/pyproject.toml b/airbyte-integrations/connectors/source-snapchat-marketing/pyproject.toml index 0b75fd47bf9e..7a3ad853dc40 100644 --- a/airbyte-integrations/connectors/source-snapchat-marketing/pyproject.toml +++ b/airbyte-integrations/connectors/source-snapchat-marketing/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "1.0.2" +version = "1.0.3" name = "source-snapchat-marketing" description = "Source implementation for Snapchat Marketing." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/snapchat-marketing.md b/docs/integrations/sources/snapchat-marketing.md index f0f0f37e667c..de86042141c8 100644 --- a/docs/integrations/sources/snapchat-marketing.md +++ b/docs/integrations/sources/snapchat-marketing.md @@ -124,6 +124,7 @@ Snapchat Marketing API has limitations to 1000 items per page. | Version | Date | Pull Request | Subject | |:--------|:-----------|:---------------------------------------------------------|:-------------------------------------------------------------------------------| +| 1.0.3 | 2024-07-13 | [41855](https://github.com/airbytehq/airbyte/pull/41855) | Update dependencies | | 1.0.2 | 2024-07-10 | [41547](https://github.com/airbytehq/airbyte/pull/41547) | Update dependencies | | 1.0.1 | 2024-07-09 | [40132](https://github.com/airbytehq/airbyte/pull/40132) | Update dependencies | | 1.0.0 | 2024-06-20 | [39507](https://github.com/airbytehq/airbyte/pull/39507) | Migrate to low-code CDK and add incremental functionality to `organizations` | From 5e558b35e44ceef97b36e4034771a212dfecb826 Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:21:29 +0200 Subject: [PATCH 084/260] =?UTF-8?q?=F0=9F=90=99=20source-chartmogul:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-07-13]=20(#41854)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-chartmogul/metadata.yaml | 2 +- .../connectors/source-chartmogul/poetry.lock | 12 ++++++------ .../connectors/source-chartmogul/pyproject.toml | 2 +- docs/integrations/sources/chartmogul.md | 1 + 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/airbyte-integrations/connectors/source-chartmogul/metadata.yaml b/airbyte-integrations/connectors/source-chartmogul/metadata.yaml index 0eddaa1a9f7b..75d1aaea8a26 100644 --- a/airbyte-integrations/connectors/source-chartmogul/metadata.yaml +++ b/airbyte-integrations/connectors/source-chartmogul/metadata.yaml @@ -22,7 +22,7 @@ data: connectorSubtype: api connectorType: source definitionId: b6604cbd-1b12-4c08-8767-e140d0fb0877 - dockerImageTag: 1.0.6 + dockerImageTag: 1.0.7 dockerRepository: airbyte/source-chartmogul githubIssueLabel: source-chartmogul icon: chartmogul.svg diff --git a/airbyte-integrations/connectors/source-chartmogul/poetry.lock b/airbyte-integrations/connectors/source-chartmogul/poetry.lock index cb1a23ecd43b..e0918c3f13c6 100644 --- a/airbyte-integrations/connectors/source-chartmogul/poetry.lock +++ b/airbyte-integrations/connectors/source-chartmogul/poetry.lock @@ -400,13 +400,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] @@ -556,13 +556,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.84" +version = "0.1.85" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.84-py3-none-any.whl", hash = "sha256:01f3c6390dba26c583bac8dd0e551ce3d0509c7f55cad714db0b5c8d36e4c7ff"}, - {file = "langsmith-0.1.84.tar.gz", hash = "sha256:5220c0439838b9a5bd320fd3686be505c5083dcee22d2452006c23891153bea1"}, + {file = "langsmith-0.1.85-py3-none-any.whl", hash = "sha256:c1f94384f10cea96f7b4d33fd3db7ec180c03c7468877d50846f881d2017ff94"}, + {file = "langsmith-0.1.85.tar.gz", hash = "sha256:acff31f9e53efa48586cf8e32f65625a335c74d7c4fa306d1655ac18452296f6"}, ] [package.dependencies] diff --git a/airbyte-integrations/connectors/source-chartmogul/pyproject.toml b/airbyte-integrations/connectors/source-chartmogul/pyproject.toml index a6561e664d01..364236771374 100644 --- a/airbyte-integrations/connectors/source-chartmogul/pyproject.toml +++ b/airbyte-integrations/connectors/source-chartmogul/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "1.0.6" +version = "1.0.7" name = "source-chartmogul" description = "Source implementation for chartmogul." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/chartmogul.md b/docs/integrations/sources/chartmogul.md index eaabd69c4548..4b4daf338155 100644 --- a/docs/integrations/sources/chartmogul.md +++ b/docs/integrations/sources/chartmogul.md @@ -65,6 +65,7 @@ The Chartmogul connector should not run into Chartmogul API limitations under no | Version | Date | Pull Request | Subject | |:--------|:-----------| :------------------------------------------------------- |:---------------------------------------------------------------------------------------------------------------------------------| +| 1.0.7 | 2024-07-13 | [41854](https://github.com/airbytehq/airbyte/pull/41854) | Update dependencies | | 1.0.6 | 2024-07-10 | [41259](https://github.com/airbytehq/airbyte/pull/41259) | Update dependencies | | 1.0.5 | 2024-07-06 | [40963](https://github.com/airbytehq/airbyte/pull/40963) | Update dependencies | | 1.0.4 | 2024-06-25 | [40448](https://github.com/airbytehq/airbyte/pull/40448) | Update dependencies | From 20bdbb3608b613373fc9c43020b8fce0e9549b79 Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:21:33 +0200 Subject: [PATCH 085/260] =?UTF-8?q?=F0=9F=90=99=20source-adjust:=20run=20u?= =?UTF-8?q?p-to-date=20pipeline=20[2024-07-13]=20(#41852)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-adjust/metadata.yaml | 2 +- .../connectors/source-adjust/poetry.lock | 12 ++++++------ .../connectors/source-adjust/pyproject.toml | 2 +- docs/integrations/sources/adjust.md | 1 + 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/airbyte-integrations/connectors/source-adjust/metadata.yaml b/airbyte-integrations/connectors/source-adjust/metadata.yaml index 2e5099af5486..ca4c419a1435 100644 --- a/airbyte-integrations/connectors/source-adjust/metadata.yaml +++ b/airbyte-integrations/connectors/source-adjust/metadata.yaml @@ -5,7 +5,7 @@ data: connectorSubtype: api connectorType: source definitionId: d3b7fa46-111b-419a-998a-d7f046f6d66d - dockerImageTag: 0.1.9 + dockerImageTag: 0.1.10 dockerRepository: airbyte/source-adjust documentationUrl: https://docs.airbyte.com/integrations/sources/adjust githubIssueLabel: source-adjust diff --git a/airbyte-integrations/connectors/source-adjust/poetry.lock b/airbyte-integrations/connectors/source-adjust/poetry.lock index 4b03cc351726..13836360394d 100644 --- a/airbyte-integrations/connectors/source-adjust/poetry.lock +++ b/airbyte-integrations/connectors/source-adjust/poetry.lock @@ -410,13 +410,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] @@ -566,13 +566,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.84" +version = "0.1.85" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.84-py3-none-any.whl", hash = "sha256:01f3c6390dba26c583bac8dd0e551ce3d0509c7f55cad714db0b5c8d36e4c7ff"}, - {file = "langsmith-0.1.84.tar.gz", hash = "sha256:5220c0439838b9a5bd320fd3686be505c5083dcee22d2452006c23891153bea1"}, + {file = "langsmith-0.1.85-py3-none-any.whl", hash = "sha256:c1f94384f10cea96f7b4d33fd3db7ec180c03c7468877d50846f881d2017ff94"}, + {file = "langsmith-0.1.85.tar.gz", hash = "sha256:acff31f9e53efa48586cf8e32f65625a335c74d7c4fa306d1655ac18452296f6"}, ] [package.dependencies] diff --git a/airbyte-integrations/connectors/source-adjust/pyproject.toml b/airbyte-integrations/connectors/source-adjust/pyproject.toml index 803800356cde..3b8ac8fa03ac 100644 --- a/airbyte-integrations/connectors/source-adjust/pyproject.toml +++ b/airbyte-integrations/connectors/source-adjust/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.1.9" +version = "0.1.10" name = "source-adjust" description = "Source implementation for Adjust." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/adjust.md b/docs/integrations/sources/adjust.md index 0c59a2225c8f..9d1dea8a15a4 100644 --- a/docs/integrations/sources/adjust.md +++ b/docs/integrations/sources/adjust.md @@ -42,6 +42,7 @@ The source connector supports the following [sync modes](https://docs.airbyte.co | Version | Date | Pull Request | Subject | |---------|------------| -------------------------------------------------------- |---------------------------------------------| +| 0.1.10 | 2024-07-13 | [41852](https://github.com/airbytehq/airbyte/pull/41852) | Update dependencies | | 0.1.9 | 2024-07-10 | [41055](https://github.com/airbytehq/airbyte/pull/41055) | Update datetime format | | 0.1.8 | 2024-07-10 | [41460](https://github.com/airbytehq/airbyte/pull/41460) | Update dependencies | | 0.1.7 | 2024-07-09 | [41182](https://github.com/airbytehq/airbyte/pull/41182) | Update dependencies | From ac5af4b79732fc6f3077f2ba7a7fff9335d1e4e4 Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:21:37 +0200 Subject: [PATCH 086/260] =?UTF-8?q?=F0=9F=90=99=20source-harness:=20run=20?= =?UTF-8?q?up-to-date=20pipeline=20[2024-07-13]=20(#41851)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-harness/metadata.yaml | 2 +- .../connectors/source-harness/poetry.lock | 12 ++++++------ .../connectors/source-harness/pyproject.toml | 2 +- docs/integrations/sources/harness.md | 1 + 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/airbyte-integrations/connectors/source-harness/metadata.yaml b/airbyte-integrations/connectors/source-harness/metadata.yaml index 7c6172bce95b..285e1a285802 100644 --- a/airbyte-integrations/connectors/source-harness/metadata.yaml +++ b/airbyte-integrations/connectors/source-harness/metadata.yaml @@ -14,7 +14,7 @@ data: connectorSubtype: api connectorType: source definitionId: b0e46f61-e143-47cc-a595-4bb73bfa8a15 - dockerImageTag: 0.1.6 + dockerImageTag: 0.1.7 dockerRepository: airbyte/source-harness githubIssueLabel: source-harness icon: harness.svg diff --git a/airbyte-integrations/connectors/source-harness/poetry.lock b/airbyte-integrations/connectors/source-harness/poetry.lock index 1ac306a5c0f1..31731153c82e 100644 --- a/airbyte-integrations/connectors/source-harness/poetry.lock +++ b/airbyte-integrations/connectors/source-harness/poetry.lock @@ -410,13 +410,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] @@ -566,13 +566,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.84" +version = "0.1.85" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.84-py3-none-any.whl", hash = "sha256:01f3c6390dba26c583bac8dd0e551ce3d0509c7f55cad714db0b5c8d36e4c7ff"}, - {file = "langsmith-0.1.84.tar.gz", hash = "sha256:5220c0439838b9a5bd320fd3686be505c5083dcee22d2452006c23891153bea1"}, + {file = "langsmith-0.1.85-py3-none-any.whl", hash = "sha256:c1f94384f10cea96f7b4d33fd3db7ec180c03c7468877d50846f881d2017ff94"}, + {file = "langsmith-0.1.85.tar.gz", hash = "sha256:acff31f9e53efa48586cf8e32f65625a335c74d7c4fa306d1655ac18452296f6"}, ] [package.dependencies] diff --git a/airbyte-integrations/connectors/source-harness/pyproject.toml b/airbyte-integrations/connectors/source-harness/pyproject.toml index 6adc55bfc06a..9fd1680fd6f9 100644 --- a/airbyte-integrations/connectors/source-harness/pyproject.toml +++ b/airbyte-integrations/connectors/source-harness/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.1.6" +version = "0.1.7" name = "source-harness" description = "Source implementation for Harness." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/harness.md b/docs/integrations/sources/harness.md index 7da6c1c5025a..83b230458c2d 100644 --- a/docs/integrations/sources/harness.md +++ b/docs/integrations/sources/harness.md @@ -52,6 +52,7 @@ Key](https://ngdocs.harness.io/article/tdoad7xrh9-add-and-manage-api-keys#harnes | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------------- | :--------------------------------------------------- | +| 0.1.7 | 2024-07-13 | [41851](https://github.com/airbytehq/airbyte/pull/41851) | Update dependencies | | 0.1.6 | 2024-07-10 | [41426](https://github.com/airbytehq/airbyte/pull/41426) | Update dependencies | | 0.1.5 | 2024-07-09 | [41101](https://github.com/airbytehq/airbyte/pull/41101) | Update dependencies | | 0.1.4 | 2024-07-06 | [40788](https://github.com/airbytehq/airbyte/pull/40788) | Update dependencies | From ee6d4fca0a356be53d89c0c7f729a88bfb0f0876 Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:21:40 +0200 Subject: [PATCH 087/260] =?UTF-8?q?=F0=9F=90=99=20source-oura:=20run=20up-?= =?UTF-8?q?to-date=20pipeline=20[2024-07-13]=20(#41850)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-oura/metadata.yaml | 2 +- .../connectors/source-oura/poetry.lock | 12 ++++++------ .../connectors/source-oura/pyproject.toml | 2 +- docs/integrations/sources/oura.md | 1 + 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/airbyte-integrations/connectors/source-oura/metadata.yaml b/airbyte-integrations/connectors/source-oura/metadata.yaml index 69a49ae2290d..03638caad3d8 100644 --- a/airbyte-integrations/connectors/source-oura/metadata.yaml +++ b/airbyte-integrations/connectors/source-oura/metadata.yaml @@ -16,7 +16,7 @@ data: connectorSubtype: api connectorType: source definitionId: 2bf6c581-bec5-4e32-891d-de33036bd631 - dockerImageTag: 0.1.8 + dockerImageTag: 0.1.9 dockerRepository: airbyte/source-oura githubIssueLabel: source-oura icon: oura.svg diff --git a/airbyte-integrations/connectors/source-oura/poetry.lock b/airbyte-integrations/connectors/source-oura/poetry.lock index f9a1a5c18529..4fffd5ec2a96 100644 --- a/airbyte-integrations/connectors/source-oura/poetry.lock +++ b/airbyte-integrations/connectors/source-oura/poetry.lock @@ -410,13 +410,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] @@ -566,13 +566,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.84" +version = "0.1.85" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.84-py3-none-any.whl", hash = "sha256:01f3c6390dba26c583bac8dd0e551ce3d0509c7f55cad714db0b5c8d36e4c7ff"}, - {file = "langsmith-0.1.84.tar.gz", hash = "sha256:5220c0439838b9a5bd320fd3686be505c5083dcee22d2452006c23891153bea1"}, + {file = "langsmith-0.1.85-py3-none-any.whl", hash = "sha256:c1f94384f10cea96f7b4d33fd3db7ec180c03c7468877d50846f881d2017ff94"}, + {file = "langsmith-0.1.85.tar.gz", hash = "sha256:acff31f9e53efa48586cf8e32f65625a335c74d7c4fa306d1655ac18452296f6"}, ] [package.dependencies] diff --git a/airbyte-integrations/connectors/source-oura/pyproject.toml b/airbyte-integrations/connectors/source-oura/pyproject.toml index 11ac5e3850ff..a77d65c938f9 100644 --- a/airbyte-integrations/connectors/source-oura/pyproject.toml +++ b/airbyte-integrations/connectors/source-oura/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.1.8" +version = "0.1.9" name = "source-oura" description = "Source implementation for Oura." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/oura.md b/docs/integrations/sources/oura.md index ba8d3b1c2ee0..1a54a021b886 100644 --- a/docs/integrations/sources/oura.md +++ b/docs/integrations/sources/oura.md @@ -56,6 +56,7 @@ The following fields are required fields for the connector to work: | Version | Date | Pull Request | Subject | |:--------|:-----------|:---------------------------------------------------------|:--------------------------------------------| +| 0.1.9 | 2024-07-13 | [41850](https://github.com/airbytehq/airbyte/pull/41850) | Update dependencies | | 0.1.8 | 2024-07-10 | [41519](https://github.com/airbytehq/airbyte/pull/41519) | Update dependencies | | 0.1.7 | 2024-07-09 | [41264](https://github.com/airbytehq/airbyte/pull/41264) | Update dependencies | | 0.1.6 | 2024-07-06 | [40951](https://github.com/airbytehq/airbyte/pull/40951) | Update dependencies | From 3d5cd09c2bb74a65293f28220fb4aeb03ecd48ca Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:21:43 +0200 Subject: [PATCH 088/260] =?UTF-8?q?=F0=9F=90=99=20source-commercetools:=20?= =?UTF-8?q?run=20up-to-date=20pipeline=20[2024-07-13]=20(#41849)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-commercetools/metadata.yaml | 2 +- .../connectors/source-commercetools/poetry.lock | 12 ++++++------ .../connectors/source-commercetools/pyproject.toml | 2 +- docs/integrations/sources/commercetools.md | 1 + 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/airbyte-integrations/connectors/source-commercetools/metadata.yaml b/airbyte-integrations/connectors/source-commercetools/metadata.yaml index 27aa1cd11915..c63fad883a9b 100644 --- a/airbyte-integrations/connectors/source-commercetools/metadata.yaml +++ b/airbyte-integrations/connectors/source-commercetools/metadata.yaml @@ -15,7 +15,7 @@ data: connectorSubtype: api connectorType: source definitionId: 008b2e26-11a3-11ec-82a8-0242ac130003 - dockerImageTag: 0.2.6 + dockerImageTag: 0.2.7 dockerRepository: airbyte/source-commercetools githubIssueLabel: source-commercetools icon: commercetools.svg diff --git a/airbyte-integrations/connectors/source-commercetools/poetry.lock b/airbyte-integrations/connectors/source-commercetools/poetry.lock index 1c7c00978d43..728f233c17e0 100644 --- a/airbyte-integrations/connectors/source-commercetools/poetry.lock +++ b/airbyte-integrations/connectors/source-commercetools/poetry.lock @@ -410,13 +410,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] @@ -566,13 +566,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.84" +version = "0.1.85" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.84-py3-none-any.whl", hash = "sha256:01f3c6390dba26c583bac8dd0e551ce3d0509c7f55cad714db0b5c8d36e4c7ff"}, - {file = "langsmith-0.1.84.tar.gz", hash = "sha256:5220c0439838b9a5bd320fd3686be505c5083dcee22d2452006c23891153bea1"}, + {file = "langsmith-0.1.85-py3-none-any.whl", hash = "sha256:c1f94384f10cea96f7b4d33fd3db7ec180c03c7468877d50846f881d2017ff94"}, + {file = "langsmith-0.1.85.tar.gz", hash = "sha256:acff31f9e53efa48586cf8e32f65625a335c74d7c4fa306d1655ac18452296f6"}, ] [package.dependencies] diff --git a/airbyte-integrations/connectors/source-commercetools/pyproject.toml b/airbyte-integrations/connectors/source-commercetools/pyproject.toml index b593abdfbb29..e29c705a97a5 100644 --- a/airbyte-integrations/connectors/source-commercetools/pyproject.toml +++ b/airbyte-integrations/connectors/source-commercetools/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.2.6" +version = "0.2.7" name = "source-commercetools" description = "Source implementation for Commercetools." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/commercetools.md b/docs/integrations/sources/commercetools.md index 412e360dd357..03983cddfd18 100644 --- a/docs/integrations/sources/commercetools.md +++ b/docs/integrations/sources/commercetools.md @@ -52,6 +52,7 @@ Commercetools has some [rate limit restrictions](https://docs.commercetools.com/ | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :------------------------------------ | +| 0.2.7 | 2024-07-13 | [41849](https://github.com/airbytehq/airbyte/pull/41849) | Update dependencies | | 0.2.6 | 2024-07-10 | [41396](https://github.com/airbytehq/airbyte/pull/41396) | Update dependencies | | 0.2.5 | 2024-07-06 | [40781](https://github.com/airbytehq/airbyte/pull/40781) | Update dependencies | | 0.2.4 | 2024-06-25 | [40418](https://github.com/airbytehq/airbyte/pull/40418) | Update dependencies | From f252d8ffef9b2044c3e388a457f59f7222570877 Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:21:46 +0200 Subject: [PATCH 089/260] =?UTF-8?q?=F0=9F=90=99=20source-faker:=20run=20up?= =?UTF-8?q?-to-date=20pipeline=20[2024-07-13]=20(#41848)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-faker/metadata.yaml | 2 +- .../connectors/source-faker/poetry.lock | 12 ++++++------ .../connectors/source-faker/pyproject.toml | 2 +- docs/integrations/sources/faker.md | 1 + 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/airbyte-integrations/connectors/source-faker/metadata.yaml b/airbyte-integrations/connectors/source-faker/metadata.yaml index 68b160d845cc..70d4b6ec3125 100644 --- a/airbyte-integrations/connectors/source-faker/metadata.yaml +++ b/airbyte-integrations/connectors/source-faker/metadata.yaml @@ -9,7 +9,7 @@ data: connectorSubtype: api connectorType: source definitionId: dfd88b22-b603-4c3d-aad7-3701784586b1 - dockerImageTag: 6.2.2 + dockerImageTag: 6.2.3 dockerRepository: airbyte/source-faker documentationUrl: https://docs.airbyte.com/integrations/sources/faker githubIssueLabel: source-faker diff --git a/airbyte-integrations/connectors/source-faker/poetry.lock b/airbyte-integrations/connectors/source-faker/poetry.lock index e01d7745bc2b..7d708685f57c 100644 --- a/airbyte-integrations/connectors/source-faker/poetry.lock +++ b/airbyte-integrations/connectors/source-faker/poetry.lock @@ -421,13 +421,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] @@ -577,13 +577,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.84" +version = "0.1.85" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.84-py3-none-any.whl", hash = "sha256:01f3c6390dba26c583bac8dd0e551ce3d0509c7f55cad714db0b5c8d36e4c7ff"}, - {file = "langsmith-0.1.84.tar.gz", hash = "sha256:5220c0439838b9a5bd320fd3686be505c5083dcee22d2452006c23891153bea1"}, + {file = "langsmith-0.1.85-py3-none-any.whl", hash = "sha256:c1f94384f10cea96f7b4d33fd3db7ec180c03c7468877d50846f881d2017ff94"}, + {file = "langsmith-0.1.85.tar.gz", hash = "sha256:acff31f9e53efa48586cf8e32f65625a335c74d7c4fa306d1655ac18452296f6"}, ] [package.dependencies] diff --git a/airbyte-integrations/connectors/source-faker/pyproject.toml b/airbyte-integrations/connectors/source-faker/pyproject.toml index c17bacef7036..6791a21e4ef3 100644 --- a/airbyte-integrations/connectors/source-faker/pyproject.toml +++ b/airbyte-integrations/connectors/source-faker/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "6.2.2" +version = "6.2.3" name = "source-faker" description = "Source implementation for fake but realistic looking data." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/faker.md b/docs/integrations/sources/faker.md index 1bea34dcdde7..d729148e6b09 100644 --- a/docs/integrations/sources/faker.md +++ b/docs/integrations/sources/faker.md @@ -104,6 +104,7 @@ None! | Version | Date | Pull Request | Subject | | :------ | :--------- | :-------------------------------------------------------------------------------------------------------------------- | :-------------------------------------------------------------------------------------------------------------- | +| 6.2.3 | 2024-07-13 | [41848](https://github.com/airbytehq/airbyte/pull/41848) | Update dependencies | | 6.2.2 | 2024-07-10 | [41467](https://github.com/airbytehq/airbyte/pull/41467) | Update dependencies | | 6.2.1 | 2024-07-09 | [41180](https://github.com/airbytehq/airbyte/pull/41180) | Update dependencies | | 6.2.0 | 2024-07-07 | [39935](https://github.com/airbytehq/airbyte/pull/39935) | Update CDK to 2.0. | From 5ed383636ad826fb42d52df3c9847ef4952f6579 Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:21:49 +0200 Subject: [PATCH 090/260] =?UTF-8?q?=F0=9F=90=99=20source-alpha-vantage:=20?= =?UTF-8?q?run=20up-to-date=20pipeline=20[2024-07-13]=20(#41847)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-alpha-vantage/metadata.yaml | 2 +- .../connectors/source-alpha-vantage/poetry.lock | 12 ++++++------ .../connectors/source-alpha-vantage/pyproject.toml | 2 +- docs/integrations/sources/alpha-vantage.md | 1 + 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/airbyte-integrations/connectors/source-alpha-vantage/metadata.yaml b/airbyte-integrations/connectors/source-alpha-vantage/metadata.yaml index 0171c330b3db..3f99c8e1c158 100644 --- a/airbyte-integrations/connectors/source-alpha-vantage/metadata.yaml +++ b/airbyte-integrations/connectors/source-alpha-vantage/metadata.yaml @@ -2,7 +2,7 @@ data: connectorSubtype: api connectorType: source definitionId: db385323-9333-4fec-bec3-9e0ca9326c90 - dockerImageTag: 0.1.8 + dockerImageTag: 0.1.9 dockerRepository: airbyte/source-alpha-vantage githubIssueLabel: source-alpha-vantage icon: alpha-vantage.svg diff --git a/airbyte-integrations/connectors/source-alpha-vantage/poetry.lock b/airbyte-integrations/connectors/source-alpha-vantage/poetry.lock index 4b03cc351726..13836360394d 100644 --- a/airbyte-integrations/connectors/source-alpha-vantage/poetry.lock +++ b/airbyte-integrations/connectors/source-alpha-vantage/poetry.lock @@ -410,13 +410,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] @@ -566,13 +566,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.84" +version = "0.1.85" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.84-py3-none-any.whl", hash = "sha256:01f3c6390dba26c583bac8dd0e551ce3d0509c7f55cad714db0b5c8d36e4c7ff"}, - {file = "langsmith-0.1.84.tar.gz", hash = "sha256:5220c0439838b9a5bd320fd3686be505c5083dcee22d2452006c23891153bea1"}, + {file = "langsmith-0.1.85-py3-none-any.whl", hash = "sha256:c1f94384f10cea96f7b4d33fd3db7ec180c03c7468877d50846f881d2017ff94"}, + {file = "langsmith-0.1.85.tar.gz", hash = "sha256:acff31f9e53efa48586cf8e32f65625a335c74d7c4fa306d1655ac18452296f6"}, ] [package.dependencies] diff --git a/airbyte-integrations/connectors/source-alpha-vantage/pyproject.toml b/airbyte-integrations/connectors/source-alpha-vantage/pyproject.toml index 601f904df9d3..875d82359c46 100644 --- a/airbyte-integrations/connectors/source-alpha-vantage/pyproject.toml +++ b/airbyte-integrations/connectors/source-alpha-vantage/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.1.8" +version = "0.1.9" name = "source-alpha-vantage" description = "Source implementation for Alpha Vantage." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/alpha-vantage.md b/docs/integrations/sources/alpha-vantage.md index e67d3abf1501..dd6306c8e7e8 100644 --- a/docs/integrations/sources/alpha-vantage.md +++ b/docs/integrations/sources/alpha-vantage.md @@ -61,6 +61,7 @@ The following fields are required fields for the connector to work: | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :-------------------------------- | +| 0.1.9 | 2024-07-13 | [41847](https://github.com/airbytehq/airbyte/pull/41847) | Update dependencies | | 0.1.8 | 2024-07-10 | [41369](https://github.com/airbytehq/airbyte/pull/41369) | Update dependencies | | 0.1.7 | 2024-07-09 | [41229](https://github.com/airbytehq/airbyte/pull/41229) | Update dependencies | | 0.1.6 | 2024-07-06 | [40888](https://github.com/airbytehq/airbyte/pull/40888) | Update dependencies | From c97fc25443fca3dcf35bcc6d7e6cf0385cb1a415 Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:21:52 +0200 Subject: [PATCH 091/260] =?UTF-8?q?=F0=9F=90=99=20source-aws-cloudtrail:?= =?UTF-8?q?=20run=20up-to-date=20pipeline=20[2024-07-13]=20(#41846)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-aws-cloudtrail/metadata.yaml | 2 +- .../connectors/source-aws-cloudtrail/poetry.lock | 12 ++++++------ .../connectors/source-aws-cloudtrail/pyproject.toml | 2 +- docs/integrations/sources/aws-cloudtrail.md | 1 + 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/airbyte-integrations/connectors/source-aws-cloudtrail/metadata.yaml b/airbyte-integrations/connectors/source-aws-cloudtrail/metadata.yaml index 62698904db25..c82cc6278608 100644 --- a/airbyte-integrations/connectors/source-aws-cloudtrail/metadata.yaml +++ b/airbyte-integrations/connectors/source-aws-cloudtrail/metadata.yaml @@ -24,7 +24,7 @@ data: connectorSubtype: api connectorType: source definitionId: 6ff047c0-f5d5-4ce5-8c81-204a830fa7e1 - dockerImageTag: 1.0.4 + dockerImageTag: 1.0.5 dockerRepository: airbyte/source-aws-cloudtrail githubIssueLabel: source-aws-cloudtrail icon: aws-cloudtrail.svg diff --git a/airbyte-integrations/connectors/source-aws-cloudtrail/poetry.lock b/airbyte-integrations/connectors/source-aws-cloudtrail/poetry.lock index cb1a23ecd43b..e0918c3f13c6 100644 --- a/airbyte-integrations/connectors/source-aws-cloudtrail/poetry.lock +++ b/airbyte-integrations/connectors/source-aws-cloudtrail/poetry.lock @@ -400,13 +400,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] @@ -556,13 +556,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.84" +version = "0.1.85" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.84-py3-none-any.whl", hash = "sha256:01f3c6390dba26c583bac8dd0e551ce3d0509c7f55cad714db0b5c8d36e4c7ff"}, - {file = "langsmith-0.1.84.tar.gz", hash = "sha256:5220c0439838b9a5bd320fd3686be505c5083dcee22d2452006c23891153bea1"}, + {file = "langsmith-0.1.85-py3-none-any.whl", hash = "sha256:c1f94384f10cea96f7b4d33fd3db7ec180c03c7468877d50846f881d2017ff94"}, + {file = "langsmith-0.1.85.tar.gz", hash = "sha256:acff31f9e53efa48586cf8e32f65625a335c74d7c4fa306d1655ac18452296f6"}, ] [package.dependencies] diff --git a/airbyte-integrations/connectors/source-aws-cloudtrail/pyproject.toml b/airbyte-integrations/connectors/source-aws-cloudtrail/pyproject.toml index c86663c8e3dd..b664296c6e32 100644 --- a/airbyte-integrations/connectors/source-aws-cloudtrail/pyproject.toml +++ b/airbyte-integrations/connectors/source-aws-cloudtrail/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "1.0.4" +version = "1.0.5" name = "source-aws-cloudtrail" description = "Source implementation for aws-cloudtrail." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/aws-cloudtrail.md b/docs/integrations/sources/aws-cloudtrail.md index 34dd47f0c91b..c8904e07dcd8 100644 --- a/docs/integrations/sources/aws-cloudtrail.md +++ b/docs/integrations/sources/aws-cloudtrail.md @@ -54,6 +54,7 @@ Please, follow this [steps](https://docs.aws.amazon.com/powershell/latest/usergu | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :------------------------------------------------------------------------------ | +| 1.0.5 | 2024-07-13 | [41846](https://github.com/airbytehq/airbyte/pull/41846) | Update dependencies | | 1.0.4 | 2024-07-10 | [41435](https://github.com/airbytehq/airbyte/pull/41435) | Update dependencies | | 1.0.3 | 2024-07-09 | [41230](https://github.com/airbytehq/airbyte/pull/41230) | Update dependencies | | 1.0.2 | 2024-07-06 | [40995](https://github.com/airbytehq/airbyte/pull/40995) | Update dependencies | From 72973a8feb983313730d4b3663cee58842b9bbf0 Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:21:55 +0200 Subject: [PATCH 092/260] =?UTF-8?q?=F0=9F=90=99=20source-twilio:=20run=20u?= =?UTF-8?q?p-to-date=20pipeline=20[2024-07-13]=20(#41845)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-twilio/metadata.yaml | 2 +- airbyte-integrations/connectors/source-twilio/poetry.lock | 6 +++--- .../connectors/source-twilio/pyproject.toml | 2 +- docs/integrations/sources/twilio.md | 1 + 4 files changed, 6 insertions(+), 5 deletions(-) diff --git a/airbyte-integrations/connectors/source-twilio/metadata.yaml b/airbyte-integrations/connectors/source-twilio/metadata.yaml index 4f3f17f3107b..9f9c46a15579 100644 --- a/airbyte-integrations/connectors/source-twilio/metadata.yaml +++ b/airbyte-integrations/connectors/source-twilio/metadata.yaml @@ -13,7 +13,7 @@ data: connectorSubtype: api connectorType: source definitionId: b9dc6155-672e-42ea-b10d-9f1f1fb95ab1 - dockerImageTag: 0.11.8 + dockerImageTag: 0.11.9 dockerRepository: airbyte/source-twilio documentationUrl: https://docs.airbyte.com/integrations/sources/twilio githubIssueLabel: source-twilio diff --git a/airbyte-integrations/connectors/source-twilio/poetry.lock b/airbyte-integrations/connectors/source-twilio/poetry.lock index 91a89df88800..a4f674daa83b 100644 --- a/airbyte-integrations/connectors/source-twilio/poetry.lock +++ b/airbyte-integrations/connectors/source-twilio/poetry.lock @@ -288,13 +288,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] diff --git a/airbyte-integrations/connectors/source-twilio/pyproject.toml b/airbyte-integrations/connectors/source-twilio/pyproject.toml index b20b51a21ac8..a5be66fda3ef 100644 --- a/airbyte-integrations/connectors/source-twilio/pyproject.toml +++ b/airbyte-integrations/connectors/source-twilio/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.11.8" +version = "0.11.9" name = "source-twilio" description = "Source implementation for Twilio." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/twilio.md b/docs/integrations/sources/twilio.md index d85e01b96dcd..04f03bbdbd69 100644 --- a/docs/integrations/sources/twilio.md +++ b/docs/integrations/sources/twilio.md @@ -100,6 +100,7 @@ For more information, see [the Twilio docs for rate limitations](https://support | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :------------------------------------------------------------------------------------------------------ | +| 0.11.9 | 2024-07-13 | [41845](https://github.com/airbytehq/airbyte/pull/41845) | Update dependencies | | 0.11.8 | 2024-07-10 | [41478](https://github.com/airbytehq/airbyte/pull/41478) | Update dependencies | | 0.11.7 | 2024-06-26 | [40527](https://github.com/airbytehq/airbyte/pull/40527) | Update dependencies | | 0.11.6 | 2024-06-22 | [40030](https://github.com/airbytehq/airbyte/pull/40030) | Update dependencies | From 8be1874d8fa02d52c0fb31fd3c1a9e30f9176474 Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:21:58 +0200 Subject: [PATCH 093/260] =?UTF-8?q?=F0=9F=90=99=20source-pypi:=20run=20up-?= =?UTF-8?q?to-date=20pipeline=20[2024-07-13]=20(#41844)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-pypi/metadata.yaml | 2 +- airbyte-integrations/connectors/source-pypi/poetry.lock | 6 +++--- airbyte-integrations/connectors/source-pypi/pyproject.toml | 2 +- docs/integrations/sources/pypi.md | 1 + 4 files changed, 6 insertions(+), 5 deletions(-) diff --git a/airbyte-integrations/connectors/source-pypi/metadata.yaml b/airbyte-integrations/connectors/source-pypi/metadata.yaml index 6a9b031eaccf..88dc475de664 100644 --- a/airbyte-integrations/connectors/source-pypi/metadata.yaml +++ b/airbyte-integrations/connectors/source-pypi/metadata.yaml @@ -7,7 +7,7 @@ data: connectorSubtype: api connectorType: source definitionId: 88ecd3a8-5f5b-11ed-9b6a-0242ac120002 - dockerImageTag: 0.1.10 + dockerImageTag: 0.1.11 dockerRepository: airbyte/source-pypi documentationUrl: https://docs.airbyte.com/integrations/sources/pypi githubIssueLabel: source-pypi diff --git a/airbyte-integrations/connectors/source-pypi/poetry.lock b/airbyte-integrations/connectors/source-pypi/poetry.lock index 6f83e5bed3a6..c0f7f643d050 100644 --- a/airbyte-integrations/connectors/source-pypi/poetry.lock +++ b/airbyte-integrations/connectors/source-pypi/poetry.lock @@ -288,13 +288,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] diff --git a/airbyte-integrations/connectors/source-pypi/pyproject.toml b/airbyte-integrations/connectors/source-pypi/pyproject.toml index cf5dec3b904d..5c376f7112d6 100644 --- a/airbyte-integrations/connectors/source-pypi/pyproject.toml +++ b/airbyte-integrations/connectors/source-pypi/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.1.10" +version = "0.1.11" name = "source-pypi" description = "Source implementation for Pypi." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/pypi.md b/docs/integrations/sources/pypi.md index 67a7d8b0f60d..feb4acea8e22 100644 --- a/docs/integrations/sources/pypi.md +++ b/docs/integrations/sources/pypi.md @@ -31,6 +31,7 @@ Try not to make a lot of requests (thousands) in a short amount of time (minutes | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :------------------------------------------------------------------------------ | +| 0.1.11 | 2024-07-13 | [41844](https://github.com/airbytehq/airbyte/pull/41844) | Update dependencies | | 0.1.10 | 2024-07-10 | [41464](https://github.com/airbytehq/airbyte/pull/41464) | Update dependencies | | 0.1.9 | 2024-07-09 | [41078](https://github.com/airbytehq/airbyte/pull/41078) | Update dependencies | | 0.1.8 | 2024-07-06 | [40842](https://github.com/airbytehq/airbyte/pull/40842) | Update dependencies | From 5892f46d139d8ccf7019e657c98adb3ae82afe99 Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:22:01 +0200 Subject: [PATCH 094/260] =?UTF-8?q?=F0=9F=90=99=20source-copper:=20run=20u?= =?UTF-8?q?p-to-date=20pipeline=20[2024-07-13]=20(#41843)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-copper/metadata.yaml | 2 +- airbyte-integrations/connectors/source-copper/poetry.lock | 6 +++--- .../connectors/source-copper/pyproject.toml | 2 +- docs/integrations/sources/copper.md | 1 + 4 files changed, 6 insertions(+), 5 deletions(-) diff --git a/airbyte-integrations/connectors/source-copper/metadata.yaml b/airbyte-integrations/connectors/source-copper/metadata.yaml index e7726d33045e..f293f2266c7c 100644 --- a/airbyte-integrations/connectors/source-copper/metadata.yaml +++ b/airbyte-integrations/connectors/source-copper/metadata.yaml @@ -7,7 +7,7 @@ data: connectorSubtype: api connectorType: source definitionId: 44f3002f-2df9-4f6d-b21c-02cd3b47d0dc - dockerImageTag: 0.3.11 + dockerImageTag: 0.3.12 dockerRepository: airbyte/source-copper documentationUrl: https://docs.airbyte.com/integrations/sources/copper githubIssueLabel: source-copper diff --git a/airbyte-integrations/connectors/source-copper/poetry.lock b/airbyte-integrations/connectors/source-copper/poetry.lock index 059ad0800506..747aa685c2a5 100644 --- a/airbyte-integrations/connectors/source-copper/poetry.lock +++ b/airbyte-integrations/connectors/source-copper/poetry.lock @@ -288,13 +288,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] diff --git a/airbyte-integrations/connectors/source-copper/pyproject.toml b/airbyte-integrations/connectors/source-copper/pyproject.toml index 631b25ea217b..a243323203f6 100644 --- a/airbyte-integrations/connectors/source-copper/pyproject.toml +++ b/airbyte-integrations/connectors/source-copper/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.3.11" +version = "0.3.12" name = "source-copper" description = "Source implementation for Copper." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/copper.md b/docs/integrations/sources/copper.md index 9a9b8b8017eb..aad8bf87c387 100644 --- a/docs/integrations/sources/copper.md +++ b/docs/integrations/sources/copper.md @@ -44,6 +44,7 @@ The Copper source connector supports the following [sync modes](https://docs.air | Version | Date | Pull Request | Subject | | :------ | :--------- | :-------------------------------------------------------- | :------------------------------------------------------------------------------ | +| 0.3.12 | 2024-07-13 | [41843](https://github.com/airbytehq/airbyte/pull/41843) | Update dependencies | | 0.3.11 | 2024-07-10 | [41385](https://github.com/airbytehq/airbyte/pull/41385) | Update dependencies | | 0.3.10 | 2024-07-09 | [41111](https://github.com/airbytehq/airbyte/pull/41111) | Update dependencies | | 0.3.9 | 2024-07-06 | [41004](https://github.com/airbytehq/airbyte/pull/41004) | Update dependencies | From c699a960ccaf21a8288355863c26e2cd19bcc36c Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:22:04 +0200 Subject: [PATCH 095/260] =?UTF-8?q?=F0=9F=90=99=20source-jira:=20run=20up-?= =?UTF-8?q?to-date=20pipeline=20[2024-07-13]=20(#41842)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-jira/metadata.yaml | 2 +- .../connectors/source-jira/poetry.lock | 12 ++++++------ .../connectors/source-jira/pyproject.toml | 2 +- docs/integrations/sources/jira.md | 1 + 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/airbyte-integrations/connectors/source-jira/metadata.yaml b/airbyte-integrations/connectors/source-jira/metadata.yaml index dc95839acb4a..e536ad7ecf3c 100644 --- a/airbyte-integrations/connectors/source-jira/metadata.yaml +++ b/airbyte-integrations/connectors/source-jira/metadata.yaml @@ -10,7 +10,7 @@ data: connectorSubtype: api connectorType: source definitionId: 68e63de2-bb83-4c7e-93fa-a8a9051e3993 - dockerImageTag: 3.0.8 + dockerImageTag: 3.0.9 dockerRepository: airbyte/source-jira documentationUrl: https://docs.airbyte.com/integrations/sources/jira githubIssueLabel: source-jira diff --git a/airbyte-integrations/connectors/source-jira/poetry.lock b/airbyte-integrations/connectors/source-jira/poetry.lock index 03c6d01daa23..2d0619edf0da 100644 --- a/airbyte-integrations/connectors/source-jira/poetry.lock +++ b/airbyte-integrations/connectors/source-jira/poetry.lock @@ -410,13 +410,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] @@ -566,13 +566,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.84" +version = "0.1.85" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.84-py3-none-any.whl", hash = "sha256:01f3c6390dba26c583bac8dd0e551ce3d0509c7f55cad714db0b5c8d36e4c7ff"}, - {file = "langsmith-0.1.84.tar.gz", hash = "sha256:5220c0439838b9a5bd320fd3686be505c5083dcee22d2452006c23891153bea1"}, + {file = "langsmith-0.1.85-py3-none-any.whl", hash = "sha256:c1f94384f10cea96f7b4d33fd3db7ec180c03c7468877d50846f881d2017ff94"}, + {file = "langsmith-0.1.85.tar.gz", hash = "sha256:acff31f9e53efa48586cf8e32f65625a335c74d7c4fa306d1655ac18452296f6"}, ] [package.dependencies] diff --git a/airbyte-integrations/connectors/source-jira/pyproject.toml b/airbyte-integrations/connectors/source-jira/pyproject.toml index d3eb5a7ed8bc..de5fcf752612 100644 --- a/airbyte-integrations/connectors/source-jira/pyproject.toml +++ b/airbyte-integrations/connectors/source-jira/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "3.0.8" +version = "3.0.9" name = "source-jira" description = "Source implementation for Jira." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/jira.md b/docs/integrations/sources/jira.md index ddca636679dd..875581e66708 100644 --- a/docs/integrations/sources/jira.md +++ b/docs/integrations/sources/jira.md @@ -127,6 +127,7 @@ The Jira connector should not run into Jira API limitations under normal usage. | Version | Date | Pull Request | Subject | |:--------|:-----------|:-----------------------------------------------------------|:-----------------------------------------------------------------------------------------------------------------------------------------------------------------| +| 3.0.9 | 2024-07-13 | [41842](https://github.com/airbytehq/airbyte/pull/41842) | Update dependencies | | 3.0.8 | 2024-07-10 | [41453](https://github.com/airbytehq/airbyte/pull/41453) | Update dependencies | | 3.0.7 | 2024-07-09 | [41175](https://github.com/airbytehq/airbyte/pull/41175) | Update dependencies | | 3.0.6 | 2024-07-06 | [40785](https://github.com/airbytehq/airbyte/pull/40785) | Update dependencies | From f32c983fd3081a6301f6ca85ea9420d81b60d20c Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:22:07 +0200 Subject: [PATCH 096/260] =?UTF-8?q?=F0=9F=90=99=20source-harvest:=20run=20?= =?UTF-8?q?up-to-date=20pipeline=20[2024-07-13]=20(#41841)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-harvest/metadata.yaml | 2 +- airbyte-integrations/connectors/source-harvest/poetry.lock | 6 +++--- .../connectors/source-harvest/pyproject.toml | 2 +- docs/integrations/sources/harvest.md | 1 + 4 files changed, 6 insertions(+), 5 deletions(-) diff --git a/airbyte-integrations/connectors/source-harvest/metadata.yaml b/airbyte-integrations/connectors/source-harvest/metadata.yaml index 08a3667826f3..d4089d2fef35 100644 --- a/airbyte-integrations/connectors/source-harvest/metadata.yaml +++ b/airbyte-integrations/connectors/source-harvest/metadata.yaml @@ -10,7 +10,7 @@ data: connectorSubtype: api connectorType: source definitionId: fe2b4084-3386-4d3b-9ad6-308f61a6f1e6 - dockerImageTag: 1.0.7 + dockerImageTag: 1.0.8 dockerRepository: airbyte/source-harvest documentationUrl: https://docs.airbyte.com/integrations/sources/harvest githubIssueLabel: source-harvest diff --git a/airbyte-integrations/connectors/source-harvest/poetry.lock b/airbyte-integrations/connectors/source-harvest/poetry.lock index 1163b472a6f0..c2f429167b0c 100644 --- a/airbyte-integrations/connectors/source-harvest/poetry.lock +++ b/airbyte-integrations/connectors/source-harvest/poetry.lock @@ -288,13 +288,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] diff --git a/airbyte-integrations/connectors/source-harvest/pyproject.toml b/airbyte-integrations/connectors/source-harvest/pyproject.toml index c183310b1b02..21db145362cd 100644 --- a/airbyte-integrations/connectors/source-harvest/pyproject.toml +++ b/airbyte-integrations/connectors/source-harvest/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "1.0.7" +version = "1.0.8" name = "source-harvest" description = "Source implementation for Harvest." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/harvest.md b/docs/integrations/sources/harvest.md index fe58a5fe2497..d071f51ae183 100644 --- a/docs/integrations/sources/harvest.md +++ b/docs/integrations/sources/harvest.md @@ -91,6 +91,7 @@ The connector is restricted by the [Harvest rate limits](https://help.getharvest | Version | Date | Pull Request | Subject | |:--------| :--------- | :------------------------------------------------------- |:----------------------------------------------------------------------------------------------------------------------------------| +| 1.0.8 | 2024-07-13 | [41841](https://github.com/airbytehq/airbyte/pull/41841) | Update dependencies | | 1.0.7 | 2024-07-10 | [41381](https://github.com/airbytehq/airbyte/pull/41381) | Update dependencies | | 1.0.6 | 2024-07-09 | [41303](https://github.com/airbytehq/airbyte/pull/41303) | Update dependencies | | 1.0.5 | 2024-07-06 | [41002](https://github.com/airbytehq/airbyte/pull/41002) | Update dependencies | From 4330cf774790404feed3b96e2e8fcdfd96b5e298 Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:22:11 +0200 Subject: [PATCH 097/260] =?UTF-8?q?=F0=9F=90=99=20source-hubplanner:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-07-13]=20(#41840)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-hubplanner/metadata.yaml | 2 +- .../connectors/source-hubplanner/poetry.lock | 12 ++++++------ .../connectors/source-hubplanner/pyproject.toml | 2 +- docs/integrations/sources/hubplanner.md | 1 + 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/airbyte-integrations/connectors/source-hubplanner/metadata.yaml b/airbyte-integrations/connectors/source-hubplanner/metadata.yaml index b06c300ec2a8..bededa2a4be3 100644 --- a/airbyte-integrations/connectors/source-hubplanner/metadata.yaml +++ b/airbyte-integrations/connectors/source-hubplanner/metadata.yaml @@ -14,7 +14,7 @@ data: connectorSubtype: api connectorType: source definitionId: 8097ceb9-383f-42f6-9f92-d3fd4bcc7689 - dockerImageTag: 0.2.6 + dockerImageTag: 0.2.7 dockerRepository: airbyte/source-hubplanner githubIssueLabel: source-hubplanner icon: hubplanner.svg diff --git a/airbyte-integrations/connectors/source-hubplanner/poetry.lock b/airbyte-integrations/connectors/source-hubplanner/poetry.lock index 1c7c00978d43..728f233c17e0 100644 --- a/airbyte-integrations/connectors/source-hubplanner/poetry.lock +++ b/airbyte-integrations/connectors/source-hubplanner/poetry.lock @@ -410,13 +410,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] @@ -566,13 +566,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.84" +version = "0.1.85" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.84-py3-none-any.whl", hash = "sha256:01f3c6390dba26c583bac8dd0e551ce3d0509c7f55cad714db0b5c8d36e4c7ff"}, - {file = "langsmith-0.1.84.tar.gz", hash = "sha256:5220c0439838b9a5bd320fd3686be505c5083dcee22d2452006c23891153bea1"}, + {file = "langsmith-0.1.85-py3-none-any.whl", hash = "sha256:c1f94384f10cea96f7b4d33fd3db7ec180c03c7468877d50846f881d2017ff94"}, + {file = "langsmith-0.1.85.tar.gz", hash = "sha256:acff31f9e53efa48586cf8e32f65625a335c74d7c4fa306d1655ac18452296f6"}, ] [package.dependencies] diff --git a/airbyte-integrations/connectors/source-hubplanner/pyproject.toml b/airbyte-integrations/connectors/source-hubplanner/pyproject.toml index ed66f1a87e02..0a6c994784a7 100644 --- a/airbyte-integrations/connectors/source-hubplanner/pyproject.toml +++ b/airbyte-integrations/connectors/source-hubplanner/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.2.6" +version = "0.2.7" name = "source-hubplanner" description = "Source implementation for Hubplanner." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/hubplanner.md b/docs/integrations/sources/hubplanner.md index d9504e3979ef..2aa54bcb91e1 100644 --- a/docs/integrations/sources/hubplanner.md +++ b/docs/integrations/sources/hubplanner.md @@ -44,6 +44,7 @@ The Okta source connector supports the following [sync modes](https://docs.airby | Version | Date | Pull Request | Subject | | :------ | :--- | :----------- | :------ | +| 0.2.7 | 2024-07-13 | [41840](https://github.com/airbytehq/airbyte/pull/41840) | Update dependencies | | 0.2.6 | 2024-07-10 | [41455](https://github.com/airbytehq/airbyte/pull/41455) | Update dependencies | | 0.2.5 | 2024-07-06 | [40967](https://github.com/airbytehq/airbyte/pull/40967) | Update dependencies | | 0.2.4 | 2024-06-25 | [40397](https://github.com/airbytehq/airbyte/pull/40397) | Update dependencies | From 9c68f202d872abc8f54a2a04a5d6d53e7665eba5 Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:22:14 +0200 Subject: [PATCH 098/260] =?UTF-8?q?=F0=9F=90=99=20source-asana:=20run=20up?= =?UTF-8?q?-to-date=20pipeline=20[2024-07-13]=20(#41839)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-asana/metadata.yaml | 2 +- .../connectors/source-asana/poetry.lock | 12 ++++++------ .../connectors/source-asana/pyproject.toml | 2 +- docs/integrations/sources/asana.md | 1 + 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/airbyte-integrations/connectors/source-asana/metadata.yaml b/airbyte-integrations/connectors/source-asana/metadata.yaml index 2a4a0e077bb6..6a960d057bbf 100644 --- a/airbyte-integrations/connectors/source-asana/metadata.yaml +++ b/airbyte-integrations/connectors/source-asana/metadata.yaml @@ -28,7 +28,7 @@ data: connectorSubtype: api connectorType: source definitionId: d0243522-dccf-4978-8ba0-37ed47a0bdbf - dockerImageTag: 1.0.7 + dockerImageTag: 1.0.8 dockerRepository: airbyte/source-asana githubIssueLabel: source-asana icon: asana.svg diff --git a/airbyte-integrations/connectors/source-asana/poetry.lock b/airbyte-integrations/connectors/source-asana/poetry.lock index 89b2d5c4065d..4f022c500f8d 100644 --- a/airbyte-integrations/connectors/source-asana/poetry.lock +++ b/airbyte-integrations/connectors/source-asana/poetry.lock @@ -400,13 +400,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] @@ -556,13 +556,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.84" +version = "0.1.85" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.84-py3-none-any.whl", hash = "sha256:01f3c6390dba26c583bac8dd0e551ce3d0509c7f55cad714db0b5c8d36e4c7ff"}, - {file = "langsmith-0.1.84.tar.gz", hash = "sha256:5220c0439838b9a5bd320fd3686be505c5083dcee22d2452006c23891153bea1"}, + {file = "langsmith-0.1.85-py3-none-any.whl", hash = "sha256:c1f94384f10cea96f7b4d33fd3db7ec180c03c7468877d50846f881d2017ff94"}, + {file = "langsmith-0.1.85.tar.gz", hash = "sha256:acff31f9e53efa48586cf8e32f65625a335c74d7c4fa306d1655ac18452296f6"}, ] [package.dependencies] diff --git a/airbyte-integrations/connectors/source-asana/pyproject.toml b/airbyte-integrations/connectors/source-asana/pyproject.toml index a9ce98fe9eca..15f4cca5cfae 100644 --- a/airbyte-integrations/connectors/source-asana/pyproject.toml +++ b/airbyte-integrations/connectors/source-asana/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "1.0.7" +version = "1.0.8" name = "source-asana" description = "Source implementation for asana." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/asana.md b/docs/integrations/sources/asana.md index c35bfdddc219..8f31844b11ae 100644 --- a/docs/integrations/sources/asana.md +++ b/docs/integrations/sources/asana.md @@ -106,6 +106,7 @@ The connector is restricted by [Asana rate limits](https://developers.asana.com/ | Version | Date | Pull Request | Subject | |:--------|:-----------|:---------------------------------------------------------|:------------------------------------------------------------------| +| 1.0.8 | 2024-07-13 | [41839](https://github.com/airbytehq/airbyte/pull/41839) | Update dependencies | | 1.0.7 | 2024-07-10 | [41573](https://github.com/airbytehq/airbyte/pull/41573) | Update dependencies | | 1.0.6 | 2024-07-09 | [41142](https://github.com/airbytehq/airbyte/pull/41142) | Update dependencies | | 1.0.5 | 2024-07-06 | [40865](https://github.com/airbytehq/airbyte/pull/40865) | Update dependencies | From e7d0a1b277911fecf682fc6c4052c0a6e44eb9c1 Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:22:18 +0200 Subject: [PATCH 099/260] =?UTF-8?q?=F0=9F=90=99=20source-smaily:=20run=20u?= =?UTF-8?q?p-to-date=20pipeline=20[2024-07-13]=20(#41838)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-smaily/metadata.yaml | 2 +- .../connectors/source-smaily/poetry.lock | 12 ++++++------ .../connectors/source-smaily/pyproject.toml | 2 +- docs/integrations/sources/smaily.md | 1 + 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/airbyte-integrations/connectors/source-smaily/metadata.yaml b/airbyte-integrations/connectors/source-smaily/metadata.yaml index da3b05f7e555..e0afad5eaa5e 100644 --- a/airbyte-integrations/connectors/source-smaily/metadata.yaml +++ b/airbyte-integrations/connectors/source-smaily/metadata.yaml @@ -2,7 +2,7 @@ data: connectorSubtype: api connectorType: source definitionId: 781f8b1d-4e20-4842-a2c3-cd9b119d65fa - dockerImageTag: 0.1.8 + dockerImageTag: 0.1.9 dockerRepository: airbyte/source-smaily githubIssueLabel: source-smaily icon: smaily.svg diff --git a/airbyte-integrations/connectors/source-smaily/poetry.lock b/airbyte-integrations/connectors/source-smaily/poetry.lock index 4b03cc351726..13836360394d 100644 --- a/airbyte-integrations/connectors/source-smaily/poetry.lock +++ b/airbyte-integrations/connectors/source-smaily/poetry.lock @@ -410,13 +410,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] @@ -566,13 +566,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.84" +version = "0.1.85" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.84-py3-none-any.whl", hash = "sha256:01f3c6390dba26c583bac8dd0e551ce3d0509c7f55cad714db0b5c8d36e4c7ff"}, - {file = "langsmith-0.1.84.tar.gz", hash = "sha256:5220c0439838b9a5bd320fd3686be505c5083dcee22d2452006c23891153bea1"}, + {file = "langsmith-0.1.85-py3-none-any.whl", hash = "sha256:c1f94384f10cea96f7b4d33fd3db7ec180c03c7468877d50846f881d2017ff94"}, + {file = "langsmith-0.1.85.tar.gz", hash = "sha256:acff31f9e53efa48586cf8e32f65625a335c74d7c4fa306d1655ac18452296f6"}, ] [package.dependencies] diff --git a/airbyte-integrations/connectors/source-smaily/pyproject.toml b/airbyte-integrations/connectors/source-smaily/pyproject.toml index 15d8ea15c4f5..9d24a3c36278 100644 --- a/airbyte-integrations/connectors/source-smaily/pyproject.toml +++ b/airbyte-integrations/connectors/source-smaily/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.1.8" +version = "0.1.9" name = "source-smaily" description = "Source implementation for Smaily." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/smaily.md b/docs/integrations/sources/smaily.md index 26d2d6e04c99..490ce63853a4 100644 --- a/docs/integrations/sources/smaily.md +++ b/docs/integrations/sources/smaily.md @@ -39,6 +39,7 @@ The connector has a rate limit of 5 API requests per second per IP-address. | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :------------- | +| 0.1.9 | 2024-07-13 | [41838](https://github.com/airbytehq/airbyte/pull/41838) | Update dependencies | | 0.1.8 | 2024-07-10 | [41579](https://github.com/airbytehq/airbyte/pull/41579) | Update dependencies | | 0.1.7 | 2024-07-09 | [41093](https://github.com/airbytehq/airbyte/pull/41093) | Update dependencies | | 0.1.6 | 2024-07-06 | [41010](https://github.com/airbytehq/airbyte/pull/41010) | Update dependencies | From a5c23fd6c949dcdc1ee2f44d65f8f2f39a0250b8 Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:22:22 +0200 Subject: [PATCH 100/260] =?UTF-8?q?=F0=9F=90=99=20source-datascope:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-07-13]=20(#41837)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-datascope/metadata.yaml | 2 +- .../connectors/source-datascope/poetry.lock | 12 ++++++------ .../connectors/source-datascope/pyproject.toml | 2 +- docs/integrations/sources/datascope.md | 1 + 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/airbyte-integrations/connectors/source-datascope/metadata.yaml b/airbyte-integrations/connectors/source-datascope/metadata.yaml index 235109eb19a9..047292319da8 100644 --- a/airbyte-integrations/connectors/source-datascope/metadata.yaml +++ b/airbyte-integrations/connectors/source-datascope/metadata.yaml @@ -2,7 +2,7 @@ data: connectorSubtype: api connectorType: source definitionId: 8e1ae2d2-4790-44d3-9d83-75b3fc3940ff - dockerImageTag: 0.1.8 + dockerImageTag: 0.1.9 dockerRepository: airbyte/source-datascope githubIssueLabel: source-datascope icon: datascope.svg diff --git a/airbyte-integrations/connectors/source-datascope/poetry.lock b/airbyte-integrations/connectors/source-datascope/poetry.lock index 4b03cc351726..13836360394d 100644 --- a/airbyte-integrations/connectors/source-datascope/poetry.lock +++ b/airbyte-integrations/connectors/source-datascope/poetry.lock @@ -410,13 +410,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] @@ -566,13 +566,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.84" +version = "0.1.85" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.84-py3-none-any.whl", hash = "sha256:01f3c6390dba26c583bac8dd0e551ce3d0509c7f55cad714db0b5c8d36e4c7ff"}, - {file = "langsmith-0.1.84.tar.gz", hash = "sha256:5220c0439838b9a5bd320fd3686be505c5083dcee22d2452006c23891153bea1"}, + {file = "langsmith-0.1.85-py3-none-any.whl", hash = "sha256:c1f94384f10cea96f7b4d33fd3db7ec180c03c7468877d50846f881d2017ff94"}, + {file = "langsmith-0.1.85.tar.gz", hash = "sha256:acff31f9e53efa48586cf8e32f65625a335c74d7c4fa306d1655ac18452296f6"}, ] [package.dependencies] diff --git a/airbyte-integrations/connectors/source-datascope/pyproject.toml b/airbyte-integrations/connectors/source-datascope/pyproject.toml index 2a7273302e84..310479ff8652 100644 --- a/airbyte-integrations/connectors/source-datascope/pyproject.toml +++ b/airbyte-integrations/connectors/source-datascope/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.1.8" +version = "0.1.9" name = "source-datascope" description = "Source implementation for Datascope." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/datascope.md b/docs/integrations/sources/datascope.md index d3767b2db82d..5c0b30b63123 100644 --- a/docs/integrations/sources/datascope.md +++ b/docs/integrations/sources/datascope.md @@ -64,6 +64,7 @@ GET https://www.mydatascope.com/api/external/locations | Version | Date | Pull Request | Subject | | :------ | :--------- | :-------------------------------------------------------- | :------------- | +| 0.1.9 | 2024-07-13 | [41837](https://github.com/airbytehq/airbyte/pull/41837) | Update dependencies | | 0.1.8 | 2024-07-10 | [41373](https://github.com/airbytehq/airbyte/pull/41373) | Update dependencies | | 0.1.7 | 2024-07-09 | [41304](https://github.com/airbytehq/airbyte/pull/41304) | Update dependencies | | 0.1.6 | 2024-07-06 | [40815](https://github.com/airbytehq/airbyte/pull/40815) | Update dependencies | From 91a317a5c8e0f3283ad43626e6ac758024cdfe33 Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:22:25 +0200 Subject: [PATCH 101/260] =?UTF-8?q?=F0=9F=90=99=20source-recurly:=20run=20?= =?UTF-8?q?up-to-date=20pipeline=20[2024-07-13]=20(#41836)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-recurly/metadata.yaml | 2 +- airbyte-integrations/connectors/source-recurly/poetry.lock | 6 +++--- .../connectors/source-recurly/pyproject.toml | 2 +- docs/integrations/sources/recurly.md | 1 + 4 files changed, 6 insertions(+), 5 deletions(-) diff --git a/airbyte-integrations/connectors/source-recurly/metadata.yaml b/airbyte-integrations/connectors/source-recurly/metadata.yaml index cbff5bea6c65..40b974800ec7 100644 --- a/airbyte-integrations/connectors/source-recurly/metadata.yaml +++ b/airbyte-integrations/connectors/source-recurly/metadata.yaml @@ -7,7 +7,7 @@ data: connectorSubtype: api connectorType: source definitionId: cd42861b-01fc-4658-a8ab-5d11d0510f01 - dockerImageTag: 1.0.10 + dockerImageTag: 1.0.11 dockerRepository: airbyte/source-recurly documentationUrl: https://docs.airbyte.com/integrations/sources/recurly githubIssueLabel: source-recurly diff --git a/airbyte-integrations/connectors/source-recurly/poetry.lock b/airbyte-integrations/connectors/source-recurly/poetry.lock index 1a26b5b2b84a..664b99f839ef 100644 --- a/airbyte-integrations/connectors/source-recurly/poetry.lock +++ b/airbyte-integrations/connectors/source-recurly/poetry.lock @@ -288,13 +288,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] diff --git a/airbyte-integrations/connectors/source-recurly/pyproject.toml b/airbyte-integrations/connectors/source-recurly/pyproject.toml index 79dc0ec9ebc4..3544aede1a72 100644 --- a/airbyte-integrations/connectors/source-recurly/pyproject.toml +++ b/airbyte-integrations/connectors/source-recurly/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "1.0.10" +version = "1.0.11" name = "source-recurly" description = "Source implementation for Recurly." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/recurly.md b/docs/integrations/sources/recurly.md index 7800060a5620..3724061bb311 100644 --- a/docs/integrations/sources/recurly.md +++ b/docs/integrations/sources/recurly.md @@ -66,6 +66,7 @@ We recommend creating a restricted, read-only key specifically for Airbyte acces | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :----------------------------------------------------------------------------------- | +| 1.0.11 | 2024-07-13 | [41836](https://github.com/airbytehq/airbyte/pull/41836) | Update dependencies | | 1.0.10 | 2024-07-10 | [41500](https://github.com/airbytehq/airbyte/pull/41500) | Update dependencies | | 1.0.9 | 2024-07-09 | [41174](https://github.com/airbytehq/airbyte/pull/41174) | Update dependencies | | 1.0.8 | 2024-07-06 | [40820](https://github.com/airbytehq/airbyte/pull/40820) | Update dependencies | From d5ddcad080162e779fe7cbe3d5218e457d0c6937 Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:22:29 +0200 Subject: [PATCH 102/260] =?UTF-8?q?=F0=9F=90=99=20source-gitlab:=20run=20u?= =?UTF-8?q?p-to-date=20pipeline=20[2024-07-13]=20(#41835)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-gitlab/metadata.yaml | 2 +- airbyte-integrations/connectors/source-gitlab/poetry.lock | 6 +++--- .../connectors/source-gitlab/pyproject.toml | 2 +- docs/integrations/sources/gitlab.md | 1 + 4 files changed, 6 insertions(+), 5 deletions(-) diff --git a/airbyte-integrations/connectors/source-gitlab/metadata.yaml b/airbyte-integrations/connectors/source-gitlab/metadata.yaml index 79c1753806c6..6a3b8574deb4 100644 --- a/airbyte-integrations/connectors/source-gitlab/metadata.yaml +++ b/airbyte-integrations/connectors/source-gitlab/metadata.yaml @@ -10,7 +10,7 @@ data: connectorSubtype: api connectorType: source definitionId: 5e6175e5-68e1-4c17-bff9-56103bbb0d80 - dockerImageTag: 4.0.7 + dockerImageTag: 4.0.8 dockerRepository: airbyte/source-gitlab documentationUrl: https://docs.airbyte.com/integrations/sources/gitlab githubIssueLabel: source-gitlab diff --git a/airbyte-integrations/connectors/source-gitlab/poetry.lock b/airbyte-integrations/connectors/source-gitlab/poetry.lock index f22dfc7e5948..bb77002e4484 100644 --- a/airbyte-integrations/connectors/source-gitlab/poetry.lock +++ b/airbyte-integrations/connectors/source-gitlab/poetry.lock @@ -288,13 +288,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] diff --git a/airbyte-integrations/connectors/source-gitlab/pyproject.toml b/airbyte-integrations/connectors/source-gitlab/pyproject.toml index dfb3919716e0..37fe292c24ad 100644 --- a/airbyte-integrations/connectors/source-gitlab/pyproject.toml +++ b/airbyte-integrations/connectors/source-gitlab/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "4.0.7" +version = "4.0.8" name = "source-gitlab" description = "Source implementation for GitLab." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/gitlab.md b/docs/integrations/sources/gitlab.md index cf8861c688d4..ae6a484d86b7 100644 --- a/docs/integrations/sources/gitlab.md +++ b/docs/integrations/sources/gitlab.md @@ -112,6 +112,7 @@ Gitlab has the [rate limits](https://docs.gitlab.com/ee/user/gitlab_com/index.ht | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| 4.0.8 | 2024-07-13 | [41835](https://github.com/airbytehq/airbyte/pull/41835) | Update dependencies | | 4.0.7 | 2024-07-10 | [41470](https://github.com/airbytehq/airbyte/pull/41470) | Update dependencies | | 4.0.6 | 2024-07-09 | [41100](https://github.com/airbytehq/airbyte/pull/41100) | Update dependencies | | 4.0.5 | 2024-07-06 | [40894](https://github.com/airbytehq/airbyte/pull/40894) | Update dependencies | From b10d758d194febc4e6995019810fd9a427137118 Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:22:32 +0200 Subject: [PATCH 103/260] =?UTF-8?q?=F0=9F=90=99=20source-everhour:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-07-13]=20(#41834)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-everhour/metadata.yaml | 2 +- airbyte-integrations/connectors/source-everhour/poetry.lock | 6 +++--- .../connectors/source-everhour/pyproject.toml | 2 +- docs/integrations/sources/everhour.md | 1 + 4 files changed, 6 insertions(+), 5 deletions(-) diff --git a/airbyte-integrations/connectors/source-everhour/metadata.yaml b/airbyte-integrations/connectors/source-everhour/metadata.yaml index f916d7921bf3..613517680b28 100644 --- a/airbyte-integrations/connectors/source-everhour/metadata.yaml +++ b/airbyte-integrations/connectors/source-everhour/metadata.yaml @@ -22,7 +22,7 @@ data: connectorSubtype: api connectorType: source definitionId: 6babfc42-c734-4ef6-a817-6eca15f0f9b7 - dockerImageTag: 0.1.8 + dockerImageTag: 0.1.9 dockerRepository: airbyte/source-everhour githubIssueLabel: source-everhour icon: everhour.svg diff --git a/airbyte-integrations/connectors/source-everhour/poetry.lock b/airbyte-integrations/connectors/source-everhour/poetry.lock index 6f83e5bed3a6..c0f7f643d050 100644 --- a/airbyte-integrations/connectors/source-everhour/poetry.lock +++ b/airbyte-integrations/connectors/source-everhour/poetry.lock @@ -288,13 +288,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] diff --git a/airbyte-integrations/connectors/source-everhour/pyproject.toml b/airbyte-integrations/connectors/source-everhour/pyproject.toml index 04d5039d4110..645fca75aa6d 100644 --- a/airbyte-integrations/connectors/source-everhour/pyproject.toml +++ b/airbyte-integrations/connectors/source-everhour/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.1.8" +version = "0.1.9" name = "source-everhour" description = "Source implementation for everhour." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/everhour.md b/docs/integrations/sources/everhour.md index f5652f61ec0e..7bdf20e8c5cd 100644 --- a/docs/integrations/sources/everhour.md +++ b/docs/integrations/sources/everhour.md @@ -28,6 +28,7 @@ This project supports the following streams: | Version | Date | Pull Request | Subject | |:--------|:-----------| :------------------------------------------------------- | :-------------- | +| 0.1.9 | 2024-07-13 | [41834](https://github.com/airbytehq/airbyte/pull/41834) | Update dependencies | | 0.1.8 | 2024-07-10 | [41534](https://github.com/airbytehq/airbyte/pull/41534) | Update dependencies | | 0.1.7 | 2024-07-09 | [41187](https://github.com/airbytehq/airbyte/pull/41187) | Update dependencies | | 0.1.6 | 2024-07-06 | [40871](https://github.com/airbytehq/airbyte/pull/40871) | Update dependencies | From 9484bb849aaaad0443541b16a782eb47cea24ce5 Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:22:37 +0200 Subject: [PATCH 104/260] =?UTF-8?q?=F0=9F=90=99=20source-gnews:=20run=20up?= =?UTF-8?q?-to-date=20pipeline=20[2024-07-13]=20(#41832)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-gnews/metadata.yaml | 2 +- .../connectors/source-gnews/poetry.lock | 12 ++++++------ .../connectors/source-gnews/pyproject.toml | 2 +- docs/integrations/sources/gnews.md | 1 + 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/airbyte-integrations/connectors/source-gnews/metadata.yaml b/airbyte-integrations/connectors/source-gnews/metadata.yaml index b3b69523e3b9..9456d6a4f136 100644 --- a/airbyte-integrations/connectors/source-gnews/metadata.yaml +++ b/airbyte-integrations/connectors/source-gnews/metadata.yaml @@ -2,7 +2,7 @@ data: connectorSubtype: api connectorType: source definitionId: ce38aec4-5a77-439a-be29-9ca44fd4e811 - dockerImageTag: 0.1.10 + dockerImageTag: 0.1.11 dockerRepository: airbyte/source-gnews githubIssueLabel: source-gnews icon: gnews.svg diff --git a/airbyte-integrations/connectors/source-gnews/poetry.lock b/airbyte-integrations/connectors/source-gnews/poetry.lock index 4b03cc351726..13836360394d 100644 --- a/airbyte-integrations/connectors/source-gnews/poetry.lock +++ b/airbyte-integrations/connectors/source-gnews/poetry.lock @@ -410,13 +410,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] @@ -566,13 +566,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.84" +version = "0.1.85" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.84-py3-none-any.whl", hash = "sha256:01f3c6390dba26c583bac8dd0e551ce3d0509c7f55cad714db0b5c8d36e4c7ff"}, - {file = "langsmith-0.1.84.tar.gz", hash = "sha256:5220c0439838b9a5bd320fd3686be505c5083dcee22d2452006c23891153bea1"}, + {file = "langsmith-0.1.85-py3-none-any.whl", hash = "sha256:c1f94384f10cea96f7b4d33fd3db7ec180c03c7468877d50846f881d2017ff94"}, + {file = "langsmith-0.1.85.tar.gz", hash = "sha256:acff31f9e53efa48586cf8e32f65625a335c74d7c4fa306d1655ac18452296f6"}, ] [package.dependencies] diff --git a/airbyte-integrations/connectors/source-gnews/pyproject.toml b/airbyte-integrations/connectors/source-gnews/pyproject.toml index 405681ade659..1c98fb729102 100644 --- a/airbyte-integrations/connectors/source-gnews/pyproject.toml +++ b/airbyte-integrations/connectors/source-gnews/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.1.10" +version = "0.1.11" name = "source-gnews" description = "Source implementation for Gnews." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/gnews.md b/docs/integrations/sources/gnews.md index e66ef6d9b0f9..e213e89d6054 100644 --- a/docs/integrations/sources/gnews.md +++ b/docs/integrations/sources/gnews.md @@ -40,6 +40,7 @@ Rate Limiting is based on the API Key tier subscription, get more info [here](ht | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :----------------------------------------------- | +| 0.1.11 | 2024-07-13 | [41832](https://github.com/airbytehq/airbyte/pull/41832) | Update dependencies | | 0.1.10 | 2024-07-10 | [41461](https://github.com/airbytehq/airbyte/pull/41461) | Update dependencies | | 0.1.9 | 2024-07-09 | [41179](https://github.com/airbytehq/airbyte/pull/41179) | Update dependencies | | 0.1.8 | 2024-07-06 | [40892](https://github.com/airbytehq/airbyte/pull/40892) | Update dependencies | From 3500e631479b3b872789dfda22a251cece8390aa Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:22:40 +0200 Subject: [PATCH 105/260] =?UTF-8?q?=F0=9F=90=99=20source-appsflyer:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-07-13]=20(#41831)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-appsflyer/metadata.yaml | 2 +- .../connectors/source-appsflyer/poetry.lock | 6 +++--- .../connectors/source-appsflyer/pyproject.toml | 2 +- docs/integrations/sources/appsflyer.md | 1 + 4 files changed, 6 insertions(+), 5 deletions(-) diff --git a/airbyte-integrations/connectors/source-appsflyer/metadata.yaml b/airbyte-integrations/connectors/source-appsflyer/metadata.yaml index 1b4a67430df6..6c208c7c29ba 100644 --- a/airbyte-integrations/connectors/source-appsflyer/metadata.yaml +++ b/airbyte-integrations/connectors/source-appsflyer/metadata.yaml @@ -2,7 +2,7 @@ data: connectorSubtype: api connectorType: source definitionId: 16447954-e6a8-4593-b140-43dea13bc457 - dockerImageTag: 0.2.6 + dockerImageTag: 0.2.7 dockerRepository: airbyte/source-appsflyer githubIssueLabel: source-appsflyer icon: appsflyer.svg diff --git a/airbyte-integrations/connectors/source-appsflyer/poetry.lock b/airbyte-integrations/connectors/source-appsflyer/poetry.lock index ae2a0db22935..17551e72adce 100644 --- a/airbyte-integrations/connectors/source-appsflyer/poetry.lock +++ b/airbyte-integrations/connectors/source-appsflyer/poetry.lock @@ -288,13 +288,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] diff --git a/airbyte-integrations/connectors/source-appsflyer/pyproject.toml b/airbyte-integrations/connectors/source-appsflyer/pyproject.toml index c4409cf7bd88..9fc0e836e1ba 100644 --- a/airbyte-integrations/connectors/source-appsflyer/pyproject.toml +++ b/airbyte-integrations/connectors/source-appsflyer/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.2.6" +version = "0.2.7" name = "source-appsflyer" description = "Source implementation for Appsflyer." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/appsflyer.md b/docs/integrations/sources/appsflyer.md index 81b7c16fd9bb..7829517f499d 100644 --- a/docs/integrations/sources/appsflyer.md +++ b/docs/integrations/sources/appsflyer.md @@ -23,6 +23,7 @@ The Airbyte Source for [AppsFLyer](https://www.appsflyer.com/) | Version | Date | Pull Request | Subject | | :------ | :--------- | :----------------------------------------------------- | :------------------------------------------ | +| 0.2.7 | 2024-07-13 | [41831](https://github.com/airbytehq/airbyte/pull/41831) | Update dependencies | | 0.2.6 | 2024-07-10 | [41600](https://github.com/airbytehq/airbyte/pull/41600) | Update dependencies | | 0.2.5 | 2024-07-09 | [41146](https://github.com/airbytehq/airbyte/pull/41146) | Update dependencies | | 0.2.4 | 2024-07-06 | [40766](https://github.com/airbytehq/airbyte/pull/40766) | Update dependencies | From 1c23871f202bc46175a08d37f669f1fb5d708725 Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:22:43 +0200 Subject: [PATCH 106/260] =?UTF-8?q?=F0=9F=90=99=20source-qualaroo:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-07-13]=20(#41830)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-qualaroo/metadata.yaml | 2 +- .../connectors/source-qualaroo/poetry.lock | 12 ++++++------ .../connectors/source-qualaroo/pyproject.toml | 2 +- docs/integrations/sources/qualaroo.md | 1 + 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/airbyte-integrations/connectors/source-qualaroo/metadata.yaml b/airbyte-integrations/connectors/source-qualaroo/metadata.yaml index e38ca0cb08f9..f70cb13c8918 100644 --- a/airbyte-integrations/connectors/source-qualaroo/metadata.yaml +++ b/airbyte-integrations/connectors/source-qualaroo/metadata.yaml @@ -14,7 +14,7 @@ data: connectorSubtype: api connectorType: source definitionId: eb655362-28a8-4311-8806-4fcc612734a7 - dockerImageTag: 0.3.7 + dockerImageTag: 0.3.8 dockerRepository: airbyte/source-qualaroo githubIssueLabel: source-qualaroo icon: qualaroo.svg diff --git a/airbyte-integrations/connectors/source-qualaroo/poetry.lock b/airbyte-integrations/connectors/source-qualaroo/poetry.lock index 1c7c00978d43..728f233c17e0 100644 --- a/airbyte-integrations/connectors/source-qualaroo/poetry.lock +++ b/airbyte-integrations/connectors/source-qualaroo/poetry.lock @@ -410,13 +410,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] @@ -566,13 +566,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.84" +version = "0.1.85" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.84-py3-none-any.whl", hash = "sha256:01f3c6390dba26c583bac8dd0e551ce3d0509c7f55cad714db0b5c8d36e4c7ff"}, - {file = "langsmith-0.1.84.tar.gz", hash = "sha256:5220c0439838b9a5bd320fd3686be505c5083dcee22d2452006c23891153bea1"}, + {file = "langsmith-0.1.85-py3-none-any.whl", hash = "sha256:c1f94384f10cea96f7b4d33fd3db7ec180c03c7468877d50846f881d2017ff94"}, + {file = "langsmith-0.1.85.tar.gz", hash = "sha256:acff31f9e53efa48586cf8e32f65625a335c74d7c4fa306d1655ac18452296f6"}, ] [package.dependencies] diff --git a/airbyte-integrations/connectors/source-qualaroo/pyproject.toml b/airbyte-integrations/connectors/source-qualaroo/pyproject.toml index 07e175d55041..6e31f29229d6 100644 --- a/airbyte-integrations/connectors/source-qualaroo/pyproject.toml +++ b/airbyte-integrations/connectors/source-qualaroo/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.3.7" +version = "0.3.8" name = "source-qualaroo" description = "Source implementation for Qualaroo." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/qualaroo.md b/docs/integrations/sources/qualaroo.md index 7cd19fa13263..769296d62772 100644 --- a/docs/integrations/sources/qualaroo.md +++ b/docs/integrations/sources/qualaroo.md @@ -46,6 +46,7 @@ Please read [How to get your APIs Token and Key](https://help.qualaroo.com/hc/en | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :------------------------------------------------------------------------------------------------------- | +| 0.3.8 | 2024-07-13 | [41830](https://github.com/airbytehq/airbyte/pull/41830) | Update dependencies | | 0.3.7 | 2024-07-10 | [41380](https://github.com/airbytehq/airbyte/pull/41380) | Update dependencies | | 0.3.6 | 2024-07-10 | [41331](https://github.com/airbytehq/airbyte/pull/41331) | Update dependencies | | 0.3.5 | 2024-07-06 | [40822](https://github.com/airbytehq/airbyte/pull/40822) | Update dependencies | From 7baf19a0900355115d6ce6243eec6d3fe7a9620b Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:22:46 +0200 Subject: [PATCH 107/260] =?UTF-8?q?=F0=9F=90=99=20destination-vectara:=20r?= =?UTF-8?q?un=20up-to-date=20pipeline=20[2024-07-13]=20(#41829)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/destination-vectara/metadata.yaml | 2 +- .../connectors/destination-vectara/poetry.lock | 12 ++++++------ .../connectors/destination-vectara/pyproject.toml | 2 +- docs/integrations/destinations/vectara.md | 1 + 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/airbyte-integrations/connectors/destination-vectara/metadata.yaml b/airbyte-integrations/connectors/destination-vectara/metadata.yaml index fa3311d664a8..26c225fc76ce 100644 --- a/airbyte-integrations/connectors/destination-vectara/metadata.yaml +++ b/airbyte-integrations/connectors/destination-vectara/metadata.yaml @@ -13,7 +13,7 @@ data: connectorSubtype: database connectorType: destination definitionId: 102900e7-a236-4c94-83e4-a4189b99adc2 - dockerImageTag: 0.2.11 + dockerImageTag: 0.2.12 dockerRepository: airbyte/destination-vectara githubIssueLabel: destination-vectara icon: vectara.svg diff --git a/airbyte-integrations/connectors/destination-vectara/poetry.lock b/airbyte-integrations/connectors/destination-vectara/poetry.lock index cc27b7390144..8cd268a168da 100644 --- a/airbyte-integrations/connectors/destination-vectara/poetry.lock +++ b/airbyte-integrations/connectors/destination-vectara/poetry.lock @@ -279,13 +279,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] @@ -435,13 +435,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.84" +version = "0.1.85" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.84-py3-none-any.whl", hash = "sha256:01f3c6390dba26c583bac8dd0e551ce3d0509c7f55cad714db0b5c8d36e4c7ff"}, - {file = "langsmith-0.1.84.tar.gz", hash = "sha256:5220c0439838b9a5bd320fd3686be505c5083dcee22d2452006c23891153bea1"}, + {file = "langsmith-0.1.85-py3-none-any.whl", hash = "sha256:c1f94384f10cea96f7b4d33fd3db7ec180c03c7468877d50846f881d2017ff94"}, + {file = "langsmith-0.1.85.tar.gz", hash = "sha256:acff31f9e53efa48586cf8e32f65625a335c74d7c4fa306d1655ac18452296f6"}, ] [package.dependencies] diff --git a/airbyte-integrations/connectors/destination-vectara/pyproject.toml b/airbyte-integrations/connectors/destination-vectara/pyproject.toml index 39f9691c68ce..9be76b01671d 100644 --- a/airbyte-integrations/connectors/destination-vectara/pyproject.toml +++ b/airbyte-integrations/connectors/destination-vectara/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name = "airbyte-destination-vectara" -version = "0.2.11" +version = "0.2.12" description = "Airbyte destination implementation for Vectara" authors = ["Airbyte "] license = "MIT" diff --git a/docs/integrations/destinations/vectara.md b/docs/integrations/destinations/vectara.md index 85098f88c820..bc686e99c6bc 100644 --- a/docs/integrations/destinations/vectara.md +++ b/docs/integrations/destinations/vectara.md @@ -68,6 +68,7 @@ In addition, in the connector UI you define two set of fields for this connector | Version | Date | Pull Request | Subject | | :------ | :--------- | :-------------------------------------------------------- | :----------------------------------------------------------- | +| 0.2.12 | 2024-07-13 | [41829](https://github.com/airbytehq/airbyte/pull/41829) | Update dependencies | | 0.2.11 | 2024-07-10 | [41362](https://github.com/airbytehq/airbyte/pull/41362) | Update dependencies | | 0.2.10 | 2024-07-09 | [41140](https://github.com/airbytehq/airbyte/pull/41140) | Update dependencies | | 0.2.9 | 2024-07-06 | [40953](https://github.com/airbytehq/airbyte/pull/40953) | Update dependencies | From 06f1525aeb307cc8c656a1a6c5b99892c0b75afb Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:22:49 +0200 Subject: [PATCH 108/260] =?UTF-8?q?=F0=9F=90=99=20source-statuspage:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-07-13]=20(#41828)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-statuspage/metadata.yaml | 2 +- .../connectors/source-statuspage/poetry.lock | 12 ++++++------ .../connectors/source-statuspage/pyproject.toml | 2 +- docs/integrations/sources/statuspage.md | 1 + 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/airbyte-integrations/connectors/source-statuspage/metadata.yaml b/airbyte-integrations/connectors/source-statuspage/metadata.yaml index 243ecda75463..dfde9e5ea487 100644 --- a/airbyte-integrations/connectors/source-statuspage/metadata.yaml +++ b/airbyte-integrations/connectors/source-statuspage/metadata.yaml @@ -16,7 +16,7 @@ data: connectorSubtype: api connectorType: source definitionId: 74cbd708-46c3-4512-9c93-abd5c3e9a94d - dockerImageTag: 0.1.7 + dockerImageTag: 0.1.8 dockerRepository: airbyte/source-statuspage githubIssueLabel: source-statuspage icon: statuspage.svg diff --git a/airbyte-integrations/connectors/source-statuspage/poetry.lock b/airbyte-integrations/connectors/source-statuspage/poetry.lock index 4b03cc351726..13836360394d 100644 --- a/airbyte-integrations/connectors/source-statuspage/poetry.lock +++ b/airbyte-integrations/connectors/source-statuspage/poetry.lock @@ -410,13 +410,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] @@ -566,13 +566,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.84" +version = "0.1.85" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.84-py3-none-any.whl", hash = "sha256:01f3c6390dba26c583bac8dd0e551ce3d0509c7f55cad714db0b5c8d36e4c7ff"}, - {file = "langsmith-0.1.84.tar.gz", hash = "sha256:5220c0439838b9a5bd320fd3686be505c5083dcee22d2452006c23891153bea1"}, + {file = "langsmith-0.1.85-py3-none-any.whl", hash = "sha256:c1f94384f10cea96f7b4d33fd3db7ec180c03c7468877d50846f881d2017ff94"}, + {file = "langsmith-0.1.85.tar.gz", hash = "sha256:acff31f9e53efa48586cf8e32f65625a335c74d7c4fa306d1655ac18452296f6"}, ] [package.dependencies] diff --git a/airbyte-integrations/connectors/source-statuspage/pyproject.toml b/airbyte-integrations/connectors/source-statuspage/pyproject.toml index 8ae4fecf4ce1..31b95b7ab6b1 100644 --- a/airbyte-integrations/connectors/source-statuspage/pyproject.toml +++ b/airbyte-integrations/connectors/source-statuspage/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.1.7" +version = "0.1.8" name = "source-statuspage" description = "Source implementation for statuspage." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/statuspage.md b/docs/integrations/sources/statuspage.md index 572cb81aa9f1..1b28dfa0ea1c 100644 --- a/docs/integrations/sources/statuspage.md +++ b/docs/integrations/sources/statuspage.md @@ -38,6 +38,7 @@ Mailjet APIs are under rate limits for the number of API calls allowed per API k | Version | Date | Pull Request | Subject | |:--------|:-----------| :-------------------------------------------------------- | :---------------------------------------------- | +| 0.1.8 | 2024-07-13 | [41828](https://github.com/airbytehq/airbyte/pull/41828) | Update dependencies | | 0.1.7 | 2024-07-10 | [41413](https://github.com/airbytehq/airbyte/pull/41413) | Update dependencies | | 0.1.6 | 2024-07-09 | [41290](https://github.com/airbytehq/airbyte/pull/41290) | Update dependencies | | 0.1.5 | 2024-07-06 | [40902](https://github.com/airbytehq/airbyte/pull/40902) | Update dependencies | From f537d1977ca21e86a3d42608bb72cf5e058081e0 Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:22:52 +0200 Subject: [PATCH 109/260] =?UTF-8?q?=F0=9F=90=99=20source-gutendex:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-07-13]=20(#41827)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-gutendex/metadata.yaml | 2 +- .../connectors/source-gutendex/poetry.lock | 12 ++++++------ .../connectors/source-gutendex/pyproject.toml | 2 +- docs/integrations/sources/gutendex.md | 1 + 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/airbyte-integrations/connectors/source-gutendex/metadata.yaml b/airbyte-integrations/connectors/source-gutendex/metadata.yaml index aa644099776f..6240f5888a9d 100644 --- a/airbyte-integrations/connectors/source-gutendex/metadata.yaml +++ b/airbyte-integrations/connectors/source-gutendex/metadata.yaml @@ -2,7 +2,7 @@ data: connectorSubtype: api connectorType: source definitionId: bff9a277-e01d-420d-81ee-80f28a307318 - dockerImageTag: 0.1.8 + dockerImageTag: 0.1.9 dockerRepository: airbyte/source-gutendex githubIssueLabel: source-gutendex license: MIT diff --git a/airbyte-integrations/connectors/source-gutendex/poetry.lock b/airbyte-integrations/connectors/source-gutendex/poetry.lock index 4b03cc351726..13836360394d 100644 --- a/airbyte-integrations/connectors/source-gutendex/poetry.lock +++ b/airbyte-integrations/connectors/source-gutendex/poetry.lock @@ -410,13 +410,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] @@ -566,13 +566,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.84" +version = "0.1.85" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.84-py3-none-any.whl", hash = "sha256:01f3c6390dba26c583bac8dd0e551ce3d0509c7f55cad714db0b5c8d36e4c7ff"}, - {file = "langsmith-0.1.84.tar.gz", hash = "sha256:5220c0439838b9a5bd320fd3686be505c5083dcee22d2452006c23891153bea1"}, + {file = "langsmith-0.1.85-py3-none-any.whl", hash = "sha256:c1f94384f10cea96f7b4d33fd3db7ec180c03c7468877d50846f881d2017ff94"}, + {file = "langsmith-0.1.85.tar.gz", hash = "sha256:acff31f9e53efa48586cf8e32f65625a335c74d7c4fa306d1655ac18452296f6"}, ] [package.dependencies] diff --git a/airbyte-integrations/connectors/source-gutendex/pyproject.toml b/airbyte-integrations/connectors/source-gutendex/pyproject.toml index e5044a930af7..922db5c6699e 100644 --- a/airbyte-integrations/connectors/source-gutendex/pyproject.toml +++ b/airbyte-integrations/connectors/source-gutendex/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.1.8" +version = "0.1.9" name = "source-gutendex" description = "Source implementation for Gutendex." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/gutendex.md b/docs/integrations/sources/gutendex.md index 75b07683f24f..049ec85a7536 100644 --- a/docs/integrations/sources/gutendex.md +++ b/docs/integrations/sources/gutendex.md @@ -106,6 +106,7 @@ There is no published rate limit. However, since this data updates infrequently, | Version | Date | Pull Request | Subject | | :------ |:-----------| :-------------------------------------------------------- |:--------------------------------------------| +| 0.1.9 | 2024-07-13 | [41827](https://github.com/airbytehq/airbyte/pull/41827) | Update dependencies | | 0.1.8 | 2024-07-10 | [41507](https://github.com/airbytehq/airbyte/pull/41507) | Update dependencies | | 0.1.7 | 2024-07-09 | [41244](https://github.com/airbytehq/airbyte/pull/41244) | Update dependencies | | 0.1.6 | 2024-07-06 | [40823](https://github.com/airbytehq/airbyte/pull/40823) | Update dependencies | From 1afbf979f8bd1106231cc409462d0b67555a6cb7 Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:22:55 +0200 Subject: [PATCH 110/260] =?UTF-8?q?=F0=9F=90=99=20source-gocardless:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-07-13]=20(#41826)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-gocardless/metadata.yaml | 2 +- .../connectors/source-gocardless/poetry.lock | 12 ++++++------ .../connectors/source-gocardless/pyproject.toml | 2 +- docs/integrations/sources/gocardless.md | 1 + 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/airbyte-integrations/connectors/source-gocardless/metadata.yaml b/airbyte-integrations/connectors/source-gocardless/metadata.yaml index 21926dd2d9d7..13b462c4b6fc 100644 --- a/airbyte-integrations/connectors/source-gocardless/metadata.yaml +++ b/airbyte-integrations/connectors/source-gocardless/metadata.yaml @@ -2,7 +2,7 @@ data: connectorSubtype: api connectorType: source definitionId: ba15ac82-5c6a-4fb2-bf24-925c23a1180c - dockerImageTag: 0.1.8 + dockerImageTag: 0.1.9 dockerRepository: airbyte/source-gocardless githubIssueLabel: source-gocardless icon: gocardless.svg diff --git a/airbyte-integrations/connectors/source-gocardless/poetry.lock b/airbyte-integrations/connectors/source-gocardless/poetry.lock index 4b03cc351726..13836360394d 100644 --- a/airbyte-integrations/connectors/source-gocardless/poetry.lock +++ b/airbyte-integrations/connectors/source-gocardless/poetry.lock @@ -410,13 +410,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] @@ -566,13 +566,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.84" +version = "0.1.85" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.84-py3-none-any.whl", hash = "sha256:01f3c6390dba26c583bac8dd0e551ce3d0509c7f55cad714db0b5c8d36e4c7ff"}, - {file = "langsmith-0.1.84.tar.gz", hash = "sha256:5220c0439838b9a5bd320fd3686be505c5083dcee22d2452006c23891153bea1"}, + {file = "langsmith-0.1.85-py3-none-any.whl", hash = "sha256:c1f94384f10cea96f7b4d33fd3db7ec180c03c7468877d50846f881d2017ff94"}, + {file = "langsmith-0.1.85.tar.gz", hash = "sha256:acff31f9e53efa48586cf8e32f65625a335c74d7c4fa306d1655ac18452296f6"}, ] [package.dependencies] diff --git a/airbyte-integrations/connectors/source-gocardless/pyproject.toml b/airbyte-integrations/connectors/source-gocardless/pyproject.toml index 320d9ae9ed92..7235c5bc6698 100644 --- a/airbyte-integrations/connectors/source-gocardless/pyproject.toml +++ b/airbyte-integrations/connectors/source-gocardless/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.1.8" +version = "0.1.9" name = "source-gocardless" description = "Source implementation for Gocardless." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/gocardless.md b/docs/integrations/sources/gocardless.md index 07c20c412e9f..1859e215b7c3 100644 --- a/docs/integrations/sources/gocardless.md +++ b/docs/integrations/sources/gocardless.md @@ -35,6 +35,7 @@ This source is capable of syncing the following streams: | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :---------------------------------------- | +| 0.1.9 | 2024-07-13 | [41826](https://github.com/airbytehq/airbyte/pull/41826) | Update dependencies | | 0.1.8 | 2024-07-10 | [41559](https://github.com/airbytehq/airbyte/pull/41559) | Update dependencies | | 0.1.7 | 2024-07-09 | [41291](https://github.com/airbytehq/airbyte/pull/41291) | Update dependencies | | 0.1.6 | 2024-07-06 | [40846](https://github.com/airbytehq/airbyte/pull/40846) | Update dependencies | From 8bc5cab24943901d2295ac01743a83b0b1440bbe Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:22:58 +0200 Subject: [PATCH 111/260] =?UTF-8?q?=F0=9F=90=99=20source-smartsheets:=20ru?= =?UTF-8?q?n=20up-to-date=20pipeline=20[2024-07-13]=20(#41825)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-smartsheets/metadata.yaml | 2 +- .../connectors/source-smartsheets/poetry.lock | 6 +++--- .../connectors/source-smartsheets/pyproject.toml | 2 +- docs/integrations/sources/smartsheets.md | 1 + 4 files changed, 6 insertions(+), 5 deletions(-) diff --git a/airbyte-integrations/connectors/source-smartsheets/metadata.yaml b/airbyte-integrations/connectors/source-smartsheets/metadata.yaml index d37fca207668..dd86e42da256 100644 --- a/airbyte-integrations/connectors/source-smartsheets/metadata.yaml +++ b/airbyte-integrations/connectors/source-smartsheets/metadata.yaml @@ -9,7 +9,7 @@ data: connectorSubtype: api connectorType: source definitionId: 374ebc65-6636-4ea0-925c-7d35999a8ffc - dockerImageTag: 1.1.9 + dockerImageTag: 1.1.10 dockerRepository: airbyte/source-smartsheets documentationUrl: https://docs.airbyte.com/integrations/sources/smartsheets githubIssueLabel: source-smartsheets diff --git a/airbyte-integrations/connectors/source-smartsheets/poetry.lock b/airbyte-integrations/connectors/source-smartsheets/poetry.lock index 679992bf410e..7db77169ecb1 100644 --- a/airbyte-integrations/connectors/source-smartsheets/poetry.lock +++ b/airbyte-integrations/connectors/source-smartsheets/poetry.lock @@ -278,13 +278,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] diff --git a/airbyte-integrations/connectors/source-smartsheets/pyproject.toml b/airbyte-integrations/connectors/source-smartsheets/pyproject.toml index 2fbb1bc6a3cd..989e2daf9c94 100644 --- a/airbyte-integrations/connectors/source-smartsheets/pyproject.toml +++ b/airbyte-integrations/connectors/source-smartsheets/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "1.1.9" +version = "1.1.10" name = "source-smartsheets" description = "Source implementation for Smartsheets." authors = [ "Nate Nowack ",] diff --git a/docs/integrations/sources/smartsheets.md b/docs/integrations/sources/smartsheets.md index 1576358adb33..f7e1f80dd1ff 100644 --- a/docs/integrations/sources/smartsheets.md +++ b/docs/integrations/sources/smartsheets.md @@ -117,6 +117,7 @@ The remaining column datatypes supported by Smartsheets are more complex types ( | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :-------------------------------------------------------- | +| 1.1.10 | 2024-07-13 | [41825](https://github.com/airbytehq/airbyte/pull/41825) | Update dependencies | | 1.1.9 | 2024-07-10 | [41410](https://github.com/airbytehq/airbyte/pull/41410) | Update dependencies | | 1.1.8 | 2024-07-09 | [41092](https://github.com/airbytehq/airbyte/pull/41092) | Update dependencies | | 1.1.7 | 2024-07-06 | [40844](https://github.com/airbytehq/airbyte/pull/40844) | Update dependencies | From 4fbade562537d1136e246179503040c7c5b9ded7 Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:23:01 +0200 Subject: [PATCH 112/260] =?UTF-8?q?=F0=9F=90=99=20source-rki-covid:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-07-13]=20(#41824)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-rki-covid/metadata.yaml | 2 +- .../connectors/source-rki-covid/poetry.lock | 6 +++--- .../connectors/source-rki-covid/pyproject.toml | 2 +- docs/integrations/sources/rki-covid.md | 1 + 4 files changed, 6 insertions(+), 5 deletions(-) diff --git a/airbyte-integrations/connectors/source-rki-covid/metadata.yaml b/airbyte-integrations/connectors/source-rki-covid/metadata.yaml index b96763ec08e2..5db02b9892bb 100644 --- a/airbyte-integrations/connectors/source-rki-covid/metadata.yaml +++ b/airbyte-integrations/connectors/source-rki-covid/metadata.yaml @@ -2,7 +2,7 @@ data: connectorSubtype: api connectorType: source definitionId: d78e5de0-aa44-4744-aa4f-74c818ccfe19 - dockerImageTag: 0.1.9 + dockerImageTag: 0.1.10 dockerRepository: airbyte/source-rki-covid githubIssueLabel: source-rki-covid icon: rki.svg diff --git a/airbyte-integrations/connectors/source-rki-covid/poetry.lock b/airbyte-integrations/connectors/source-rki-covid/poetry.lock index 6f83e5bed3a6..c0f7f643d050 100644 --- a/airbyte-integrations/connectors/source-rki-covid/poetry.lock +++ b/airbyte-integrations/connectors/source-rki-covid/poetry.lock @@ -288,13 +288,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] diff --git a/airbyte-integrations/connectors/source-rki-covid/pyproject.toml b/airbyte-integrations/connectors/source-rki-covid/pyproject.toml index f09d12a1f5c8..c3acf070bc26 100644 --- a/airbyte-integrations/connectors/source-rki-covid/pyproject.toml +++ b/airbyte-integrations/connectors/source-rki-covid/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.1.9" +version = "0.1.10" name = "source-rki-covid" description = "Source implementation for Rki Covid." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/rki-covid.md b/docs/integrations/sources/rki-covid.md index e2d63600742c..cd690d8eddca 100644 --- a/docs/integrations/sources/rki-covid.md +++ b/docs/integrations/sources/rki-covid.md @@ -56,6 +56,7 @@ Select start date | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :--------------------------------- | +| 0.1.10 | 2024-07-13 | [41824](https://github.com/airbytehq/airbyte/pull/41824) | Update dependencies | | 0.1.9 | 2024-07-10 | [41472](https://github.com/airbytehq/airbyte/pull/41472) | Update dependencies | | 0.1.8 | 2024-07-09 | [41134](https://github.com/airbytehq/airbyte/pull/41134) | Update dependencies | | 0.1.7 | 2024-07-06 | [40927](https://github.com/airbytehq/airbyte/pull/40927) | Update dependencies | From d140ad2a210864457997b0946704c4c494ff88bc Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:23:05 +0200 Subject: [PATCH 113/260] =?UTF-8?q?=F0=9F=90=99=20source-posthog:=20run=20?= =?UTF-8?q?up-to-date=20pipeline=20[2024-07-13]=20(#41823)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-posthog/metadata.yaml | 4 ++-- .../connectors/source-posthog/poetry.lock | 8 ++++---- .../connectors/source-posthog/pyproject.toml | 2 +- docs/integrations/sources/posthog.md | 3 ++- 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/airbyte-integrations/connectors/source-posthog/metadata.yaml b/airbyte-integrations/connectors/source-posthog/metadata.yaml index cf0c3372d088..ca58c2718227 100644 --- a/airbyte-integrations/connectors/source-posthog/metadata.yaml +++ b/airbyte-integrations/connectors/source-posthog/metadata.yaml @@ -9,12 +9,12 @@ data: connectorSubtype: api connectorType: source definitionId: af6d50ee-dddf-4126-a8ee-7faee990774f - dockerImageTag: 1.1.0 + dockerImageTag: 1.1.1 dockerRepository: airbyte/source-posthog documentationUrl: https://docs.airbyte.com/integrations/sources/posthog githubIssueLabel: source-posthog connectorBuildOptions: - baseImage: docker.io/airbyte/python-connector-base:1.2.2@sha256:57703de3b4c4204bd68a7b13c9300f8e03c0189bffddaffc796f1da25d2dbea0 + baseImage: docker.io/airbyte/python-connector-base:2.0.0@sha256:c44839ba84406116e8ba68722a0f30e8f6e7056c726f447681bb9e9ece8bd916 icon: posthog.svg license: MIT name: PostHog diff --git a/airbyte-integrations/connectors/source-posthog/poetry.lock b/airbyte-integrations/connectors/source-posthog/poetry.lock index 342e1961f40b..875ae7e4a703 100644 --- a/airbyte-integrations/connectors/source-posthog/poetry.lock +++ b/airbyte-integrations/connectors/source-posthog/poetry.lock @@ -1,4 +1,4 @@ -# This file is automatically @generated by Poetry 1.8.3 and should not be changed by hand. +# This file is automatically @generated by Poetry 1.6.1 and should not be changed by hand. [[package]] name = "airbyte-cdk" @@ -289,13 +289,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] diff --git a/airbyte-integrations/connectors/source-posthog/pyproject.toml b/airbyte-integrations/connectors/source-posthog/pyproject.toml index 5ed7be636a8f..196f0d095594 100644 --- a/airbyte-integrations/connectors/source-posthog/pyproject.toml +++ b/airbyte-integrations/connectors/source-posthog/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "1.1.0" +version = "1.1.1" name = "source-posthog" description = "Source implementation for Posthog." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/posthog.md b/docs/integrations/sources/posthog.md index 309a388d4d29..e8b1c3065dc9 100644 --- a/docs/integrations/sources/posthog.md +++ b/docs/integrations/sources/posthog.md @@ -71,6 +71,7 @@ Want to use the PostHog API beyond these limits? Email Posthog at `customers@pos | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :----------------------------------------------------------------------------------------------------------------- | +| 1.1.1 | 2024-07-13 | [41823](https://github.com/airbytehq/airbyte/pull/41823) | Update dependencies | | 1.1.0 | 2024-06-20 | [39763](https://github.com/airbytehq/airbyte/pull/39763) | Add `properties` and `uuid` attributes to persons stream | | 1.0.0 | 2023-12-04 | [28593](https://github.com/airbytehq/airbyte/pull/28593) | Fix events.event type | @@ -91,4 +92,4 @@ attributes to persons stream | | 0.1.1 | 2021-07-05 | [4539](https://github.com/airbytehq/airbyte/pull/4539) | Add `AIRBYTE_ENTRYPOINT` env variable for kubernetes support | | 0.1.0 | 2021-06-08 | [3768](https://github.com/airbytehq/airbyte/pull/3768) | Initial Release | - \ No newline at end of file + From d9f4d87c8d4cf5b0be0f9e0346c2736319e9f2c5 Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:23:09 +0200 Subject: [PATCH 114/260] =?UTF-8?q?=F0=9F=90=99=20source-intruder:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-07-13]=20(#41822)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-intruder/metadata.yaml | 2 +- .../connectors/source-intruder/poetry.lock | 12 ++++++------ .../connectors/source-intruder/pyproject.toml | 2 +- docs/integrations/sources/intruder.md | 1 + 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/airbyte-integrations/connectors/source-intruder/metadata.yaml b/airbyte-integrations/connectors/source-intruder/metadata.yaml index 582839adc136..bb2a96cb5895 100644 --- a/airbyte-integrations/connectors/source-intruder/metadata.yaml +++ b/airbyte-integrations/connectors/source-intruder/metadata.yaml @@ -2,7 +2,7 @@ data: connectorSubtype: api connectorType: source definitionId: 3d15163b-11d8-412f-b808-795c9b2c3a3a - dockerImageTag: 0.1.8 + dockerImageTag: 0.1.9 dockerRepository: airbyte/source-intruder githubIssueLabel: source-intruder icon: intruder.svg diff --git a/airbyte-integrations/connectors/source-intruder/poetry.lock b/airbyte-integrations/connectors/source-intruder/poetry.lock index 4b03cc351726..13836360394d 100644 --- a/airbyte-integrations/connectors/source-intruder/poetry.lock +++ b/airbyte-integrations/connectors/source-intruder/poetry.lock @@ -410,13 +410,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] @@ -566,13 +566,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.84" +version = "0.1.85" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.84-py3-none-any.whl", hash = "sha256:01f3c6390dba26c583bac8dd0e551ce3d0509c7f55cad714db0b5c8d36e4c7ff"}, - {file = "langsmith-0.1.84.tar.gz", hash = "sha256:5220c0439838b9a5bd320fd3686be505c5083dcee22d2452006c23891153bea1"}, + {file = "langsmith-0.1.85-py3-none-any.whl", hash = "sha256:c1f94384f10cea96f7b4d33fd3db7ec180c03c7468877d50846f881d2017ff94"}, + {file = "langsmith-0.1.85.tar.gz", hash = "sha256:acff31f9e53efa48586cf8e32f65625a335c74d7c4fa306d1655ac18452296f6"}, ] [package.dependencies] diff --git a/airbyte-integrations/connectors/source-intruder/pyproject.toml b/airbyte-integrations/connectors/source-intruder/pyproject.toml index bf845c2f1832..fd1e5e02753f 100644 --- a/airbyte-integrations/connectors/source-intruder/pyproject.toml +++ b/airbyte-integrations/connectors/source-intruder/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.1.8" +version = "0.1.9" name = "source-intruder" description = "Source implementation for Intruder." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/intruder.md b/docs/integrations/sources/intruder.md index 3577440df91b..fcac7c9d3b52 100644 --- a/docs/integrations/sources/intruder.md +++ b/docs/integrations/sources/intruder.md @@ -35,6 +35,7 @@ Intruder.io APIs are under rate limits for the number of API calls allowed per A | Version | Date | Pull Request | Subject | | :------ | :--------- | :-------------------------------------------------------- | :-------------------------------------------- | +| 0.1.9 | 2024-07-13 | [41822](https://github.com/airbytehq/airbyte/pull/41822) | Update dependencies | | 0.1.8 | 2024-07-10 | [41363](https://github.com/airbytehq/airbyte/pull/41363) | Update dependencies | | 0.1.7 | 2024-07-09 | [41248](https://github.com/airbytehq/airbyte/pull/41248) | Update dependencies | | 0.1.6 | 2024-07-06 | [40895](https://github.com/airbytehq/airbyte/pull/40895) | Update dependencies | From b2d8aa33a4d09c3ef4edffe2f8737a5ea73ab26a Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:23:13 +0200 Subject: [PATCH 115/260] =?UTF-8?q?=F0=9F=90=99=20source-freshcaller:=20ru?= =?UTF-8?q?n=20up-to-date=20pipeline=20[2024-07-13]=20(#41821)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-freshcaller/metadata.yaml | 2 +- .../connectors/source-freshcaller/poetry.lock | 6 +++--- .../connectors/source-freshcaller/pyproject.toml | 2 +- docs/integrations/sources/freshcaller.md | 1 + 4 files changed, 6 insertions(+), 5 deletions(-) diff --git a/airbyte-integrations/connectors/source-freshcaller/metadata.yaml b/airbyte-integrations/connectors/source-freshcaller/metadata.yaml index 4f2b12996774..34fe2f0aa311 100644 --- a/airbyte-integrations/connectors/source-freshcaller/metadata.yaml +++ b/airbyte-integrations/connectors/source-freshcaller/metadata.yaml @@ -15,7 +15,7 @@ data: type: GSM connectorType: source definitionId: 8a5d48f6-03bb-4038-a942-a8d3f175cca3 - dockerImageTag: 0.4.2 + dockerImageTag: 0.4.3 dockerRepository: airbyte/source-freshcaller documentationUrl: https://docs.airbyte.com/integrations/sources/freshcaller githubIssueLabel: source-freshcaller diff --git a/airbyte-integrations/connectors/source-freshcaller/poetry.lock b/airbyte-integrations/connectors/source-freshcaller/poetry.lock index 5b813deff41b..ef4bbb062ae4 100644 --- a/airbyte-integrations/connectors/source-freshcaller/poetry.lock +++ b/airbyte-integrations/connectors/source-freshcaller/poetry.lock @@ -279,13 +279,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] diff --git a/airbyte-integrations/connectors/source-freshcaller/pyproject.toml b/airbyte-integrations/connectors/source-freshcaller/pyproject.toml index c9ad5460b9fa..01427efeaee4 100644 --- a/airbyte-integrations/connectors/source-freshcaller/pyproject.toml +++ b/airbyte-integrations/connectors/source-freshcaller/pyproject.toml @@ -3,7 +3,7 @@ requires = ["poetry-core>=1.0.0"] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.4.2" +version = "0.4.3" name = "source-freshcaller" description = "Source implementation for Freshcaller" authors = ["Airbyte "] diff --git a/docs/integrations/sources/freshcaller.md b/docs/integrations/sources/freshcaller.md index d4f815e43344..e9749d1b423e 100644 --- a/docs/integrations/sources/freshcaller.md +++ b/docs/integrations/sources/freshcaller.md @@ -46,6 +46,7 @@ Please read [How to find your API key](https://support.freshdesk.com/en/support/ | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :------------------------------------------------ | +| 0.4.3 | 2024-07-13 | [41821](https://github.com/airbytehq/airbyte/pull/41821) | Update dependencies | | 0.4.2 | 2024-07-10 | [41552](https://github.com/airbytehq/airbyte/pull/41552) | Update dependencies | | 0.4.1 | 2024-07-09 | [41195](https://github.com/airbytehq/airbyte/pull/41195) | Update dependencies | | 0.4.0 | 2024-03-07 | [35892](https://github.com/airbytehq/airbyte/pull/35892) | ✨ Source: add `life_cycle` to `call_metrics` stream | From ec7d5242455450625ed79b4b66bfb209a1278278 Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:23:16 +0200 Subject: [PATCH 116/260] =?UTF-8?q?=F0=9F=90=99=20source-postmarkapp:=20ru?= =?UTF-8?q?n=20up-to-date=20pipeline=20[2024-07-13]=20(#41820)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-postmarkapp/metadata.yaml | 2 +- .../connectors/source-postmarkapp/poetry.lock | 6 +++--- .../connectors/source-postmarkapp/pyproject.toml | 2 +- docs/integrations/sources/postmarkapp.md | 1 + 4 files changed, 6 insertions(+), 5 deletions(-) diff --git a/airbyte-integrations/connectors/source-postmarkapp/metadata.yaml b/airbyte-integrations/connectors/source-postmarkapp/metadata.yaml index 1cb6304e9a41..00709400baa1 100644 --- a/airbyte-integrations/connectors/source-postmarkapp/metadata.yaml +++ b/airbyte-integrations/connectors/source-postmarkapp/metadata.yaml @@ -7,7 +7,7 @@ data: connectorSubtype: api connectorType: source definitionId: cde75ca1-1e28-4a0f-85bb-90c546de9f1f - dockerImageTag: 0.1.9 + dockerImageTag: 0.1.10 dockerRepository: airbyte/source-postmarkapp documentationUrl: https://docs.airbyte.com/integrations/sources/postmarkapp githubIssueLabel: source-postmarkapp diff --git a/airbyte-integrations/connectors/source-postmarkapp/poetry.lock b/airbyte-integrations/connectors/source-postmarkapp/poetry.lock index 6f83e5bed3a6..c0f7f643d050 100644 --- a/airbyte-integrations/connectors/source-postmarkapp/poetry.lock +++ b/airbyte-integrations/connectors/source-postmarkapp/poetry.lock @@ -288,13 +288,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] diff --git a/airbyte-integrations/connectors/source-postmarkapp/pyproject.toml b/airbyte-integrations/connectors/source-postmarkapp/pyproject.toml index 0dc860c95da9..226ff3f4b10a 100644 --- a/airbyte-integrations/connectors/source-postmarkapp/pyproject.toml +++ b/airbyte-integrations/connectors/source-postmarkapp/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.1.9" +version = "0.1.10" name = "source-postmarkapp" description = "Source implementation for Postmarkapp." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/postmarkapp.md b/docs/integrations/sources/postmarkapp.md index 0245bea7252d..c9dddd1cfde9 100644 --- a/docs/integrations/sources/postmarkapp.md +++ b/docs/integrations/sources/postmarkapp.md @@ -58,6 +58,7 @@ The Postmarkapp source connector supports the following [sync modes](https://doc | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :------------------------------------------------------------------------------ | +| 0.1.10 | 2024-07-13 | [41820](https://github.com/airbytehq/airbyte/pull/41820) | Update dependencies | | 0.1.9 | 2024-07-10 | [41564](https://github.com/airbytehq/airbyte/pull/41564) | Update dependencies | | 0.1.8 | 2024-07-09 | [41184](https://github.com/airbytehq/airbyte/pull/41184) | Update dependencies | | 0.1.7 | 2024-07-06 | [40762](https://github.com/airbytehq/airbyte/pull/40762) | Update dependencies | From 2294b3b25176a753ba1f30fab52285890da96afa Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:23:19 +0200 Subject: [PATCH 117/260] =?UTF-8?q?=F0=9F=90=99=20destination-aws-datalake?= =?UTF-8?q?:=20run=20up-to-date=20pipeline=20[2024-07-13]=20(#41819)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../destination-aws-datalake/metadata.yaml | 2 +- .../destination-aws-datalake/poetry.lock | 26 +++++++++---------- .../destination-aws-datalake/pyproject.toml | 2 +- .../integrations/destinations/aws-datalake.md | 1 + 4 files changed, 16 insertions(+), 15 deletions(-) diff --git a/airbyte-integrations/connectors/destination-aws-datalake/metadata.yaml b/airbyte-integrations/connectors/destination-aws-datalake/metadata.yaml index bde48a9ec683..8836704cc24f 100644 --- a/airbyte-integrations/connectors/destination-aws-datalake/metadata.yaml +++ b/airbyte-integrations/connectors/destination-aws-datalake/metadata.yaml @@ -4,7 +4,7 @@ data: definitionId: 99878c90-0fbd-46d3-9d98-ffde879d17fc connectorBuildOptions: baseImage: docker.io/airbyte/python-connector-base:2.0.0@sha256:c44839ba84406116e8ba68722a0f30e8f6e7056c726f447681bb9e9ece8bd916 - dockerImageTag: 0.1.17 + dockerImageTag: 0.1.18 dockerRepository: airbyte/destination-aws-datalake githubIssueLabel: destination-aws-datalake icon: awsdatalake.svg diff --git a/airbyte-integrations/connectors/destination-aws-datalake/poetry.lock b/airbyte-integrations/connectors/destination-aws-datalake/poetry.lock index 9464a11e9460..c7e2c5fc6b48 100644 --- a/airbyte-integrations/connectors/destination-aws-datalake/poetry.lock +++ b/airbyte-integrations/connectors/destination-aws-datalake/poetry.lock @@ -132,17 +132,17 @@ files = [ [[package]] name = "boto3" -version = "1.34.142" +version = "1.34.144" description = "The AWS SDK for Python" optional = false python-versions = ">=3.8" files = [ - {file = "boto3-1.34.142-py3-none-any.whl", hash = "sha256:cae11cb54f79795e44248a9e53ec5c7328519019df1ba54bc01413f51c548626"}, - {file = "boto3-1.34.142.tar.gz", hash = "sha256:72daee953cfa0631c584c9e3aef594079e1fe6a2f64c81ff791dab9a7b25c013"}, + {file = "boto3-1.34.144-py3-none-any.whl", hash = "sha256:b8433d481d50b68a0162c0379c0dd4aabfc3d1ad901800beb5b87815997511c1"}, + {file = "boto3-1.34.144.tar.gz", hash = "sha256:2f3e88b10b8fcc5f6100a9d74cd28230edc9d4fa226d99dd40a3ab38ac213673"}, ] [package.dependencies] -botocore = ">=1.34.142,<1.35.0" +botocore = ">=1.34.144,<1.35.0" jmespath = ">=0.7.1,<2.0.0" s3transfer = ">=0.10.0,<0.11.0" @@ -151,13 +151,13 @@ crt = ["botocore[crt] (>=1.21.0,<2.0a0)"] [[package]] name = "botocore" -version = "1.34.142" +version = "1.34.144" description = "Low-level, data-driven core of boto 3." optional = false python-versions = ">=3.8" files = [ - {file = "botocore-1.34.142-py3-none-any.whl", hash = "sha256:9d8095bab0b93b9064e856730a7ffbbb4f897353d3170bec9ddccc5f4a3753bc"}, - {file = "botocore-1.34.142.tar.gz", hash = "sha256:2eeb8e6be729c1f8ded723970ed6c6ac29cc3014d86a99e73428fa8bdca81f63"}, + {file = "botocore-1.34.144-py3-none-any.whl", hash = "sha256:a2cf26e1bf10d5917a2285e50257bc44e94a1d16574f282f3274f7a5d8d1f08b"}, + {file = "botocore-1.34.144.tar.gz", hash = "sha256:4215db28d25309d59c99507f1f77df9089e5bebbad35f6e19c7c44ec5383a3e8"}, ] [package.dependencies] @@ -487,13 +487,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] @@ -654,13 +654,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.84" +version = "0.1.85" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.84-py3-none-any.whl", hash = "sha256:01f3c6390dba26c583bac8dd0e551ce3d0509c7f55cad714db0b5c8d36e4c7ff"}, - {file = "langsmith-0.1.84.tar.gz", hash = "sha256:5220c0439838b9a5bd320fd3686be505c5083dcee22d2452006c23891153bea1"}, + {file = "langsmith-0.1.85-py3-none-any.whl", hash = "sha256:c1f94384f10cea96f7b4d33fd3db7ec180c03c7468877d50846f881d2017ff94"}, + {file = "langsmith-0.1.85.tar.gz", hash = "sha256:acff31f9e53efa48586cf8e32f65625a335c74d7c4fa306d1655ac18452296f6"}, ] [package.dependencies] diff --git a/airbyte-integrations/connectors/destination-aws-datalake/pyproject.toml b/airbyte-integrations/connectors/destination-aws-datalake/pyproject.toml index a90b8e75b28b..b067c0538294 100644 --- a/airbyte-integrations/connectors/destination-aws-datalake/pyproject.toml +++ b/airbyte-integrations/connectors/destination-aws-datalake/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.1.17" +version = "0.1.18" name = "destination-aws-datalake" description = "Destination Implementation for AWS Datalake." authors = [ "Airbyte ",] diff --git a/docs/integrations/destinations/aws-datalake.md b/docs/integrations/destinations/aws-datalake.md index 672adbfa1f8e..bbb38f329a71 100644 --- a/docs/integrations/destinations/aws-datalake.md +++ b/docs/integrations/destinations/aws-datalake.md @@ -94,6 +94,7 @@ which will be translated for compatibility with the Glue Data Catalog: | Version | Date | Pull Request | Subject | | :------ | :--------- | :--------------------------------------------------------- | :--------------------------------------------------- | +| 0.1.18 | 2024-07-13 | [41819](https://github.com/airbytehq/airbyte/pull/41819) | Update dependencies | | 0.1.17 | 2024-07-10 | [41590](https://github.com/airbytehq/airbyte/pull/41590) | Update dependencies | | 0.1.16 | 2024-07-09 | [41083](https://github.com/airbytehq/airbyte/pull/41083) | Update dependencies | | 0.1.15 | 2024-07-06 | [40907](https://github.com/airbytehq/airbyte/pull/40907) | Update dependencies | From edf780b69a5f8c7655fa6247634744b89eadc210 Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:23:23 +0200 Subject: [PATCH 118/260] =?UTF-8?q?=F0=9F=90=99=20source-ashby:=20run=20up?= =?UTF-8?q?-to-date=20pipeline=20[2024-07-13]=20(#41818)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-ashby/metadata.yaml | 2 +- .../connectors/source-ashby/poetry.lock | 12 ++++++------ .../connectors/source-ashby/pyproject.toml | 2 +- docs/integrations/sources/ashby.md | 1 + 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/airbyte-integrations/connectors/source-ashby/metadata.yaml b/airbyte-integrations/connectors/source-ashby/metadata.yaml index ee821b641398..8f0f0d38d440 100644 --- a/airbyte-integrations/connectors/source-ashby/metadata.yaml +++ b/airbyte-integrations/connectors/source-ashby/metadata.yaml @@ -2,7 +2,7 @@ data: connectorSubtype: api connectorType: source definitionId: 4e8c9fa0-3634-499b-b948-11581b5c3efa - dockerImageTag: 0.1.8 + dockerImageTag: 0.1.9 dockerRepository: airbyte/source-ashby githubIssueLabel: source-ashby icon: ashby.svg diff --git a/airbyte-integrations/connectors/source-ashby/poetry.lock b/airbyte-integrations/connectors/source-ashby/poetry.lock index 4b03cc351726..13836360394d 100644 --- a/airbyte-integrations/connectors/source-ashby/poetry.lock +++ b/airbyte-integrations/connectors/source-ashby/poetry.lock @@ -410,13 +410,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] @@ -566,13 +566,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.84" +version = "0.1.85" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.84-py3-none-any.whl", hash = "sha256:01f3c6390dba26c583bac8dd0e551ce3d0509c7f55cad714db0b5c8d36e4c7ff"}, - {file = "langsmith-0.1.84.tar.gz", hash = "sha256:5220c0439838b9a5bd320fd3686be505c5083dcee22d2452006c23891153bea1"}, + {file = "langsmith-0.1.85-py3-none-any.whl", hash = "sha256:c1f94384f10cea96f7b4d33fd3db7ec180c03c7468877d50846f881d2017ff94"}, + {file = "langsmith-0.1.85.tar.gz", hash = "sha256:acff31f9e53efa48586cf8e32f65625a335c74d7c4fa306d1655ac18452296f6"}, ] [package.dependencies] diff --git a/airbyte-integrations/connectors/source-ashby/pyproject.toml b/airbyte-integrations/connectors/source-ashby/pyproject.toml index 44ed977d7823..5ae6287a4b89 100644 --- a/airbyte-integrations/connectors/source-ashby/pyproject.toml +++ b/airbyte-integrations/connectors/source-ashby/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.1.8" +version = "0.1.9" name = "source-ashby" description = "Source implementation for Ashby." authors = [ "Elliot Trabac ",] diff --git a/docs/integrations/sources/ashby.md b/docs/integrations/sources/ashby.md index d6ea47c88176..5e618410f79c 100644 --- a/docs/integrations/sources/ashby.md +++ b/docs/integrations/sources/ashby.md @@ -48,6 +48,7 @@ The Ashby connector should not run into Ashby API limitations under normal usage | Version | Date | Pull Request | Subject | |:--------| :--------- | :------------------------------------------------------- |:--------------------------------------------| +| 0.1.9 | 2024-07-13 | [41818](https://github.com/airbytehq/airbyte/pull/41818) | Update dependencies | | 0.1.8 | 2024-07-10 | [41379](https://github.com/airbytehq/airbyte/pull/41379) | Update dependencies | | 0.1.7 | 2024-07-09 | [41271](https://github.com/airbytehq/airbyte/pull/41271) | Update dependencies | | 0.1.6 | 2024-07-06 | [40971](https://github.com/airbytehq/airbyte/pull/40971) | Update dependencies | From f8140206f49d81b0f86a9750c3b5ee3825091441 Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:23:26 +0200 Subject: [PATCH 119/260] =?UTF-8?q?=F0=9F=90=99=20source-vantage:=20run=20?= =?UTF-8?q?up-to-date=20pipeline=20[2024-07-13]=20(#41817)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-vantage/metadata.yaml | 2 +- .../connectors/source-vantage/poetry.lock | 12 ++++++------ .../connectors/source-vantage/pyproject.toml | 2 +- docs/integrations/sources/vantage.md | 1 + 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/airbyte-integrations/connectors/source-vantage/metadata.yaml b/airbyte-integrations/connectors/source-vantage/metadata.yaml index da890a434a01..316c5e8ef618 100644 --- a/airbyte-integrations/connectors/source-vantage/metadata.yaml +++ b/airbyte-integrations/connectors/source-vantage/metadata.yaml @@ -2,7 +2,7 @@ data: connectorSubtype: api connectorType: source definitionId: 28ce1fbd-1e15-453f-aa9f-da6c4d928e92 - dockerImageTag: 0.1.8 + dockerImageTag: 0.1.9 dockerRepository: airbyte/source-vantage githubIssueLabel: source-vantage icon: vantage.svg diff --git a/airbyte-integrations/connectors/source-vantage/poetry.lock b/airbyte-integrations/connectors/source-vantage/poetry.lock index 727736bd75b2..d5c0459c0bd6 100644 --- a/airbyte-integrations/connectors/source-vantage/poetry.lock +++ b/airbyte-integrations/connectors/source-vantage/poetry.lock @@ -410,13 +410,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] @@ -566,13 +566,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.84" +version = "0.1.85" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.84-py3-none-any.whl", hash = "sha256:01f3c6390dba26c583bac8dd0e551ce3d0509c7f55cad714db0b5c8d36e4c7ff"}, - {file = "langsmith-0.1.84.tar.gz", hash = "sha256:5220c0439838b9a5bd320fd3686be505c5083dcee22d2452006c23891153bea1"}, + {file = "langsmith-0.1.85-py3-none-any.whl", hash = "sha256:c1f94384f10cea96f7b4d33fd3db7ec180c03c7468877d50846f881d2017ff94"}, + {file = "langsmith-0.1.85.tar.gz", hash = "sha256:acff31f9e53efa48586cf8e32f65625a335c74d7c4fa306d1655ac18452296f6"}, ] [package.dependencies] diff --git a/airbyte-integrations/connectors/source-vantage/pyproject.toml b/airbyte-integrations/connectors/source-vantage/pyproject.toml index 7e853a49abf9..25a47e1e5d64 100644 --- a/airbyte-integrations/connectors/source-vantage/pyproject.toml +++ b/airbyte-integrations/connectors/source-vantage/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.1.8" +version = "0.1.9" name = "source-vantage" description = "Source implementation for Vantage." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/vantage.md b/docs/integrations/sources/vantage.md index 4b97b2e7c8f5..ddb5bd578b9b 100644 --- a/docs/integrations/sources/vantage.md +++ b/docs/integrations/sources/vantage.md @@ -35,6 +35,7 @@ Vantage APIs are under rate limits for the number of API calls allowed per API k | Version | Date | Pull Request | Subject | | :------ | :--------- | :-------------------------------------------------------- | :---------------------------------------- | +| 0.1.9 | 2024-07-13 | [41817](https://github.com/airbytehq/airbyte/pull/41817) | Update dependencies | | 0.1.8 | 2024-07-10 | [41588](https://github.com/airbytehq/airbyte/pull/41588) | Update dependencies | | 0.1.7 | 2024-07-09 | [41224](https://github.com/airbytehq/airbyte/pull/41224) | Update dependencies | | 0.1.6 | 2024-07-06 | [40901](https://github.com/airbytehq/airbyte/pull/40901) | Update dependencies | From f4957fcb7456bfc45abc4d845f7f2c6e9493a24a Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:23:30 +0200 Subject: [PATCH 120/260] =?UTF-8?q?=F0=9F=90=99=20source-metabase:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-07-13]=20(#41816)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-metabase/metadata.yaml | 2 +- .../connectors/source-metabase/poetry.lock | 12 ++++++------ .../connectors/source-metabase/pyproject.toml | 2 +- docs/integrations/sources/metabase.md | 1 + 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/airbyte-integrations/connectors/source-metabase/metadata.yaml b/airbyte-integrations/connectors/source-metabase/metadata.yaml index 0516c88a9a66..a3ec5c05fd74 100644 --- a/airbyte-integrations/connectors/source-metabase/metadata.yaml +++ b/airbyte-integrations/connectors/source-metabase/metadata.yaml @@ -10,7 +10,7 @@ data: connectorSubtype: api connectorType: source definitionId: c7cb421b-942e-4468-99ee-e369bcabaec5 - dockerImageTag: 2.0.6 + dockerImageTag: 2.0.7 dockerRepository: airbyte/source-metabase documentationUrl: https://docs.airbyte.com/integrations/sources/metabase githubIssueLabel: source-metabase diff --git a/airbyte-integrations/connectors/source-metabase/poetry.lock b/airbyte-integrations/connectors/source-metabase/poetry.lock index 832bd235e462..a0163285c0d3 100644 --- a/airbyte-integrations/connectors/source-metabase/poetry.lock +++ b/airbyte-integrations/connectors/source-metabase/poetry.lock @@ -289,13 +289,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] @@ -900,13 +900,13 @@ files = [ [[package]] name = "types-requests" -version = "2.32.0.20240622" +version = "2.32.0.20240712" description = "Typing stubs for requests" optional = false python-versions = ">=3.8" files = [ - {file = "types-requests-2.32.0.20240622.tar.gz", hash = "sha256:ed5e8a412fcc39159d6319385c009d642845f250c63902718f605cd90faade31"}, - {file = "types_requests-2.32.0.20240622-py3-none-any.whl", hash = "sha256:97bac6b54b5bd4cf91d407e62f0932a74821bc2211f22116d9ee1dd643826caf"}, + {file = "types-requests-2.32.0.20240712.tar.gz", hash = "sha256:90c079ff05e549f6bf50e02e910210b98b8ff1ebdd18e19c873cd237737c1358"}, + {file = "types_requests-2.32.0.20240712-py3-none-any.whl", hash = "sha256:f754283e152c752e46e70942fa2a146b5bc70393522257bb85bd1ef7e019dcc3"}, ] [package.dependencies] diff --git a/airbyte-integrations/connectors/source-metabase/pyproject.toml b/airbyte-integrations/connectors/source-metabase/pyproject.toml index 0c5dc3afc2c6..bcc1a4085e46 100644 --- a/airbyte-integrations/connectors/source-metabase/pyproject.toml +++ b/airbyte-integrations/connectors/source-metabase/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "2.0.6" +version = "2.0.7" name = "source-metabase" description = "Source implementation for Metabase." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/metabase.md b/docs/integrations/sources/metabase.md index 77a69a03d95f..55c5cf7f3566 100644 --- a/docs/integrations/sources/metabase.md +++ b/docs/integrations/sources/metabase.md @@ -77,6 +77,7 @@ The Metabase source connector supports the following [sync modes](https://docs.a | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :------------------------------------------------------------------------------------------------------------------------------- | +| 2.0.7 | 2024-07-13 | [41816](https://github.com/airbytehq/airbyte/pull/41816) | Update dependencies | | 2.0.6 | 2024-07-10 | [41471](https://github.com/airbytehq/airbyte/pull/41471) | Update dependencies | | 2.0.5 | 2024-07-09 | [41171](https://github.com/airbytehq/airbyte/pull/41171) | Update dependencies | | 2.0.4 | 2024-07-06 | [40940](https://github.com/airbytehq/airbyte/pull/40940) | Update dependencies | From 6653b39995b2533e1c5f0a55957705d7b3c28597 Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:23:33 +0200 Subject: [PATCH 121/260] =?UTF-8?q?=F0=9F=90=99=20source-yotpo:=20run=20up?= =?UTF-8?q?-to-date=20pipeline=20[2024-07-13]=20(#41815)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-yotpo/metadata.yaml | 2 +- .../connectors/source-yotpo/poetry.lock | 12 ++++++------ .../connectors/source-yotpo/pyproject.toml | 2 +- docs/integrations/sources/yotpo.md | 1 + 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/airbyte-integrations/connectors/source-yotpo/metadata.yaml b/airbyte-integrations/connectors/source-yotpo/metadata.yaml index a95544c9ec3a..6487ebc4dac4 100644 --- a/airbyte-integrations/connectors/source-yotpo/metadata.yaml +++ b/airbyte-integrations/connectors/source-yotpo/metadata.yaml @@ -2,7 +2,7 @@ data: connectorSubtype: api connectorType: source definitionId: 18139f00-b1ba-4971-8f80-8387b617cfd8 - dockerImageTag: 0.1.6 + dockerImageTag: 0.1.7 dockerRepository: airbyte/source-yotpo githubIssueLabel: source-yotpo icon: yotpo.svg diff --git a/airbyte-integrations/connectors/source-yotpo/poetry.lock b/airbyte-integrations/connectors/source-yotpo/poetry.lock index 1ac306a5c0f1..31731153c82e 100644 --- a/airbyte-integrations/connectors/source-yotpo/poetry.lock +++ b/airbyte-integrations/connectors/source-yotpo/poetry.lock @@ -410,13 +410,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] @@ -566,13 +566,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.84" +version = "0.1.85" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.84-py3-none-any.whl", hash = "sha256:01f3c6390dba26c583bac8dd0e551ce3d0509c7f55cad714db0b5c8d36e4c7ff"}, - {file = "langsmith-0.1.84.tar.gz", hash = "sha256:5220c0439838b9a5bd320fd3686be505c5083dcee22d2452006c23891153bea1"}, + {file = "langsmith-0.1.85-py3-none-any.whl", hash = "sha256:c1f94384f10cea96f7b4d33fd3db7ec180c03c7468877d50846f881d2017ff94"}, + {file = "langsmith-0.1.85.tar.gz", hash = "sha256:acff31f9e53efa48586cf8e32f65625a335c74d7c4fa306d1655ac18452296f6"}, ] [package.dependencies] diff --git a/airbyte-integrations/connectors/source-yotpo/pyproject.toml b/airbyte-integrations/connectors/source-yotpo/pyproject.toml index 0457f70fe900..9166e25c995e 100644 --- a/airbyte-integrations/connectors/source-yotpo/pyproject.toml +++ b/airbyte-integrations/connectors/source-yotpo/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.1.6" +version = "0.1.7" name = "source-yotpo" description = "Source implementation for Yotpo." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/yotpo.md b/docs/integrations/sources/yotpo.md index 116d0990827d..7a53741bde95 100644 --- a/docs/integrations/sources/yotpo.md +++ b/docs/integrations/sources/yotpo.md @@ -71,6 +71,7 @@ Yotpo [API reference](https://api.yotpo.com/v1/) has v1 at present. The connecto | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------ | :------------- | +| 0.1.7 | 2024-07-13 | [41815](https://github.com/airbytehq/airbyte/pull/41815) | Update dependencies | | 0.1.6 | 2024-07-10 | [41444](https://github.com/airbytehq/airbyte/pull/41444) | Update dependencies | | 0.1.5 | 2024-07-09 | [41250](https://github.com/airbytehq/airbyte/pull/41250) | Update dependencies | | 0.1.4 | 2024-07-06 | [40795](https://github.com/airbytehq/airbyte/pull/40795) | Update dependencies | From 069eb727ef26e974f388dad261044683401b83b3 Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:23:36 +0200 Subject: [PATCH 122/260] =?UTF-8?q?=F0=9F=90=99=20source-openweather:=20ru?= =?UTF-8?q?n=20up-to-date=20pipeline=20[2024-07-13]=20(#41814)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-openweather/metadata.yaml | 2 +- .../connectors/source-openweather/poetry.lock | 6 +++--- .../connectors/source-openweather/pyproject.toml | 2 +- docs/integrations/sources/openweather.md | 1 + 4 files changed, 6 insertions(+), 5 deletions(-) diff --git a/airbyte-integrations/connectors/source-openweather/metadata.yaml b/airbyte-integrations/connectors/source-openweather/metadata.yaml index 8865ec3f42b8..e6d3faed9413 100644 --- a/airbyte-integrations/connectors/source-openweather/metadata.yaml +++ b/airbyte-integrations/connectors/source-openweather/metadata.yaml @@ -7,7 +7,7 @@ data: connectorSubtype: api connectorType: source definitionId: 561d7787-b45e-4f3b-af58-0163c3ba9d5a - dockerImageTag: 0.2.10 + dockerImageTag: 0.2.11 dockerRepository: airbyte/source-openweather documentationUrl: https://docs.airbyte.com/integrations/sources/openweather githubIssueLabel: source-openweather diff --git a/airbyte-integrations/connectors/source-openweather/poetry.lock b/airbyte-integrations/connectors/source-openweather/poetry.lock index cce71c3b0e79..a1ccc2d0271d 100644 --- a/airbyte-integrations/connectors/source-openweather/poetry.lock +++ b/airbyte-integrations/connectors/source-openweather/poetry.lock @@ -288,13 +288,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] diff --git a/airbyte-integrations/connectors/source-openweather/pyproject.toml b/airbyte-integrations/connectors/source-openweather/pyproject.toml index 0e2d544096e4..9ca8b33c22f9 100644 --- a/airbyte-integrations/connectors/source-openweather/pyproject.toml +++ b/airbyte-integrations/connectors/source-openweather/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.2.10" +version = "0.2.11" name = "source-openweather" description = "Source implementation for Openweather." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/openweather.md b/docs/integrations/sources/openweather.md index b10195dfc4f0..c0dcc280444d 100644 --- a/docs/integrations/sources/openweather.md +++ b/docs/integrations/sources/openweather.md @@ -38,6 +38,7 @@ The free plan allows 60 calls per minute and 1,000,000 calls per month, you won' | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :------------------------------------------------------------------------------ | +| 0.2.11 | 2024-07-13 | [41814](https://github.com/airbytehq/airbyte/pull/41814) | Update dependencies | | 0.2.10 | 2024-07-10 | [41592](https://github.com/airbytehq/airbyte/pull/41592) | Update dependencies | | 0.2.9 | 2024-07-09 | [41199](https://github.com/airbytehq/airbyte/pull/41199) | Update dependencies | | 0.2.8 | 2024-07-06 | [40784](https://github.com/airbytehq/airbyte/pull/40784) | Update dependencies | From 60574326018528a7766a40b328145187995cdaf2 Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:23:39 +0200 Subject: [PATCH 123/260] =?UTF-8?q?=F0=9F=90=99=20source-zoom:=20run=20up-?= =?UTF-8?q?to-date=20pipeline=20[2024-07-13]=20(#41813)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-zoom/metadata.yaml | 2 +- airbyte-integrations/connectors/source-zoom/poetry.lock | 6 +++--- airbyte-integrations/connectors/source-zoom/pyproject.toml | 2 +- docs/integrations/sources/zoom.md | 1 + 4 files changed, 6 insertions(+), 5 deletions(-) diff --git a/airbyte-integrations/connectors/source-zoom/metadata.yaml b/airbyte-integrations/connectors/source-zoom/metadata.yaml index d0cb00432fcb..e00ac5634876 100644 --- a/airbyte-integrations/connectors/source-zoom/metadata.yaml +++ b/airbyte-integrations/connectors/source-zoom/metadata.yaml @@ -7,7 +7,7 @@ data: connectorSubtype: api connectorType: source definitionId: cbfd9856-1322-44fb-bcf1-0b39b7a8e92e - dockerImageTag: 1.1.6 + dockerImageTag: 1.1.7 dockerRepository: airbyte/source-zoom documentationUrl: https://docs.airbyte.com/integrations/sources/zoom githubIssueLabel: source-zoom diff --git a/airbyte-integrations/connectors/source-zoom/poetry.lock b/airbyte-integrations/connectors/source-zoom/poetry.lock index cb7cb861ad99..bdc3557028a5 100644 --- a/airbyte-integrations/connectors/source-zoom/poetry.lock +++ b/airbyte-integrations/connectors/source-zoom/poetry.lock @@ -289,13 +289,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] diff --git a/airbyte-integrations/connectors/source-zoom/pyproject.toml b/airbyte-integrations/connectors/source-zoom/pyproject.toml index 724f140bf7db..f03365b61ec4 100644 --- a/airbyte-integrations/connectors/source-zoom/pyproject.toml +++ b/airbyte-integrations/connectors/source-zoom/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "1.1.6" +version = "1.1.7" name = "source-zoom" description = "Source implementation for Zoom." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/zoom.md b/docs/integrations/sources/zoom.md index 3f3323d8c0ba..62ce83431fe2 100644 --- a/docs/integrations/sources/zoom.md +++ b/docs/integrations/sources/zoom.md @@ -71,6 +71,7 @@ JWT Tokens are deprecated, only Server-to-Server works now. [link to Zoom](https | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :--------------------------------------------------- | +| 1.1.7 | 2024-07-13 | [41813](https://github.com/airbytehq/airbyte/pull/41813) | Update dependencies | | 1.1.6 | 2024-07-10 | [41486](https://github.com/airbytehq/airbyte/pull/41486) | Update dependencies | | 1.1.5 | 2024-07-09 | [41316](https://github.com/airbytehq/airbyte/pull/41316) | Update dependencies | | 1.1.4 | 2024-07-06 | [40986](https://github.com/airbytehq/airbyte/pull/40986) | Update dependencies | From 4735b5cdf0aaa9cadf614813dd709354d8f39ee1 Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:23:42 +0200 Subject: [PATCH 124/260] =?UTF-8?q?=F0=9F=90=99=20source-dremio:=20run=20u?= =?UTF-8?q?p-to-date=20pipeline=20[2024-07-13]=20(#41812)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-dremio/metadata.yaml | 2 +- .../connectors/source-dremio/poetry.lock | 12 ++++++------ .../connectors/source-dremio/pyproject.toml | 2 +- docs/integrations/sources/dremio.md | 1 + 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/airbyte-integrations/connectors/source-dremio/metadata.yaml b/airbyte-integrations/connectors/source-dremio/metadata.yaml index 00579c88032c..d984282ab3bf 100644 --- a/airbyte-integrations/connectors/source-dremio/metadata.yaml +++ b/airbyte-integrations/connectors/source-dremio/metadata.yaml @@ -2,7 +2,7 @@ data: connectorSubtype: api connectorType: source definitionId: d99e9ace-8621-46c2-9144-76ae4751d64b - dockerImageTag: 0.1.7 + dockerImageTag: 0.1.8 dockerRepository: airbyte/source-dremio githubIssueLabel: source-dremio icon: dremio.svg diff --git a/airbyte-integrations/connectors/source-dremio/poetry.lock b/airbyte-integrations/connectors/source-dremio/poetry.lock index 4b03cc351726..13836360394d 100644 --- a/airbyte-integrations/connectors/source-dremio/poetry.lock +++ b/airbyte-integrations/connectors/source-dremio/poetry.lock @@ -410,13 +410,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] @@ -566,13 +566,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.84" +version = "0.1.85" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.84-py3-none-any.whl", hash = "sha256:01f3c6390dba26c583bac8dd0e551ce3d0509c7f55cad714db0b5c8d36e4c7ff"}, - {file = "langsmith-0.1.84.tar.gz", hash = "sha256:5220c0439838b9a5bd320fd3686be505c5083dcee22d2452006c23891153bea1"}, + {file = "langsmith-0.1.85-py3-none-any.whl", hash = "sha256:c1f94384f10cea96f7b4d33fd3db7ec180c03c7468877d50846f881d2017ff94"}, + {file = "langsmith-0.1.85.tar.gz", hash = "sha256:acff31f9e53efa48586cf8e32f65625a335c74d7c4fa306d1655ac18452296f6"}, ] [package.dependencies] diff --git a/airbyte-integrations/connectors/source-dremio/pyproject.toml b/airbyte-integrations/connectors/source-dremio/pyproject.toml index a80fa58c1a8f..9a5e675ca9c6 100644 --- a/airbyte-integrations/connectors/source-dremio/pyproject.toml +++ b/airbyte-integrations/connectors/source-dremio/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.1.7" +version = "0.1.8" name = "source-dremio" description = "Source implementation for Dremio." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/dremio.md b/docs/integrations/sources/dremio.md index ba93c2eebcdd..8cbf2b117341 100644 --- a/docs/integrations/sources/dremio.md +++ b/docs/integrations/sources/dremio.md @@ -41,6 +41,7 @@ Please read [How to get your APIs credentials](https://docs.dremio.com/software/ | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :----------------- | +| 0.1.8 | 2024-07-13 | [41812](https://github.com/airbytehq/airbyte/pull/41812) | Update dependencies | | 0.1.7 | 2024-07-10 | [41578](https://github.com/airbytehq/airbyte/pull/41578) | Update dependencies | | 0.1.6 | 2024-07-09 | [41127](https://github.com/airbytehq/airbyte/pull/41127) | Update dependencies | | 0.1.5 | 2024-07-06 | [41008](https://github.com/airbytehq/airbyte/pull/41008) | Update dependencies | From 0eb7cf02b0cf429c799f4d3dd9fbabf994369f3b Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:23:45 +0200 Subject: [PATCH 125/260] =?UTF-8?q?=F0=9F=90=99=20source-chargify:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-07-13]=20(#41811)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-chargify/metadata.yaml | 2 +- .../connectors/source-chargify/poetry.lock | 12 ++++++------ .../connectors/source-chargify/pyproject.toml | 2 +- docs/integrations/sources/chargify.md | 1 + 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/airbyte-integrations/connectors/source-chargify/metadata.yaml b/airbyte-integrations/connectors/source-chargify/metadata.yaml index ffcfd501c286..87a4675fede9 100644 --- a/airbyte-integrations/connectors/source-chargify/metadata.yaml +++ b/airbyte-integrations/connectors/source-chargify/metadata.yaml @@ -14,7 +14,7 @@ data: connectorSubtype: api connectorType: source definitionId: 9b2d3607-7222-4709-9fa2-c2abdebbdd88 - dockerImageTag: 0.4.8 + dockerImageTag: 0.4.9 dockerRepository: airbyte/source-chargify githubIssueLabel: source-chargify icon: chargify.svg diff --git a/airbyte-integrations/connectors/source-chargify/poetry.lock b/airbyte-integrations/connectors/source-chargify/poetry.lock index cb1a23ecd43b..e0918c3f13c6 100644 --- a/airbyte-integrations/connectors/source-chargify/poetry.lock +++ b/airbyte-integrations/connectors/source-chargify/poetry.lock @@ -400,13 +400,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] @@ -556,13 +556,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.84" +version = "0.1.85" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.84-py3-none-any.whl", hash = "sha256:01f3c6390dba26c583bac8dd0e551ce3d0509c7f55cad714db0b5c8d36e4c7ff"}, - {file = "langsmith-0.1.84.tar.gz", hash = "sha256:5220c0439838b9a5bd320fd3686be505c5083dcee22d2452006c23891153bea1"}, + {file = "langsmith-0.1.85-py3-none-any.whl", hash = "sha256:c1f94384f10cea96f7b4d33fd3db7ec180c03c7468877d50846f881d2017ff94"}, + {file = "langsmith-0.1.85.tar.gz", hash = "sha256:acff31f9e53efa48586cf8e32f65625a335c74d7c4fa306d1655ac18452296f6"}, ] [package.dependencies] diff --git a/airbyte-integrations/connectors/source-chargify/pyproject.toml b/airbyte-integrations/connectors/source-chargify/pyproject.toml index 8fdd5ffb66b1..8d1472de6bd4 100644 --- a/airbyte-integrations/connectors/source-chargify/pyproject.toml +++ b/airbyte-integrations/connectors/source-chargify/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.4.8" +version = "0.4.9" name = "source-chargify" description = "Source implementation for chargify." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/chargify.md b/docs/integrations/sources/chargify.md index aadf87ea999a..3ace164fa6a7 100644 --- a/docs/integrations/sources/chargify.md +++ b/docs/integrations/sources/chargify.md @@ -45,6 +45,7 @@ Please follow the [Chargify documentation for generating an API key](https://dev | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :------------------------------------------ | +| 0.4.9 | 2024-07-13 | [41811](https://github.com/airbytehq/airbyte/pull/41811) | Update dependencies | | 0.4.8 | 2024-07-10 | [41375](https://github.com/airbytehq/airbyte/pull/41375) | Update dependencies | | 0.4.7 | 2024-07-09 | [41130](https://github.com/airbytehq/airbyte/pull/41130) | Update dependencies | | 0.4.6 | 2024-07-06 | [40962](https://github.com/airbytehq/airbyte/pull/40962) | Update dependencies | From 102bf0b1cf2514ca6bd9d2749b578300a6a55633 Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:23:49 +0200 Subject: [PATCH 126/260] =?UTF-8?q?=F0=9F=90=99=20source-zenefits:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-07-13]=20(#41810)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-zenefits/metadata.yaml | 2 +- airbyte-integrations/connectors/source-zenefits/poetry.lock | 6 +++--- .../connectors/source-zenefits/pyproject.toml | 2 +- docs/integrations/sources/zenefits.md | 1 + 4 files changed, 6 insertions(+), 5 deletions(-) diff --git a/airbyte-integrations/connectors/source-zenefits/metadata.yaml b/airbyte-integrations/connectors/source-zenefits/metadata.yaml index 1ed14b00b67f..ce5f426db098 100644 --- a/airbyte-integrations/connectors/source-zenefits/metadata.yaml +++ b/airbyte-integrations/connectors/source-zenefits/metadata.yaml @@ -10,7 +10,7 @@ data: connectorSubtype: api connectorType: source definitionId: 8baba53d-2fe3-4e33-bc85-210d0eb62884 - dockerImageTag: 0.2.10 + dockerImageTag: 0.2.11 dockerRepository: airbyte/source-zenefits documentationUrl: https://docs.airbyte.com/integrations/sources/zenefits githubIssueLabel: source-zenefits diff --git a/airbyte-integrations/connectors/source-zenefits/poetry.lock b/airbyte-integrations/connectors/source-zenefits/poetry.lock index cce71c3b0e79..a1ccc2d0271d 100644 --- a/airbyte-integrations/connectors/source-zenefits/poetry.lock +++ b/airbyte-integrations/connectors/source-zenefits/poetry.lock @@ -288,13 +288,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] diff --git a/airbyte-integrations/connectors/source-zenefits/pyproject.toml b/airbyte-integrations/connectors/source-zenefits/pyproject.toml index f8ffa33c94e7..35dc48932165 100644 --- a/airbyte-integrations/connectors/source-zenefits/pyproject.toml +++ b/airbyte-integrations/connectors/source-zenefits/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.2.10" +version = "0.2.11" name = "source-zenefits" description = "Source implementation for Zenefits." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/zenefits.md b/docs/integrations/sources/zenefits.md index f4f1fb88be8b..19450e208f1c 100644 --- a/docs/integrations/sources/zenefits.md +++ b/docs/integrations/sources/zenefits.md @@ -53,6 +53,7 @@ You can replicate the following tables using the Zenefits connector: | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :------------------------------------------------------------------------------ | +| 0.2.11 | 2024-07-13 | [41810](https://github.com/airbytehq/airbyte/pull/41810) | Update dependencies | | 0.2.10 | 2024-07-10 | [41535](https://github.com/airbytehq/airbyte/pull/41535) | Update dependencies | | 0.2.9 | 2024-07-09 | [41298](https://github.com/airbytehq/airbyte/pull/41298) | Update dependencies | | 0.2.8 | 2024-07-06 | [40765](https://github.com/airbytehq/airbyte/pull/40765) | Update dependencies | From 44bd03d8ddb30f3931452b8fe4db688a45426e7b Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:23:51 +0200 Subject: [PATCH 127/260] =?UTF-8?q?=F0=9F=90=99=20source-shopify:=20run=20?= =?UTF-8?q?up-to-date=20pipeline=20[2024-07-13]=20(#41809)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-shopify/metadata.yaml | 2 +- .../connectors/source-shopify/poetry.lock | 18 +++++++++--------- .../connectors/source-shopify/pyproject.toml | 2 +- docs/integrations/sources/shopify.md | 1 + 4 files changed, 12 insertions(+), 11 deletions(-) diff --git a/airbyte-integrations/connectors/source-shopify/metadata.yaml b/airbyte-integrations/connectors/source-shopify/metadata.yaml index ee53b14f17ff..2cf3a19fd9ec 100644 --- a/airbyte-integrations/connectors/source-shopify/metadata.yaml +++ b/airbyte-integrations/connectors/source-shopify/metadata.yaml @@ -11,7 +11,7 @@ data: connectorSubtype: api connectorType: source definitionId: 9da77001-af33-4bcd-be46-6252bf9342b9 - dockerImageTag: 2.4.12 + dockerImageTag: 2.4.13 dockerRepository: airbyte/source-shopify documentationUrl: https://docs.airbyte.com/integrations/sources/shopify githubIssueLabel: source-shopify diff --git a/airbyte-integrations/connectors/source-shopify/poetry.lock b/airbyte-integrations/connectors/source-shopify/poetry.lock index aa42bc8c3872..ae103848695f 100644 --- a/airbyte-integrations/connectors/source-shopify/poetry.lock +++ b/airbyte-integrations/connectors/source-shopify/poetry.lock @@ -2,13 +2,13 @@ [[package]] name = "airbyte-cdk" -version = "3.2.0" +version = "3.4.1" description = "A framework for writing Airbyte Connectors." optional = false python-versions = "<4.0,>=3.9" files = [ - {file = "airbyte_cdk-3.2.0-py3-none-any.whl", hash = "sha256:b22b866864e41422b1fc02faf8a3b0f78403542a654228dfd7dfe62dba4010f3"}, - {file = "airbyte_cdk-3.2.0.tar.gz", hash = "sha256:5eee5aed6612bd58c5c8918281f759696dc390f100a19f64de7084b69b95e808"}, + {file = "airbyte_cdk-3.4.1-py3-none-any.whl", hash = "sha256:423b238da33480f1a464ee92277be55b3661612cd9bfeacc82313bc97792e775"}, + {file = "airbyte_cdk-3.4.1.tar.gz", hash = "sha256:cf66f4bdc85fa6a66a822ce074130f0d82eb3e8e8c85508b14b9fc1784b9416e"}, ] [package.dependencies] @@ -411,13 +411,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] @@ -612,13 +612,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.84" +version = "0.1.85" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.84-py3-none-any.whl", hash = "sha256:01f3c6390dba26c583bac8dd0e551ce3d0509c7f55cad714db0b5c8d36e4c7ff"}, - {file = "langsmith-0.1.84.tar.gz", hash = "sha256:5220c0439838b9a5bd320fd3686be505c5083dcee22d2452006c23891153bea1"}, + {file = "langsmith-0.1.85-py3-none-any.whl", hash = "sha256:c1f94384f10cea96f7b4d33fd3db7ec180c03c7468877d50846f881d2017ff94"}, + {file = "langsmith-0.1.85.tar.gz", hash = "sha256:acff31f9e53efa48586cf8e32f65625a335c74d7c4fa306d1655ac18452296f6"}, ] [package.dependencies] diff --git a/airbyte-integrations/connectors/source-shopify/pyproject.toml b/airbyte-integrations/connectors/source-shopify/pyproject.toml index c749e7bd5485..93756757bbd0 100644 --- a/airbyte-integrations/connectors/source-shopify/pyproject.toml +++ b/airbyte-integrations/connectors/source-shopify/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "2.4.12" +version = "2.4.13" name = "source-shopify" description = "Source CDK implementation for Shopify." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/shopify.md b/docs/integrations/sources/shopify.md index c9323930d187..a1d4224d9db0 100644 --- a/docs/integrations/sources/shopify.md +++ b/docs/integrations/sources/shopify.md @@ -212,6 +212,7 @@ For all `Shopify GraphQL BULK` api requests these limitations are applied: https | Version | Date | Pull Request | Subject | |:--------|:-----------|:---------------------------------------------------------|:------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| +| 2.4.13 | 2024-07-13 | [41809](https://github.com/airbytehq/airbyte/pull/41809) | Update dependencies | | 2.4.12 | 2024-07-10 | [41103](https://github.com/airbytehq/airbyte/pull/41103) | Update dependencies | | 2.4.11 | 2024-07-09 | [41068](https://github.com/airbytehq/airbyte/pull/41068) | Added `options` field to `Product Variants` stream | | 2.4.10 | 2024-07-09 | [41042](https://github.com/airbytehq/airbyte/pull/41042) | Use latest `CDK`: 3.0.0 | From 226d519fdf3d3e946ad12e3e599d52dab40370dd Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:23:55 +0200 Subject: [PATCH 128/260] =?UTF-8?q?=F0=9F=90=99=20source-customer-io:=20ru?= =?UTF-8?q?n=20up-to-date=20pipeline=20[2024-07-13]=20(#41808)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-customer-io/metadata.yaml | 2 +- .../connectors/source-customer-io/poetry.lock | 12 ++++++------ .../connectors/source-customer-io/pyproject.toml | 2 +- docs/integrations/sources/customer-io.md | 1 + 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/airbyte-integrations/connectors/source-customer-io/metadata.yaml b/airbyte-integrations/connectors/source-customer-io/metadata.yaml index 0167d3d9d751..b871b44b61c7 100644 --- a/airbyte-integrations/connectors/source-customer-io/metadata.yaml +++ b/airbyte-integrations/connectors/source-customer-io/metadata.yaml @@ -19,7 +19,7 @@ data: connectorSubtype: api connectorType: source definitionId: 34f697bc-b989-4eda-b06f-d0f39b88825b - dockerImageTag: 0.2.9 + dockerImageTag: 0.2.10 dockerRepository: airbyte/source-customer-io githubIssueLabel: source-customer-io icon: customer-io.svg diff --git a/airbyte-integrations/connectors/source-customer-io/poetry.lock b/airbyte-integrations/connectors/source-customer-io/poetry.lock index cb1a23ecd43b..e0918c3f13c6 100644 --- a/airbyte-integrations/connectors/source-customer-io/poetry.lock +++ b/airbyte-integrations/connectors/source-customer-io/poetry.lock @@ -400,13 +400,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] @@ -556,13 +556,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.84" +version = "0.1.85" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.84-py3-none-any.whl", hash = "sha256:01f3c6390dba26c583bac8dd0e551ce3d0509c7f55cad714db0b5c8d36e4c7ff"}, - {file = "langsmith-0.1.84.tar.gz", hash = "sha256:5220c0439838b9a5bd320fd3686be505c5083dcee22d2452006c23891153bea1"}, + {file = "langsmith-0.1.85-py3-none-any.whl", hash = "sha256:c1f94384f10cea96f7b4d33fd3db7ec180c03c7468877d50846f881d2017ff94"}, + {file = "langsmith-0.1.85.tar.gz", hash = "sha256:acff31f9e53efa48586cf8e32f65625a335c74d7c4fa306d1655ac18452296f6"}, ] [package.dependencies] diff --git a/airbyte-integrations/connectors/source-customer-io/pyproject.toml b/airbyte-integrations/connectors/source-customer-io/pyproject.toml index e8e15dc147f0..2458f25a56c8 100644 --- a/airbyte-integrations/connectors/source-customer-io/pyproject.toml +++ b/airbyte-integrations/connectors/source-customer-io/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.2.9" +version = "0.2.10" name = "source-customer-io" description = "Source implementation for customer-io." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/customer-io.md b/docs/integrations/sources/customer-io.md index b264fc7f15ea..bc21a4f26001 100644 --- a/docs/integrations/sources/customer-io.md +++ b/docs/integrations/sources/customer-io.md @@ -52,6 +52,7 @@ Please follow the [their documentation for generating an App API Key](https://cu | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------------- | :------------------------- | +| 0.2.10 | 2024-07-13 | [41808](https://github.com/airbytehq/airbyte/pull/41808) | Update dependencies | | 0.2.9 | 2024-07-10 | [41389](https://github.com/airbytehq/airbyte/pull/41389) | Update dependencies | | 0.2.8 | 2024-07-09 | [41225](https://github.com/airbytehq/airbyte/pull/41225) | Update dependencies | | 0.2.7 | 2024-07-06 | [40883](https://github.com/airbytehq/airbyte/pull/40883) | Update dependencies | From 01999fc3e9b28e53c2ec4cbc85d429592419ea95 Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:23:58 +0200 Subject: [PATCH 129/260] =?UTF-8?q?=F0=9F=90=99=20source-sendinblue:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-07-13]=20(#41807)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-sendinblue/metadata.yaml | 2 +- .../connectors/source-sendinblue/poetry.lock | 12 ++++++------ .../connectors/source-sendinblue/pyproject.toml | 2 +- docs/integrations/sources/sendinblue.md | 1 + 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/airbyte-integrations/connectors/source-sendinblue/metadata.yaml b/airbyte-integrations/connectors/source-sendinblue/metadata.yaml index 208bcf433d3b..a17769b5777d 100644 --- a/airbyte-integrations/connectors/source-sendinblue/metadata.yaml +++ b/airbyte-integrations/connectors/source-sendinblue/metadata.yaml @@ -13,7 +13,7 @@ data: connectorSubtype: api connectorType: source definitionId: 2e88fa20-a2f6-43cc-bba6-98a0a3f244fb - dockerImageTag: 0.1.6 + dockerImageTag: 0.1.7 dockerRepository: airbyte/source-sendinblue documentationUrl: https://docs.airbyte.com/integrations/sources/sendinblue githubIssueLabel: source-sendinblue diff --git a/airbyte-integrations/connectors/source-sendinblue/poetry.lock b/airbyte-integrations/connectors/source-sendinblue/poetry.lock index cb1a23ecd43b..e0918c3f13c6 100644 --- a/airbyte-integrations/connectors/source-sendinblue/poetry.lock +++ b/airbyte-integrations/connectors/source-sendinblue/poetry.lock @@ -400,13 +400,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] @@ -556,13 +556,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.84" +version = "0.1.85" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.84-py3-none-any.whl", hash = "sha256:01f3c6390dba26c583bac8dd0e551ce3d0509c7f55cad714db0b5c8d36e4c7ff"}, - {file = "langsmith-0.1.84.tar.gz", hash = "sha256:5220c0439838b9a5bd320fd3686be505c5083dcee22d2452006c23891153bea1"}, + {file = "langsmith-0.1.85-py3-none-any.whl", hash = "sha256:c1f94384f10cea96f7b4d33fd3db7ec180c03c7468877d50846f881d2017ff94"}, + {file = "langsmith-0.1.85.tar.gz", hash = "sha256:acff31f9e53efa48586cf8e32f65625a335c74d7c4fa306d1655ac18452296f6"}, ] [package.dependencies] diff --git a/airbyte-integrations/connectors/source-sendinblue/pyproject.toml b/airbyte-integrations/connectors/source-sendinblue/pyproject.toml index b8ef06be038b..44428b4c11b0 100644 --- a/airbyte-integrations/connectors/source-sendinblue/pyproject.toml +++ b/airbyte-integrations/connectors/source-sendinblue/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.1.6" +version = "0.1.7" name = "source-sendinblue" description = "Source implementation for sendinblue." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/sendinblue.md b/docs/integrations/sources/sendinblue.md index 8c3b1c9e3122..29f055933fe1 100644 --- a/docs/integrations/sources/sendinblue.md +++ b/docs/integrations/sources/sendinblue.md @@ -34,6 +34,7 @@ Sendinblue APIs are under rate limits for the number of API calls allowed per AP | Version | Date | Pull Request | Subject | | :------ | :--------- | :-------------------------------------------------------- | :------------------------------------------------------------ | +| 0.1.7 | 2024-07-13 | [41807](https://github.com/airbytehq/airbyte/pull/41807) | Update dependencies | | 0.1.6 | 2024-07-10 | [41513](https://github.com/airbytehq/airbyte/pull/41513) | Update dependencies | | 0.1.5 | 2024-07-09 | [41305](https://github.com/airbytehq/airbyte/pull/41305) | Update dependencies | | 0.1.4 | 2024-07-06 | [40853](https://github.com/airbytehq/airbyte/pull/40853) | Update dependencies | From ed271dba0737e910e04c19cd6972a4b748b68e15 Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:24:01 +0200 Subject: [PATCH 130/260] =?UTF-8?q?=F0=9F=90=99=20source-goldcast:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-07-13]=20(#41806)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-goldcast/metadata.yaml | 2 +- .../connectors/source-goldcast/poetry.lock | 12 ++++++------ .../connectors/source-goldcast/pyproject.toml | 2 +- docs/integrations/sources/goldcast.md | 1 + 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/airbyte-integrations/connectors/source-goldcast/metadata.yaml b/airbyte-integrations/connectors/source-goldcast/metadata.yaml index b70f86dec342..bc9304f4ad5b 100644 --- a/airbyte-integrations/connectors/source-goldcast/metadata.yaml +++ b/airbyte-integrations/connectors/source-goldcast/metadata.yaml @@ -19,7 +19,7 @@ data: connectorSubtype: api connectorType: source definitionId: c2c25d04-9bb1-4171-8a7a-bb7cead8add0 - dockerImageTag: 0.1.2 + dockerImageTag: 0.1.3 dockerRepository: airbyte/source-goldcast githubIssueLabel: source-goldcast icon: goldcast.svg diff --git a/airbyte-integrations/connectors/source-goldcast/poetry.lock b/airbyte-integrations/connectors/source-goldcast/poetry.lock index dc5c9acab3fa..236ba605dc81 100644 --- a/airbyte-integrations/connectors/source-goldcast/poetry.lock +++ b/airbyte-integrations/connectors/source-goldcast/poetry.lock @@ -411,13 +411,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] @@ -567,13 +567,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.84" +version = "0.1.85" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.84-py3-none-any.whl", hash = "sha256:01f3c6390dba26c583bac8dd0e551ce3d0509c7f55cad714db0b5c8d36e4c7ff"}, - {file = "langsmith-0.1.84.tar.gz", hash = "sha256:5220c0439838b9a5bd320fd3686be505c5083dcee22d2452006c23891153bea1"}, + {file = "langsmith-0.1.85-py3-none-any.whl", hash = "sha256:c1f94384f10cea96f7b4d33fd3db7ec180c03c7468877d50846f881d2017ff94"}, + {file = "langsmith-0.1.85.tar.gz", hash = "sha256:acff31f9e53efa48586cf8e32f65625a335c74d7c4fa306d1655ac18452296f6"}, ] [package.dependencies] diff --git a/airbyte-integrations/connectors/source-goldcast/pyproject.toml b/airbyte-integrations/connectors/source-goldcast/pyproject.toml index 50b602f9208e..d25a25c22aa1 100644 --- a/airbyte-integrations/connectors/source-goldcast/pyproject.toml +++ b/airbyte-integrations/connectors/source-goldcast/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.1.2" +version = "0.1.3" name = "source-goldcast" description = "Source implementation for goldcast." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/goldcast.md b/docs/integrations/sources/goldcast.md index eea53fb3af54..b3183c80884d 100644 --- a/docs/integrations/sources/goldcast.md +++ b/docs/integrations/sources/goldcast.md @@ -96,6 +96,7 @@ This is a child stream of the events stream indicating webinars that belong to t | Version | Date | Pull Request | Subject | |:---------|:-----------|:---------------------------------------------------------|:-------------------------------------------------------------------------------------------------------------------------------------| +| 0.1.3 | 2024-07-13 | [41806](https://github.com/airbytehq/airbyte/pull/41806) | Update dependencies | | 0.1.2 | 2024-07-10 | [41406](https://github.com/airbytehq/airbyte/pull/41406) | Update dependencies | | 0.1.1 | 2024-07-09 | [41263](https://github.com/airbytehq/airbyte/pull/41263) | Update dependencies | | 0.1.0 | 2024-06-26 | [38786](https://github.com/airbytehq/airbyte/pull/38786) | New Source: Goldcast | From 9a2b92f3a41fb59725c33718876e070164d1d587 Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:24:04 +0200 Subject: [PATCH 131/260] =?UTF-8?q?=F0=9F=90=99=20source-dixa:=20run=20up-?= =?UTF-8?q?to-date=20pipeline=20[2024-07-13]=20(#41805)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-dixa/metadata.yaml | 2 +- .../connectors/source-dixa/poetry.lock | 12 ++++++------ .../connectors/source-dixa/pyproject.toml | 2 +- docs/integrations/sources/dixa.md | 1 + 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/airbyte-integrations/connectors/source-dixa/metadata.yaml b/airbyte-integrations/connectors/source-dixa/metadata.yaml index c5f6ded6f052..a8ae968970e0 100644 --- a/airbyte-integrations/connectors/source-dixa/metadata.yaml +++ b/airbyte-integrations/connectors/source-dixa/metadata.yaml @@ -14,7 +14,7 @@ data: connectorSubtype: api connectorType: source definitionId: 0b5c867e-1b12-4d02-ab74-97b2184ff6d7 - dockerImageTag: 0.3.6 + dockerImageTag: 0.3.7 dockerRepository: airbyte/source-dixa githubIssueLabel: source-dixa icon: dixa.svg diff --git a/airbyte-integrations/connectors/source-dixa/poetry.lock b/airbyte-integrations/connectors/source-dixa/poetry.lock index 1ac306a5c0f1..31731153c82e 100644 --- a/airbyte-integrations/connectors/source-dixa/poetry.lock +++ b/airbyte-integrations/connectors/source-dixa/poetry.lock @@ -410,13 +410,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] @@ -566,13 +566,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.84" +version = "0.1.85" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.84-py3-none-any.whl", hash = "sha256:01f3c6390dba26c583bac8dd0e551ce3d0509c7f55cad714db0b5c8d36e4c7ff"}, - {file = "langsmith-0.1.84.tar.gz", hash = "sha256:5220c0439838b9a5bd320fd3686be505c5083dcee22d2452006c23891153bea1"}, + {file = "langsmith-0.1.85-py3-none-any.whl", hash = "sha256:c1f94384f10cea96f7b4d33fd3db7ec180c03c7468877d50846f881d2017ff94"}, + {file = "langsmith-0.1.85.tar.gz", hash = "sha256:acff31f9e53efa48586cf8e32f65625a335c74d7c4fa306d1655ac18452296f6"}, ] [package.dependencies] diff --git a/airbyte-integrations/connectors/source-dixa/pyproject.toml b/airbyte-integrations/connectors/source-dixa/pyproject.toml index 5a500ada277b..c391216ca193 100644 --- a/airbyte-integrations/connectors/source-dixa/pyproject.toml +++ b/airbyte-integrations/connectors/source-dixa/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.3.6" +version = "0.3.7" name = "source-dixa" description = "Source implementation for Dixa." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/dixa.md b/docs/integrations/sources/dixa.md index 55cbfa5dffcf..8d53d2398043 100644 --- a/docs/integrations/sources/dixa.md +++ b/docs/integrations/sources/dixa.md @@ -54,6 +54,7 @@ When using the connector, keep in mind that increasing the `batch_size` paramete | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :-------------------------------------------------------------------- | +| 0.3.7 | 2024-07-13 | [41805](https://github.com/airbytehq/airbyte/pull/41805) | Update dependencies | | 0.3.6 | 2024-07-10 | [41484](https://github.com/airbytehq/airbyte/pull/41484) | Update dependencies | | 0.3.5 | 2024-07-09 | [41198](https://github.com/airbytehq/airbyte/pull/41198) | Update dependencies | | 0.3.4 | 2024-07-06 | [40776](https://github.com/airbytehq/airbyte/pull/40776) | Update dependencies | From 1951a8fd4d989c1b2392f0478a0c05bce8ec4d9f Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:24:07 +0200 Subject: [PATCH 132/260] =?UTF-8?q?=F0=9F=90=99=20source-mailjet-sms:=20ru?= =?UTF-8?q?n=20up-to-date=20pipeline=20[2024-07-13]=20(#41804)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-mailjet-sms/metadata.yaml | 2 +- .../connectors/source-mailjet-sms/poetry.lock | 6 +++--- .../connectors/source-mailjet-sms/pyproject.toml | 2 +- docs/integrations/sources/mailjet-sms.md | 1 + 4 files changed, 6 insertions(+), 5 deletions(-) diff --git a/airbyte-integrations/connectors/source-mailjet-sms/metadata.yaml b/airbyte-integrations/connectors/source-mailjet-sms/metadata.yaml index 2e70223e5fbe..bd2bc27df63b 100644 --- a/airbyte-integrations/connectors/source-mailjet-sms/metadata.yaml +++ b/airbyte-integrations/connectors/source-mailjet-sms/metadata.yaml @@ -7,7 +7,7 @@ data: connectorSubtype: api connectorType: source definitionId: 6ec2acea-7fd1-4378-b403-41a666e0c028 - dockerImageTag: 0.1.10 + dockerImageTag: 0.1.11 dockerRepository: airbyte/source-mailjet-sms documentationUrl: https://docs.airbyte.com/integrations/sources/mailjet-sms githubIssueLabel: source-mailjet-sms diff --git a/airbyte-integrations/connectors/source-mailjet-sms/poetry.lock b/airbyte-integrations/connectors/source-mailjet-sms/poetry.lock index 6f83e5bed3a6..c0f7f643d050 100644 --- a/airbyte-integrations/connectors/source-mailjet-sms/poetry.lock +++ b/airbyte-integrations/connectors/source-mailjet-sms/poetry.lock @@ -288,13 +288,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] diff --git a/airbyte-integrations/connectors/source-mailjet-sms/pyproject.toml b/airbyte-integrations/connectors/source-mailjet-sms/pyproject.toml index 0109814bbfd7..39e2290d515f 100644 --- a/airbyte-integrations/connectors/source-mailjet-sms/pyproject.toml +++ b/airbyte-integrations/connectors/source-mailjet-sms/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.1.10" +version = "0.1.11" name = "source-mailjet-sms" description = "Source implementation for Mailjet Sms." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/mailjet-sms.md b/docs/integrations/sources/mailjet-sms.md index 675ce7c71ce1..7c896df17249 100644 --- a/docs/integrations/sources/mailjet-sms.md +++ b/docs/integrations/sources/mailjet-sms.md @@ -32,6 +32,7 @@ Mailjet APIs are under rate limits for the number of API calls allowed per API k | Version | Date | Pull Request | Subject | | :------ | :--------- | :-------------------------------------------------------- | :------------------------------------------------------------------------------ | +| 0.1.11 | 2024-07-13 | [41804](https://github.com/airbytehq/airbyte/pull/41804) | Update dependencies | | 0.1.10 | 2024-07-10 | [41516](https://github.com/airbytehq/airbyte/pull/41516) | Update dependencies | | 0.1.9 | 2024-07-09 | [41208](https://github.com/airbytehq/airbyte/pull/41208) | Update dependencies | | 0.1.8 | 2024-07-06 | [40775](https://github.com/airbytehq/airbyte/pull/40775) | Update dependencies | From b6ec224c6015738a9e69896ae8dec2ab90da85b9 Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:24:10 +0200 Subject: [PATCH 133/260] =?UTF-8?q?=F0=9F=90=99=20source-lokalise:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-07-13]=20(#41803)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-lokalise/metadata.yaml | 2 +- .../connectors/source-lokalise/poetry.lock | 12 ++++++------ .../connectors/source-lokalise/pyproject.toml | 2 +- docs/integrations/sources/lokalise.md | 1 + 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/airbyte-integrations/connectors/source-lokalise/metadata.yaml b/airbyte-integrations/connectors/source-lokalise/metadata.yaml index f96245272883..a6137b3627da 100644 --- a/airbyte-integrations/connectors/source-lokalise/metadata.yaml +++ b/airbyte-integrations/connectors/source-lokalise/metadata.yaml @@ -2,7 +2,7 @@ data: connectorSubtype: api connectorType: source definitionId: 45e0b135-615c-40ac-b38e-e65b0944197f - dockerImageTag: 0.1.7 + dockerImageTag: 0.1.8 dockerRepository: airbyte/source-lokalise githubIssueLabel: source-lokalise icon: lokalise.svg diff --git a/airbyte-integrations/connectors/source-lokalise/poetry.lock b/airbyte-integrations/connectors/source-lokalise/poetry.lock index 4b03cc351726..13836360394d 100644 --- a/airbyte-integrations/connectors/source-lokalise/poetry.lock +++ b/airbyte-integrations/connectors/source-lokalise/poetry.lock @@ -410,13 +410,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] @@ -566,13 +566,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.84" +version = "0.1.85" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.84-py3-none-any.whl", hash = "sha256:01f3c6390dba26c583bac8dd0e551ce3d0509c7f55cad714db0b5c8d36e4c7ff"}, - {file = "langsmith-0.1.84.tar.gz", hash = "sha256:5220c0439838b9a5bd320fd3686be505c5083dcee22d2452006c23891153bea1"}, + {file = "langsmith-0.1.85-py3-none-any.whl", hash = "sha256:c1f94384f10cea96f7b4d33fd3db7ec180c03c7468877d50846f881d2017ff94"}, + {file = "langsmith-0.1.85.tar.gz", hash = "sha256:acff31f9e53efa48586cf8e32f65625a335c74d7c4fa306d1655ac18452296f6"}, ] [package.dependencies] diff --git a/airbyte-integrations/connectors/source-lokalise/pyproject.toml b/airbyte-integrations/connectors/source-lokalise/pyproject.toml index 433ba895aa05..edae2d092610 100644 --- a/airbyte-integrations/connectors/source-lokalise/pyproject.toml +++ b/airbyte-integrations/connectors/source-lokalise/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.1.7" +version = "0.1.8" name = "source-lokalise" description = "Source implementation for Lokalise." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/lokalise.md b/docs/integrations/sources/lokalise.md index c5d5a25539f0..2fc4205ec8bf 100644 --- a/docs/integrations/sources/lokalise.md +++ b/docs/integrations/sources/lokalise.md @@ -64,6 +64,7 @@ The Lokalise source connector supports the following [sync modes](https://docs.a | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :------------------- | +| 0.1.8 | 2024-07-13 | [41803](https://github.com/airbytehq/airbyte/pull/41803) | Update dependencies | | 0.1.7 | 2024-07-10 | [41395](https://github.com/airbytehq/airbyte/pull/41395) | Update dependencies | | 0.1.6 | 2024-07-09 | [41188](https://github.com/airbytehq/airbyte/pull/41188) | Update dependencies | | 0.1.5 | 2024-07-06 | [40809](https://github.com/airbytehq/airbyte/pull/40809) | Update dependencies | From a1245cbc9cc04b43b17b0e82231c4ad3d09c0d27 Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:24:14 +0200 Subject: [PATCH 134/260] =?UTF-8?q?=F0=9F=90=99=20destination-chroma:=20ru?= =?UTF-8?q?n=20up-to-date=20pipeline=20[2024-07-13]=20(#41802)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../destination-chroma/metadata.yaml | 2 +- .../connectors/destination-chroma/poetry.lock | 78 ++++++++++--------- .../destination-chroma/pyproject.toml | 2 +- docs/integrations/destinations/chroma.md | 1 + 4 files changed, 44 insertions(+), 39 deletions(-) diff --git a/airbyte-integrations/connectors/destination-chroma/metadata.yaml b/airbyte-integrations/connectors/destination-chroma/metadata.yaml index 85dabe0ff996..fbca9de7ee52 100644 --- a/airbyte-integrations/connectors/destination-chroma/metadata.yaml +++ b/airbyte-integrations/connectors/destination-chroma/metadata.yaml @@ -9,7 +9,7 @@ data: connectorSubtype: vectorstore connectorType: destination definitionId: 0b75218b-f702-4a28-85ac-34d3d84c0fc2 - dockerImageTag: 0.0.18 + dockerImageTag: 0.0.19 dockerRepository: airbyte/destination-chroma githubIssueLabel: destination-chroma icon: chroma.svg diff --git a/airbyte-integrations/connectors/destination-chroma/poetry.lock b/airbyte-integrations/connectors/destination-chroma/poetry.lock index 696e7d1bf1c2..fba1d6818faf 100644 --- a/airbyte-integrations/connectors/destination-chroma/poetry.lock +++ b/airbyte-integrations/connectors/destination-chroma/poetry.lock @@ -469,36 +469,41 @@ files = [ [[package]] name = "chroma-hnswlib" -version = "0.7.3" +version = "0.7.5" description = "Chromas fork of hnswlib" optional = false python-versions = "*" files = [ - {file = "chroma-hnswlib-0.7.3.tar.gz", hash = "sha256:b6137bedde49fffda6af93b0297fe00429fc61e5a072b1ed9377f909ed95a932"}, - {file = "chroma_hnswlib-0.7.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:59d6a7c6f863c67aeb23e79a64001d537060b6995c3eca9a06e349ff7b0998ca"}, - {file = "chroma_hnswlib-0.7.3-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:d71a3f4f232f537b6152947006bd32bc1629a8686df22fd97777b70f416c127a"}, - {file = "chroma_hnswlib-0.7.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1c92dc1ebe062188e53970ba13f6b07e0ae32e64c9770eb7f7ffa83f149d4210"}, - {file = "chroma_hnswlib-0.7.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:49da700a6656fed8753f68d44b8cc8ae46efc99fc8a22a6d970dc1697f49b403"}, - {file = "chroma_hnswlib-0.7.3-cp310-cp310-win_amd64.whl", hash = "sha256:108bc4c293d819b56476d8f7865803cb03afd6ca128a2a04d678fffc139af029"}, - {file = "chroma_hnswlib-0.7.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:11e7ca93fb8192214ac2b9c0943641ac0daf8f9d4591bb7b73be808a83835667"}, - {file = "chroma_hnswlib-0.7.3-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:6f552e4d23edc06cdeb553cdc757d2fe190cdeb10d43093d6a3319f8d4bf1c6b"}, - {file = "chroma_hnswlib-0.7.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f96f4d5699e486eb1fb95849fe35ab79ab0901265805be7e60f4eaa83ce263ec"}, - {file = "chroma_hnswlib-0.7.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:368e57fe9ebae05ee5844840fa588028a023d1182b0cfdb1d13f607c9ea05756"}, - {file = "chroma_hnswlib-0.7.3-cp311-cp311-win_amd64.whl", hash = "sha256:b7dca27b8896b494456db0fd705b689ac6b73af78e186eb6a42fea2de4f71c6f"}, - {file = "chroma_hnswlib-0.7.3-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:70f897dc6218afa1d99f43a9ad5eb82f392df31f57ff514ccf4eeadecd62f544"}, - {file = "chroma_hnswlib-0.7.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5aef10b4952708f5a1381c124a29aead0c356f8d7d6e0b520b778aaa62a356f4"}, - {file = "chroma_hnswlib-0.7.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7ee2d8d1529fca3898d512079144ec3e28a81d9c17e15e0ea4665697a7923253"}, - {file = "chroma_hnswlib-0.7.3-cp37-cp37m-win_amd64.whl", hash = "sha256:a4021a70e898783cd6f26e00008b494c6249a7babe8774e90ce4766dd288c8ba"}, - {file = "chroma_hnswlib-0.7.3-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:a8f61fa1d417fda848e3ba06c07671f14806a2585272b175ba47501b066fe6b1"}, - {file = "chroma_hnswlib-0.7.3-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:d7563be58bc98e8f0866907368e22ae218d6060601b79c42f59af4eccbbd2e0a"}, - {file = "chroma_hnswlib-0.7.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:51b8d411486ee70d7b66ec08cc8b9b6620116b650df9c19076d2d8b6ce2ae914"}, - {file = "chroma_hnswlib-0.7.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9d706782b628e4f43f1b8a81e9120ac486837fbd9bcb8ced70fe0d9b95c72d77"}, - {file = "chroma_hnswlib-0.7.3-cp38-cp38-win_amd64.whl", hash = "sha256:54f053dedc0e3ba657f05fec6e73dd541bc5db5b09aa8bc146466ffb734bdc86"}, - {file = "chroma_hnswlib-0.7.3-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:e607c5a71c610a73167a517062d302c0827ccdd6e259af6e4869a5c1306ffb5d"}, - {file = "chroma_hnswlib-0.7.3-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:c2358a795870156af6761890f9eb5ca8cade57eb10c5f046fe94dae1faa04b9e"}, - {file = "chroma_hnswlib-0.7.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7cea425df2e6b8a5e201fff0d922a1cc1d165b3cfe762b1408075723c8892218"}, - {file = "chroma_hnswlib-0.7.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:454df3dd3e97aa784fba7cf888ad191e0087eef0fd8c70daf28b753b3b591170"}, - {file = "chroma_hnswlib-0.7.3-cp39-cp39-win_amd64.whl", hash = "sha256:df587d15007ca701c6de0ee7d5585dd5e976b7edd2b30ac72bc376b3c3f85882"}, + {file = "chroma_hnswlib-0.7.5-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:624ab09491a9bf2523ad54d8fdf8e868a706814373534eeb1f0d8195db03be6c"}, + {file = "chroma_hnswlib-0.7.5-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:b838b4f231bbf0e62b89552f2814eebbc3e17173abe50cb547c4c4aadbf62f6c"}, + {file = "chroma_hnswlib-0.7.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c5f234e67632a33f75d8f6cb39f457fb7d10d16fdb48ba52f55a8983ac59cb4f"}, + {file = "chroma_hnswlib-0.7.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bf54240944a0487d7aefb1338b6ea74f784aa888c41c6f1e96b66e24a40d37cd"}, + {file = "chroma_hnswlib-0.7.5-cp310-cp310-win_amd64.whl", hash = "sha256:49fec3f01adc829104ed428b7d4362382092d481e01456f3f46040af5aa044ee"}, + {file = "chroma_hnswlib-0.7.5-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:18cdbbf93c5b4855f2a050808976f5d261b36055b392a2df632a574410ffefaa"}, + {file = "chroma_hnswlib-0.7.5-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:35b17814041d9512e99832327f49138da470df6478c9ad1e9ca334d9c18720dd"}, + {file = "chroma_hnswlib-0.7.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:70893cfde9ac979ec17bb7389d6aa47e422930ccc20353778524d668473ee702"}, + {file = "chroma_hnswlib-0.7.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1453494aea293ce2d8d38e7713b2b459e4245c59a744f9b3f85488165eb52b74"}, + {file = "chroma_hnswlib-0.7.5-cp311-cp311-win_amd64.whl", hash = "sha256:109ee141a2f1241f7d7729443d96ea1450564c6c0923722a8139d70d738d1ad8"}, + {file = "chroma_hnswlib-0.7.5-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:bf721938246f3c95340313cd7ac2564a38142e137d7fce9b098a0fd774bbc7ea"}, + {file = "chroma_hnswlib-0.7.5-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:3dda8ff4609b41dab4cca14d146e4dda0d365be6264877de5dd17d8dee314740"}, + {file = "chroma_hnswlib-0.7.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:af3a84ceebea8f750467304fabbeb77d5fa2b75ccf55fd2e0494c2ad84527df5"}, + {file = "chroma_hnswlib-0.7.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e178ace2050e4e46c4f899d3cb15ad11a8dc6452eb9e365918c65f171bbf01e0"}, + {file = "chroma_hnswlib-0.7.5-cp312-cp312-win_amd64.whl", hash = "sha256:ddf183960bd5081e23310377153b5bdd3ed1540b74271f3ff8aa741de165e39d"}, + {file = "chroma_hnswlib-0.7.5-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:86ddae071363ba0f0c03325b6f022cfb14a969b9c989e188cfcaa81d8e0df177"}, + {file = "chroma_hnswlib-0.7.5-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0dbff5658955df5983d32439b698b83044e8f612590716cd499e81376672edbd"}, + {file = "chroma_hnswlib-0.7.5-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b50209cced093f286a76c619cc2b404a5da29df6792f5852fdf514a24b8acb4c"}, + {file = "chroma_hnswlib-0.7.5-cp37-cp37m-win_amd64.whl", hash = "sha256:4c1535106ad3c6a727b8b2cdb01e02abf8a603b83489cb50bde3a6811731dee2"}, + {file = "chroma_hnswlib-0.7.5-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:36e35f7773313480c27d0b63b26863408c9c6ab47f44d581783d4693bc52f54c"}, + {file = "chroma_hnswlib-0.7.5-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:932220cc42a30abc9fdfa230be7ebdd25c1c4967a5ea514119b65ba0844fe193"}, + {file = "chroma_hnswlib-0.7.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:85d12ada7a55271fbd2839fb1fdae9e2f485db7dad871f23fa359ec68d16a5e0"}, + {file = "chroma_hnswlib-0.7.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b1657dff26eedb24f55d0a3f371bbe02c15c1fef447c8e57fba3e99c42f7683b"}, + {file = "chroma_hnswlib-0.7.5-cp38-cp38-win_amd64.whl", hash = "sha256:2336483218ff5329743d8fcad3d7f870e220503f01ee9420c9469d857783015f"}, + {file = "chroma_hnswlib-0.7.5-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:a4920e0b3045feb4bfe3cf891233024839d5e8384fee505b91a70ca540eef0ef"}, + {file = "chroma_hnswlib-0.7.5-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:9f64134544c5c38d1075b314fcdc364bab6ba68f2e96e223b14559b7bef6f5ac"}, + {file = "chroma_hnswlib-0.7.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:561ae3cb8dbf28251f8980666b608d9800c5f17d6eec53a27c7bd9b4d1093b34"}, + {file = "chroma_hnswlib-0.7.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:645c6309761aadcf378eb88d7a9b598574a8033274d8931b9ca7079eb2206425"}, + {file = "chroma_hnswlib-0.7.5-cp39-cp39-win_amd64.whl", hash = "sha256:89a80901995c68c4e019edf1375f8b2aaeb9e42e12faab6f999fdfd91aee53ee"}, + {file = "chroma_hnswlib-0.7.5.tar.gz", hash = "sha256:45537d0142ad0fadf712092b8be55de211613d0322627a1a2de05b6e800c2954"}, ] [package.dependencies] @@ -506,19 +511,19 @@ numpy = "*" [[package]] name = "chromadb" -version = "0.5.3" +version = "0.5.4" description = "Chroma." optional = false python-versions = ">=3.8" files = [ - {file = "chromadb-0.5.3-py3-none-any.whl", hash = "sha256:b3874f08356e291c68c6d2e177db472cd51f22f3af7b9746215b748fd1e29982"}, - {file = "chromadb-0.5.3.tar.gz", hash = "sha256:05d887f56a46b2e0fc6ac5ab979503a27b9ee50d5ca9e455f83b2fb9840cd026"}, + {file = "chromadb-0.5.4-py3-none-any.whl", hash = "sha256:60f468d44527bea8f88bd39ee26744d0d59c386dacbe544ff715e534691df0e8"}, + {file = "chromadb-0.5.4.tar.gz", hash = "sha256:02878f527befa8f80ab350023241dbb29313a168f93010208f071e3db9572bb4"}, ] [package.dependencies] bcrypt = ">=4.0.1" build = ">=1.0.3" -chroma-hnswlib = "0.7.3" +chroma-hnswlib = "0.7.5" fastapi = ">=0.95.2" grpcio = ">=1.58.0" httpx = ">=0.27.0" @@ -537,7 +542,6 @@ posthog = ">=2.4.0" pydantic = ">=1.9" pypika = ">=0.48.9" PyYAML = ">=6.0.0" -requests = ">=2.28" tenacity = ">=8.2.3" tokenizers = ">=0.13.2" tqdm = ">=4.65.0" @@ -775,13 +779,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] @@ -1824,13 +1828,13 @@ extended-testing = ["beautifulsoup4 (>=4.12.3,<5.0.0)", "lxml (>=4.9.3,<6.0)"] [[package]] name = "langsmith" -version = "0.1.84" +version = "0.1.85" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.84-py3-none-any.whl", hash = "sha256:01f3c6390dba26c583bac8dd0e551ce3d0509c7f55cad714db0b5c8d36e4c7ff"}, - {file = "langsmith-0.1.84.tar.gz", hash = "sha256:5220c0439838b9a5bd320fd3686be505c5083dcee22d2452006c23891153bea1"}, + {file = "langsmith-0.1.85-py3-none-any.whl", hash = "sha256:c1f94384f10cea96f7b4d33fd3db7ec180c03c7468877d50846f881d2017ff94"}, + {file = "langsmith-0.1.85.tar.gz", hash = "sha256:acff31f9e53efa48586cf8e32f65625a335c74d7c4fa306d1655ac18452296f6"}, ] [package.dependencies] diff --git a/airbyte-integrations/connectors/destination-chroma/pyproject.toml b/airbyte-integrations/connectors/destination-chroma/pyproject.toml index db0927e0b446..d7e7963a3c45 100644 --- a/airbyte-integrations/connectors/destination-chroma/pyproject.toml +++ b/airbyte-integrations/connectors/destination-chroma/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name = "airbyte-destination-chroma" -version = "0.0.18" +version = "0.0.19" description = "Airbyte destination implementation for Chroma." authors = ["Airbyte "] license = "MIT" diff --git a/docs/integrations/destinations/chroma.md b/docs/integrations/destinations/chroma.md index 2bf5198473df..2aca3834e29c 100644 --- a/docs/integrations/destinations/chroma.md +++ b/docs/integrations/destinations/chroma.md @@ -77,6 +77,7 @@ You should now have all the requirements needed to configure Chroma as a destina | Version | Date | Pull Request | Subject | | :------ | :--------- | :-------------------------------------------------------- | :----------------------------------------------------------- | +| 0.0.19 | 2024-07-13 | [41802](https://github.com/airbytehq/airbyte/pull/41802) | Update dependencies | | 0.0.18 | 2024-07-10 | [41384](https://github.com/airbytehq/airbyte/pull/41384) | Update dependencies | | 0.0.17 | 2024-07-09 | [41165](https://github.com/airbytehq/airbyte/pull/41165) | Update dependencies | | 0.0.16 | 2024-07-06 | [40926](https://github.com/airbytehq/airbyte/pull/40926) | Update dependencies | From 6320b66c05d0dd27b0c7c008fe9618fe3c22a3bc Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:24:17 +0200 Subject: [PATCH 135/260] =?UTF-8?q?=F0=9F=90=99=20source-google-analytics-?= =?UTF-8?q?data-api:=20run=20up-to-date=20pipeline=20[2024-07-13]=20(#4180?= =?UTF-8?q?1)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../source-google-analytics-data-api/metadata.yaml | 2 +- .../source-google-analytics-data-api/poetry.lock | 12 ++++++------ .../source-google-analytics-data-api/pyproject.toml | 2 +- .../sources/google-analytics-data-api.md | 1 + 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/airbyte-integrations/connectors/source-google-analytics-data-api/metadata.yaml b/airbyte-integrations/connectors/source-google-analytics-data-api/metadata.yaml index 51b70e08850d..45b8cc4b7756 100644 --- a/airbyte-integrations/connectors/source-google-analytics-data-api/metadata.yaml +++ b/airbyte-integrations/connectors/source-google-analytics-data-api/metadata.yaml @@ -12,7 +12,7 @@ data: connectorSubtype: api connectorType: source definitionId: 3cc2eafd-84aa-4dca-93af-322d9dfeec1a - dockerImageTag: 2.4.11 + dockerImageTag: 2.4.12 dockerRepository: airbyte/source-google-analytics-data-api documentationUrl: https://docs.airbyte.com/integrations/sources/google-analytics-data-api githubIssueLabel: source-google-analytics-data-api diff --git a/airbyte-integrations/connectors/source-google-analytics-data-api/poetry.lock b/airbyte-integrations/connectors/source-google-analytics-data-api/poetry.lock index 992a93b4be12..a9cd7e652aa9 100644 --- a/airbyte-integrations/connectors/source-google-analytics-data-api/poetry.lock +++ b/airbyte-integrations/connectors/source-google-analytics-data-api/poetry.lock @@ -395,13 +395,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] @@ -565,13 +565,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.84" +version = "0.1.85" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.84-py3-none-any.whl", hash = "sha256:01f3c6390dba26c583bac8dd0e551ce3d0509c7f55cad714db0b5c8d36e4c7ff"}, - {file = "langsmith-0.1.84.tar.gz", hash = "sha256:5220c0439838b9a5bd320fd3686be505c5083dcee22d2452006c23891153bea1"}, + {file = "langsmith-0.1.85-py3-none-any.whl", hash = "sha256:c1f94384f10cea96f7b4d33fd3db7ec180c03c7468877d50846f881d2017ff94"}, + {file = "langsmith-0.1.85.tar.gz", hash = "sha256:acff31f9e53efa48586cf8e32f65625a335c74d7c4fa306d1655ac18452296f6"}, ] [package.dependencies] diff --git a/airbyte-integrations/connectors/source-google-analytics-data-api/pyproject.toml b/airbyte-integrations/connectors/source-google-analytics-data-api/pyproject.toml index 9fcc11c8def8..1ab62c516bbe 100644 --- a/airbyte-integrations/connectors/source-google-analytics-data-api/pyproject.toml +++ b/airbyte-integrations/connectors/source-google-analytics-data-api/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "2.4.11" +version = "2.4.12" name = "source-google-analytics-data-api" description = "Source implementation for Google Analytics Data Api." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/google-analytics-data-api.md b/docs/integrations/sources/google-analytics-data-api.md index c8a9364e88ba..c560bcfaf5b2 100644 --- a/docs/integrations/sources/google-analytics-data-api.md +++ b/docs/integrations/sources/google-analytics-data-api.md @@ -268,6 +268,7 @@ The Google Analytics connector is subject to Google Analytics Data API quotas. P | Version | Date | Pull Request | Subject | |:--------|:-----------| :------------------------------------------------------- |:---------------------------------------------------------------------------------------| +| 2.4.12 | 2024-07-13 | [41801](https://github.com/airbytehq/airbyte/pull/41801) | Update dependencies | | 2.4.11 | 2024-07-10 | [41561](https://github.com/airbytehq/airbyte/pull/41561) | Update dependencies | | 2.4.10 | 2024-07-09 | [41295](https://github.com/airbytehq/airbyte/pull/41295) | Update dependencies | | 2.4.9 | 2024-07-06 | [40935](https://github.com/airbytehq/airbyte/pull/40935) | Update dependencies | From 35fe9a06f2a84c2b3ce51a59d49300e33708e83a Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:24:20 +0200 Subject: [PATCH 136/260] =?UTF-8?q?=F0=9F=90=99=20destination-databend:=20?= =?UTF-8?q?run=20up-to-date=20pipeline=20[2024-07-13]=20(#41800)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/destination-databend/metadata.yaml | 2 +- .../connectors/destination-databend/poetry.lock | 6 +++--- .../connectors/destination-databend/pyproject.toml | 2 +- docs/integrations/destinations/databend.md | 1 + 4 files changed, 6 insertions(+), 5 deletions(-) diff --git a/airbyte-integrations/connectors/destination-databend/metadata.yaml b/airbyte-integrations/connectors/destination-databend/metadata.yaml index e5885994a659..94f95716ddf0 100644 --- a/airbyte-integrations/connectors/destination-databend/metadata.yaml +++ b/airbyte-integrations/connectors/destination-databend/metadata.yaml @@ -2,7 +2,7 @@ data: connectorSubtype: database connectorType: destination definitionId: 302e4d8e-08d3-4098-acd4-ac67ca365b88 - dockerImageTag: 0.1.11 + dockerImageTag: 0.1.12 dockerRepository: airbyte/destination-databend githubIssueLabel: destination-databend icon: databend.svg diff --git a/airbyte-integrations/connectors/destination-databend/poetry.lock b/airbyte-integrations/connectors/destination-databend/poetry.lock index 94561656a76b..43ca2fef137c 100644 --- a/airbyte-integrations/connectors/destination-databend/poetry.lock +++ b/airbyte-integrations/connectors/destination-databend/poetry.lock @@ -340,13 +340,13 @@ tests = ["environs[django]", "pytest"] [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] diff --git a/airbyte-integrations/connectors/destination-databend/pyproject.toml b/airbyte-integrations/connectors/destination-databend/pyproject.toml index dd9b5a4c7c04..eebca9363a25 100644 --- a/airbyte-integrations/connectors/destination-databend/pyproject.toml +++ b/airbyte-integrations/connectors/destination-databend/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.1.11" +version = "0.1.12" name = "destination-databend" description = "Destination implementation for Databend." authors = [ "Airbyte ",] diff --git a/docs/integrations/destinations/databend.md b/docs/integrations/destinations/databend.md index b81f03207575..ed0ff93e65aa 100644 --- a/docs/integrations/destinations/databend.md +++ b/docs/integrations/destinations/databend.md @@ -72,6 +72,7 @@ And the [Databend Cloud](https://app.databend.com/) will only support databend v | Version | Date | Pull Request | Subject | | :------------------------------------------------------- | :--------------------------------------- | :-------------------------------------------------------- | :------------------------------------------------------- | ----------- | +| 0.1.12 | 2024-07-13 | [41800](https://github.com/airbytehq/airbyte/pull/41800) | Update dependencies | | 0.1.11 | 2024-07-10 | [41429](https://github.com/airbytehq/airbyte/pull/41429) | Update dependencies | | 0.1.10 | 2024-07-09 | [41243](https://github.com/airbytehq/airbyte/pull/41243) | Update dependencies | | 0.1.9 | 2024-07-06 | [40916](https://github.com/airbytehq/airbyte/pull/40916) | Update dependencies | From b80a4a13c7b676bab8ed6bc1080451a4c7c26507 Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:24:24 +0200 Subject: [PATCH 137/260] =?UTF-8?q?=F0=9F=90=99=20source-fullstory:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-07-13]=20(#41798)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-fullstory/metadata.yaml | 2 +- .../connectors/source-fullstory/poetry.lock | 12 ++++++------ .../connectors/source-fullstory/pyproject.toml | 2 +- docs/integrations/sources/fullstory.md | 1 + 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/airbyte-integrations/connectors/source-fullstory/metadata.yaml b/airbyte-integrations/connectors/source-fullstory/metadata.yaml index 55707d65d7d6..88c131925a58 100644 --- a/airbyte-integrations/connectors/source-fullstory/metadata.yaml +++ b/airbyte-integrations/connectors/source-fullstory/metadata.yaml @@ -2,7 +2,7 @@ data: connectorSubtype: api connectorType: source definitionId: 263fd456-02d1-4a26-a35e-52ccaedad778 - dockerImageTag: 0.1.7 + dockerImageTag: 0.1.8 dockerRepository: airbyte/source-fullstory githubIssueLabel: source-fullstory icon: fullstory.svg diff --git a/airbyte-integrations/connectors/source-fullstory/poetry.lock b/airbyte-integrations/connectors/source-fullstory/poetry.lock index 1c7c00978d43..728f233c17e0 100644 --- a/airbyte-integrations/connectors/source-fullstory/poetry.lock +++ b/airbyte-integrations/connectors/source-fullstory/poetry.lock @@ -410,13 +410,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] @@ -566,13 +566,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.84" +version = "0.1.85" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.84-py3-none-any.whl", hash = "sha256:01f3c6390dba26c583bac8dd0e551ce3d0509c7f55cad714db0b5c8d36e4c7ff"}, - {file = "langsmith-0.1.84.tar.gz", hash = "sha256:5220c0439838b9a5bd320fd3686be505c5083dcee22d2452006c23891153bea1"}, + {file = "langsmith-0.1.85-py3-none-any.whl", hash = "sha256:c1f94384f10cea96f7b4d33fd3db7ec180c03c7468877d50846f881d2017ff94"}, + {file = "langsmith-0.1.85.tar.gz", hash = "sha256:acff31f9e53efa48586cf8e32f65625a335c74d7c4fa306d1655ac18452296f6"}, ] [package.dependencies] diff --git a/airbyte-integrations/connectors/source-fullstory/pyproject.toml b/airbyte-integrations/connectors/source-fullstory/pyproject.toml index 24efa9a4e9e3..068c55590b10 100644 --- a/airbyte-integrations/connectors/source-fullstory/pyproject.toml +++ b/airbyte-integrations/connectors/source-fullstory/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.1.7" +version = "0.1.8" name = "source-fullstory" description = "Source implementation for Fullstory." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/fullstory.md b/docs/integrations/sources/fullstory.md index 268ab995e1b2..a63962a51f83 100644 --- a/docs/integrations/sources/fullstory.md +++ b/docs/integrations/sources/fullstory.md @@ -73,6 +73,7 @@ FullStory [API reference](https://api.fullstory.com) has v1 at present. The conn | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------- | :------------- | +| 0.1.8 | 2024-07-13 | [41798](https://github.com/airbytehq/airbyte/pull/41798) | Update dependencies | | 0.1.7 | 2024-07-10 | [41387](https://github.com/airbytehq/airbyte/pull/41387) | Update dependencies | | 0.1.6 | 2024-07-09 | [41190](https://github.com/airbytehq/airbyte/pull/41190) | Update dependencies | | 0.1.5 | 2024-07-06 | [40867](https://github.com/airbytehq/airbyte/pull/40867) | Update dependencies | From 16ce4f896c912285d7b37fa6c36afcd6d5ca65c2 Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:24:27 +0200 Subject: [PATCH 138/260] =?UTF-8?q?=F0=9F=90=99=20source-emailoctopus:=20r?= =?UTF-8?q?un=20up-to-date=20pipeline=20[2024-07-13]=20(#41797)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-emailoctopus/metadata.yaml | 2 +- .../connectors/source-emailoctopus/poetry.lock | 6 +++--- .../connectors/source-emailoctopus/pyproject.toml | 2 +- docs/integrations/sources/emailoctopus.md | 1 + 4 files changed, 6 insertions(+), 5 deletions(-) diff --git a/airbyte-integrations/connectors/source-emailoctopus/metadata.yaml b/airbyte-integrations/connectors/source-emailoctopus/metadata.yaml index 49a920ef39b0..32d87292b892 100644 --- a/airbyte-integrations/connectors/source-emailoctopus/metadata.yaml +++ b/airbyte-integrations/connectors/source-emailoctopus/metadata.yaml @@ -7,7 +7,7 @@ data: connectorSubtype: api connectorType: source definitionId: 46b25e70-c980-4590-a811-8deaf50ee09f - dockerImageTag: 0.1.10 + dockerImageTag: 0.1.11 dockerRepository: airbyte/source-emailoctopus documentationUrl: https://docs.airbyte.com/integrations/sources/emailoctopus githubIssueLabel: source-emailoctopus diff --git a/airbyte-integrations/connectors/source-emailoctopus/poetry.lock b/airbyte-integrations/connectors/source-emailoctopus/poetry.lock index 6f83e5bed3a6..c0f7f643d050 100644 --- a/airbyte-integrations/connectors/source-emailoctopus/poetry.lock +++ b/airbyte-integrations/connectors/source-emailoctopus/poetry.lock @@ -288,13 +288,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] diff --git a/airbyte-integrations/connectors/source-emailoctopus/pyproject.toml b/airbyte-integrations/connectors/source-emailoctopus/pyproject.toml index b350d7d210cd..a5f2e9b5927e 100644 --- a/airbyte-integrations/connectors/source-emailoctopus/pyproject.toml +++ b/airbyte-integrations/connectors/source-emailoctopus/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.1.10" +version = "0.1.11" name = "source-emailoctopus" description = "Source implementation for Emailoctopus." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/emailoctopus.md b/docs/integrations/sources/emailoctopus.md index 8195fad579a4..63cf159876cc 100644 --- a/docs/integrations/sources/emailoctopus.md +++ b/docs/integrations/sources/emailoctopus.md @@ -28,6 +28,7 @@ No documented strict rate limit. | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :------------------------------------------------------------------------------ | +| 0.1.11 | 2024-07-13 | [41797](https://github.com/airbytehq/airbyte/pull/41797) | Update dependencies | | 0.1.10 | 2024-07-10 | [41447](https://github.com/airbytehq/airbyte/pull/41447) | Update dependencies | | 0.1.9 | 2024-07-09 | [41283](https://github.com/airbytehq/airbyte/pull/41283) | Update dependencies | | 0.1.8 | 2024-07-06 | [40920](https://github.com/airbytehq/airbyte/pull/40920) | Update dependencies | From bd8afadab046fbcdbe130fbe449864abd4e0fdd5 Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:24:29 +0200 Subject: [PATCH 139/260] =?UTF-8?q?=F0=9F=90=99=20source-wrike:=20run=20up?= =?UTF-8?q?-to-date=20pipeline=20[2024-07-13]=20(#41796)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-wrike/metadata.yaml | 2 +- .../connectors/source-wrike/poetry.lock | 12 ++++++------ .../connectors/source-wrike/pyproject.toml | 2 +- docs/integrations/sources/wrike.md | 1 + 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/airbyte-integrations/connectors/source-wrike/metadata.yaml b/airbyte-integrations/connectors/source-wrike/metadata.yaml index 1078653296b7..4183b892bdb5 100644 --- a/airbyte-integrations/connectors/source-wrike/metadata.yaml +++ b/airbyte-integrations/connectors/source-wrike/metadata.yaml @@ -18,7 +18,7 @@ data: connectorSubtype: api connectorType: source definitionId: 9c13f986-a13b-4988-b808-4705badf71c2 - dockerImageTag: 0.2.8 + dockerImageTag: 0.2.9 dockerRepository: airbyte/source-wrike githubIssueLabel: source-wrike icon: wrike.svg diff --git a/airbyte-integrations/connectors/source-wrike/poetry.lock b/airbyte-integrations/connectors/source-wrike/poetry.lock index 351dd514d053..225b4ef0e245 100644 --- a/airbyte-integrations/connectors/source-wrike/poetry.lock +++ b/airbyte-integrations/connectors/source-wrike/poetry.lock @@ -410,13 +410,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] @@ -566,13 +566,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.84" +version = "0.1.85" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.84-py3-none-any.whl", hash = "sha256:01f3c6390dba26c583bac8dd0e551ce3d0509c7f55cad714db0b5c8d36e4c7ff"}, - {file = "langsmith-0.1.84.tar.gz", hash = "sha256:5220c0439838b9a5bd320fd3686be505c5083dcee22d2452006c23891153bea1"}, + {file = "langsmith-0.1.85-py3-none-any.whl", hash = "sha256:c1f94384f10cea96f7b4d33fd3db7ec180c03c7468877d50846f881d2017ff94"}, + {file = "langsmith-0.1.85.tar.gz", hash = "sha256:acff31f9e53efa48586cf8e32f65625a335c74d7c4fa306d1655ac18452296f6"}, ] [package.dependencies] diff --git a/airbyte-integrations/connectors/source-wrike/pyproject.toml b/airbyte-integrations/connectors/source-wrike/pyproject.toml index 24692529c9f2..bfdf01f1dc2d 100644 --- a/airbyte-integrations/connectors/source-wrike/pyproject.toml +++ b/airbyte-integrations/connectors/source-wrike/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.2.8" +version = "0.2.9" name = "source-wrike" description = "Source implementation for Wrike." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/wrike.md b/docs/integrations/sources/wrike.md index 316a0ec6a496..73cb4fa9a98a 100644 --- a/docs/integrations/sources/wrike.md +++ b/docs/integrations/sources/wrike.md @@ -50,6 +50,7 @@ The Wrike connector should not run into Wrike API limitations under normal usage | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- |:-----------------------------------------------------------------------| +| 0.2.9 | 2024-07-13 | [41796](https://github.com/airbytehq/airbyte/pull/41796) | Update dependencies | | 0.2.8 | 2024-07-10 | [41360](https://github.com/airbytehq/airbyte/pull/41360) | Update dependencies | | 0.2.7 | 2024-07-09 | [41278](https://github.com/airbytehq/airbyte/pull/41278) | Update dependencies | | 0.2.6 | 2024-07-06 | [40954](https://github.com/airbytehq/airbyte/pull/40954) | Update dependencies | From 8825ba1b5a5d13ae1974ded6e553a445812ad9d8 Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:24:32 +0200 Subject: [PATCH 140/260] =?UTF-8?q?=F0=9F=90=99=20destination-xata:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-07-13]=20(#41795)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/destination-xata/metadata.yaml | 2 +- .../connectors/destination-xata/poetry.lock | 6 +++--- .../connectors/destination-xata/pyproject.toml | 2 +- docs/integrations/destinations/xata.md | 1 + 4 files changed, 6 insertions(+), 5 deletions(-) diff --git a/airbyte-integrations/connectors/destination-xata/metadata.yaml b/airbyte-integrations/connectors/destination-xata/metadata.yaml index 1824267a9d00..ea6c5d990817 100644 --- a/airbyte-integrations/connectors/destination-xata/metadata.yaml +++ b/airbyte-integrations/connectors/destination-xata/metadata.yaml @@ -7,7 +7,7 @@ data: connectorSubtype: database connectorType: destination definitionId: 2a51c92d-0fb4-4e54-94d2-cce631f24d1f - dockerImageTag: 0.1.9 + dockerImageTag: 0.1.10 dockerRepository: airbyte/destination-xata githubIssueLabel: destination-xata icon: xata.svg diff --git a/airbyte-integrations/connectors/destination-xata/poetry.lock b/airbyte-integrations/connectors/destination-xata/poetry.lock index 8f7d4ad10349..56b8ecec2749 100644 --- a/airbyte-integrations/connectors/destination-xata/poetry.lock +++ b/airbyte-integrations/connectors/destination-xata/poetry.lock @@ -303,13 +303,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] diff --git a/airbyte-integrations/connectors/destination-xata/pyproject.toml b/airbyte-integrations/connectors/destination-xata/pyproject.toml index fe5f29774f03..8a8ff560714e 100644 --- a/airbyte-integrations/connectors/destination-xata/pyproject.toml +++ b/airbyte-integrations/connectors/destination-xata/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.1.9" +version = "0.1.10" name = "destination-xata" description = "Destination implementation for Xata.io" authors = [ "Philip Krauss ",] diff --git a/docs/integrations/destinations/xata.md b/docs/integrations/destinations/xata.md index 4e7607f097d4..ac07316f43b0 100644 --- a/docs/integrations/destinations/xata.md +++ b/docs/integrations/destinations/xata.md @@ -40,6 +40,7 @@ In order to connect, you need: | Version | Date | Pull Request | Subject | | :------ | :--------- | :-------------------------------------------------------- | :----------------------------- | +| 0.1.10 | 2024-07-13 | [41795](https://github.com/airbytehq/airbyte/pull/41795) | Update dependencies | | 0.1.9 | 2024-07-10 | [41481](https://github.com/airbytehq/airbyte/pull/41481) | Update dependencies | | 0.1.8 | 2024-07-09 | [41238](https://github.com/airbytehq/airbyte/pull/41238) | Update dependencies | | 0.1.7 | 2024-07-06 | [40949](https://github.com/airbytehq/airbyte/pull/40949) | Update dependencies | From 6bcf05a9a004191f5022d4b4df766e0759250d41 Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:24:35 +0200 Subject: [PATCH 141/260] =?UTF-8?q?=F0=9F=90=99=20source-gong:=20run=20up-?= =?UTF-8?q?to-date=20pipeline=20[2024-07-13]=20(#41794)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-gong/metadata.yaml | 2 +- airbyte-integrations/connectors/source-gong/poetry.lock | 6 +++--- airbyte-integrations/connectors/source-gong/pyproject.toml | 2 +- docs/integrations/sources/gong.md | 1 + 4 files changed, 6 insertions(+), 5 deletions(-) diff --git a/airbyte-integrations/connectors/source-gong/metadata.yaml b/airbyte-integrations/connectors/source-gong/metadata.yaml index c7b02870f43d..70ca367ce9b9 100644 --- a/airbyte-integrations/connectors/source-gong/metadata.yaml +++ b/airbyte-integrations/connectors/source-gong/metadata.yaml @@ -7,7 +7,7 @@ data: connectorSubtype: api connectorType: source definitionId: 32382e40-3b49-4b99-9c5c-4076501914e7 - dockerImageTag: 0.1.12 + dockerImageTag: 0.1.13 dockerRepository: airbyte/source-gong documentationUrl: https://docs.airbyte.com/integrations/sources/gong githubIssueLabel: source-gong diff --git a/airbyte-integrations/connectors/source-gong/poetry.lock b/airbyte-integrations/connectors/source-gong/poetry.lock index 6f83e5bed3a6..c0f7f643d050 100644 --- a/airbyte-integrations/connectors/source-gong/poetry.lock +++ b/airbyte-integrations/connectors/source-gong/poetry.lock @@ -288,13 +288,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] diff --git a/airbyte-integrations/connectors/source-gong/pyproject.toml b/airbyte-integrations/connectors/source-gong/pyproject.toml index 296f5c423b52..5b17f44ecf76 100644 --- a/airbyte-integrations/connectors/source-gong/pyproject.toml +++ b/airbyte-integrations/connectors/source-gong/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.1.12" +version = "0.1.13" name = "source-gong" description = "Source implementation for Gong." authors = [ "Elliot Trabac ",] diff --git a/docs/integrations/sources/gong.md b/docs/integrations/sources/gong.md index 6142720234d9..7e2fcd7dcd28 100644 --- a/docs/integrations/sources/gong.md +++ b/docs/integrations/sources/gong.md @@ -39,6 +39,7 @@ By default Gong limits your company's access to the service to 3 API calls per s | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :------------------------------------------------------------------------------ | +| 0.1.13 | 2024-07-13 | [41794](https://github.com/airbytehq/airbyte/pull/41794) | Update dependencies | | 0.1.12 | 2024-07-10 | [41408](https://github.com/airbytehq/airbyte/pull/41408) | Update dependencies | | 0.1.11 | 2024-07-09 | [41110](https://github.com/airbytehq/airbyte/pull/41110) | Update dependencies | | 0.1.10 | 2024-07-06 | [40890](https://github.com/airbytehq/airbyte/pull/40890) | Update dependencies | From 0a6d23cdecf5f0513336fe6884df1fcd03e22ab0 Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:24:40 +0200 Subject: [PATCH 142/260] =?UTF-8?q?=F0=9F=90=99=20destination-milvus:=20ru?= =?UTF-8?q?n=20up-to-date=20pipeline=20[2024-07-13]=20(#41793)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/destination-milvus/metadata.yaml | 2 +- .../connectors/destination-milvus/poetry.lock | 12 ++++++------ .../connectors/destination-milvus/pyproject.toml | 2 +- docs/integrations/destinations/milvus.md | 1 + 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/airbyte-integrations/connectors/destination-milvus/metadata.yaml b/airbyte-integrations/connectors/destination-milvus/metadata.yaml index 1bfcf99865d7..af0eeeb7d43b 100644 --- a/airbyte-integrations/connectors/destination-milvus/metadata.yaml +++ b/airbyte-integrations/connectors/destination-milvus/metadata.yaml @@ -22,7 +22,7 @@ data: connectorSubtype: vectorstore connectorType: destination definitionId: 65de8962-48c9-11ee-be56-0242ac120002 - dockerImageTag: 0.0.20 + dockerImageTag: 0.0.21 dockerRepository: airbyte/destination-milvus githubIssueLabel: destination-milvus icon: milvus.svg diff --git a/airbyte-integrations/connectors/destination-milvus/poetry.lock b/airbyte-integrations/connectors/destination-milvus/poetry.lock index bbbc374f1466..137d655a8bc2 100644 --- a/airbyte-integrations/connectors/destination-milvus/poetry.lock +++ b/airbyte-integrations/connectors/destination-milvus/poetry.lock @@ -548,13 +548,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] @@ -1268,13 +1268,13 @@ extended-testing = ["beautifulsoup4 (>=4.12.3,<5.0.0)", "lxml (>=4.9.3,<6.0)"] [[package]] name = "langsmith" -version = "0.1.84" +version = "0.1.85" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.84-py3-none-any.whl", hash = "sha256:01f3c6390dba26c583bac8dd0e551ce3d0509c7f55cad714db0b5c8d36e4c7ff"}, - {file = "langsmith-0.1.84.tar.gz", hash = "sha256:5220c0439838b9a5bd320fd3686be505c5083dcee22d2452006c23891153bea1"}, + {file = "langsmith-0.1.85-py3-none-any.whl", hash = "sha256:c1f94384f10cea96f7b4d33fd3db7ec180c03c7468877d50846f881d2017ff94"}, + {file = "langsmith-0.1.85.tar.gz", hash = "sha256:acff31f9e53efa48586cf8e32f65625a335c74d7c4fa306d1655ac18452296f6"}, ] [package.dependencies] diff --git a/airbyte-integrations/connectors/destination-milvus/pyproject.toml b/airbyte-integrations/connectors/destination-milvus/pyproject.toml index b3fb1a331dc2..971d3d2f419b 100644 --- a/airbyte-integrations/connectors/destination-milvus/pyproject.toml +++ b/airbyte-integrations/connectors/destination-milvus/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name = "airbyte-destination-milvus" -version = "0.0.20" +version = "0.0.21" description = "Airbyte destination implementation for Milvus." authors = ["Airbyte "] license = "MIT" diff --git a/docs/integrations/destinations/milvus.md b/docs/integrations/destinations/milvus.md index 92417f0e449e..50d9562fe75f 100644 --- a/docs/integrations/destinations/milvus.md +++ b/docs/integrations/destinations/milvus.md @@ -116,6 +116,7 @@ vector_store.similarity_search("test") | Version | Date | Pull Request | Subject | | :------ | :--------- | :-------------------------------------------------------- | :-------------------------------------------------------------------------------------------------------------------------------------------------- | +| 0.0.21 | 2024-07-13 | [41793](https://github.com/airbytehq/airbyte/pull/41793) | Update dependencies | | 0.0.20 | 2024-07-10 | [41495](https://github.com/airbytehq/airbyte/pull/41495) | Update dependencies | | 0.0.19 | 2024-07-06 | [40632](https://github.com/airbytehq/airbyte/pull/40632) | Update dependencies | | 0.0.18 | 2024-06-26 | [40537](https://github.com/airbytehq/airbyte/pull/40537) | Update dependencies | From c193580c3de82ae5a9af85937b3446bfff14cd37 Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:24:43 +0200 Subject: [PATCH 143/260] =?UTF-8?q?=F0=9F=90=99=20source-senseforce:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-07-13]=20(#41792)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-senseforce/metadata.yaml | 2 +- .../connectors/source-senseforce/poetry.lock | 12 ++++++------ .../connectors/source-senseforce/pyproject.toml | 2 +- docs/integrations/sources/senseforce.md | 1 + 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/airbyte-integrations/connectors/source-senseforce/metadata.yaml b/airbyte-integrations/connectors/source-senseforce/metadata.yaml index fd79f52634a5..b97a848ffa06 100644 --- a/airbyte-integrations/connectors/source-senseforce/metadata.yaml +++ b/airbyte-integrations/connectors/source-senseforce/metadata.yaml @@ -6,7 +6,7 @@ data: connectorSubtype: api connectorType: source definitionId: 39de93cb-1511-473e-a673-5cbedb9436af - dockerImageTag: 0.1.9 + dockerImageTag: 0.1.10 dockerRepository: airbyte/source-senseforce githubIssueLabel: source-senseforce icon: senseforce.svg diff --git a/airbyte-integrations/connectors/source-senseforce/poetry.lock b/airbyte-integrations/connectors/source-senseforce/poetry.lock index f9a1a5c18529..4fffd5ec2a96 100644 --- a/airbyte-integrations/connectors/source-senseforce/poetry.lock +++ b/airbyte-integrations/connectors/source-senseforce/poetry.lock @@ -410,13 +410,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] @@ -566,13 +566,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.84" +version = "0.1.85" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.84-py3-none-any.whl", hash = "sha256:01f3c6390dba26c583bac8dd0e551ce3d0509c7f55cad714db0b5c8d36e4c7ff"}, - {file = "langsmith-0.1.84.tar.gz", hash = "sha256:5220c0439838b9a5bd320fd3686be505c5083dcee22d2452006c23891153bea1"}, + {file = "langsmith-0.1.85-py3-none-any.whl", hash = "sha256:c1f94384f10cea96f7b4d33fd3db7ec180c03c7468877d50846f881d2017ff94"}, + {file = "langsmith-0.1.85.tar.gz", hash = "sha256:acff31f9e53efa48586cf8e32f65625a335c74d7c4fa306d1655ac18452296f6"}, ] [package.dependencies] diff --git a/airbyte-integrations/connectors/source-senseforce/pyproject.toml b/airbyte-integrations/connectors/source-senseforce/pyproject.toml index c6d9c69609c7..577f18b02246 100644 --- a/airbyte-integrations/connectors/source-senseforce/pyproject.toml +++ b/airbyte-integrations/connectors/source-senseforce/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.1.9" +version = "0.1.10" name = "source-senseforce" description = "Source implementation for Senseforce." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/senseforce.md b/docs/integrations/sources/senseforce.md index 9fecca43316a..d7eeffc74455 100644 --- a/docs/integrations/sources/senseforce.md +++ b/docs/integrations/sources/senseforce.md @@ -87,6 +87,7 @@ Senseforce utilizes an undocumented rate limit which - under normal use - should | Version | Date | Pull Request | Subject | | :------ | :--------- | :-------------------------------------------------------- | :-------------------------------------------- | +| 0.1.10 | 2024-07-13 | [41792](https://github.com/airbytehq/airbyte/pull/41792) | Update dependencies | | 0.1.9 | 2024-07-10 | [41402](https://github.com/airbytehq/airbyte/pull/41402) | Update dependencies | | 0.1.8 | 2024-07-09 | [41242](https://github.com/airbytehq/airbyte/pull/41242) | Update dependencies | | 0.1.7 | 2024-07-06 | [40914](https://github.com/airbytehq/airbyte/pull/40914) | Update dependencies | From eabe0fe45f1591a57a5a3b18dc2a88a462a236e8 Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:24:46 +0200 Subject: [PATCH 144/260] =?UTF-8?q?=F0=9F=90=99=20source-newsdata:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-07-13]=20(#41791)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-newsdata/metadata.yaml | 2 +- airbyte-integrations/connectors/source-newsdata/poetry.lock | 6 +++--- .../connectors/source-newsdata/pyproject.toml | 2 +- docs/integrations/sources/newsdata.md | 1 + 4 files changed, 6 insertions(+), 5 deletions(-) diff --git a/airbyte-integrations/connectors/source-newsdata/metadata.yaml b/airbyte-integrations/connectors/source-newsdata/metadata.yaml index e0673e0ef301..e2fc48739ded 100644 --- a/airbyte-integrations/connectors/source-newsdata/metadata.yaml +++ b/airbyte-integrations/connectors/source-newsdata/metadata.yaml @@ -7,7 +7,7 @@ data: connectorSubtype: api connectorType: source definitionId: 60bd11d8-2632-4daa-a688-b47336d32093 - dockerImageTag: 0.1.10 + dockerImageTag: 0.1.11 dockerRepository: airbyte/source-newsdata documentationUrl: https://docs.airbyte.com/integrations/sources/newsdata githubIssueLabel: source-newsdata diff --git a/airbyte-integrations/connectors/source-newsdata/poetry.lock b/airbyte-integrations/connectors/source-newsdata/poetry.lock index 6f83e5bed3a6..c0f7f643d050 100644 --- a/airbyte-integrations/connectors/source-newsdata/poetry.lock +++ b/airbyte-integrations/connectors/source-newsdata/poetry.lock @@ -288,13 +288,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] diff --git a/airbyte-integrations/connectors/source-newsdata/pyproject.toml b/airbyte-integrations/connectors/source-newsdata/pyproject.toml index 53989ebf53bc..1375b7440443 100644 --- a/airbyte-integrations/connectors/source-newsdata/pyproject.toml +++ b/airbyte-integrations/connectors/source-newsdata/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.1.10" +version = "0.1.11" name = "source-newsdata" description = "Source implementation for Newsdata." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/newsdata.md b/docs/integrations/sources/newsdata.md index 15e976d3720e..402006fc04c4 100644 --- a/docs/integrations/sources/newsdata.md +++ b/docs/integrations/sources/newsdata.md @@ -48,6 +48,7 @@ The following fields are required fields for the connector to work: | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :------------------------------------------------------------------------------ | +| 0.1.11 | 2024-07-13 | [41791](https://github.com/airbytehq/airbyte/pull/41791) | Update dependencies | | 0.1.10 | 2024-07-10 | [41567](https://github.com/airbytehq/airbyte/pull/41567) | Update dependencies | | 0.1.9 | 2024-07-09 | [41138](https://github.com/airbytehq/airbyte/pull/41138) | Update dependencies | | 0.1.8 | 2024-07-06 | [40852](https://github.com/airbytehq/airbyte/pull/40852) | Update dependencies | From f2a2441c7befe76e0193676cf9431bb09b493317 Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:24:49 +0200 Subject: [PATCH 145/260] =?UTF-8?q?=F0=9F=90=99=20source-whisky-hunter:=20?= =?UTF-8?q?run=20up-to-date=20pipeline=20[2024-07-13]=20(#41790)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-whisky-hunter/metadata.yaml | 2 +- .../connectors/source-whisky-hunter/poetry.lock | 12 ++++++------ .../connectors/source-whisky-hunter/pyproject.toml | 2 +- docs/integrations/sources/whisky-hunter.md | 1 + 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/airbyte-integrations/connectors/source-whisky-hunter/metadata.yaml b/airbyte-integrations/connectors/source-whisky-hunter/metadata.yaml index a31246d5cc67..80c9cdf0e44a 100644 --- a/airbyte-integrations/connectors/source-whisky-hunter/metadata.yaml +++ b/airbyte-integrations/connectors/source-whisky-hunter/metadata.yaml @@ -2,7 +2,7 @@ data: connectorSubtype: api connectorType: source definitionId: e65f84c0-7598-458a-bfac-f770c381ff5d - dockerImageTag: 0.1.8 + dockerImageTag: 0.1.9 dockerRepository: airbyte/source-whisky-hunter githubIssueLabel: source-whisky-hunter icon: whiskyhunter.svg diff --git a/airbyte-integrations/connectors/source-whisky-hunter/poetry.lock b/airbyte-integrations/connectors/source-whisky-hunter/poetry.lock index 4b03cc351726..13836360394d 100644 --- a/airbyte-integrations/connectors/source-whisky-hunter/poetry.lock +++ b/airbyte-integrations/connectors/source-whisky-hunter/poetry.lock @@ -410,13 +410,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] @@ -566,13 +566,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.84" +version = "0.1.85" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.84-py3-none-any.whl", hash = "sha256:01f3c6390dba26c583bac8dd0e551ce3d0509c7f55cad714db0b5c8d36e4c7ff"}, - {file = "langsmith-0.1.84.tar.gz", hash = "sha256:5220c0439838b9a5bd320fd3686be505c5083dcee22d2452006c23891153bea1"}, + {file = "langsmith-0.1.85-py3-none-any.whl", hash = "sha256:c1f94384f10cea96f7b4d33fd3db7ec180c03c7468877d50846f881d2017ff94"}, + {file = "langsmith-0.1.85.tar.gz", hash = "sha256:acff31f9e53efa48586cf8e32f65625a335c74d7c4fa306d1655ac18452296f6"}, ] [package.dependencies] diff --git a/airbyte-integrations/connectors/source-whisky-hunter/pyproject.toml b/airbyte-integrations/connectors/source-whisky-hunter/pyproject.toml index f7484ef72576..78adf3e88d5a 100644 --- a/airbyte-integrations/connectors/source-whisky-hunter/pyproject.toml +++ b/airbyte-integrations/connectors/source-whisky-hunter/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.1.8" +version = "0.1.9" name = "source-whisky-hunter" description = "Source implementation for Whisky Hunter." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/whisky-hunter.md b/docs/integrations/sources/whisky-hunter.md index a8cb0744149a..1f992ad322fb 100644 --- a/docs/integrations/sources/whisky-hunter.md +++ b/docs/integrations/sources/whisky-hunter.md @@ -38,6 +38,7 @@ There is no published rate limit. However, since this data updates infrequently, | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :----------------------------------------------- | +| 0.1.9 | 2024-07-13 | [41790](https://github.com/airbytehq/airbyte/pull/41790) | Update dependencies | | 0.1.8 | 2024-07-10 | [41474](https://github.com/airbytehq/airbyte/pull/41474) | Update dependencies | | 0.1.7 | 2024-07-09 | [41217](https://github.com/airbytehq/airbyte/pull/41217) | Update dependencies | | 0.1.6 | 2024-07-06 | [40841](https://github.com/airbytehq/airbyte/pull/40841) | Update dependencies | From dad82f76427da397d1776f97b68909245d3548c7 Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:24:52 +0200 Subject: [PATCH 146/260] =?UTF-8?q?=F0=9F=90=99=20destination-firebolt:=20?= =?UTF-8?q?run=20up-to-date=20pipeline=20[2024-07-13]=20(#41789)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/destination-firebolt/metadata.yaml | 2 +- .../connectors/destination-firebolt/poetry.lock | 6 +++--- .../connectors/destination-firebolt/pyproject.toml | 2 +- docs/integrations/destinations/firebolt.md | 1 + 4 files changed, 6 insertions(+), 5 deletions(-) diff --git a/airbyte-integrations/connectors/destination-firebolt/metadata.yaml b/airbyte-integrations/connectors/destination-firebolt/metadata.yaml index 5b4d80f2c007..68b24f5a56dc 100644 --- a/airbyte-integrations/connectors/destination-firebolt/metadata.yaml +++ b/airbyte-integrations/connectors/destination-firebolt/metadata.yaml @@ -2,7 +2,7 @@ data: connectorSubtype: database connectorType: destination definitionId: 18081484-02a5-4662-8dba-b270b582f321 - dockerImageTag: 0.2.7 + dockerImageTag: 0.2.8 dockerRepository: airbyte/destination-firebolt githubIssueLabel: destination-firebolt connectorBuildOptions: diff --git a/airbyte-integrations/connectors/destination-firebolt/poetry.lock b/airbyte-integrations/connectors/destination-firebolt/poetry.lock index 1db5fb4ae525..ccf06b1c628c 100644 --- a/airbyte-integrations/connectors/destination-firebolt/poetry.lock +++ b/airbyte-integrations/connectors/destination-firebolt/poetry.lock @@ -487,13 +487,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] diff --git a/airbyte-integrations/connectors/destination-firebolt/pyproject.toml b/airbyte-integrations/connectors/destination-firebolt/pyproject.toml index 60e537182148..ce60ff8d74c2 100644 --- a/airbyte-integrations/connectors/destination-firebolt/pyproject.toml +++ b/airbyte-integrations/connectors/destination-firebolt/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.2.7" +version = "0.2.8" name = "destination-firebolt" description = "Destination implementation for Firebolt." authors = [ "Airbyte ",] diff --git a/docs/integrations/destinations/firebolt.md b/docs/integrations/destinations/firebolt.md index 43b25562ad23..8cb76eb69006 100644 --- a/docs/integrations/destinations/firebolt.md +++ b/docs/integrations/destinations/firebolt.md @@ -98,6 +98,7 @@ Firebolt. Each table will contain 3 columns: | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :------------------------------------- | +| 0.2.8 | 2024-07-13 | [41789](https://github.com/airbytehq/airbyte/pull/41789) | Update dependencies | | 0.2.7 | 2024-07-10 | [41602](https://github.com/airbytehq/airbyte/pull/41602) | Update dependencies | | 0.2.6 | 2024-07-09 | [41118](https://github.com/airbytehq/airbyte/pull/41118) | Update dependencies | | 0.2.5 | 2024-07-06 | [40854](https://github.com/airbytehq/airbyte/pull/40854) | Update dependencies | From 197abca57841730ddbbde2d5fbb37b28f5cf5d6b Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:24:54 +0200 Subject: [PATCH 147/260] =?UTF-8?q?=F0=9F=90=99=20source-callrail:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-07-13]=20(#41788)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-callrail/metadata.yaml | 2 +- .../connectors/source-callrail/poetry.lock | 12 ++++++------ .../connectors/source-callrail/pyproject.toml | 2 +- docs/integrations/sources/callrail.md | 1 + 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/airbyte-integrations/connectors/source-callrail/metadata.yaml b/airbyte-integrations/connectors/source-callrail/metadata.yaml index e324426f6cae..b10b95a363da 100644 --- a/airbyte-integrations/connectors/source-callrail/metadata.yaml +++ b/airbyte-integrations/connectors/source-callrail/metadata.yaml @@ -2,7 +2,7 @@ data: connectorSubtype: api connectorType: source definitionId: dc98a6ad-2dd1-47b6-9529-2ec35820f9c6 - dockerImageTag: 0.1.7 + dockerImageTag: 0.1.8 dockerRepository: airbyte/source-callrail githubIssueLabel: source-callrail icon: callrail.svg diff --git a/airbyte-integrations/connectors/source-callrail/poetry.lock b/airbyte-integrations/connectors/source-callrail/poetry.lock index 4b03cc351726..13836360394d 100644 --- a/airbyte-integrations/connectors/source-callrail/poetry.lock +++ b/airbyte-integrations/connectors/source-callrail/poetry.lock @@ -410,13 +410,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] @@ -566,13 +566,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.84" +version = "0.1.85" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.84-py3-none-any.whl", hash = "sha256:01f3c6390dba26c583bac8dd0e551ce3d0509c7f55cad714db0b5c8d36e4c7ff"}, - {file = "langsmith-0.1.84.tar.gz", hash = "sha256:5220c0439838b9a5bd320fd3686be505c5083dcee22d2452006c23891153bea1"}, + {file = "langsmith-0.1.85-py3-none-any.whl", hash = "sha256:c1f94384f10cea96f7b4d33fd3db7ec180c03c7468877d50846f881d2017ff94"}, + {file = "langsmith-0.1.85.tar.gz", hash = "sha256:acff31f9e53efa48586cf8e32f65625a335c74d7c4fa306d1655ac18452296f6"}, ] [package.dependencies] diff --git a/airbyte-integrations/connectors/source-callrail/pyproject.toml b/airbyte-integrations/connectors/source-callrail/pyproject.toml index dccb3dab4d92..23c9bdb84367 100644 --- a/airbyte-integrations/connectors/source-callrail/pyproject.toml +++ b/airbyte-integrations/connectors/source-callrail/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.1.7" +version = "0.1.8" name = "source-callrail" description = "Source implementation for Callrail." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/callrail.md b/docs/integrations/sources/callrail.md index a8243c4117db..91e3a425480c 100644 --- a/docs/integrations/sources/callrail.md +++ b/docs/integrations/sources/callrail.md @@ -37,6 +37,7 @@ This Source is capable of syncing the following core Streams: | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :---------------------- | +| 0.1.8 | 2024-07-13 | [41788](https://github.com/airbytehq/airbyte/pull/41788) | Update dependencies | | 0.1.7 | 2024-07-10 | [41551](https://github.com/airbytehq/airbyte/pull/41551) | Update dependencies | | 0.1.6 | 2024-07-09 | [41129](https://github.com/airbytehq/airbyte/pull/41129) | Update dependencies | | 0.1.5 | 2024-07-06 | [40833](https://github.com/airbytehq/airbyte/pull/40833) | Update dependencies | From 4bbeb0f28c7395478d444457832df2709415aef3 Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:24:57 +0200 Subject: [PATCH 148/260] =?UTF-8?q?=F0=9F=90=99=20source-greenhouse:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-07-13]=20(#41787)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-greenhouse/metadata.yaml | 2 +- .../connectors/source-greenhouse/poetry.lock | 6 +++--- .../connectors/source-greenhouse/pyproject.toml | 2 +- docs/integrations/sources/greenhouse.md | 1 + 4 files changed, 6 insertions(+), 5 deletions(-) diff --git a/airbyte-integrations/connectors/source-greenhouse/metadata.yaml b/airbyte-integrations/connectors/source-greenhouse/metadata.yaml index 390eb09ea38d..8cade47c5a38 100644 --- a/airbyte-integrations/connectors/source-greenhouse/metadata.yaml +++ b/airbyte-integrations/connectors/source-greenhouse/metadata.yaml @@ -10,7 +10,7 @@ data: connectorSubtype: api connectorType: source definitionId: 59f1e50a-331f-4f09-b3e8-2e8d4d355f44 - dockerImageTag: 0.5.9 + dockerImageTag: 0.5.10 dockerRepository: airbyte/source-greenhouse documentationUrl: https://docs.airbyte.com/integrations/sources/greenhouse githubIssueLabel: source-greenhouse diff --git a/airbyte-integrations/connectors/source-greenhouse/poetry.lock b/airbyte-integrations/connectors/source-greenhouse/poetry.lock index 639d1c702341..33ec8f26b191 100644 --- a/airbyte-integrations/connectors/source-greenhouse/poetry.lock +++ b/airbyte-integrations/connectors/source-greenhouse/poetry.lock @@ -307,13 +307,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] diff --git a/airbyte-integrations/connectors/source-greenhouse/pyproject.toml b/airbyte-integrations/connectors/source-greenhouse/pyproject.toml index 173ac13b46f2..efdbc2afdd52 100644 --- a/airbyte-integrations/connectors/source-greenhouse/pyproject.toml +++ b/airbyte-integrations/connectors/source-greenhouse/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.5.9" +version = "0.5.10" name = "source-greenhouse" description = "Source implementation for Greenhouse." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/greenhouse.md b/docs/integrations/sources/greenhouse.md index cc8158bb4ae7..1939c3865362 100644 --- a/docs/integrations/sources/greenhouse.md +++ b/docs/integrations/sources/greenhouse.md @@ -74,6 +74,7 @@ The Greenhouse connector should not run into Greenhouse API limitations under no | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| 0.5.10 | 2024-07-13 | [41787](https://github.com/airbytehq/airbyte/pull/41787) | Update dependencies | | 0.5.9 | 2024-07-10 | [41215](https://github.com/airbytehq/airbyte/pull/41215) | Update dependencies | | 0.5.8 | 2024-07-10 | [39601](https://github.com/airbytehq/airbyte/pull/39601) | Move spec to manifest, fix readme | | 0.5.7 | 2024-07-06 | [40882](https://github.com/airbytehq/airbyte/pull/40882) | Update dependencies | From 6ea951ad1dc70fdb1692ae238aa30b18d73ca453 Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:25:00 +0200 Subject: [PATCH 149/260] =?UTF-8?q?=F0=9F=90=99=20source-outreach:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-07-13]=20(#41786)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-outreach/metadata.yaml | 2 +- .../connectors/source-outreach/poetry.lock | 12 ++++++------ .../connectors/source-outreach/pyproject.toml | 2 +- docs/integrations/sources/outreach.md | 1 + 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/airbyte-integrations/connectors/source-outreach/metadata.yaml b/airbyte-integrations/connectors/source-outreach/metadata.yaml index ffb08d632055..bc4308d9b385 100644 --- a/airbyte-integrations/connectors/source-outreach/metadata.yaml +++ b/airbyte-integrations/connectors/source-outreach/metadata.yaml @@ -26,7 +26,7 @@ data: connectorSubtype: api connectorType: source definitionId: 3490c201-5d95-4783-b600-eaf07a4c7787 - dockerImageTag: 1.0.6 + dockerImageTag: 1.0.7 dockerRepository: airbyte/source-outreach githubIssueLabel: source-outreach icon: outreach.svg diff --git a/airbyte-integrations/connectors/source-outreach/poetry.lock b/airbyte-integrations/connectors/source-outreach/poetry.lock index cb1a23ecd43b..e0918c3f13c6 100644 --- a/airbyte-integrations/connectors/source-outreach/poetry.lock +++ b/airbyte-integrations/connectors/source-outreach/poetry.lock @@ -400,13 +400,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] @@ -556,13 +556,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.84" +version = "0.1.85" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.84-py3-none-any.whl", hash = "sha256:01f3c6390dba26c583bac8dd0e551ce3d0509c7f55cad714db0b5c8d36e4c7ff"}, - {file = "langsmith-0.1.84.tar.gz", hash = "sha256:5220c0439838b9a5bd320fd3686be505c5083dcee22d2452006c23891153bea1"}, + {file = "langsmith-0.1.85-py3-none-any.whl", hash = "sha256:c1f94384f10cea96f7b4d33fd3db7ec180c03c7468877d50846f881d2017ff94"}, + {file = "langsmith-0.1.85.tar.gz", hash = "sha256:acff31f9e53efa48586cf8e32f65625a335c74d7c4fa306d1655ac18452296f6"}, ] [package.dependencies] diff --git a/airbyte-integrations/connectors/source-outreach/pyproject.toml b/airbyte-integrations/connectors/source-outreach/pyproject.toml index 8662c32030a0..bb94af4bde6b 100644 --- a/airbyte-integrations/connectors/source-outreach/pyproject.toml +++ b/airbyte-integrations/connectors/source-outreach/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "1.0.6" +version = "1.0.7" name = "source-outreach" description = "Source implementation for outreach." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/outreach.md b/docs/integrations/sources/outreach.md index 505b6f8e3829..7d24fc4b1463 100644 --- a/docs/integrations/sources/outreach.md +++ b/docs/integrations/sources/outreach.md @@ -56,6 +56,7 @@ List of available streams: | Version | Date | Pull Request | Subject | | :------ |:-----------| :----- | :------ | +| 1.0.7 | 2024-07-13 | [41786](https://github.com/airbytehq/airbyte/pull/41786) | Update dependencies | | 1.0.6 | 2024-07-10 | [41490](https://github.com/airbytehq/airbyte/pull/41490) | Update dependencies | | 1.0.5 | 2024-07-09 | [41236](https://github.com/airbytehq/airbyte/pull/41236) | Update dependencies | | 1.0.4 | 2024-07-06 | [40910](https://github.com/airbytehq/airbyte/pull/40910) | Update dependencies | From 92fee73dc13e699cd00fd0237a74b9e38730310f Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:25:04 +0200 Subject: [PATCH 150/260] =?UTF-8?q?=F0=9F=90=99=20source-onesignal:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-07-13]=20(#41785)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-onesignal/metadata.yaml | 2 +- .../connectors/source-onesignal/poetry.lock | 12 ++++++------ .../connectors/source-onesignal/pyproject.toml | 2 +- docs/integrations/sources/onesignal.md | 1 + 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/airbyte-integrations/connectors/source-onesignal/metadata.yaml b/airbyte-integrations/connectors/source-onesignal/metadata.yaml index 49cc8da5295f..0399b17b1089 100644 --- a/airbyte-integrations/connectors/source-onesignal/metadata.yaml +++ b/airbyte-integrations/connectors/source-onesignal/metadata.yaml @@ -15,7 +15,7 @@ data: type: GSM connectorType: source definitionId: bb6afd81-87d5-47e3-97c4-e2c2901b1cf8 - dockerImageTag: 1.1.2 + dockerImageTag: 1.1.3 dockerRepository: airbyte/source-onesignal documentationUrl: https://docs.airbyte.com/integrations/sources/onesignal githubIssueLabel: source-onesignal diff --git a/airbyte-integrations/connectors/source-onesignal/poetry.lock b/airbyte-integrations/connectors/source-onesignal/poetry.lock index b8cc6fe42236..e224d433fec9 100644 --- a/airbyte-integrations/connectors/source-onesignal/poetry.lock +++ b/airbyte-integrations/connectors/source-onesignal/poetry.lock @@ -400,13 +400,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] @@ -570,13 +570,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.84" +version = "0.1.85" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.84-py3-none-any.whl", hash = "sha256:01f3c6390dba26c583bac8dd0e551ce3d0509c7f55cad714db0b5c8d36e4c7ff"}, - {file = "langsmith-0.1.84.tar.gz", hash = "sha256:5220c0439838b9a5bd320fd3686be505c5083dcee22d2452006c23891153bea1"}, + {file = "langsmith-0.1.85-py3-none-any.whl", hash = "sha256:c1f94384f10cea96f7b4d33fd3db7ec180c03c7468877d50846f881d2017ff94"}, + {file = "langsmith-0.1.85.tar.gz", hash = "sha256:acff31f9e53efa48586cf8e32f65625a335c74d7c4fa306d1655ac18452296f6"}, ] [package.dependencies] diff --git a/airbyte-integrations/connectors/source-onesignal/pyproject.toml b/airbyte-integrations/connectors/source-onesignal/pyproject.toml index 3b61d2f8f018..384d24965a05 100644 --- a/airbyte-integrations/connectors/source-onesignal/pyproject.toml +++ b/airbyte-integrations/connectors/source-onesignal/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "1.1.2" +version = "1.1.3" name = "source-onesignal" description = "Source implementation for One Signal." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/onesignal.md b/docs/integrations/sources/onesignal.md index b3deac3cad80..cbb7b386a69f 100644 --- a/docs/integrations/sources/onesignal.md +++ b/docs/integrations/sources/onesignal.md @@ -78,6 +78,7 @@ The connector is restricted by normal OneSignal [rate limits](https://documentat | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :------------------------------------------- | +| 1.1.3 | 2024-07-13 | [41785](https://github.com/airbytehq/airbyte/pull/41785) | Update dependencies | | 1.1.2 | 2024-07-10 | [41317](https://github.com/airbytehq/airbyte/pull/41317) | Update dependencies | | 1.1.1 | 2024-07-09 | [41033](https://github.com/airbytehq/airbyte/pull/41033) | Migrate to poetry base | | 1.1.0 | 2023-08-31 | [28941](https://github.com/airbytehq/airbyte/pull/28941) | Migrate connector to low-code | From 6683c2cb2c57029945bb7f272b3c8172cfc95b59 Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:25:06 +0200 Subject: [PATCH 151/260] =?UTF-8?q?=F0=9F=90=99=20source-instagram:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-07-13]=20(#41784)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-instagram/metadata.yaml | 2 +- .../connectors/source-instagram/poetry.lock | 12 ++++++------ .../connectors/source-instagram/pyproject.toml | 2 +- docs/integrations/sources/instagram.md | 1 + 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/airbyte-integrations/connectors/source-instagram/metadata.yaml b/airbyte-integrations/connectors/source-instagram/metadata.yaml index d6ecb9df5345..b1245dd0c805 100644 --- a/airbyte-integrations/connectors/source-instagram/metadata.yaml +++ b/airbyte-integrations/connectors/source-instagram/metadata.yaml @@ -7,7 +7,7 @@ data: connectorSubtype: api connectorType: source definitionId: 6acf6b55-4f1e-4fca-944e-1a3caef8aba8 - dockerImageTag: 3.0.19 + dockerImageTag: 3.0.20 dockerRepository: airbyte/source-instagram githubIssueLabel: source-instagram icon: instagram.svg diff --git a/airbyte-integrations/connectors/source-instagram/poetry.lock b/airbyte-integrations/connectors/source-instagram/poetry.lock index 71523a9353ac..e86f21b9c28f 100644 --- a/airbyte-integrations/connectors/source-instagram/poetry.lock +++ b/airbyte-integrations/connectors/source-instagram/poetry.lock @@ -566,13 +566,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] @@ -826,13 +826,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.84" +version = "0.1.85" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.84-py3-none-any.whl", hash = "sha256:01f3c6390dba26c583bac8dd0e551ce3d0509c7f55cad714db0b5c8d36e4c7ff"}, - {file = "langsmith-0.1.84.tar.gz", hash = "sha256:5220c0439838b9a5bd320fd3686be505c5083dcee22d2452006c23891153bea1"}, + {file = "langsmith-0.1.85-py3-none-any.whl", hash = "sha256:c1f94384f10cea96f7b4d33fd3db7ec180c03c7468877d50846f881d2017ff94"}, + {file = "langsmith-0.1.85.tar.gz", hash = "sha256:acff31f9e53efa48586cf8e32f65625a335c74d7c4fa306d1655ac18452296f6"}, ] [package.dependencies] diff --git a/airbyte-integrations/connectors/source-instagram/pyproject.toml b/airbyte-integrations/connectors/source-instagram/pyproject.toml index 5a25025d0728..6e80fcbf39e9 100644 --- a/airbyte-integrations/connectors/source-instagram/pyproject.toml +++ b/airbyte-integrations/connectors/source-instagram/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "3.0.19" +version = "3.0.20" name = "source-instagram" description = "Source implementation for Instagram." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/instagram.md b/docs/integrations/sources/instagram.md index 1ec5b2e6532c..5a6db28725a6 100644 --- a/docs/integrations/sources/instagram.md +++ b/docs/integrations/sources/instagram.md @@ -116,6 +116,7 @@ Instagram limits the number of requests that can be made at a time. See Facebook | Version | Date | Pull Request | Subject | | :------ |:-----------|:---------------------------------------------------------| :------------------------------------------------------------------------------------------------------------------------ | +| 3.0.20 | 2024-07-13 | [41784](https://github.com/airbytehq/airbyte/pull/41784) | Update dependencies | | 3.0.19 | 2024-07-10 | [41586](https://github.com/airbytehq/airbyte/pull/41586) | Update dependencies | | 3.0.18 | 2024-07-09 | [41109](https://github.com/airbytehq/airbyte/pull/41109) | Update dependencies | | 3.0.17 | 2024-07-08 | [41046](https://github.com/airbytehq/airbyte/pull/41046) | Use latest `CDK` version possible | From b18d98c2f672d4c30419c3c62cc59861f4f5fb75 Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:25:09 +0200 Subject: [PATCH 152/260] =?UTF-8?q?=F0=9F=90=99=20source-datadog:=20run=20?= =?UTF-8?q?up-to-date=20pipeline=20[2024-07-13]=20(#41783)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-datadog/metadata.yaml | 2 +- .../connectors/source-datadog/poetry.lock | 12 ++++++------ .../connectors/source-datadog/pyproject.toml | 2 +- docs/integrations/sources/datadog.md | 1 + 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/airbyte-integrations/connectors/source-datadog/metadata.yaml b/airbyte-integrations/connectors/source-datadog/metadata.yaml index 4d42456bd693..b602a80bfa33 100644 --- a/airbyte-integrations/connectors/source-datadog/metadata.yaml +++ b/airbyte-integrations/connectors/source-datadog/metadata.yaml @@ -18,7 +18,7 @@ data: connectorSubtype: api connectorType: source definitionId: 1cfc30c7-82db-43f4-9fd7-ac1b42312cda - dockerImageTag: 0.4.8 + dockerImageTag: 0.4.9 dockerRepository: airbyte/source-datadog githubIssueLabel: source-datadog icon: datadog.svg diff --git a/airbyte-integrations/connectors/source-datadog/poetry.lock b/airbyte-integrations/connectors/source-datadog/poetry.lock index a6164f2a87e1..3c782a2f22a0 100644 --- a/airbyte-integrations/connectors/source-datadog/poetry.lock +++ b/airbyte-integrations/connectors/source-datadog/poetry.lock @@ -410,13 +410,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] @@ -566,13 +566,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.84" +version = "0.1.85" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.84-py3-none-any.whl", hash = "sha256:01f3c6390dba26c583bac8dd0e551ce3d0509c7f55cad714db0b5c8d36e4c7ff"}, - {file = "langsmith-0.1.84.tar.gz", hash = "sha256:5220c0439838b9a5bd320fd3686be505c5083dcee22d2452006c23891153bea1"}, + {file = "langsmith-0.1.85-py3-none-any.whl", hash = "sha256:c1f94384f10cea96f7b4d33fd3db7ec180c03c7468877d50846f881d2017ff94"}, + {file = "langsmith-0.1.85.tar.gz", hash = "sha256:acff31f9e53efa48586cf8e32f65625a335c74d7c4fa306d1655ac18452296f6"}, ] [package.dependencies] diff --git a/airbyte-integrations/connectors/source-datadog/pyproject.toml b/airbyte-integrations/connectors/source-datadog/pyproject.toml index a6ea0a858c4e..528db11270f8 100644 --- a/airbyte-integrations/connectors/source-datadog/pyproject.toml +++ b/airbyte-integrations/connectors/source-datadog/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.4.8" +version = "0.4.9" name = "source-datadog" description = "Source implementation for Datadog." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/datadog.md b/docs/integrations/sources/datadog.md index 2bac5907785c..feccff8b6e25 100644 --- a/docs/integrations/sources/datadog.md +++ b/docs/integrations/sources/datadog.md @@ -76,6 +76,7 @@ The Datadog source connector supports the following [sync modes](https://docs.ai | Version | Date | Pull Request | Subject | |:--------|:-----------|:---------------------------------------------------------|:-----------------------------------------------------------------------------| +| 0.4.9 | 2024-07-13 | [41783](https://github.com/airbytehq/airbyte/pull/41783) | Update dependencies | | 0.4.8 | 2024-07-10 | [41416](https://github.com/airbytehq/airbyte/pull/41416) | Update dependencies | | 0.4.7 | 2024-07-09 | [41168](https://github.com/airbytehq/airbyte/pull/41168) | Update dependencies | | 0.4.6 | 2024-07-06 | [40985](https://github.com/airbytehq/airbyte/pull/40985) | Update dependencies | From d9a788068f64ac034e03ce3fe9ef3b30d9980327 Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:25:12 +0200 Subject: [PATCH 153/260] =?UTF-8?q?=F0=9F=90=99=20source-recreation:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-07-13]=20(#41782)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-recreation/metadata.yaml | 2 +- .../connectors/source-recreation/poetry.lock | 6 +++--- .../connectors/source-recreation/pyproject.toml | 2 +- docs/integrations/sources/recreation.md | 1 + 4 files changed, 6 insertions(+), 5 deletions(-) diff --git a/airbyte-integrations/connectors/source-recreation/metadata.yaml b/airbyte-integrations/connectors/source-recreation/metadata.yaml index a99810a0c01c..e133b02f867d 100644 --- a/airbyte-integrations/connectors/source-recreation/metadata.yaml +++ b/airbyte-integrations/connectors/source-recreation/metadata.yaml @@ -7,7 +7,7 @@ data: connectorSubtype: api connectorType: source definitionId: 25d7535d-91e0-466a-aa7f-af81578be277 - dockerImageTag: 0.1.10 + dockerImageTag: 0.1.11 dockerRepository: airbyte/source-recreation documentationUrl: https://docs.airbyte.com/integrations/sources/recreation githubIssueLabel: source-recreation diff --git a/airbyte-integrations/connectors/source-recreation/poetry.lock b/airbyte-integrations/connectors/source-recreation/poetry.lock index 6f83e5bed3a6..c0f7f643d050 100644 --- a/airbyte-integrations/connectors/source-recreation/poetry.lock +++ b/airbyte-integrations/connectors/source-recreation/poetry.lock @@ -288,13 +288,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] diff --git a/airbyte-integrations/connectors/source-recreation/pyproject.toml b/airbyte-integrations/connectors/source-recreation/pyproject.toml index 4ecca4496f64..46222a2f8b1e 100644 --- a/airbyte-integrations/connectors/source-recreation/pyproject.toml +++ b/airbyte-integrations/connectors/source-recreation/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.1.10" +version = "0.1.11" name = "source-recreation" description = "Source implementation for Recreation." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/recreation.md b/docs/integrations/sources/recreation.md index f89fa3fc195a..a15a9e8c5118 100644 --- a/docs/integrations/sources/recreation.md +++ b/docs/integrations/sources/recreation.md @@ -60,6 +60,7 @@ The following fields are required fields for the connector to work: | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :------------------------------------------------------------------------------ | +| 0.1.11 | 2024-07-13 | [41782](https://github.com/airbytehq/airbyte/pull/41782) | Update dependencies | | 0.1.10 | 2024-07-10 | [41533](https://github.com/airbytehq/airbyte/pull/41533) | Update dependencies | | 0.1.9 | 2024-07-09 | [41276](https://github.com/airbytehq/airbyte/pull/41276) | Update dependencies | | 0.1.8 | 2024-07-06 | [40899](https://github.com/airbytehq/airbyte/pull/40899) | Update dependencies | From 9a5663e601db8b1a4fc937cfadc0852557853726 Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:25:15 +0200 Subject: [PATCH 154/260] =?UTF-8?q?=F0=9F=90=99=20source-news-api:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-07-13]=20(#41781)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-news-api/metadata.yaml | 2 +- .../connectors/source-news-api/poetry.lock | 12 ++++++------ .../connectors/source-news-api/pyproject.toml | 2 +- docs/integrations/sources/news-api.md | 1 + 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/airbyte-integrations/connectors/source-news-api/metadata.yaml b/airbyte-integrations/connectors/source-news-api/metadata.yaml index 1430238543b2..8c14c5b04060 100644 --- a/airbyte-integrations/connectors/source-news-api/metadata.yaml +++ b/airbyte-integrations/connectors/source-news-api/metadata.yaml @@ -16,7 +16,7 @@ data: connectorSubtype: api connectorType: source definitionId: df38991e-f35b-4af2-996d-36817f614587 - dockerImageTag: 0.1.9 + dockerImageTag: 0.1.10 dockerRepository: airbyte/source-news-api githubIssueLabel: source-news-api icon: newsapi.svg diff --git a/airbyte-integrations/connectors/source-news-api/poetry.lock b/airbyte-integrations/connectors/source-news-api/poetry.lock index 4b03cc351726..13836360394d 100644 --- a/airbyte-integrations/connectors/source-news-api/poetry.lock +++ b/airbyte-integrations/connectors/source-news-api/poetry.lock @@ -410,13 +410,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] @@ -566,13 +566,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.84" +version = "0.1.85" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.84-py3-none-any.whl", hash = "sha256:01f3c6390dba26c583bac8dd0e551ce3d0509c7f55cad714db0b5c8d36e4c7ff"}, - {file = "langsmith-0.1.84.tar.gz", hash = "sha256:5220c0439838b9a5bd320fd3686be505c5083dcee22d2452006c23891153bea1"}, + {file = "langsmith-0.1.85-py3-none-any.whl", hash = "sha256:c1f94384f10cea96f7b4d33fd3db7ec180c03c7468877d50846f881d2017ff94"}, + {file = "langsmith-0.1.85.tar.gz", hash = "sha256:acff31f9e53efa48586cf8e32f65625a335c74d7c4fa306d1655ac18452296f6"}, ] [package.dependencies] diff --git a/airbyte-integrations/connectors/source-news-api/pyproject.toml b/airbyte-integrations/connectors/source-news-api/pyproject.toml index c45e21066017..bcbad36fa228 100644 --- a/airbyte-integrations/connectors/source-news-api/pyproject.toml +++ b/airbyte-integrations/connectors/source-news-api/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.1.9" +version = "0.1.10" name = "source-news-api" description = "Source implementation for news-api." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/news-api.md b/docs/integrations/sources/news-api.md index 69c4e34e3139..208b49b4b609 100644 --- a/docs/integrations/sources/news-api.md +++ b/docs/integrations/sources/news-api.md @@ -61,6 +61,7 @@ The following fields are required fields for the connector to work: | Version | Date | Pull Request | Subject | |:--------|:-----------| :------------------------------------------------------- | :--------------------------------------- | +| 0.1.10 | 2024-07-13 | [41781](https://github.com/airbytehq/airbyte/pull/41781) | Update dependencies | | 0.1.9 | 2024-07-10 | [41599](https://github.com/airbytehq/airbyte/pull/41599) | Update dependencies | | 0.1.8 | 2024-07-09 | [41200](https://github.com/airbytehq/airbyte/pull/41200) | Update dependencies | | 0.1.7 | 2024-07-06 | [40802](https://github.com/airbytehq/airbyte/pull/40802) | Update dependencies | From 8a05aecb48bdb92dec7316df04d603979d68494c Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:25:18 +0200 Subject: [PATCH 155/260] =?UTF-8?q?=F0=9F=90=99=20source-bamboo-hr:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-07-13]=20(#41780)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-bamboo-hr/metadata.yaml | 2 +- .../connectors/source-bamboo-hr/poetry.lock | 12 ++++++------ .../connectors/source-bamboo-hr/pyproject.toml | 2 +- docs/integrations/sources/bamboo-hr.md | 1 + 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/airbyte-integrations/connectors/source-bamboo-hr/metadata.yaml b/airbyte-integrations/connectors/source-bamboo-hr/metadata.yaml index 8eb2e34f158a..7ca6e3d949c5 100644 --- a/airbyte-integrations/connectors/source-bamboo-hr/metadata.yaml +++ b/airbyte-integrations/connectors/source-bamboo-hr/metadata.yaml @@ -10,7 +10,7 @@ data: connectorSubtype: api connectorType: source definitionId: 90916976-a132-4ce9-8bce-82a03dd58788 - dockerImageTag: 0.3.6 + dockerImageTag: 0.3.7 dockerRepository: airbyte/source-bamboo-hr documentationUrl: https://docs.airbyte.com/integrations/sources/bamboo-hr githubIssueLabel: source-bamboo-hr diff --git a/airbyte-integrations/connectors/source-bamboo-hr/poetry.lock b/airbyte-integrations/connectors/source-bamboo-hr/poetry.lock index 89b2d5c4065d..4f022c500f8d 100644 --- a/airbyte-integrations/connectors/source-bamboo-hr/poetry.lock +++ b/airbyte-integrations/connectors/source-bamboo-hr/poetry.lock @@ -400,13 +400,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] @@ -556,13 +556,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.84" +version = "0.1.85" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.84-py3-none-any.whl", hash = "sha256:01f3c6390dba26c583bac8dd0e551ce3d0509c7f55cad714db0b5c8d36e4c7ff"}, - {file = "langsmith-0.1.84.tar.gz", hash = "sha256:5220c0439838b9a5bd320fd3686be505c5083dcee22d2452006c23891153bea1"}, + {file = "langsmith-0.1.85-py3-none-any.whl", hash = "sha256:c1f94384f10cea96f7b4d33fd3db7ec180c03c7468877d50846f881d2017ff94"}, + {file = "langsmith-0.1.85.tar.gz", hash = "sha256:acff31f9e53efa48586cf8e32f65625a335c74d7c4fa306d1655ac18452296f6"}, ] [package.dependencies] diff --git a/airbyte-integrations/connectors/source-bamboo-hr/pyproject.toml b/airbyte-integrations/connectors/source-bamboo-hr/pyproject.toml index 9af0eea24ed0..7268a0512acf 100644 --- a/airbyte-integrations/connectors/source-bamboo-hr/pyproject.toml +++ b/airbyte-integrations/connectors/source-bamboo-hr/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.3.6" +version = "0.3.7" name = "source-bamboo-hr" description = "Source implementation for Bamboo Hr." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/bamboo-hr.md b/docs/integrations/sources/bamboo-hr.md index 7bf18464ec4e..f9f390d95d59 100644 --- a/docs/integrations/sources/bamboo-hr.md +++ b/docs/integrations/sources/bamboo-hr.md @@ -89,6 +89,7 @@ Please [create an issue](https://github.com/airbytehq/airbyte/issues) if you see | Version | Date | Pull Request | Subject | |:--------|:-----------|:---------------------------------------------------------|:--------------------------------------------------------------------------------| +| 0.3.7 | 2024-07-13 | [41780](https://github.com/airbytehq/airbyte/pull/41780) | Update dependencies | | 0.3.6 | 2024-07-10 | [41437](https://github.com/airbytehq/airbyte/pull/41437) | Update dependencies | | 0.3.5 | 2024-07-09 | [41088](https://github.com/airbytehq/airbyte/pull/41088) | Update dependencies | | 0.3.4 | 2024-07-06 | [40818](https://github.com/airbytehq/airbyte/pull/40818) | Update dependencies | From 2309372c08de2f105bf8f097c36797ba58ab58e5 Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:25:21 +0200 Subject: [PATCH 156/260] =?UTF-8?q?=F0=9F=90=99=20source-instatus:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-07-13]=20(#41779)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-instatus/metadata.yaml | 2 +- .../connectors/source-instatus/poetry.lock | 12 ++++++------ .../connectors/source-instatus/pyproject.toml | 2 +- docs/integrations/sources/instatus.md | 1 + 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/airbyte-integrations/connectors/source-instatus/metadata.yaml b/airbyte-integrations/connectors/source-instatus/metadata.yaml index dc9b884eea01..6fce34cb2dfa 100644 --- a/airbyte-integrations/connectors/source-instatus/metadata.yaml +++ b/airbyte-integrations/connectors/source-instatus/metadata.yaml @@ -2,7 +2,7 @@ data: connectorSubtype: api connectorType: source definitionId: 1901024c-0249-45d0-bcac-31a954652927 - dockerImageTag: 0.1.7 + dockerImageTag: 0.1.8 dockerRepository: airbyte/source-instatus githubIssueLabel: source-instatus icon: instatus.svg diff --git a/airbyte-integrations/connectors/source-instatus/poetry.lock b/airbyte-integrations/connectors/source-instatus/poetry.lock index 1c7c00978d43..728f233c17e0 100644 --- a/airbyte-integrations/connectors/source-instatus/poetry.lock +++ b/airbyte-integrations/connectors/source-instatus/poetry.lock @@ -410,13 +410,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] @@ -566,13 +566,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.84" +version = "0.1.85" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.84-py3-none-any.whl", hash = "sha256:01f3c6390dba26c583bac8dd0e551ce3d0509c7f55cad714db0b5c8d36e4c7ff"}, - {file = "langsmith-0.1.84.tar.gz", hash = "sha256:5220c0439838b9a5bd320fd3686be505c5083dcee22d2452006c23891153bea1"}, + {file = "langsmith-0.1.85-py3-none-any.whl", hash = "sha256:c1f94384f10cea96f7b4d33fd3db7ec180c03c7468877d50846f881d2017ff94"}, + {file = "langsmith-0.1.85.tar.gz", hash = "sha256:acff31f9e53efa48586cf8e32f65625a335c74d7c4fa306d1655ac18452296f6"}, ] [package.dependencies] diff --git a/airbyte-integrations/connectors/source-instatus/pyproject.toml b/airbyte-integrations/connectors/source-instatus/pyproject.toml index 9ed504fe2607..8714fed0c344 100644 --- a/airbyte-integrations/connectors/source-instatus/pyproject.toml +++ b/airbyte-integrations/connectors/source-instatus/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.1.7" +version = "0.1.8" name = "source-instatus" description = "Source implementation for Instatus." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/instatus.md b/docs/integrations/sources/instatus.md index 09a126daa822..32b2af73947d 100644 --- a/docs/integrations/sources/instatus.md +++ b/docs/integrations/sources/instatus.md @@ -67,6 +67,7 @@ The Instatus source connector supports the following [sync modes](https://docs.a | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :---------------------- | +| 0.1.8 | 2024-07-13 | [41779](https://github.com/airbytehq/airbyte/pull/41779) | Update dependencies | | 0.1.7 | 2024-07-10 | [41549](https://github.com/airbytehq/airbyte/pull/41549) | Update dependencies | | 0.1.6 | 2024-07-09 | [41115](https://github.com/airbytehq/airbyte/pull/41115) | Update dependencies | | 0.1.5 | 2024-07-06 | [40872](https://github.com/airbytehq/airbyte/pull/40872) | Update dependencies | From 48757bee14cf02da512d6a5ac5de43c7d620c3e3 Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:25:24 +0200 Subject: [PATCH 157/260] =?UTF-8?q?=F0=9F=90=99=20source-linnworks:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-07-13]=20(#41778)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-linnworks/metadata.yaml | 2 +- .../connectors/source-linnworks/poetry.lock | 6 +++--- .../connectors/source-linnworks/pyproject.toml | 2 +- docs/integrations/sources/linnworks.md | 1 + 4 files changed, 6 insertions(+), 5 deletions(-) diff --git a/airbyte-integrations/connectors/source-linnworks/metadata.yaml b/airbyte-integrations/connectors/source-linnworks/metadata.yaml index a782c048406f..e8ee9e957999 100644 --- a/airbyte-integrations/connectors/source-linnworks/metadata.yaml +++ b/airbyte-integrations/connectors/source-linnworks/metadata.yaml @@ -7,7 +7,7 @@ data: connectorSubtype: api connectorType: source definitionId: 7b86879e-26c5-4ef6-a5ce-2be5c7b46d1e - dockerImageTag: 0.1.16 + dockerImageTag: 0.1.17 dockerRepository: airbyte/source-linnworks documentationUrl: https://docs.airbyte.com/integrations/sources/linnworks githubIssueLabel: source-linnworks diff --git a/airbyte-integrations/connectors/source-linnworks/poetry.lock b/airbyte-integrations/connectors/source-linnworks/poetry.lock index 56ee83a7bedd..9d5cf2d3d3b7 100644 --- a/airbyte-integrations/connectors/source-linnworks/poetry.lock +++ b/airbyte-integrations/connectors/source-linnworks/poetry.lock @@ -288,13 +288,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] diff --git a/airbyte-integrations/connectors/source-linnworks/pyproject.toml b/airbyte-integrations/connectors/source-linnworks/pyproject.toml index 947a72c72326..100993ac1f80 100644 --- a/airbyte-integrations/connectors/source-linnworks/pyproject.toml +++ b/airbyte-integrations/connectors/source-linnworks/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.1.16" +version = "0.1.17" name = "source-linnworks" description = "Source implementation for Linnworks." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/linnworks.md b/docs/integrations/sources/linnworks.md index 32c7d4b88ac7..ea001ec20fd8 100644 --- a/docs/integrations/sources/linnworks.md +++ b/docs/integrations/sources/linnworks.md @@ -74,6 +74,7 @@ Rate limits for the Linnworks API vary across endpoints. Use the [links in the * | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :-------------------------------------------------------------------------- | +| 0.1.17 | 2024-07-13 | [41778](https://github.com/airbytehq/airbyte/pull/41778) | Update dependencies | | 0.1.16 | 2024-07-10 | [41432](https://github.com/airbytehq/airbyte/pull/41432) | Update dependencies | | 0.1.15 | 2024-07-09 | [41219](https://github.com/airbytehq/airbyte/pull/41219) | Update dependencies | | 0.1.14 | 2024-07-06 | [40870](https://github.com/airbytehq/airbyte/pull/40870) | Update dependencies | From 37322bcb7d796136dcb749cc53e2dcfb0fd1ed80 Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:25:27 +0200 Subject: [PATCH 158/260] =?UTF-8?q?=F0=9F=90=99=20source-waiteraid:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-07-13]=20(#41777)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-waiteraid/metadata.yaml | 2 +- .../connectors/source-waiteraid/poetry.lock | 12 ++++++------ .../connectors/source-waiteraid/pyproject.toml | 2 +- docs/integrations/sources/waiteraid.md | 1 + 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/airbyte-integrations/connectors/source-waiteraid/metadata.yaml b/airbyte-integrations/connectors/source-waiteraid/metadata.yaml index 1bd293a4cc64..747efc7ffc0c 100644 --- a/airbyte-integrations/connectors/source-waiteraid/metadata.yaml +++ b/airbyte-integrations/connectors/source-waiteraid/metadata.yaml @@ -2,7 +2,7 @@ data: connectorSubtype: api connectorType: source definitionId: 03a53b13-794a-4d6b-8544-3b36ed8f3ce4 - dockerImageTag: 0.1.8 + dockerImageTag: 0.1.9 dockerRepository: airbyte/source-waiteraid githubIssueLabel: source-waiteraid icon: waiteraid.svg diff --git a/airbyte-integrations/connectors/source-waiteraid/poetry.lock b/airbyte-integrations/connectors/source-waiteraid/poetry.lock index 4b03cc351726..13836360394d 100644 --- a/airbyte-integrations/connectors/source-waiteraid/poetry.lock +++ b/airbyte-integrations/connectors/source-waiteraid/poetry.lock @@ -410,13 +410,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] @@ -566,13 +566,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.84" +version = "0.1.85" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.84-py3-none-any.whl", hash = "sha256:01f3c6390dba26c583bac8dd0e551ce3d0509c7f55cad714db0b5c8d36e4c7ff"}, - {file = "langsmith-0.1.84.tar.gz", hash = "sha256:5220c0439838b9a5bd320fd3686be505c5083dcee22d2452006c23891153bea1"}, + {file = "langsmith-0.1.85-py3-none-any.whl", hash = "sha256:c1f94384f10cea96f7b4d33fd3db7ec180c03c7468877d50846f881d2017ff94"}, + {file = "langsmith-0.1.85.tar.gz", hash = "sha256:acff31f9e53efa48586cf8e32f65625a335c74d7c4fa306d1655ac18452296f6"}, ] [package.dependencies] diff --git a/airbyte-integrations/connectors/source-waiteraid/pyproject.toml b/airbyte-integrations/connectors/source-waiteraid/pyproject.toml index 43e8615e9b9f..8075daa02e5f 100644 --- a/airbyte-integrations/connectors/source-waiteraid/pyproject.toml +++ b/airbyte-integrations/connectors/source-waiteraid/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.1.8" +version = "0.1.9" name = "source-waiteraid" description = "Source implementation for Waiteraid." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/waiteraid.md b/docs/integrations/sources/waiteraid.md index ec75ba912aba..7ec369d02941 100644 --- a/docs/integrations/sources/waiteraid.md +++ b/docs/integrations/sources/waiteraid.md @@ -61,6 +61,7 @@ The Waiteraid source connector supports the following [sync modes](https://docs. | Version | Date | Pull Request | Subject | | :------ | :--------- | :----------------------------------------------------- | :-------------------- | +| 0.1.9 | 2024-07-13 | [41777](https://github.com/airbytehq/airbyte/pull/41777) | Update dependencies | | 0.1.8 | 2024-07-10 | [41506](https://github.com/airbytehq/airbyte/pull/41506) | Update dependencies | | 0.1.7 | 2024-07-09 | [41135](https://github.com/airbytehq/airbyte/pull/41135) | Update dependencies | | 0.1.6 | 2024-07-06 | [40794](https://github.com/airbytehq/airbyte/pull/40794) | Update dependencies | From 0dc4dd12365d37c4ba61ffde431341351813bb27 Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:25:30 +0200 Subject: [PATCH 159/260] =?UTF-8?q?=F0=9F=90=99=20source-nasa:=20run=20up-?= =?UTF-8?q?to-date=20pipeline=20[2024-07-13]=20(#41776)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-nasa/metadata.yaml | 2 +- .../connectors/source-nasa/poetry.lock | 12 ++++++------ .../connectors/source-nasa/pyproject.toml | 2 +- docs/integrations/sources/nasa.md | 1 + 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/airbyte-integrations/connectors/source-nasa/metadata.yaml b/airbyte-integrations/connectors/source-nasa/metadata.yaml index 6a8a1cbad19d..80324a3007da 100644 --- a/airbyte-integrations/connectors/source-nasa/metadata.yaml +++ b/airbyte-integrations/connectors/source-nasa/metadata.yaml @@ -14,7 +14,7 @@ data: connectorSubtype: api connectorType: source definitionId: 1a8667d7-7978-43cd-ba4d-d32cbd478971 - dockerImageTag: 0.2.8 + dockerImageTag: 0.2.9 dockerRepository: airbyte/source-nasa githubIssueLabel: source-nasa icon: nasa.svg diff --git a/airbyte-integrations/connectors/source-nasa/poetry.lock b/airbyte-integrations/connectors/source-nasa/poetry.lock index 1c7c00978d43..728f233c17e0 100644 --- a/airbyte-integrations/connectors/source-nasa/poetry.lock +++ b/airbyte-integrations/connectors/source-nasa/poetry.lock @@ -410,13 +410,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] @@ -566,13 +566,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.84" +version = "0.1.85" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.84-py3-none-any.whl", hash = "sha256:01f3c6390dba26c583bac8dd0e551ce3d0509c7f55cad714db0b5c8d36e4c7ff"}, - {file = "langsmith-0.1.84.tar.gz", hash = "sha256:5220c0439838b9a5bd320fd3686be505c5083dcee22d2452006c23891153bea1"}, + {file = "langsmith-0.1.85-py3-none-any.whl", hash = "sha256:c1f94384f10cea96f7b4d33fd3db7ec180c03c7468877d50846f881d2017ff94"}, + {file = "langsmith-0.1.85.tar.gz", hash = "sha256:acff31f9e53efa48586cf8e32f65625a335c74d7c4fa306d1655ac18452296f6"}, ] [package.dependencies] diff --git a/airbyte-integrations/connectors/source-nasa/pyproject.toml b/airbyte-integrations/connectors/source-nasa/pyproject.toml index b1fd9a2fd9e0..a70535b3e82a 100644 --- a/airbyte-integrations/connectors/source-nasa/pyproject.toml +++ b/airbyte-integrations/connectors/source-nasa/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.2.8" +version = "0.2.9" name = "source-nasa" description = "Source implementation for Nasa." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/nasa.md b/docs/integrations/sources/nasa.md index d701d26fa583..5c7df79aca04 100644 --- a/docs/integrations/sources/nasa.md +++ b/docs/integrations/sources/nasa.md @@ -43,6 +43,7 @@ The NASA connector should not run into NASA API limitations under normal usage. | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :----------------------------------------- | +| 0.2.9 | 2024-07-13 | [41776](https://github.com/airbytehq/airbyte/pull/41776) | Update dependencies | | 0.2.8 | 2024-07-10 | [41545](https://github.com/airbytehq/airbyte/pull/41545) | Update dependencies | | 0.2.7 | 2024-07-09 | [41154](https://github.com/airbytehq/airbyte/pull/41154) | Update dependencies | | 0.2.6 | 2024-07-06 | [40764](https://github.com/airbytehq/airbyte/pull/40764) | Update dependencies | From 239fbd187b47cf33690d23d4e681bcb3a3dbc9fe Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:25:33 +0200 Subject: [PATCH 160/260] =?UTF-8?q?=F0=9F=90=99=20source-open-exchange-rat?= =?UTF-8?q?es:=20run=20up-to-date=20pipeline=20[2024-07-13]=20(#41775)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-open-exchange-rates/metadata.yaml | 2 +- .../connectors/source-open-exchange-rates/poetry.lock | 6 +++--- .../connectors/source-open-exchange-rates/pyproject.toml | 2 +- docs/integrations/sources/open-exchange-rates.md | 1 + 4 files changed, 6 insertions(+), 5 deletions(-) diff --git a/airbyte-integrations/connectors/source-open-exchange-rates/metadata.yaml b/airbyte-integrations/connectors/source-open-exchange-rates/metadata.yaml index 4b5d663daa08..083dde84d70f 100644 --- a/airbyte-integrations/connectors/source-open-exchange-rates/metadata.yaml +++ b/airbyte-integrations/connectors/source-open-exchange-rates/metadata.yaml @@ -7,7 +7,7 @@ data: connectorSubtype: api connectorType: source definitionId: 77d5ca6b-d345-4dce-ba1e-1935a75778b8 - dockerImageTag: 0.2.11 + dockerImageTag: 0.2.12 dockerRepository: airbyte/source-open-exchange-rates documentationUrl: https://docs.airbyte.com/integrations/sources/open-exchange-rates githubIssueLabel: source-open-exchange-rates diff --git a/airbyte-integrations/connectors/source-open-exchange-rates/poetry.lock b/airbyte-integrations/connectors/source-open-exchange-rates/poetry.lock index cce71c3b0e79..a1ccc2d0271d 100644 --- a/airbyte-integrations/connectors/source-open-exchange-rates/poetry.lock +++ b/airbyte-integrations/connectors/source-open-exchange-rates/poetry.lock @@ -288,13 +288,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] diff --git a/airbyte-integrations/connectors/source-open-exchange-rates/pyproject.toml b/airbyte-integrations/connectors/source-open-exchange-rates/pyproject.toml index 72bb7f69b1c3..b563210f3629 100644 --- a/airbyte-integrations/connectors/source-open-exchange-rates/pyproject.toml +++ b/airbyte-integrations/connectors/source-open-exchange-rates/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.2.11" +version = "0.2.12" name = "source-open-exchange-rates" description = "Source implementation for Open Exchange Rates." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/open-exchange-rates.md b/docs/integrations/sources/open-exchange-rates.md index c66604581a8a..1944b84c6a96 100644 --- a/docs/integrations/sources/open-exchange-rates.md +++ b/docs/integrations/sources/open-exchange-rates.md @@ -48,6 +48,7 @@ If you have `free` subscription plan \(you may check it [here](https://openexcha | Version | Date | Pull Request | Subject | | :------ | :--------- | :--------------------------------------------------------- | :------------------------------------------------------------------------------ | +| 0.2.12 | 2024-07-13 | [41775](https://github.com/airbytehq/airbyte/pull/41775) | Update dependencies | | 0.2.11 | 2024-07-10 | [41576](https://github.com/airbytehq/airbyte/pull/41576) | Update dependencies | | 0.2.10 | 2024-07-09 | [41149](https://github.com/airbytehq/airbyte/pull/41149) | Update dependencies | | 0.2.9 | 2024-07-06 | [40857](https://github.com/airbytehq/airbyte/pull/40857) | Update dependencies | From 3958debfbeed8ae772b29a273976d2e9bb35fc73 Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:25:36 +0200 Subject: [PATCH 161/260] =?UTF-8?q?=F0=9F=90=99=20source-trello:=20run=20u?= =?UTF-8?q?p-to-date=20pipeline=20[2024-07-13]=20(#41774)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-trello/metadata.yaml | 2 +- .../connectors/source-trello/poetry.lock | 12 ++++++------ .../connectors/source-trello/pyproject.toml | 2 +- docs/integrations/sources/trello.md | 1 + 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/airbyte-integrations/connectors/source-trello/metadata.yaml b/airbyte-integrations/connectors/source-trello/metadata.yaml index 2aff279c85f4..05cfce92d6c1 100644 --- a/airbyte-integrations/connectors/source-trello/metadata.yaml +++ b/airbyte-integrations/connectors/source-trello/metadata.yaml @@ -19,7 +19,7 @@ data: connectorSubtype: api connectorType: source definitionId: 8da67652-004c-11ec-9a03-0242ac130003 - dockerImageTag: 1.0.9 + dockerImageTag: 1.0.10 dockerRepository: airbyte/source-trello documentationUrl: https://docs.airbyte.com/integrations/sources/trello githubIssueLabel: source-trello diff --git a/airbyte-integrations/connectors/source-trello/poetry.lock b/airbyte-integrations/connectors/source-trello/poetry.lock index 1f45dc45a97f..b19857a5a728 100644 --- a/airbyte-integrations/connectors/source-trello/poetry.lock +++ b/airbyte-integrations/connectors/source-trello/poetry.lock @@ -421,13 +421,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] @@ -577,13 +577,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.84" +version = "0.1.85" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.84-py3-none-any.whl", hash = "sha256:01f3c6390dba26c583bac8dd0e551ce3d0509c7f55cad714db0b5c8d36e4c7ff"}, - {file = "langsmith-0.1.84.tar.gz", hash = "sha256:5220c0439838b9a5bd320fd3686be505c5083dcee22d2452006c23891153bea1"}, + {file = "langsmith-0.1.85-py3-none-any.whl", hash = "sha256:c1f94384f10cea96f7b4d33fd3db7ec180c03c7468877d50846f881d2017ff94"}, + {file = "langsmith-0.1.85.tar.gz", hash = "sha256:acff31f9e53efa48586cf8e32f65625a335c74d7c4fa306d1655ac18452296f6"}, ] [package.dependencies] diff --git a/airbyte-integrations/connectors/source-trello/pyproject.toml b/airbyte-integrations/connectors/source-trello/pyproject.toml index c6143d45ee86..91ec4a5ddb04 100644 --- a/airbyte-integrations/connectors/source-trello/pyproject.toml +++ b/airbyte-integrations/connectors/source-trello/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "1.0.9" +version = "1.0.10" name = "source-trello" description = "Source implementation for Trello." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/trello.md b/docs/integrations/sources/trello.md index 4bb124d49cf8..5f09e0d33cce 100644 --- a/docs/integrations/sources/trello.md +++ b/docs/integrations/sources/trello.md @@ -83,6 +83,7 @@ The Trello connector should not run into Trello API limitations under normal usa | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :--------------------------------------------------------------------------------- | +| 1.0.10 | 2024-07-13 | [41774](https://github.com/airbytehq/airbyte/pull/41774) | Update dependencies | | 1.0.9 | 2024-07-10 | [41601](https://github.com/airbytehq/airbyte/pull/41601) | Update dependencies | | 1.0.8 | 2024-07-09 | [41099](https://github.com/airbytehq/airbyte/pull/41099) | Update dependencies | | 1.0.7 | 2024-07-06 | [40825](https://github.com/airbytehq/airbyte/pull/40825) | Update dependencies | From 13d166a479080a2f374700001b1ce891b0f0ec98 Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:25:38 +0200 Subject: [PATCH 162/260] =?UTF-8?q?=F0=9F=90=99=20source-sonar-cloud:=20ru?= =?UTF-8?q?n=20up-to-date=20pipeline=20[2024-07-13]=20(#41773)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-sonar-cloud/metadata.yaml | 2 +- .../connectors/source-sonar-cloud/poetry.lock | 6 +++--- .../connectors/source-sonar-cloud/pyproject.toml | 2 +- docs/integrations/sources/sonar-cloud.md | 1 + 4 files changed, 6 insertions(+), 5 deletions(-) diff --git a/airbyte-integrations/connectors/source-sonar-cloud/metadata.yaml b/airbyte-integrations/connectors/source-sonar-cloud/metadata.yaml index 7a650809c040..a22606909aa7 100644 --- a/airbyte-integrations/connectors/source-sonar-cloud/metadata.yaml +++ b/airbyte-integrations/connectors/source-sonar-cloud/metadata.yaml @@ -10,7 +10,7 @@ data: connectorSubtype: api connectorType: source definitionId: 3ab1d7d0-1577-4ab9-bcc4-1ff6a4c2c9f2 - dockerImageTag: 0.1.12 + dockerImageTag: 0.1.13 dockerRepository: airbyte/source-sonar-cloud documentationUrl: https://docs.airbyte.com/integrations/sources/sonar-cloud githubIssueLabel: source-sonar-cloud diff --git a/airbyte-integrations/connectors/source-sonar-cloud/poetry.lock b/airbyte-integrations/connectors/source-sonar-cloud/poetry.lock index 6f83e5bed3a6..c0f7f643d050 100644 --- a/airbyte-integrations/connectors/source-sonar-cloud/poetry.lock +++ b/airbyte-integrations/connectors/source-sonar-cloud/poetry.lock @@ -288,13 +288,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] diff --git a/airbyte-integrations/connectors/source-sonar-cloud/pyproject.toml b/airbyte-integrations/connectors/source-sonar-cloud/pyproject.toml index 7192e2c430f3..6b797ce39623 100644 --- a/airbyte-integrations/connectors/source-sonar-cloud/pyproject.toml +++ b/airbyte-integrations/connectors/source-sonar-cloud/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.1.12" +version = "0.1.13" name = "source-sonar-cloud" description = "Source implementation for Sonar Cloud." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/sonar-cloud.md b/docs/integrations/sources/sonar-cloud.md index eea2d9efc7b0..36a8693edeff 100644 --- a/docs/integrations/sources/sonar-cloud.md +++ b/docs/integrations/sources/sonar-cloud.md @@ -30,6 +30,7 @@ This source can sync data from the [Sonar cloud API](https://sonarcloud.io/web_a | Version | Date | Pull Request | Subject | | :------ | :-------------------------------------------------------------------- | :-------------------------------------------------------- | :------------------------------------------------------------------------------ | +| 0.1.13 | 2024-07-13 | [41773](https://github.com/airbytehq/airbyte/pull/41773) | Update dependencies | | 0.1.12 | 2024-07-10 | [41479](https://github.com/airbytehq/airbyte/pull/41479) | Update dependencies | | 0.1.11 | 2024-07-09 | [41178](https://github.com/airbytehq/airbyte/pull/41178) | Update dependencies | | 0.1.10 | 2024-07-06 | [40829](https://github.com/airbytehq/airbyte/pull/40829) | Update dependencies | From 4871e1523d760f9a60e7dbf16372a190000730c1 Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:25:41 +0200 Subject: [PATCH 163/260] =?UTF-8?q?=F0=9F=90=99=20source-pivotal-tracker:?= =?UTF-8?q?=20run=20up-to-date=20pipeline=20[2024-07-13]=20(#41772)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-pivotal-tracker/metadata.yaml | 2 +- .../connectors/source-pivotal-tracker/poetry.lock | 12 ++++++------ .../connectors/source-pivotal-tracker/pyproject.toml | 2 +- docs/integrations/sources/pivotal-tracker.md | 1 + 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/airbyte-integrations/connectors/source-pivotal-tracker/metadata.yaml b/airbyte-integrations/connectors/source-pivotal-tracker/metadata.yaml index a61c9a4a8136..8cd5c9a0b7dc 100644 --- a/airbyte-integrations/connectors/source-pivotal-tracker/metadata.yaml +++ b/airbyte-integrations/connectors/source-pivotal-tracker/metadata.yaml @@ -19,7 +19,7 @@ data: connectorSubtype: api connectorType: source definitionId: d60f5393-f99e-4310-8d05-b1876820f40e - dockerImageTag: 0.2.6 + dockerImageTag: 0.2.7 dockerRepository: airbyte/source-pivotal-tracker githubIssueLabel: source-pivotal-tracker icon: pivotal-tracker.svg diff --git a/airbyte-integrations/connectors/source-pivotal-tracker/poetry.lock b/airbyte-integrations/connectors/source-pivotal-tracker/poetry.lock index 7241f505bfd7..8598d282cc96 100644 --- a/airbyte-integrations/connectors/source-pivotal-tracker/poetry.lock +++ b/airbyte-integrations/connectors/source-pivotal-tracker/poetry.lock @@ -400,13 +400,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] @@ -556,13 +556,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.84" +version = "0.1.85" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.84-py3-none-any.whl", hash = "sha256:01f3c6390dba26c583bac8dd0e551ce3d0509c7f55cad714db0b5c8d36e4c7ff"}, - {file = "langsmith-0.1.84.tar.gz", hash = "sha256:5220c0439838b9a5bd320fd3686be505c5083dcee22d2452006c23891153bea1"}, + {file = "langsmith-0.1.85-py3-none-any.whl", hash = "sha256:c1f94384f10cea96f7b4d33fd3db7ec180c03c7468877d50846f881d2017ff94"}, + {file = "langsmith-0.1.85.tar.gz", hash = "sha256:acff31f9e53efa48586cf8e32f65625a335c74d7c4fa306d1655ac18452296f6"}, ] [package.dependencies] diff --git a/airbyte-integrations/connectors/source-pivotal-tracker/pyproject.toml b/airbyte-integrations/connectors/source-pivotal-tracker/pyproject.toml index 8151310cd0d7..3ae9b670241e 100644 --- a/airbyte-integrations/connectors/source-pivotal-tracker/pyproject.toml +++ b/airbyte-integrations/connectors/source-pivotal-tracker/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.2.6" +version = "0.2.7" name = "source-pivotal-tracker" description = "Source implementation for pivotal-tracker." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/pivotal-tracker.md b/docs/integrations/sources/pivotal-tracker.md index 32206d7431ca..0ca47a0b1d23 100644 --- a/docs/integrations/sources/pivotal-tracker.md +++ b/docs/integrations/sources/pivotal-tracker.md @@ -56,6 +56,7 @@ Use this to pull data from Pivotal Tracker. | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :-------------- | +| 0.2.7 | 2024-07-13 | [41772](https://github.com/airbytehq/airbyte/pull/41772) | Update dependencies | | 0.2.6 | 2024-07-10 | [41595](https://github.com/airbytehq/airbyte/pull/41595) | Update dependencies | | 0.2.5 | 2024-07-09 | [41139](https://github.com/airbytehq/airbyte/pull/41139) | Update dependencies | | 0.2.4 | 2024-07-06 | [40964](https://github.com/airbytehq/airbyte/pull/40964) | Update dependencies | From a40a0ae823efc77c9c5e0d6ab867734149a2d76c Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:25:44 +0200 Subject: [PATCH 164/260] =?UTF-8?q?=F0=9F=90=99=20source-drift:=20run=20up?= =?UTF-8?q?-to-date=20pipeline=20[2024-07-13]=20(#41771)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-drift/metadata.yaml | 2 +- .../connectors/source-drift/poetry.lock | 12 ++++++------ .../connectors/source-drift/pyproject.toml | 2 +- docs/integrations/sources/drift.md | 1 + 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/airbyte-integrations/connectors/source-drift/metadata.yaml b/airbyte-integrations/connectors/source-drift/metadata.yaml index 621496f2c30f..a2c993bbfe2b 100644 --- a/airbyte-integrations/connectors/source-drift/metadata.yaml +++ b/airbyte-integrations/connectors/source-drift/metadata.yaml @@ -10,7 +10,7 @@ data: connectorSubtype: api connectorType: source definitionId: 445831eb-78db-4b1f-8f1f-0d96ad8739e2 - dockerImageTag: 0.3.11 + dockerImageTag: 0.3.12 dockerRepository: airbyte/source-drift documentationUrl: https://docs.airbyte.com/integrations/sources/drift githubIssueLabel: source-drift diff --git a/airbyte-integrations/connectors/source-drift/poetry.lock b/airbyte-integrations/connectors/source-drift/poetry.lock index 9b0cf7c8a944..cc9d1ecb9669 100644 --- a/airbyte-integrations/connectors/source-drift/poetry.lock +++ b/airbyte-integrations/connectors/source-drift/poetry.lock @@ -410,13 +410,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] @@ -566,13 +566,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.84" +version = "0.1.85" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.84-py3-none-any.whl", hash = "sha256:01f3c6390dba26c583bac8dd0e551ce3d0509c7f55cad714db0b5c8d36e4c7ff"}, - {file = "langsmith-0.1.84.tar.gz", hash = "sha256:5220c0439838b9a5bd320fd3686be505c5083dcee22d2452006c23891153bea1"}, + {file = "langsmith-0.1.85-py3-none-any.whl", hash = "sha256:c1f94384f10cea96f7b4d33fd3db7ec180c03c7468877d50846f881d2017ff94"}, + {file = "langsmith-0.1.85.tar.gz", hash = "sha256:acff31f9e53efa48586cf8e32f65625a335c74d7c4fa306d1655ac18452296f6"}, ] [package.dependencies] diff --git a/airbyte-integrations/connectors/source-drift/pyproject.toml b/airbyte-integrations/connectors/source-drift/pyproject.toml index 0bb8a0b8e4ec..b815c6c3f769 100644 --- a/airbyte-integrations/connectors/source-drift/pyproject.toml +++ b/airbyte-integrations/connectors/source-drift/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.3.11" +version = "0.3.12" name = "source-drift" description = "Source implementation for Drift." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/drift.md b/docs/integrations/sources/drift.md index d5b119c22fca..653cce3fa0b8 100644 --- a/docs/integrations/sources/drift.md +++ b/docs/integrations/sources/drift.md @@ -56,6 +56,7 @@ The Drift connector should not run into Drift API limitations under normal usage | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :------------------------------------------------------------------------------ | +| 0.3.12 | 2024-07-13 | [41771](https://github.com/airbytehq/airbyte/pull/41771) | Update dependencies | | 0.3.11 | 2024-07-10 | [41347](https://github.com/airbytehq/airbyte/pull/41347) | Update dependencies | | 0.3.10 | 2024-07-09 | [41300](https://github.com/airbytehq/airbyte/pull/41300) | Update dependencies | | 0.3.9 | 2024-07-06 | [40889](https://github.com/airbytehq/airbyte/pull/40889) | Update dependencies | From 571b92e2ad0355bfe162da4389fa4551a243340e Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:25:48 +0200 Subject: [PATCH 165/260] =?UTF-8?q?=F0=9F=90=99=20source-orbit:=20run=20up?= =?UTF-8?q?-to-date=20pipeline=20[2024-07-13]=20(#41770)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-orbit/metadata.yaml | 2 +- airbyte-integrations/connectors/source-orbit/poetry.lock | 6 +++--- airbyte-integrations/connectors/source-orbit/pyproject.toml | 2 +- docs/integrations/sources/orbit.md | 1 + 4 files changed, 6 insertions(+), 5 deletions(-) diff --git a/airbyte-integrations/connectors/source-orbit/metadata.yaml b/airbyte-integrations/connectors/source-orbit/metadata.yaml index e7c62108fe9e..741f86bd2a68 100644 --- a/airbyte-integrations/connectors/source-orbit/metadata.yaml +++ b/airbyte-integrations/connectors/source-orbit/metadata.yaml @@ -10,7 +10,7 @@ data: connectorSubtype: api connectorType: source definitionId: 95bcc041-1d1a-4c2e-8802-0ca5b1bfa36a - dockerImageTag: 0.3.11 + dockerImageTag: 0.3.12 dockerRepository: airbyte/source-orbit documentationUrl: https://docs.airbyte.com/integrations/sources/orbit githubIssueLabel: source-orbit diff --git a/airbyte-integrations/connectors/source-orbit/poetry.lock b/airbyte-integrations/connectors/source-orbit/poetry.lock index cce71c3b0e79..a1ccc2d0271d 100644 --- a/airbyte-integrations/connectors/source-orbit/poetry.lock +++ b/airbyte-integrations/connectors/source-orbit/poetry.lock @@ -288,13 +288,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] diff --git a/airbyte-integrations/connectors/source-orbit/pyproject.toml b/airbyte-integrations/connectors/source-orbit/pyproject.toml index ab7e3b0248db..db62b87cc6ab 100644 --- a/airbyte-integrations/connectors/source-orbit/pyproject.toml +++ b/airbyte-integrations/connectors/source-orbit/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.3.11" +version = "0.3.12" name = "source-orbit" description = "Source implementation for Orbit." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/orbit.md b/docs/integrations/sources/orbit.md index 877b7c400492..be34dd8658a7 100644 --- a/docs/integrations/sources/orbit.md +++ b/docs/integrations/sources/orbit.md @@ -48,6 +48,7 @@ The Orbit API Key should be available to you immediately as an Orbit user. | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :------------------------------------------------------------------------------ | +| 0.3.12 | 2024-07-13 | [41770](https://github.com/airbytehq/airbyte/pull/41770) | Update dependencies | | 0.3.11 | 2024-07-10 | [41428](https://github.com/airbytehq/airbyte/pull/41428) | Update dependencies | | 0.3.10 | 2024-07-09 | [41216](https://github.com/airbytehq/airbyte/pull/41216) | Update dependencies | | 0.3.9 | 2024-07-06 | [40974](https://github.com/airbytehq/airbyte/pull/40974) | Update dependencies | From 5a78d2c1d27e5611265fe965cd3ad1dda69f92c5 Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:25:51 +0200 Subject: [PATCH 166/260] =?UTF-8?q?=F0=9F=90=99=20source-pendo:=20run=20up?= =?UTF-8?q?-to-date=20pipeline=20[2024-07-13]=20(#41769)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-pendo/metadata.yaml | 2 +- airbyte-integrations/connectors/source-pendo/poetry.lock | 6 +++--- airbyte-integrations/connectors/source-pendo/pyproject.toml | 2 +- docs/integrations/sources/pendo.md | 1 + 4 files changed, 6 insertions(+), 5 deletions(-) diff --git a/airbyte-integrations/connectors/source-pendo/metadata.yaml b/airbyte-integrations/connectors/source-pendo/metadata.yaml index f8459c3220f8..c03c23710b22 100644 --- a/airbyte-integrations/connectors/source-pendo/metadata.yaml +++ b/airbyte-integrations/connectors/source-pendo/metadata.yaml @@ -7,7 +7,7 @@ data: connectorSubtype: api connectorType: source definitionId: b1ccb590-e84f-46c0-83a0-2048ccfffdae - dockerImageTag: 0.1.11 + dockerImageTag: 0.1.12 dockerRepository: airbyte/source-pendo documentationUrl: https://docs.airbyte.com/integrations/sources/pendo githubIssueLabel: source-pendo diff --git a/airbyte-integrations/connectors/source-pendo/poetry.lock b/airbyte-integrations/connectors/source-pendo/poetry.lock index cce71c3b0e79..a1ccc2d0271d 100644 --- a/airbyte-integrations/connectors/source-pendo/poetry.lock +++ b/airbyte-integrations/connectors/source-pendo/poetry.lock @@ -288,13 +288,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] diff --git a/airbyte-integrations/connectors/source-pendo/pyproject.toml b/airbyte-integrations/connectors/source-pendo/pyproject.toml index f4052d9839d8..bb838f7ca519 100644 --- a/airbyte-integrations/connectors/source-pendo/pyproject.toml +++ b/airbyte-integrations/connectors/source-pendo/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.1.11" +version = "0.1.12" name = "source-pendo" description = "Source implementation for Pendo." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/pendo.md b/docs/integrations/sources/pendo.md index 6c8ccc4945b5..9c22ccf249cf 100644 --- a/docs/integrations/sources/pendo.md +++ b/docs/integrations/sources/pendo.md @@ -64,6 +64,7 @@ The Pendo source connector supports the following [sync modes](https://docs.airb | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :------------------------------------------------------------------------------ | +| 0.1.12 | 2024-07-13 | [41769](https://github.com/airbytehq/airbyte/pull/41769) | Update dependencies | | 0.1.11 | 2024-07-10 | [41421](https://github.com/airbytehq/airbyte/pull/41421) | Update dependencies | | 0.1.10 | 2024-07-09 | [41094](https://github.com/airbytehq/airbyte/pull/41094) | Update dependencies | | 0.1.9 | 2024-07-06 | [40984](https://github.com/airbytehq/airbyte/pull/40984) | Update dependencies | From fb0d5fae5307232869dc8908480f460f10bc492c Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:25:54 +0200 Subject: [PATCH 167/260] =?UTF-8?q?=F0=9F=90=99=20source-gridly:=20run=20u?= =?UTF-8?q?p-to-date=20pipeline=20[2024-07-13]=20(#41768)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-gridly/metadata.yaml | 2 +- airbyte-integrations/connectors/source-gridly/poetry.lock | 6 +++--- .../connectors/source-gridly/pyproject.toml | 2 +- docs/integrations/sources/gridly.md | 1 + 4 files changed, 6 insertions(+), 5 deletions(-) diff --git a/airbyte-integrations/connectors/source-gridly/metadata.yaml b/airbyte-integrations/connectors/source-gridly/metadata.yaml index 9a180f40eadb..a59db2fc55eb 100644 --- a/airbyte-integrations/connectors/source-gridly/metadata.yaml +++ b/airbyte-integrations/connectors/source-gridly/metadata.yaml @@ -2,7 +2,7 @@ data: connectorSubtype: api connectorType: source definitionId: 6cbea164-3237-433b-9abb-36d384ee4cbf - dockerImageTag: 0.1.9 + dockerImageTag: 0.1.10 dockerRepository: airbyte/source-gridly githubIssueLabel: source-gridly icon: gridly.svg diff --git a/airbyte-integrations/connectors/source-gridly/poetry.lock b/airbyte-integrations/connectors/source-gridly/poetry.lock index 6f83e5bed3a6..c0f7f643d050 100644 --- a/airbyte-integrations/connectors/source-gridly/poetry.lock +++ b/airbyte-integrations/connectors/source-gridly/poetry.lock @@ -288,13 +288,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] diff --git a/airbyte-integrations/connectors/source-gridly/pyproject.toml b/airbyte-integrations/connectors/source-gridly/pyproject.toml index 8c8470edc563..c7a4a264d150 100644 --- a/airbyte-integrations/connectors/source-gridly/pyproject.toml +++ b/airbyte-integrations/connectors/source-gridly/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.1.9" +version = "0.1.10" name = "source-gridly" description = "Source implementation for Gridly." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/gridly.md b/docs/integrations/sources/gridly.md index 420ebb8528b9..49521f94f02c 100644 --- a/docs/integrations/sources/gridly.md +++ b/docs/integrations/sources/gridly.md @@ -39,6 +39,7 @@ Gridly support version control, by default the `grid id` is the same to the `bra | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :---------------------------------------------------------- | +| 0.1.10 | 2024-07-13 | [41768](https://github.com/airbytehq/airbyte/pull/41768) | Update dependencies | | 0.1.9 | 2024-07-10 | [41376](https://github.com/airbytehq/airbyte/pull/41376) | Update dependencies | | 0.1.8 | 2024-07-09 | [41163](https://github.com/airbytehq/airbyte/pull/41163) | Update dependencies | | 0.1.7 | 2024-07-06 | [40908](https://github.com/airbytehq/airbyte/pull/40908) | Update dependencies | From 1750fd6506e5749bf49cef15e3e4edcfb16538a8 Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:25:57 +0200 Subject: [PATCH 168/260] =?UTF-8?q?=F0=9F=90=99=20source-amplitude:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-07-13]=20(#41767)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-amplitude/metadata.yaml | 2 +- .../connectors/source-amplitude/poetry.lock | 12 ++++++------ .../connectors/source-amplitude/pyproject.toml | 2 +- docs/integrations/sources/amplitude.md | 1 + 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/airbyte-integrations/connectors/source-amplitude/metadata.yaml b/airbyte-integrations/connectors/source-amplitude/metadata.yaml index b6ab1703f1f7..ff018f4785eb 100644 --- a/airbyte-integrations/connectors/source-amplitude/metadata.yaml +++ b/airbyte-integrations/connectors/source-amplitude/metadata.yaml @@ -11,7 +11,7 @@ data: connectorSubtype: api connectorType: source definitionId: fa9f58c6-2d03-4237-aaa4-07d75e0c1396 - dockerImageTag: 0.3.17 + dockerImageTag: 0.3.18 dockerRepository: airbyte/source-amplitude documentationUrl: https://docs.airbyte.com/integrations/sources/amplitude githubIssueLabel: source-amplitude diff --git a/airbyte-integrations/connectors/source-amplitude/poetry.lock b/airbyte-integrations/connectors/source-amplitude/poetry.lock index 048fe43fea35..b4ade753a2b5 100644 --- a/airbyte-integrations/connectors/source-amplitude/poetry.lock +++ b/airbyte-integrations/connectors/source-amplitude/poetry.lock @@ -410,13 +410,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] @@ -566,13 +566,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.84" +version = "0.1.85" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.84-py3-none-any.whl", hash = "sha256:01f3c6390dba26c583bac8dd0e551ce3d0509c7f55cad714db0b5c8d36e4c7ff"}, - {file = "langsmith-0.1.84.tar.gz", hash = "sha256:5220c0439838b9a5bd320fd3686be505c5083dcee22d2452006c23891153bea1"}, + {file = "langsmith-0.1.85-py3-none-any.whl", hash = "sha256:c1f94384f10cea96f7b4d33fd3db7ec180c03c7468877d50846f881d2017ff94"}, + {file = "langsmith-0.1.85.tar.gz", hash = "sha256:acff31f9e53efa48586cf8e32f65625a335c74d7c4fa306d1655ac18452296f6"}, ] [package.dependencies] diff --git a/airbyte-integrations/connectors/source-amplitude/pyproject.toml b/airbyte-integrations/connectors/source-amplitude/pyproject.toml index 07e4db844ca0..b2a96f764708 100644 --- a/airbyte-integrations/connectors/source-amplitude/pyproject.toml +++ b/airbyte-integrations/connectors/source-amplitude/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.3.17" +version = "0.3.18" name = "source-amplitude" description = "Source implementation for Amplitude." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/amplitude.md b/docs/integrations/sources/amplitude.md index 227dab97b686..f00514072bda 100644 --- a/docs/integrations/sources/amplitude.md +++ b/docs/integrations/sources/amplitude.md @@ -57,6 +57,7 @@ The Amplitude connector ideally should gracefully handle Amplitude API limitatio | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :------------------------------------------------------------------------------------------- | +| 0.3.18 | 2024-07-13 | [41767](https://github.com/airbytehq/airbyte/pull/41767) | Update dependencies | | 0.3.17 | 2024-07-10 | [41537](https://github.com/airbytehq/airbyte/pull/41537) | Update dependencies | | 0.3.16 | 2024-07-09 | [41097](https://github.com/airbytehq/airbyte/pull/41097) | Update dependencies | | 0.3.15 | 2024-07-06 | [40982](https://github.com/airbytehq/airbyte/pull/40982) | Update dependencies | From ac3f5e9401ecd77e28be0d9400799fb3e3143f44 Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:26:00 +0200 Subject: [PATCH 169/260] =?UTF-8?q?=F0=9F=90=99=20source-hubspot:=20run=20?= =?UTF-8?q?up-to-date=20pipeline=20[2024-07-13]=20(#41766)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-hubspot/metadata.yaml | 2 +- .../connectors/source-hubspot/poetry.lock | 12 ++++++------ .../connectors/source-hubspot/pyproject.toml | 2 +- docs/integrations/sources/hubspot.md | 1 + 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/airbyte-integrations/connectors/source-hubspot/metadata.yaml b/airbyte-integrations/connectors/source-hubspot/metadata.yaml index 6d3a14df5e8d..5082271f4ec8 100644 --- a/airbyte-integrations/connectors/source-hubspot/metadata.yaml +++ b/airbyte-integrations/connectors/source-hubspot/metadata.yaml @@ -10,7 +10,7 @@ data: connectorSubtype: api connectorType: source definitionId: 36c891d9-4bd9-43ac-bad2-10e12756272c - dockerImageTag: 4.2.11 + dockerImageTag: 4.2.12 dockerRepository: airbyte/source-hubspot documentationUrl: https://docs.airbyte.com/integrations/sources/hubspot githubIssueLabel: source-hubspot diff --git a/airbyte-integrations/connectors/source-hubspot/poetry.lock b/airbyte-integrations/connectors/source-hubspot/poetry.lock index 01ddb337e3ef..796816b3677d 100644 --- a/airbyte-integrations/connectors/source-hubspot/poetry.lock +++ b/airbyte-integrations/connectors/source-hubspot/poetry.lock @@ -421,13 +421,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] @@ -592,13 +592,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.84" +version = "0.1.85" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.84-py3-none-any.whl", hash = "sha256:01f3c6390dba26c583bac8dd0e551ce3d0509c7f55cad714db0b5c8d36e4c7ff"}, - {file = "langsmith-0.1.84.tar.gz", hash = "sha256:5220c0439838b9a5bd320fd3686be505c5083dcee22d2452006c23891153bea1"}, + {file = "langsmith-0.1.85-py3-none-any.whl", hash = "sha256:c1f94384f10cea96f7b4d33fd3db7ec180c03c7468877d50846f881d2017ff94"}, + {file = "langsmith-0.1.85.tar.gz", hash = "sha256:acff31f9e53efa48586cf8e32f65625a335c74d7c4fa306d1655ac18452296f6"}, ] [package.dependencies] diff --git a/airbyte-integrations/connectors/source-hubspot/pyproject.toml b/airbyte-integrations/connectors/source-hubspot/pyproject.toml index 51d32e0a40b8..4ed9e79ebfc8 100644 --- a/airbyte-integrations/connectors/source-hubspot/pyproject.toml +++ b/airbyte-integrations/connectors/source-hubspot/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "4.2.11" +version = "4.2.12" name = "source-hubspot" description = "Source implementation for HubSpot." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/hubspot.md b/docs/integrations/sources/hubspot.md index 731d9a0ba941..28d896f17ae6 100644 --- a/docs/integrations/sources/hubspot.md +++ b/docs/integrations/sources/hubspot.md @@ -337,6 +337,7 @@ The connector is restricted by normal HubSpot [rate limitations](https://legacyd | Version | Date | Pull Request | Subject | |:--------|:-----------| :------------------------------------------------------- |:---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| +| 4.2.12 | 2024-07-13 | [41766](https://github.com/airbytehq/airbyte/pull/41766) | Update dependencies | | 4.2.11 | 2024-07-10 | [41558](https://github.com/airbytehq/airbyte/pull/41558) | Update dependencies | | 4.2.10 | 2024-07-09 | [41286](https://github.com/airbytehq/airbyte/pull/41286) | Update dependencies | | 4.2.9 | 2024-07-08 | [41045](https://github.com/airbytehq/airbyte/pull/41045) | Use latest `CDK` version possible | From 5013b495bb7225f550475d5b61f87eaaa1ddbe78 Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:26:03 +0200 Subject: [PATCH 170/260] =?UTF-8?q?=F0=9F=90=99=20source-pinterest:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-07-13]=20(#41765)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-pinterest/metadata.yaml | 2 +- .../connectors/source-pinterest/poetry.lock | 12 ++++++------ .../connectors/source-pinterest/pyproject.toml | 2 +- docs/integrations/sources/pinterest.md | 1 + 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/airbyte-integrations/connectors/source-pinterest/metadata.yaml b/airbyte-integrations/connectors/source-pinterest/metadata.yaml index 823c5ec09b7b..916369b45353 100644 --- a/airbyte-integrations/connectors/source-pinterest/metadata.yaml +++ b/airbyte-integrations/connectors/source-pinterest/metadata.yaml @@ -5,7 +5,7 @@ data: connectorSubtype: api connectorType: source definitionId: 5cb7e5fe-38c2-11ec-8d3d-0242ac130003 - dockerImageTag: 2.0.4 + dockerImageTag: 2.0.5 dockerRepository: airbyte/source-pinterest connectorBuildOptions: baseImage: docker.io/airbyte/python-connector-base:2.0.0@sha256:c44839ba84406116e8ba68722a0f30e8f6e7056c726f447681bb9e9ece8bd916 diff --git a/airbyte-integrations/connectors/source-pinterest/poetry.lock b/airbyte-integrations/connectors/source-pinterest/poetry.lock index 1aaa9f5cd97f..640146b784a3 100644 --- a/airbyte-integrations/connectors/source-pinterest/poetry.lock +++ b/airbyte-integrations/connectors/source-pinterest/poetry.lock @@ -409,13 +409,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] @@ -565,13 +565,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.84" +version = "0.1.85" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.84-py3-none-any.whl", hash = "sha256:01f3c6390dba26c583bac8dd0e551ce3d0509c7f55cad714db0b5c8d36e4c7ff"}, - {file = "langsmith-0.1.84.tar.gz", hash = "sha256:5220c0439838b9a5bd320fd3686be505c5083dcee22d2452006c23891153bea1"}, + {file = "langsmith-0.1.85-py3-none-any.whl", hash = "sha256:c1f94384f10cea96f7b4d33fd3db7ec180c03c7468877d50846f881d2017ff94"}, + {file = "langsmith-0.1.85.tar.gz", hash = "sha256:acff31f9e53efa48586cf8e32f65625a335c74d7c4fa306d1655ac18452296f6"}, ] [package.dependencies] diff --git a/airbyte-integrations/connectors/source-pinterest/pyproject.toml b/airbyte-integrations/connectors/source-pinterest/pyproject.toml index 5dbc29049818..32de8fc48b3d 100644 --- a/airbyte-integrations/connectors/source-pinterest/pyproject.toml +++ b/airbyte-integrations/connectors/source-pinterest/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "2.0.4" +version = "2.0.5" name = "source-pinterest" description = "Source implementation for Pinterest." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/pinterest.md b/docs/integrations/sources/pinterest.md index db772df4f1f3..986476070581 100644 --- a/docs/integrations/sources/pinterest.md +++ b/docs/integrations/sources/pinterest.md @@ -203,6 +203,7 @@ The connector is restricted by the Pinterest | Version | Date | Pull Request | Subject | |:--------|:-----------|:---------------------------------------------------------|:--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| +| 2.0.5 | 2024-07-13 | [41765](https://github.com/airbytehq/airbyte/pull/41765) | Update dependencies | | 2.0.4 | 2024-07-10 | [41449](https://github.com/airbytehq/airbyte/pull/41449) | Update dependencies | | 2.0.3 | 2024-07-06 | [39972](https://github.com/airbytehq/airbyte/pull/39972) | Update dependencies | | 2.0.2 | 2024-06-10 | [39367](https://github.com/airbytehq/airbyte/pull/39367) | Fix type error when start date was not provided | From f3b08b8cefa55647b820193cd9f393ef90619987 Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:26:06 +0200 Subject: [PATCH 171/260] =?UTF-8?q?=F0=9F=90=99=20source-microsoft-onedriv?= =?UTF-8?q?e:=20run=20up-to-date=20pipeline=20[2024-07-13]=20(#41764)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../source-microsoft-onedrive/metadata.yaml | 2 +- .../connectors/source-microsoft-onedrive/poetry.lock | 12 ++++++------ .../source-microsoft-onedrive/pyproject.toml | 2 +- docs/integrations/sources/microsoft-onedrive.md | 1 + 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/airbyte-integrations/connectors/source-microsoft-onedrive/metadata.yaml b/airbyte-integrations/connectors/source-microsoft-onedrive/metadata.yaml index 0c17ed466341..7da45eb286db 100644 --- a/airbyte-integrations/connectors/source-microsoft-onedrive/metadata.yaml +++ b/airbyte-integrations/connectors/source-microsoft-onedrive/metadata.yaml @@ -20,7 +20,7 @@ data: connectorSubtype: file connectorType: source definitionId: 01d1c685-fd4a-4837-8f4c-93fe5a0d2188 - dockerImageTag: 0.2.9 + dockerImageTag: 0.2.10 dockerRepository: airbyte/source-microsoft-onedrive githubIssueLabel: source-microsoft-onedrive icon: microsoft-onedrive.svg diff --git a/airbyte-integrations/connectors/source-microsoft-onedrive/poetry.lock b/airbyte-integrations/connectors/source-microsoft-onedrive/poetry.lock index 7bab21dc7b3c..bab1f9b1f004 100644 --- a/airbyte-integrations/connectors/source-microsoft-onedrive/poetry.lock +++ b/airbyte-integrations/connectors/source-microsoft-onedrive/poetry.lock @@ -511,13 +511,13 @@ dev = ["coverage", "pytest (>=7.4.4)"] [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] @@ -857,13 +857,13 @@ six = "*" [[package]] name = "langsmith" -version = "0.1.84" +version = "0.1.85" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.84-py3-none-any.whl", hash = "sha256:01f3c6390dba26c583bac8dd0e551ce3d0509c7f55cad714db0b5c8d36e4c7ff"}, - {file = "langsmith-0.1.84.tar.gz", hash = "sha256:5220c0439838b9a5bd320fd3686be505c5083dcee22d2452006c23891153bea1"}, + {file = "langsmith-0.1.85-py3-none-any.whl", hash = "sha256:c1f94384f10cea96f7b4d33fd3db7ec180c03c7468877d50846f881d2017ff94"}, + {file = "langsmith-0.1.85.tar.gz", hash = "sha256:acff31f9e53efa48586cf8e32f65625a335c74d7c4fa306d1655ac18452296f6"}, ] [package.dependencies] diff --git a/airbyte-integrations/connectors/source-microsoft-onedrive/pyproject.toml b/airbyte-integrations/connectors/source-microsoft-onedrive/pyproject.toml index ae2dc226a7fd..28ef5f15b989 100644 --- a/airbyte-integrations/connectors/source-microsoft-onedrive/pyproject.toml +++ b/airbyte-integrations/connectors/source-microsoft-onedrive/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.2.9" +version = "0.2.10" name = "source-microsoft-onedrive" description = "Source implementation for Microsoft OneDrive." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/microsoft-onedrive.md b/docs/integrations/sources/microsoft-onedrive.md index 435eeb45068e..9fe036ca4d14 100644 --- a/docs/integrations/sources/microsoft-onedrive.md +++ b/docs/integrations/sources/microsoft-onedrive.md @@ -126,6 +126,7 @@ The connector is restricted by normal Microsoft Graph [requests limitation](http | Version | Date | Pull Request | Subject | |:--------|:-----------|:---------------------------------------------------------|:------------------------------------------------------------------------------------------------| +| 0.2.10 | 2024-07-13 | [41764](https://github.com/airbytehq/airbyte/pull/41764) | Update dependencies | | 0.2.9 | 2024-07-10 | [41366](https://github.com/airbytehq/airbyte/pull/41366) | Update dependencies | | 0.2.8 | 2024-07-09 | [41213](https://github.com/airbytehq/airbyte/pull/41213) | Update dependencies | | 0.2.7 | 2024-06-29 | [40623](https://github.com/airbytehq/airbyte/pull/40623) | Update dependencies | From b523bfb1ab40e007088d50eeeedd5d343a13a75e Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:26:09 +0200 Subject: [PATCH 172/260] =?UTF-8?q?=F0=9F=90=99=20source-coin-api:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-07-13]=20(#41763)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-coin-api/metadata.yaml | 2 +- airbyte-integrations/connectors/source-coin-api/poetry.lock | 6 +++--- .../connectors/source-coin-api/pyproject.toml | 2 +- docs/integrations/sources/coin-api.md | 1 + 4 files changed, 6 insertions(+), 5 deletions(-) diff --git a/airbyte-integrations/connectors/source-coin-api/metadata.yaml b/airbyte-integrations/connectors/source-coin-api/metadata.yaml index b4feba1ab836..8429e00e6f69 100644 --- a/airbyte-integrations/connectors/source-coin-api/metadata.yaml +++ b/airbyte-integrations/connectors/source-coin-api/metadata.yaml @@ -7,7 +7,7 @@ data: connectorSubtype: api connectorType: source definitionId: 919984ef-53a2-479b-8ffe-9c1ddb9fc3f3 - dockerImageTag: 0.2.11 + dockerImageTag: 0.2.12 dockerRepository: airbyte/source-coin-api documentationUrl: https://docs.airbyte.com/integrations/sources/coin-api githubIssueLabel: source-coin-api diff --git a/airbyte-integrations/connectors/source-coin-api/poetry.lock b/airbyte-integrations/connectors/source-coin-api/poetry.lock index 6f83e5bed3a6..c0f7f643d050 100644 --- a/airbyte-integrations/connectors/source-coin-api/poetry.lock +++ b/airbyte-integrations/connectors/source-coin-api/poetry.lock @@ -288,13 +288,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] diff --git a/airbyte-integrations/connectors/source-coin-api/pyproject.toml b/airbyte-integrations/connectors/source-coin-api/pyproject.toml index cf370aa11810..a9026a17b100 100644 --- a/airbyte-integrations/connectors/source-coin-api/pyproject.toml +++ b/airbyte-integrations/connectors/source-coin-api/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.2.11" +version = "0.2.12" name = "source-coin-api" description = "Source implementation for Coin Api." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/coin-api.md b/docs/integrations/sources/coin-api.md index f3f1ef6dc741..c90357d62b63 100644 --- a/docs/integrations/sources/coin-api.md +++ b/docs/integrations/sources/coin-api.md @@ -53,6 +53,7 @@ The following fields are required fields for the connector to work: | Version | Date | Pull Request | Subject | | :------ | :--------- | :-------------------------------------------------------- | :------------------------------------------------------------------------------------------ | +| 0.2.12 | 2024-07-13 | [41763](https://github.com/airbytehq/airbyte/pull/41763) | Update dependencies | | 0.2.11 | 2024-07-10 | [41488](https://github.com/airbytehq/airbyte/pull/41488) | Update dependencies | | 0.2.10 | 2024-07-09 | [41206](https://github.com/airbytehq/airbyte/pull/41206) | Update dependencies | | 0.2.9 | 2024-07-06 | [40976](https://github.com/airbytehq/airbyte/pull/40976) | Update dependencies | From 03cfaf793e46fc6d2dc23675427b48122c135702 Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:26:11 +0200 Subject: [PATCH 173/260] =?UTF-8?q?=F0=9F=90=99=20source-pokeapi:=20run=20?= =?UTF-8?q?up-to-date=20pipeline=20[2024-07-13]=20(#41762)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-pokeapi/metadata.yaml | 2 +- .../connectors/source-pokeapi/poetry.lock | 12 ++++++------ .../connectors/source-pokeapi/pyproject.toml | 2 +- docs/integrations/sources/pokeapi.md | 1 + 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/airbyte-integrations/connectors/source-pokeapi/metadata.yaml b/airbyte-integrations/connectors/source-pokeapi/metadata.yaml index 92a4c87e8d36..276494395c22 100644 --- a/airbyte-integrations/connectors/source-pokeapi/metadata.yaml +++ b/airbyte-integrations/connectors/source-pokeapi/metadata.yaml @@ -19,7 +19,7 @@ data: connectorSubtype: api connectorType: source definitionId: 6371b14b-bc68-4236-bfbd-468e8df8e968 - dockerImageTag: 0.2.7 + dockerImageTag: 0.2.8 dockerRepository: airbyte/source-pokeapi githubIssueLabel: source-pokeapi icon: pokeapi.svg diff --git a/airbyte-integrations/connectors/source-pokeapi/poetry.lock b/airbyte-integrations/connectors/source-pokeapi/poetry.lock index cb1a23ecd43b..e0918c3f13c6 100644 --- a/airbyte-integrations/connectors/source-pokeapi/poetry.lock +++ b/airbyte-integrations/connectors/source-pokeapi/poetry.lock @@ -400,13 +400,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] @@ -556,13 +556,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.84" +version = "0.1.85" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.84-py3-none-any.whl", hash = "sha256:01f3c6390dba26c583bac8dd0e551ce3d0509c7f55cad714db0b5c8d36e4c7ff"}, - {file = "langsmith-0.1.84.tar.gz", hash = "sha256:5220c0439838b9a5bd320fd3686be505c5083dcee22d2452006c23891153bea1"}, + {file = "langsmith-0.1.85-py3-none-any.whl", hash = "sha256:c1f94384f10cea96f7b4d33fd3db7ec180c03c7468877d50846f881d2017ff94"}, + {file = "langsmith-0.1.85.tar.gz", hash = "sha256:acff31f9e53efa48586cf8e32f65625a335c74d7c4fa306d1655ac18452296f6"}, ] [package.dependencies] diff --git a/airbyte-integrations/connectors/source-pokeapi/pyproject.toml b/airbyte-integrations/connectors/source-pokeapi/pyproject.toml index a5afb706b247..7a301e91ddcd 100644 --- a/airbyte-integrations/connectors/source-pokeapi/pyproject.toml +++ b/airbyte-integrations/connectors/source-pokeapi/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.2.7" +version = "0.2.8" name = "source-pokeapi" description = "Source implementation for pokeapi." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/pokeapi.md b/docs/integrations/sources/pokeapi.md index f482dcff35c3..b094a6374d02 100644 --- a/docs/integrations/sources/pokeapi.md +++ b/docs/integrations/sources/pokeapi.md @@ -39,6 +39,7 @@ The PokéAPI uses the same [JSONSchema](https://json-schema.org/understanding-js | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :---------------------------------------------- | +| 0.2.8 | 2024-07-13 | [41762](https://github.com/airbytehq/airbyte/pull/41762) | Update dependencies | | 0.2.7 | 2024-07-10 | [41446](https://github.com/airbytehq/airbyte/pull/41446) | Update dependencies | | 0.2.6 | 2024-07-09 | [41131](https://github.com/airbytehq/airbyte/pull/41131) | Update dependencies | | 0.2.5 | 2024-07-06 | [40938](https://github.com/airbytehq/airbyte/pull/40938) | Update dependencies | From 420c9e72615ce7a45c91f8426bffd3454b1d2967 Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:26:14 +0200 Subject: [PATCH 174/260] =?UTF-8?q?=F0=9F=90=99=20source-google-webfonts:?= =?UTF-8?q?=20run=20up-to-date=20pipeline=20[2024-07-13]=20(#41761)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-google-webfonts/metadata.yaml | 2 +- .../connectors/source-google-webfonts/poetry.lock | 6 +++--- .../connectors/source-google-webfonts/pyproject.toml | 2 +- docs/integrations/sources/google-webfonts.md | 1 + 4 files changed, 6 insertions(+), 5 deletions(-) diff --git a/airbyte-integrations/connectors/source-google-webfonts/metadata.yaml b/airbyte-integrations/connectors/source-google-webfonts/metadata.yaml index 81b204c40a5a..33512a3cef52 100644 --- a/airbyte-integrations/connectors/source-google-webfonts/metadata.yaml +++ b/airbyte-integrations/connectors/source-google-webfonts/metadata.yaml @@ -7,7 +7,7 @@ data: connectorSubtype: api connectorType: source definitionId: a68fbcde-b465-4ab3-b2a6-b0590a875835 - dockerImageTag: 0.1.10 + dockerImageTag: 0.1.11 dockerRepository: airbyte/source-google-webfonts documentationUrl: https://docs.airbyte.com/integrations/sources/google-webfonts githubIssueLabel: source-google-webfonts diff --git a/airbyte-integrations/connectors/source-google-webfonts/poetry.lock b/airbyte-integrations/connectors/source-google-webfonts/poetry.lock index 6f83e5bed3a6..c0f7f643d050 100644 --- a/airbyte-integrations/connectors/source-google-webfonts/poetry.lock +++ b/airbyte-integrations/connectors/source-google-webfonts/poetry.lock @@ -288,13 +288,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] diff --git a/airbyte-integrations/connectors/source-google-webfonts/pyproject.toml b/airbyte-integrations/connectors/source-google-webfonts/pyproject.toml index 584f4ca48c43..7a30539ed62d 100644 --- a/airbyte-integrations/connectors/source-google-webfonts/pyproject.toml +++ b/airbyte-integrations/connectors/source-google-webfonts/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.1.10" +version = "0.1.11" name = "source-google-webfonts" description = "Source implementation for Google Webfonts." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/google-webfonts.md b/docs/integrations/sources/google-webfonts.md index a34ca150a827..f5f9973ca667 100644 --- a/docs/integrations/sources/google-webfonts.md +++ b/docs/integrations/sources/google-webfonts.md @@ -68,6 +68,7 @@ Google Webfont's [API reference](https://developers.google.com/fonts/docs/develo | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- |:--------------------------------------------------------------------------------| +| 0.1.11 | 2024-07-13 | [41761](https://github.com/airbytehq/airbyte/pull/41761) | Update dependencies | | 0.1.10 | 2024-07-10 | [41593](https://github.com/airbytehq/airbyte/pull/41593) | Update dependencies | | 0.1.9 | 2024-07-09 | [41203](https://github.com/airbytehq/airbyte/pull/41203) | Update dependencies | | 0.1.8 | 2024-07-06 | [40847](https://github.com/airbytehq/airbyte/pull/40847) | Update dependencies | From 1b8cdaf94800c503dd6284dfa639b9bb05c89f25 Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:26:17 +0200 Subject: [PATCH 175/260] =?UTF-8?q?=F0=9F=90=99=20source-stripe:=20run=20u?= =?UTF-8?q?p-to-date=20pipeline=20[2024-07-13]=20(#41760)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-stripe/metadata.yaml | 2 +- .../connectors/source-stripe/poetry.lock | 12 ++++++------ .../connectors/source-stripe/pyproject.toml | 2 +- docs/integrations/sources/stripe.md | 1 + 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/airbyte-integrations/connectors/source-stripe/metadata.yaml b/airbyte-integrations/connectors/source-stripe/metadata.yaml index 3cfe5855f6dd..8941a30b66df 100644 --- a/airbyte-integrations/connectors/source-stripe/metadata.yaml +++ b/airbyte-integrations/connectors/source-stripe/metadata.yaml @@ -10,7 +10,7 @@ data: connectorSubtype: api connectorType: source definitionId: e094cb9a-26de-4645-8761-65c0c425d1de - dockerImageTag: 5.4.8 + dockerImageTag: 5.4.9 dockerRepository: airbyte/source-stripe documentationUrl: https://docs.airbyte.com/integrations/sources/stripe githubIssueLabel: source-stripe diff --git a/airbyte-integrations/connectors/source-stripe/poetry.lock b/airbyte-integrations/connectors/source-stripe/poetry.lock index 08d12b158782..fcb74e2dd49e 100644 --- a/airbyte-integrations/connectors/source-stripe/poetry.lock +++ b/airbyte-integrations/connectors/source-stripe/poetry.lock @@ -421,13 +421,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] @@ -591,13 +591,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.84" +version = "0.1.85" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.84-py3-none-any.whl", hash = "sha256:01f3c6390dba26c583bac8dd0e551ce3d0509c7f55cad714db0b5c8d36e4c7ff"}, - {file = "langsmith-0.1.84.tar.gz", hash = "sha256:5220c0439838b9a5bd320fd3686be505c5083dcee22d2452006c23891153bea1"}, + {file = "langsmith-0.1.85-py3-none-any.whl", hash = "sha256:c1f94384f10cea96f7b4d33fd3db7ec180c03c7468877d50846f881d2017ff94"}, + {file = "langsmith-0.1.85.tar.gz", hash = "sha256:acff31f9e53efa48586cf8e32f65625a335c74d7c4fa306d1655ac18452296f6"}, ] [package.dependencies] diff --git a/airbyte-integrations/connectors/source-stripe/pyproject.toml b/airbyte-integrations/connectors/source-stripe/pyproject.toml index 0f00a9991346..bcd702603d74 100644 --- a/airbyte-integrations/connectors/source-stripe/pyproject.toml +++ b/airbyte-integrations/connectors/source-stripe/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "5.4.8" +version = "5.4.9" name = "source-stripe" description = "Source implementation for Stripe." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/stripe.md b/docs/integrations/sources/stripe.md index 651f5fe61e3d..651c52924029 100644 --- a/docs/integrations/sources/stripe.md +++ b/docs/integrations/sources/stripe.md @@ -225,6 +225,7 @@ Each record is marked with `is_deleted` flag when the appropriate event happens | Version | Date | Pull Request | Subject | | :------ | :--------- | :-------------------------------------------------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| 5.4.9 | 2024-07-13 | [41760](https://github.com/airbytehq/airbyte/pull/41760) | Update dependencies | | 5.4.8 | 2024-07-10 | [41477](https://github.com/airbytehq/airbyte/pull/41477) | Update dependencies | | 5.4.7 | 2024-07-09 | [40869](https://github.com/airbytehq/airbyte/pull/40869) | Update dependencies | | 5.4.6 | 2024-07-08 | [41044](https://github.com/airbytehq/airbyte/pull/41044) | Use latest `CDK` version possible | From e5d8af6ca0b8fa55cfe6387d6758f51c2a3d35c4 Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:26:20 +0200 Subject: [PATCH 176/260] =?UTF-8?q?=F0=9F=90=99=20source-clazar:=20run=20u?= =?UTF-8?q?p-to-date=20pipeline=20[2024-07-13]=20(#41759)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-clazar/metadata.yaml | 2 +- .../connectors/source-clazar/poetry.lock | 12 ++++++------ .../connectors/source-clazar/pyproject.toml | 2 +- docs/integrations/sources/clazar.md | 1 + 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/airbyte-integrations/connectors/source-clazar/metadata.yaml b/airbyte-integrations/connectors/source-clazar/metadata.yaml index 6bfec5ad3b95..ba834e0a2d66 100644 --- a/airbyte-integrations/connectors/source-clazar/metadata.yaml +++ b/airbyte-integrations/connectors/source-clazar/metadata.yaml @@ -16,7 +16,7 @@ data: connectorSubtype: api connectorType: source definitionId: d7df7b64-6266-45b5-ad83-e1515578f371 - dockerImageTag: 0.1.3 + dockerImageTag: 0.1.4 dockerRepository: airbyte/source-clazar githubIssueLabel: source-clazar icon: clazar.svg diff --git a/airbyte-integrations/connectors/source-clazar/poetry.lock b/airbyte-integrations/connectors/source-clazar/poetry.lock index 7381515a8086..cdcc8905b539 100644 --- a/airbyte-integrations/connectors/source-clazar/poetry.lock +++ b/airbyte-integrations/connectors/source-clazar/poetry.lock @@ -411,13 +411,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] @@ -567,13 +567,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.84" +version = "0.1.85" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.84-py3-none-any.whl", hash = "sha256:01f3c6390dba26c583bac8dd0e551ce3d0509c7f55cad714db0b5c8d36e4c7ff"}, - {file = "langsmith-0.1.84.tar.gz", hash = "sha256:5220c0439838b9a5bd320fd3686be505c5083dcee22d2452006c23891153bea1"}, + {file = "langsmith-0.1.85-py3-none-any.whl", hash = "sha256:c1f94384f10cea96f7b4d33fd3db7ec180c03c7468877d50846f881d2017ff94"}, + {file = "langsmith-0.1.85.tar.gz", hash = "sha256:acff31f9e53efa48586cf8e32f65625a335c74d7c4fa306d1655ac18452296f6"}, ] [package.dependencies] diff --git a/airbyte-integrations/connectors/source-clazar/pyproject.toml b/airbyte-integrations/connectors/source-clazar/pyproject.toml index 8bf9ef9578da..2b734e1b189e 100644 --- a/airbyte-integrations/connectors/source-clazar/pyproject.toml +++ b/airbyte-integrations/connectors/source-clazar/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.1.3" +version = "0.1.4" name = "source-clazar" description = "Source implementation for clazar." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/clazar.md b/docs/integrations/sources/clazar.md index db7f39164b95..1fffbbefc226 100644 --- a/docs/integrations/sources/clazar.md +++ b/docs/integrations/sources/clazar.md @@ -112,6 +112,7 @@ Please [create an issue](https://github.com/airbytehq/airbyte/issues) if you see | Version | Date | Pull Request | Subject | |:--------|:-----------|:---------------------------------------------------------|:-------------------| +| 0.1.4 | 2024-07-13 | [41759](https://github.com/airbytehq/airbyte/pull/41759) | Update dependencies | | 0.1.3 | 2024-07-10 | [41351](https://github.com/airbytehq/airbyte/pull/41351) | Update dependencies | | 0.1.2 | 2024-07-09 | [41123](https://github.com/airbytehq/airbyte/pull/41123) | Update dependencies | | 0.1.1 | 2024-07-06 | [40922](https://github.com/airbytehq/airbyte/pull/40922) | Update dependencies | From 4e22a7e35bc04997ecc852926c3587d9a4d26cd5 Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:26:23 +0200 Subject: [PATCH 177/260] =?UTF-8?q?=F0=9F=90=99=20destination-snowflake-co?= =?UTF-8?q?rtex:=20run=20up-to-date=20pipeline=20[2024-07-13]=20(#41758)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../metadata.yaml | 2 +- .../destination-snowflake-cortex/poetry.lock | 118 +++++++++--------- .../pyproject.toml | 2 +- .../destinations/snowflake-cortex.md | 1 + 4 files changed, 62 insertions(+), 61 deletions(-) diff --git a/airbyte-integrations/connectors/destination-snowflake-cortex/metadata.yaml b/airbyte-integrations/connectors/destination-snowflake-cortex/metadata.yaml index ec90d07ddbf4..17a67d2c9d36 100644 --- a/airbyte-integrations/connectors/destination-snowflake-cortex/metadata.yaml +++ b/airbyte-integrations/connectors/destination-snowflake-cortex/metadata.yaml @@ -13,7 +13,7 @@ data: connectorSubtype: vectorstore connectorType: destination definitionId: d9e5418d-f0f4-4d19-a8b1-5630543638e2 - dockerImageTag: 0.2.11 + dockerImageTag: 0.2.12 dockerRepository: airbyte/destination-snowflake-cortex documentationUrl: https://docs.airbyte.com/integrations/destinations/snowflake-cortex githubIssueLabel: destination-snowflake-cortex diff --git a/airbyte-integrations/connectors/destination-snowflake-cortex/poetry.lock b/airbyte-integrations/connectors/destination-snowflake-cortex/poetry.lock index fe7f274c7320..15cce51471a3 100644 --- a/airbyte-integrations/connectors/destination-snowflake-cortex/poetry.lock +++ b/airbyte-integrations/connectors/destination-snowflake-cortex/poetry.lock @@ -604,63 +604,63 @@ test-no-images = ["pytest", "pytest-cov", "pytest-xdist", "wurlitzer"] [[package]] name = "coverage" -version = "7.5.4" +version = "7.6.0" description = "Code coverage measurement for Python" optional = false python-versions = ">=3.8" files = [ - {file = "coverage-7.5.4-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:6cfb5a4f556bb51aba274588200a46e4dd6b505fb1a5f8c5ae408222eb416f99"}, - {file = "coverage-7.5.4-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:2174e7c23e0a454ffe12267a10732c273243b4f2d50d07544a91198f05c48f47"}, - {file = "coverage-7.5.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2214ee920787d85db1b6a0bd9da5f8503ccc8fcd5814d90796c2f2493a2f4d2e"}, - {file = "coverage-7.5.4-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1137f46adb28e3813dec8c01fefadcb8c614f33576f672962e323b5128d9a68d"}, - {file = "coverage-7.5.4-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b385d49609f8e9efc885790a5a0e89f2e3ae042cdf12958b6034cc442de428d3"}, - {file = "coverage-7.5.4-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:b4a474f799456e0eb46d78ab07303286a84a3140e9700b9e154cfebc8f527016"}, - {file = "coverage-7.5.4-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:5cd64adedf3be66f8ccee418473c2916492d53cbafbfcff851cbec5a8454b136"}, - {file = "coverage-7.5.4-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:e564c2cf45d2f44a9da56f4e3a26b2236504a496eb4cb0ca7221cd4cc7a9aca9"}, - {file = "coverage-7.5.4-cp310-cp310-win32.whl", hash = "sha256:7076b4b3a5f6d2b5d7f1185fde25b1e54eb66e647a1dfef0e2c2bfaf9b4c88c8"}, - {file = "coverage-7.5.4-cp310-cp310-win_amd64.whl", hash = "sha256:018a12985185038a5b2bcafab04ab833a9a0f2c59995b3cec07e10074c78635f"}, - {file = "coverage-7.5.4-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:db14f552ac38f10758ad14dd7b983dbab424e731588d300c7db25b6f89e335b5"}, - {file = "coverage-7.5.4-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:3257fdd8e574805f27bb5342b77bc65578e98cbc004a92232106344053f319ba"}, - {file = "coverage-7.5.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3a6612c99081d8d6134005b1354191e103ec9705d7ba2754e848211ac8cacc6b"}, - {file = "coverage-7.5.4-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d45d3cbd94159c468b9b8c5a556e3f6b81a8d1af2a92b77320e887c3e7a5d080"}, - {file = "coverage-7.5.4-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ed550e7442f278af76d9d65af48069f1fb84c9f745ae249c1a183c1e9d1b025c"}, - {file = "coverage-7.5.4-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:7a892be37ca35eb5019ec85402c3371b0f7cda5ab5056023a7f13da0961e60da"}, - {file = "coverage-7.5.4-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:8192794d120167e2a64721d88dbd688584675e86e15d0569599257566dec9bf0"}, - {file = "coverage-7.5.4-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:820bc841faa502e727a48311948e0461132a9c8baa42f6b2b84a29ced24cc078"}, - {file = "coverage-7.5.4-cp311-cp311-win32.whl", hash = "sha256:6aae5cce399a0f065da65c7bb1e8abd5c7a3043da9dceb429ebe1b289bc07806"}, - {file = "coverage-7.5.4-cp311-cp311-win_amd64.whl", hash = "sha256:d2e344d6adc8ef81c5a233d3a57b3c7d5181f40e79e05e1c143da143ccb6377d"}, - {file = "coverage-7.5.4-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:54317c2b806354cbb2dc7ac27e2b93f97096912cc16b18289c5d4e44fc663233"}, - {file = "coverage-7.5.4-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:042183de01f8b6d531e10c197f7f0315a61e8d805ab29c5f7b51a01d62782747"}, - {file = "coverage-7.5.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a6bb74ed465d5fb204b2ec41d79bcd28afccf817de721e8a807d5141c3426638"}, - {file = "coverage-7.5.4-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b3d45ff86efb129c599a3b287ae2e44c1e281ae0f9a9bad0edc202179bcc3a2e"}, - {file = "coverage-7.5.4-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5013ed890dc917cef2c9f765c4c6a8ae9df983cd60dbb635df8ed9f4ebc9f555"}, - {file = "coverage-7.5.4-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:1014fbf665fef86cdfd6cb5b7371496ce35e4d2a00cda501cf9f5b9e6fced69f"}, - {file = "coverage-7.5.4-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:3684bc2ff328f935981847082ba4fdc950d58906a40eafa93510d1b54c08a66c"}, - {file = "coverage-7.5.4-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:581ea96f92bf71a5ec0974001f900db495488434a6928a2ca7f01eee20c23805"}, - {file = "coverage-7.5.4-cp312-cp312-win32.whl", hash = "sha256:73ca8fbc5bc622e54627314c1a6f1dfdd8db69788f3443e752c215f29fa87a0b"}, - {file = "coverage-7.5.4-cp312-cp312-win_amd64.whl", hash = "sha256:cef4649ec906ea7ea5e9e796e68b987f83fa9a718514fe147f538cfeda76d7a7"}, - {file = "coverage-7.5.4-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:cdd31315fc20868c194130de9ee6bfd99755cc9565edff98ecc12585b90be882"}, - {file = "coverage-7.5.4-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:02ff6e898197cc1e9fa375581382b72498eb2e6d5fc0b53f03e496cfee3fac6d"}, - {file = "coverage-7.5.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d05c16cf4b4c2fc880cb12ba4c9b526e9e5d5bb1d81313d4d732a5b9fe2b9d53"}, - {file = "coverage-7.5.4-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c5986ee7ea0795a4095ac4d113cbb3448601efca7f158ec7f7087a6c705304e4"}, - {file = "coverage-7.5.4-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5df54843b88901fdc2f598ac06737f03d71168fd1175728054c8f5a2739ac3e4"}, - {file = "coverage-7.5.4-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:ab73b35e8d109bffbda9a3e91c64e29fe26e03e49addf5b43d85fc426dde11f9"}, - {file = "coverage-7.5.4-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:aea072a941b033813f5e4814541fc265a5c12ed9720daef11ca516aeacd3bd7f"}, - {file = "coverage-7.5.4-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:16852febd96acd953b0d55fc842ce2dac1710f26729b31c80b940b9afcd9896f"}, - {file = "coverage-7.5.4-cp38-cp38-win32.whl", hash = "sha256:8f894208794b164e6bd4bba61fc98bf6b06be4d390cf2daacfa6eca0a6d2bb4f"}, - {file = "coverage-7.5.4-cp38-cp38-win_amd64.whl", hash = "sha256:e2afe743289273209c992075a5a4913e8d007d569a406ffed0bd080ea02b0633"}, - {file = "coverage-7.5.4-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:b95c3a8cb0463ba9f77383d0fa8c9194cf91f64445a63fc26fb2327e1e1eb088"}, - {file = "coverage-7.5.4-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:3d7564cc09dd91b5a6001754a5b3c6ecc4aba6323baf33a12bd751036c998be4"}, - {file = "coverage-7.5.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:44da56a2589b684813f86d07597fdf8a9c6ce77f58976727329272f5a01f99f7"}, - {file = "coverage-7.5.4-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e16f3d6b491c48c5ae726308e6ab1e18ee830b4cdd6913f2d7f77354b33f91c8"}, - {file = "coverage-7.5.4-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dbc5958cb471e5a5af41b0ddaea96a37e74ed289535e8deca404811f6cb0bc3d"}, - {file = "coverage-7.5.4-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:a04e990a2a41740b02d6182b498ee9796cf60eefe40cf859b016650147908029"}, - {file = "coverage-7.5.4-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:ddbd2f9713a79e8e7242d7c51f1929611e991d855f414ca9996c20e44a895f7c"}, - {file = "coverage-7.5.4-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:b1ccf5e728ccf83acd313c89f07c22d70d6c375a9c6f339233dcf792094bcbf7"}, - {file = "coverage-7.5.4-cp39-cp39-win32.whl", hash = "sha256:56b4eafa21c6c175b3ede004ca12c653a88b6f922494b023aeb1e836df953ace"}, - {file = "coverage-7.5.4-cp39-cp39-win_amd64.whl", hash = "sha256:65e528e2e921ba8fd67d9055e6b9f9e34b21ebd6768ae1c1723f4ea6ace1234d"}, - {file = "coverage-7.5.4-pp38.pp39.pp310-none-any.whl", hash = "sha256:79b356f3dd5b26f3ad23b35c75dbdaf1f9e2450b6bcefc6d0825ea0aa3f86ca5"}, - {file = "coverage-7.5.4.tar.gz", hash = "sha256:a44963520b069e12789d0faea4e9fdb1e410cdc4aab89d94f7f55cbb7fef0353"}, + {file = "coverage-7.6.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:dff044f661f59dace805eedb4a7404c573b6ff0cdba4a524141bc63d7be5c7fd"}, + {file = "coverage-7.6.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:a8659fd33ee9e6ca03950cfdcdf271d645cf681609153f218826dd9805ab585c"}, + {file = "coverage-7.6.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7792f0ab20df8071d669d929c75c97fecfa6bcab82c10ee4adb91c7a54055463"}, + {file = "coverage-7.6.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d4b3cd1ca7cd73d229487fa5caca9e4bc1f0bca96526b922d61053ea751fe791"}, + {file = "coverage-7.6.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e7e128f85c0b419907d1f38e616c4f1e9f1d1b37a7949f44df9a73d5da5cd53c"}, + {file = "coverage-7.6.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:a94925102c89247530ae1dab7dc02c690942566f22e189cbd53579b0693c0783"}, + {file = "coverage-7.6.0-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:dcd070b5b585b50e6617e8972f3fbbee786afca71b1936ac06257f7e178f00f6"}, + {file = "coverage-7.6.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:d50a252b23b9b4dfeefc1f663c568a221092cbaded20a05a11665d0dbec9b8fb"}, + {file = "coverage-7.6.0-cp310-cp310-win32.whl", hash = "sha256:0e7b27d04131c46e6894f23a4ae186a6a2207209a05df5b6ad4caee6d54a222c"}, + {file = "coverage-7.6.0-cp310-cp310-win_amd64.whl", hash = "sha256:54dece71673b3187c86226c3ca793c5f891f9fc3d8aa183f2e3653da18566169"}, + {file = "coverage-7.6.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:c7b525ab52ce18c57ae232ba6f7010297a87ced82a2383b1afd238849c1ff933"}, + {file = "coverage-7.6.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:4bea27c4269234e06f621f3fac3925f56ff34bc14521484b8f66a580aacc2e7d"}, + {file = "coverage-7.6.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ed8d1d1821ba5fc88d4a4f45387b65de52382fa3ef1f0115a4f7a20cdfab0e94"}, + {file = "coverage-7.6.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:01c322ef2bbe15057bc4bf132b525b7e3f7206f071799eb8aa6ad1940bcf5fb1"}, + {file = "coverage-7.6.0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:03cafe82c1b32b770a29fd6de923625ccac3185a54a5e66606da26d105f37dac"}, + {file = "coverage-7.6.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:0d1b923fc4a40c5832be4f35a5dab0e5ff89cddf83bb4174499e02ea089daf57"}, + {file = "coverage-7.6.0-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:4b03741e70fb811d1a9a1d75355cf391f274ed85847f4b78e35459899f57af4d"}, + {file = "coverage-7.6.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:a73d18625f6a8a1cbb11eadc1d03929f9510f4131879288e3f7922097a429f63"}, + {file = "coverage-7.6.0-cp311-cp311-win32.whl", hash = "sha256:65fa405b837060db569a61ec368b74688f429b32fa47a8929a7a2f9b47183713"}, + {file = "coverage-7.6.0-cp311-cp311-win_amd64.whl", hash = "sha256:6379688fb4cfa921ae349c76eb1a9ab26b65f32b03d46bb0eed841fd4cb6afb1"}, + {file = "coverage-7.6.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:f7db0b6ae1f96ae41afe626095149ecd1b212b424626175a6633c2999eaad45b"}, + {file = "coverage-7.6.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:bbdf9a72403110a3bdae77948b8011f644571311c2fb35ee15f0f10a8fc082e8"}, + {file = "coverage-7.6.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9cc44bf0315268e253bf563f3560e6c004efe38f76db03a1558274a6e04bf5d5"}, + {file = "coverage-7.6.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:da8549d17489cd52f85a9829d0e1d91059359b3c54a26f28bec2c5d369524807"}, + {file = "coverage-7.6.0-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0086cd4fc71b7d485ac93ca4239c8f75732c2ae3ba83f6be1c9be59d9e2c6382"}, + {file = "coverage-7.6.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:1fad32ee9b27350687035cb5fdf9145bc9cf0a094a9577d43e909948ebcfa27b"}, + {file = "coverage-7.6.0-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:044a0985a4f25b335882b0966625270a8d9db3d3409ddc49a4eb00b0ef5e8cee"}, + {file = "coverage-7.6.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:76d5f82213aa78098b9b964ea89de4617e70e0d43e97900c2778a50856dac605"}, + {file = "coverage-7.6.0-cp312-cp312-win32.whl", hash = "sha256:3c59105f8d58ce500f348c5b56163a4113a440dad6daa2294b5052a10db866da"}, + {file = "coverage-7.6.0-cp312-cp312-win_amd64.whl", hash = "sha256:ca5d79cfdae420a1d52bf177de4bc2289c321d6c961ae321503b2ca59c17ae67"}, + {file = "coverage-7.6.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:d39bd10f0ae453554798b125d2f39884290c480f56e8a02ba7a6ed552005243b"}, + {file = "coverage-7.6.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:beb08e8508e53a568811016e59f3234d29c2583f6b6e28572f0954a6b4f7e03d"}, + {file = "coverage-7.6.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b2e16f4cd2bc4d88ba30ca2d3bbf2f21f00f382cf4e1ce3b1ddc96c634bc48ca"}, + {file = "coverage-7.6.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6616d1c9bf1e3faea78711ee42a8b972367d82ceae233ec0ac61cc7fec09fa6b"}, + {file = "coverage-7.6.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ad4567d6c334c46046d1c4c20024de2a1c3abc626817ae21ae3da600f5779b44"}, + {file = "coverage-7.6.0-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:d17c6a415d68cfe1091d3296ba5749d3d8696e42c37fca5d4860c5bf7b729f03"}, + {file = "coverage-7.6.0-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:9146579352d7b5f6412735d0f203bbd8d00113a680b66565e205bc605ef81bc6"}, + {file = "coverage-7.6.0-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:cdab02a0a941af190df8782aafc591ef3ad08824f97850b015c8c6a8b3877b0b"}, + {file = "coverage-7.6.0-cp38-cp38-win32.whl", hash = "sha256:df423f351b162a702c053d5dddc0fc0ef9a9e27ea3f449781ace5f906b664428"}, + {file = "coverage-7.6.0-cp38-cp38-win_amd64.whl", hash = "sha256:f2501d60d7497fd55e391f423f965bbe9e650e9ffc3c627d5f0ac516026000b8"}, + {file = "coverage-7.6.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:7221f9ac9dad9492cecab6f676b3eaf9185141539d5c9689d13fd6b0d7de840c"}, + {file = "coverage-7.6.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:ddaaa91bfc4477d2871442bbf30a125e8fe6b05da8a0015507bfbf4718228ab2"}, + {file = "coverage-7.6.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c4cbe651f3904e28f3a55d6f371203049034b4ddbce65a54527a3f189ca3b390"}, + {file = "coverage-7.6.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:831b476d79408ab6ccfadaaf199906c833f02fdb32c9ab907b1d4aa0713cfa3b"}, + {file = "coverage-7.6.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:46c3d091059ad0b9c59d1034de74a7f36dcfa7f6d3bde782c49deb42438f2450"}, + {file = "coverage-7.6.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:4d5fae0a22dc86259dee66f2cc6c1d3e490c4a1214d7daa2a93d07491c5c04b6"}, + {file = "coverage-7.6.0-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:07ed352205574aad067482e53dd606926afebcb5590653121063fbf4e2175166"}, + {file = "coverage-7.6.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:49c76cdfa13015c4560702574bad67f0e15ca5a2872c6a125f6327ead2b731dd"}, + {file = "coverage-7.6.0-cp39-cp39-win32.whl", hash = "sha256:482855914928c8175735a2a59c8dc5806cf7d8f032e4820d52e845d1f731dca2"}, + {file = "coverage-7.6.0-cp39-cp39-win_amd64.whl", hash = "sha256:543ef9179bc55edfd895154a51792b01c017c87af0ebaae092720152e19e42ca"}, + {file = "coverage-7.6.0-pp38.pp39.pp310-none-any.whl", hash = "sha256:6fe885135c8a479d3e37a7aae61cbd3a0fb2deccb4dda3c25f92a49189f766d6"}, + {file = "coverage-7.6.0.tar.gz", hash = "sha256:289cc803fa1dc901f84701ac10c9ee873619320f2f9aff38794db4a4a0268d51"}, ] [package.extras] @@ -862,13 +862,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] @@ -1904,13 +1904,13 @@ extended-testing = ["beautifulsoup4 (>=4.12.3,<5.0.0)", "lxml (>=4.9.3,<6.0)"] [[package]] name = "langsmith" -version = "0.1.84" +version = "0.1.85" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.84-py3-none-any.whl", hash = "sha256:01f3c6390dba26c583bac8dd0e551ce3d0509c7f55cad714db0b5c8d36e4c7ff"}, - {file = "langsmith-0.1.84.tar.gz", hash = "sha256:5220c0439838b9a5bd320fd3686be505c5083dcee22d2452006c23891153bea1"}, + {file = "langsmith-0.1.85-py3-none-any.whl", hash = "sha256:c1f94384f10cea96f7b4d33fd3db7ec180c03c7468877d50846f881d2017ff94"}, + {file = "langsmith-0.1.85.tar.gz", hash = "sha256:acff31f9e53efa48586cf8e32f65625a335c74d7c4fa306d1655ac18452296f6"}, ] [package.dependencies] diff --git a/airbyte-integrations/connectors/destination-snowflake-cortex/pyproject.toml b/airbyte-integrations/connectors/destination-snowflake-cortex/pyproject.toml index dda717df8666..21620e8a1fda 100644 --- a/airbyte-integrations/connectors/destination-snowflake-cortex/pyproject.toml +++ b/airbyte-integrations/connectors/destination-snowflake-cortex/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name = "airbyte-destination-snowflake-cortex" -version = "0.2.11" +version = "0.2.12" description = "Airbyte destination implementation for Snowflake cortex." authors = ["Airbyte "] license = "MIT" diff --git a/docs/integrations/destinations/snowflake-cortex.md b/docs/integrations/destinations/snowflake-cortex.md index 65fb80f41974..b83ad56c8440 100644 --- a/docs/integrations/destinations/snowflake-cortex.md +++ b/docs/integrations/destinations/snowflake-cortex.md @@ -84,6 +84,7 @@ To get started, sign up for [Snowflake](https://www.snowflake.com/en/). Ensure y | Version | Date | Pull Request | Subject | |:--------| :--------- |:--------------------------------------------------------------|:-----------------------------------------------------------------------------------------------------------------------------------------------------| +| 0.2.12 | 2024-07-13 | [41758](https://github.com/airbytehq/airbyte/pull/41758) | Update dependencies | | 0.2.11 | 2024-07-10 | [41368](https://github.com/airbytehq/airbyte/pull/41368) | Update dependencies | | 0.2.10 | 2024-07-09 | [41173](https://github.com/airbytehq/airbyte/pull/41173) | Update dependencies | | 0.2.9 | 2024-07-06 | [40836](https://github.com/airbytehq/airbyte/pull/40836) | Update dependencies | From 914a448c21b76ccaae88f2ebd7b058278fdcaeec Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:26:25 +0200 Subject: [PATCH 178/260] =?UTF-8?q?=F0=9F=90=99=20source-partnerstack:=20r?= =?UTF-8?q?un=20up-to-date=20pipeline=20[2024-07-13]=20(#41757)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-partnerstack/metadata.yaml | 2 +- .../connectors/source-partnerstack/poetry.lock | 12 ++++++------ .../connectors/source-partnerstack/pyproject.toml | 2 +- docs/integrations/sources/partnerstack.md | 1 + 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/airbyte-integrations/connectors/source-partnerstack/metadata.yaml b/airbyte-integrations/connectors/source-partnerstack/metadata.yaml index ab67776724fc..b3f9dbef9497 100644 --- a/airbyte-integrations/connectors/source-partnerstack/metadata.yaml +++ b/airbyte-integrations/connectors/source-partnerstack/metadata.yaml @@ -2,7 +2,7 @@ data: connectorSubtype: api connectorType: source definitionId: d30fb809-6456-484d-8e2c-ee12e0f6888d - dockerImageTag: 0.1.8 + dockerImageTag: 0.1.9 dockerRepository: airbyte/source-partnerstack githubIssueLabel: source-partnerstack icon: partnerstack.svg diff --git a/airbyte-integrations/connectors/source-partnerstack/poetry.lock b/airbyte-integrations/connectors/source-partnerstack/poetry.lock index 4b03cc351726..13836360394d 100644 --- a/airbyte-integrations/connectors/source-partnerstack/poetry.lock +++ b/airbyte-integrations/connectors/source-partnerstack/poetry.lock @@ -410,13 +410,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] @@ -566,13 +566,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.84" +version = "0.1.85" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.84-py3-none-any.whl", hash = "sha256:01f3c6390dba26c583bac8dd0e551ce3d0509c7f55cad714db0b5c8d36e4c7ff"}, - {file = "langsmith-0.1.84.tar.gz", hash = "sha256:5220c0439838b9a5bd320fd3686be505c5083dcee22d2452006c23891153bea1"}, + {file = "langsmith-0.1.85-py3-none-any.whl", hash = "sha256:c1f94384f10cea96f7b4d33fd3db7ec180c03c7468877d50846f881d2017ff94"}, + {file = "langsmith-0.1.85.tar.gz", hash = "sha256:acff31f9e53efa48586cf8e32f65625a335c74d7c4fa306d1655ac18452296f6"}, ] [package.dependencies] diff --git a/airbyte-integrations/connectors/source-partnerstack/pyproject.toml b/airbyte-integrations/connectors/source-partnerstack/pyproject.toml index c1af4889b758..d4bbcf31c985 100644 --- a/airbyte-integrations/connectors/source-partnerstack/pyproject.toml +++ b/airbyte-integrations/connectors/source-partnerstack/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.1.8" +version = "0.1.9" name = "source-partnerstack" description = "Source implementation for Partnerstack." authors = [ "Elliot Trabac ",] diff --git a/docs/integrations/sources/partnerstack.md b/docs/integrations/sources/partnerstack.md index fdacebeb76a3..9850078cfb73 100644 --- a/docs/integrations/sources/partnerstack.md +++ b/docs/integrations/sources/partnerstack.md @@ -41,6 +41,7 @@ The Partnerstack connector should not run into Partnerstack API limitations unde | Version | Date | Pull Request | Subject | |:--------|:-----------|:---------------------------------------------------------|:--------------------------------------------| +| 0.1.9 | 2024-07-13 | [41757](https://github.com/airbytehq/airbyte/pull/41757) | Update dependencies | | 0.1.8 | 2024-07-10 | [41466](https://github.com/airbytehq/airbyte/pull/41466) | Update dependencies | | 0.1.7 | 2024-07-09 | [41306](https://github.com/airbytehq/airbyte/pull/41306) | Update dependencies | | 0.1.6 | 2024-07-06 | [40881](https://github.com/airbytehq/airbyte/pull/40881) | Update dependencies | From b4b9651a261d32b79316d59a2ae02a2110b7dc83 Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:26:29 +0200 Subject: [PATCH 179/260] =?UTF-8?q?=F0=9F=90=99=20source-okta:=20run=20up-?= =?UTF-8?q?to-date=20pipeline=20[2024-07-13]=20(#41756)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-okta/metadata.yaml | 2 +- .../connectors/source-okta/poetry.lock | 12 ++++++------ .../connectors/source-okta/pyproject.toml | 2 +- docs/integrations/sources/okta.md | 1 + 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/airbyte-integrations/connectors/source-okta/metadata.yaml b/airbyte-integrations/connectors/source-okta/metadata.yaml index 37401351ed04..175cab06db92 100644 --- a/airbyte-integrations/connectors/source-okta/metadata.yaml +++ b/airbyte-integrations/connectors/source-okta/metadata.yaml @@ -19,7 +19,7 @@ data: connectorSubtype: api connectorType: source definitionId: 1d4fdb25-64fc-4569-92da-fcdca79a8372 - dockerImageTag: 0.2.5 + dockerImageTag: 0.2.6 dockerRepository: airbyte/source-okta githubIssueLabel: source-okta icon: icon.svg diff --git a/airbyte-integrations/connectors/source-okta/poetry.lock b/airbyte-integrations/connectors/source-okta/poetry.lock index bbd8b4148615..a5ccc85cf211 100644 --- a/airbyte-integrations/connectors/source-okta/poetry.lock +++ b/airbyte-integrations/connectors/source-okta/poetry.lock @@ -410,13 +410,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] @@ -566,13 +566,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.84" +version = "0.1.85" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.84-py3-none-any.whl", hash = "sha256:01f3c6390dba26c583bac8dd0e551ce3d0509c7f55cad714db0b5c8d36e4c7ff"}, - {file = "langsmith-0.1.84.tar.gz", hash = "sha256:5220c0439838b9a5bd320fd3686be505c5083dcee22d2452006c23891153bea1"}, + {file = "langsmith-0.1.85-py3-none-any.whl", hash = "sha256:c1f94384f10cea96f7b4d33fd3db7ec180c03c7468877d50846f881d2017ff94"}, + {file = "langsmith-0.1.85.tar.gz", hash = "sha256:acff31f9e53efa48586cf8e32f65625a335c74d7c4fa306d1655ac18452296f6"}, ] [package.dependencies] diff --git a/airbyte-integrations/connectors/source-okta/pyproject.toml b/airbyte-integrations/connectors/source-okta/pyproject.toml index b96244c18162..fc6ebac4fb98 100644 --- a/airbyte-integrations/connectors/source-okta/pyproject.toml +++ b/airbyte-integrations/connectors/source-okta/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.2.5" +version = "0.2.6" name = "source-okta" description = "Source implementation for okta." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/okta.md b/docs/integrations/sources/okta.md index db4a942f557e..f5f0249b9274 100644 --- a/docs/integrations/sources/okta.md +++ b/docs/integrations/sources/okta.md @@ -86,6 +86,7 @@ The connector is restricted by normal Okta [requests limitation](https://develop | Version | Date | Pull Request | Subject | |:--------|:-----------|:---------------------------------------------------------|:-------------------------------------------------------------------------------| +| 0.2.6 | 2024-07-13 | [41756](https://github.com/airbytehq/airbyte/pull/41756) | Update dependencies | | 0.2.5 | 2024-07-10 | [41269](https://github.com/airbytehq/airbyte/pull/41269) | Update dependencies | | 0.2.4 | 2024-07-06 | [40904](https://github.com/airbytehq/airbyte/pull/40904) | Update dependencies | | 0.2.3 | 2024-06-25 | [40316](https://github.com/airbytehq/airbyte/pull/40316) | Update dependencies | From 811ff98324196be2b58fdd00ecf322ff20d77044 Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:26:32 +0200 Subject: [PATCH 180/260] =?UTF-8?q?=F0=9F=90=99=20source-fastbill:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-07-13]=20(#41755)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-fastbill/metadata.yaml | 2 +- airbyte-integrations/connectors/source-fastbill/poetry.lock | 6 +++--- .../connectors/source-fastbill/pyproject.toml | 2 +- docs/integrations/sources/fastbill.md | 1 + 4 files changed, 6 insertions(+), 5 deletions(-) diff --git a/airbyte-integrations/connectors/source-fastbill/metadata.yaml b/airbyte-integrations/connectors/source-fastbill/metadata.yaml index f93a660b5037..227e065b0569 100644 --- a/airbyte-integrations/connectors/source-fastbill/metadata.yaml +++ b/airbyte-integrations/connectors/source-fastbill/metadata.yaml @@ -7,7 +7,7 @@ data: connectorSubtype: api connectorType: source definitionId: eb3e9c1c-0467-4eb7-a172-5265e04ccd0a - dockerImageTag: 0.2.10 + dockerImageTag: 0.2.11 dockerRepository: airbyte/source-fastbill documentationUrl: https://docs.airbyte.com/integrations/sources/fastbill githubIssueLabel: source-fastbill diff --git a/airbyte-integrations/connectors/source-fastbill/poetry.lock b/airbyte-integrations/connectors/source-fastbill/poetry.lock index 059ad0800506..747aa685c2a5 100644 --- a/airbyte-integrations/connectors/source-fastbill/poetry.lock +++ b/airbyte-integrations/connectors/source-fastbill/poetry.lock @@ -288,13 +288,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] diff --git a/airbyte-integrations/connectors/source-fastbill/pyproject.toml b/airbyte-integrations/connectors/source-fastbill/pyproject.toml index 4c884cb77390..86259cea1a76 100644 --- a/airbyte-integrations/connectors/source-fastbill/pyproject.toml +++ b/airbyte-integrations/connectors/source-fastbill/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.2.10" +version = "0.2.11" name = "source-fastbill" description = "Source implementation for Fastbill." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/fastbill.md b/docs/integrations/sources/fastbill.md index 5023584a576a..2a47946e4857 100644 --- a/docs/integrations/sources/fastbill.md +++ b/docs/integrations/sources/fastbill.md @@ -64,6 +64,7 @@ The Fastbill source connector supports the following [sync modes](https://docs.a | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :------------------------------------------------------------------------------ | +| 0.2.11 | 2024-07-13 | [41755](https://github.com/airbytehq/airbyte/pull/41755) | Update dependencies | | 0.2.10 | 2024-07-10 | [41441](https://github.com/airbytehq/airbyte/pull/41441) | Update dependencies | | 0.2.9 | 2024-07-09 | [41176](https://github.com/airbytehq/airbyte/pull/41176) | Update dependencies | | 0.2.8 | 2024-07-06 | [41003](https://github.com/airbytehq/airbyte/pull/41003) | Update dependencies | From 40d7d6e2833c4843590fde261d9b04c57dd0516f Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:26:35 +0200 Subject: [PATCH 181/260] =?UTF-8?q?=F0=9F=90=99=20source-mixpanel:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-07-13]=20(#41754)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-mixpanel/metadata.yaml | 2 +- airbyte-integrations/connectors/source-mixpanel/poetry.lock | 6 +++--- .../connectors/source-mixpanel/pyproject.toml | 2 +- docs/integrations/sources/mixpanel.md | 1 + 4 files changed, 6 insertions(+), 5 deletions(-) diff --git a/airbyte-integrations/connectors/source-mixpanel/metadata.yaml b/airbyte-integrations/connectors/source-mixpanel/metadata.yaml index 2d8416d7017f..cd8a79bf651d 100644 --- a/airbyte-integrations/connectors/source-mixpanel/metadata.yaml +++ b/airbyte-integrations/connectors/source-mixpanel/metadata.yaml @@ -11,7 +11,7 @@ data: connectorSubtype: api connectorType: source definitionId: 12928b32-bf0a-4f1e-964f-07e12e37153a - dockerImageTag: 3.2.3 + dockerImageTag: 3.2.4 dockerRepository: airbyte/source-mixpanel documentationUrl: https://docs.airbyte.com/integrations/sources/mixpanel githubIssueLabel: source-mixpanel diff --git a/airbyte-integrations/connectors/source-mixpanel/poetry.lock b/airbyte-integrations/connectors/source-mixpanel/poetry.lock index d2058e47d154..5bb9dc42b7f1 100644 --- a/airbyte-integrations/connectors/source-mixpanel/poetry.lock +++ b/airbyte-integrations/connectors/source-mixpanel/poetry.lock @@ -288,13 +288,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] diff --git a/airbyte-integrations/connectors/source-mixpanel/pyproject.toml b/airbyte-integrations/connectors/source-mixpanel/pyproject.toml index d29bb3b8cc43..0e401f3a86f0 100644 --- a/airbyte-integrations/connectors/source-mixpanel/pyproject.toml +++ b/airbyte-integrations/connectors/source-mixpanel/pyproject.toml @@ -3,7 +3,7 @@ requires = ["poetry-core>=1.0.0"] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "3.2.3" +version = "3.2.4" name = "source-mixpanel" description = "Source implementation for Mixpanel." authors = ["Airbyte "] diff --git a/docs/integrations/sources/mixpanel.md b/docs/integrations/sources/mixpanel.md index c9c89d0a81b5..7715e5b42aea 100644 --- a/docs/integrations/sources/mixpanel.md +++ b/docs/integrations/sources/mixpanel.md @@ -58,6 +58,7 @@ Syncing huge date windows may take longer due to Mixpanel's low API rate-limits | Version | Date | Pull Request | Subject | |:--------|:-----------|:---------------------------------------------------------|:-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| +| 3.2.4 | 2024-07-13 | [41754](https://github.com/airbytehq/airbyte/pull/41754) | Update dependencies | | 3.2.3 | 2024-07-10 | [41420](https://github.com/airbytehq/airbyte/pull/41420) | Update dependencies | | 3.2.2 | 2024-07-09 | [41289](https://github.com/airbytehq/airbyte/pull/41289) | Update dependencies | | 3.2.1 | 2024-07-06 | [40806](https://github.com/airbytehq/airbyte/pull/40806) | Update dependencies | From fe3917e2ea5de888d51514020ae5b00b913c128e Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:26:38 +0200 Subject: [PATCH 182/260] =?UTF-8?q?=F0=9F=90=99=20source-sendgrid:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-07-13]=20(#41753)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-sendgrid/metadata.yaml | 2 +- .../connectors/source-sendgrid/poetry.lock | 12 ++++++------ .../connectors/source-sendgrid/pyproject.toml | 2 +- docs/integrations/sources/sendgrid.md | 1 + 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/airbyte-integrations/connectors/source-sendgrid/metadata.yaml b/airbyte-integrations/connectors/source-sendgrid/metadata.yaml index ee1a555a9c30..c7c6f8632af8 100644 --- a/airbyte-integrations/connectors/source-sendgrid/metadata.yaml +++ b/airbyte-integrations/connectors/source-sendgrid/metadata.yaml @@ -10,7 +10,7 @@ data: connectorSubtype: api connectorType: source definitionId: fbb5fbe2-16ad-4cf4-af7d-ff9d9c316c87 - dockerImageTag: 1.0.8 + dockerImageTag: 1.0.9 releases: breakingChanges: 1.0.0: diff --git a/airbyte-integrations/connectors/source-sendgrid/poetry.lock b/airbyte-integrations/connectors/source-sendgrid/poetry.lock index f48d5bc406d6..4ea84583ff6b 100644 --- a/airbyte-integrations/connectors/source-sendgrid/poetry.lock +++ b/airbyte-integrations/connectors/source-sendgrid/poetry.lock @@ -410,13 +410,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] @@ -566,13 +566,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.84" +version = "0.1.85" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.84-py3-none-any.whl", hash = "sha256:01f3c6390dba26c583bac8dd0e551ce3d0509c7f55cad714db0b5c8d36e4c7ff"}, - {file = "langsmith-0.1.84.tar.gz", hash = "sha256:5220c0439838b9a5bd320fd3686be505c5083dcee22d2452006c23891153bea1"}, + {file = "langsmith-0.1.85-py3-none-any.whl", hash = "sha256:c1f94384f10cea96f7b4d33fd3db7ec180c03c7468877d50846f881d2017ff94"}, + {file = "langsmith-0.1.85.tar.gz", hash = "sha256:acff31f9e53efa48586cf8e32f65625a335c74d7c4fa306d1655ac18452296f6"}, ] [package.dependencies] diff --git a/airbyte-integrations/connectors/source-sendgrid/pyproject.toml b/airbyte-integrations/connectors/source-sendgrid/pyproject.toml index 0fee6c31c83c..e8918c0a3221 100644 --- a/airbyte-integrations/connectors/source-sendgrid/pyproject.toml +++ b/airbyte-integrations/connectors/source-sendgrid/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "1.0.8" +version = "1.0.9" name = "source-sendgrid" description = "Source implementation for Sendgrid." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/sendgrid.md b/docs/integrations/sources/sendgrid.md index bb0f3196db21..101aa739591b 100644 --- a/docs/integrations/sources/sendgrid.md +++ b/docs/integrations/sources/sendgrid.md @@ -89,6 +89,7 @@ The connector is restricted by normal Sendgrid [requests limitation](https://doc | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | +| 1.0.9 | 2024-07-13 | [41753](https://github.com/airbytehq/airbyte/pull/41753) | Update dependencies | | 1.0.8 | 2024-07-10 | [41531](https://github.com/airbytehq/airbyte/pull/41531) | Update dependencies | | 1.0.7 | 2024-07-09 | [41137](https://github.com/airbytehq/airbyte/pull/41137) | Update dependencies | | 1.0.6 | 2024-07-06 | [40898](https://github.com/airbytehq/airbyte/pull/40898) | Update dependencies | From a5bba88188b7ffff801e2652562ecf8257226c39 Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:26:41 +0200 Subject: [PATCH 183/260] =?UTF-8?q?=F0=9F=90=99=20source-salesforce:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-07-13]=20(#41752)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-salesforce/metadata.yaml | 2 +- .../connectors/source-salesforce/poetry.lock | 12 ++++++------ .../connectors/source-salesforce/pyproject.toml | 2 +- docs/integrations/sources/salesforce.md | 1 + 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/airbyte-integrations/connectors/source-salesforce/metadata.yaml b/airbyte-integrations/connectors/source-salesforce/metadata.yaml index 581f18f5c035..b6df217c38b5 100644 --- a/airbyte-integrations/connectors/source-salesforce/metadata.yaml +++ b/airbyte-integrations/connectors/source-salesforce/metadata.yaml @@ -10,7 +10,7 @@ data: connectorSubtype: api connectorType: source definitionId: b117307c-14b6-41aa-9422-947e34922962 - dockerImageTag: 2.5.21 + dockerImageTag: 2.5.22 dockerRepository: airbyte/source-salesforce documentationUrl: https://docs.airbyte.com/integrations/sources/salesforce githubIssueLabel: source-salesforce diff --git a/airbyte-integrations/connectors/source-salesforce/poetry.lock b/airbyte-integrations/connectors/source-salesforce/poetry.lock index 849660ed9f39..686919e99aa1 100644 --- a/airbyte-integrations/connectors/source-salesforce/poetry.lock +++ b/airbyte-integrations/connectors/source-salesforce/poetry.lock @@ -421,13 +421,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] @@ -591,13 +591,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.84" +version = "0.1.85" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.84-py3-none-any.whl", hash = "sha256:01f3c6390dba26c583bac8dd0e551ce3d0509c7f55cad714db0b5c8d36e4c7ff"}, - {file = "langsmith-0.1.84.tar.gz", hash = "sha256:5220c0439838b9a5bd320fd3686be505c5083dcee22d2452006c23891153bea1"}, + {file = "langsmith-0.1.85-py3-none-any.whl", hash = "sha256:c1f94384f10cea96f7b4d33fd3db7ec180c03c7468877d50846f881d2017ff94"}, + {file = "langsmith-0.1.85.tar.gz", hash = "sha256:acff31f9e53efa48586cf8e32f65625a335c74d7c4fa306d1655ac18452296f6"}, ] [package.dependencies] diff --git a/airbyte-integrations/connectors/source-salesforce/pyproject.toml b/airbyte-integrations/connectors/source-salesforce/pyproject.toml index c08b395223cb..bf3df2a49f92 100644 --- a/airbyte-integrations/connectors/source-salesforce/pyproject.toml +++ b/airbyte-integrations/connectors/source-salesforce/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "2.5.21" +version = "2.5.22" name = "source-salesforce" description = "Source implementation for Salesforce." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/salesforce.md b/docs/integrations/sources/salesforce.md index 24d5a1e290c7..17b549633eac 100644 --- a/docs/integrations/sources/salesforce.md +++ b/docs/integrations/sources/salesforce.md @@ -217,6 +217,7 @@ Now that you have set up the Salesforce source connector, check out the followin | Version | Date | Pull Request | Subject | |:--------|:-----------|:---------------------------------------------------------|:-------------------------------------------------------------------------------------------------------------------------------------| +| 2.5.22 | 2024-07-13 | [41752](https://github.com/airbytehq/airbyte/pull/41752) | Update dependencies | | 2.5.21 | 2024-07-10 | [41529](https://github.com/airbytehq/airbyte/pull/41529) | Update dependencies | | 2.5.20 | 2024-07-09 | [41255](https://github.com/airbytehq/airbyte/pull/41255) | Update dependencies | | 2.5.19 | 2024-07-08 | [41043](https://github.com/airbytehq/airbyte/pull/41043) | Use the latest `CDK` version possible | From e7241b6ed8bf1f4635cf4e6c09cbf397c19d4335 Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:26:44 +0200 Subject: [PATCH 184/260] =?UTF-8?q?=F0=9F=90=99=20source-captain-data:=20r?= =?UTF-8?q?un=20up-to-date=20pipeline=20[2024-07-13]=20(#41751)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-captain-data/metadata.yaml | 2 +- .../connectors/source-captain-data/poetry.lock | 12 ++++++------ .../connectors/source-captain-data/pyproject.toml | 2 +- docs/integrations/sources/captain-data.md | 1 + 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/airbyte-integrations/connectors/source-captain-data/metadata.yaml b/airbyte-integrations/connectors/source-captain-data/metadata.yaml index 96fc8a2183be..70b33210b71b 100644 --- a/airbyte-integrations/connectors/source-captain-data/metadata.yaml +++ b/airbyte-integrations/connectors/source-captain-data/metadata.yaml @@ -2,7 +2,7 @@ data: connectorSubtype: api connectorType: source definitionId: fa290790-1dca-43e7-8ced-6a40b2a66099 - dockerImageTag: 0.1.8 + dockerImageTag: 0.1.9 dockerRepository: airbyte/source-captain-data githubIssueLabel: source-captain-data icon: captain-data.svg diff --git a/airbyte-integrations/connectors/source-captain-data/poetry.lock b/airbyte-integrations/connectors/source-captain-data/poetry.lock index 1c7c00978d43..728f233c17e0 100644 --- a/airbyte-integrations/connectors/source-captain-data/poetry.lock +++ b/airbyte-integrations/connectors/source-captain-data/poetry.lock @@ -410,13 +410,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] @@ -566,13 +566,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.84" +version = "0.1.85" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.84-py3-none-any.whl", hash = "sha256:01f3c6390dba26c583bac8dd0e551ce3d0509c7f55cad714db0b5c8d36e4c7ff"}, - {file = "langsmith-0.1.84.tar.gz", hash = "sha256:5220c0439838b9a5bd320fd3686be505c5083dcee22d2452006c23891153bea1"}, + {file = "langsmith-0.1.85-py3-none-any.whl", hash = "sha256:c1f94384f10cea96f7b4d33fd3db7ec180c03c7468877d50846f881d2017ff94"}, + {file = "langsmith-0.1.85.tar.gz", hash = "sha256:acff31f9e53efa48586cf8e32f65625a335c74d7c4fa306d1655ac18452296f6"}, ] [package.dependencies] diff --git a/airbyte-integrations/connectors/source-captain-data/pyproject.toml b/airbyte-integrations/connectors/source-captain-data/pyproject.toml index 351a1e0dc397..7123c80b0400 100644 --- a/airbyte-integrations/connectors/source-captain-data/pyproject.toml +++ b/airbyte-integrations/connectors/source-captain-data/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.1.8" +version = "0.1.9" name = "source-captain-data" description = "Source implementation for Captain Data." authors = [ "Elliot Trabac ",] diff --git a/docs/integrations/sources/captain-data.md b/docs/integrations/sources/captain-data.md index 55757e16236e..97bbb968205d 100644 --- a/docs/integrations/sources/captain-data.md +++ b/docs/integrations/sources/captain-data.md @@ -65,6 +65,7 @@ Captain Data [API reference](https://docs.captaindata.co/#intro) has v3 at prese | Version | Date | Pull Request | Subject | | :------ |:-----------| :------------------------------------------------------ |:--------------------------------------------| +| 0.1.9 | 2024-07-13 | [41751](https://github.com/airbytehq/airbyte/pull/41751) | Update dependencies | | 0.1.8 | 2024-07-10 | [41583](https://github.com/airbytehq/airbyte/pull/41583) | Update dependencies | | 0.1.7 | 2024-07-09 | [41321](https://github.com/airbytehq/airbyte/pull/41321) | Update dependencies | | 0.1.6 | 2024-07-06 | [40886](https://github.com/airbytehq/airbyte/pull/40886) | Update dependencies | From f9d4c887e65b7a16016a0cc91617a1cb745273e1 Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:26:47 +0200 Subject: [PATCH 185/260] =?UTF-8?q?=F0=9F=90=99=20source-public-apis:=20ru?= =?UTF-8?q?n=20up-to-date=20pipeline=20[2024-07-13]=20(#41750)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-public-apis/metadata.yaml | 2 +- .../connectors/source-public-apis/poetry.lock | 12 ++++++------ .../connectors/source-public-apis/pyproject.toml | 2 +- docs/integrations/sources/public-apis.md | 1 + 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/airbyte-integrations/connectors/source-public-apis/metadata.yaml b/airbyte-integrations/connectors/source-public-apis/metadata.yaml index 51536e0b7b39..5bfa6a0d69da 100644 --- a/airbyte-integrations/connectors/source-public-apis/metadata.yaml +++ b/airbyte-integrations/connectors/source-public-apis/metadata.yaml @@ -17,7 +17,7 @@ data: connectorSubtype: api connectorType: source definitionId: a4617b39-3c14-44cd-a2eb-6e720f269235 - dockerImageTag: 0.2.6 + dockerImageTag: 0.2.7 dockerRepository: airbyte/source-public-apis documentationUrl: https://docs.airbyte.com/integrations/sources/public-apis githubIssueLabel: source-public-apis diff --git a/airbyte-integrations/connectors/source-public-apis/poetry.lock b/airbyte-integrations/connectors/source-public-apis/poetry.lock index 1c7c00978d43..728f233c17e0 100644 --- a/airbyte-integrations/connectors/source-public-apis/poetry.lock +++ b/airbyte-integrations/connectors/source-public-apis/poetry.lock @@ -410,13 +410,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] @@ -566,13 +566,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.84" +version = "0.1.85" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.84-py3-none-any.whl", hash = "sha256:01f3c6390dba26c583bac8dd0e551ce3d0509c7f55cad714db0b5c8d36e4c7ff"}, - {file = "langsmith-0.1.84.tar.gz", hash = "sha256:5220c0439838b9a5bd320fd3686be505c5083dcee22d2452006c23891153bea1"}, + {file = "langsmith-0.1.85-py3-none-any.whl", hash = "sha256:c1f94384f10cea96f7b4d33fd3db7ec180c03c7468877d50846f881d2017ff94"}, + {file = "langsmith-0.1.85.tar.gz", hash = "sha256:acff31f9e53efa48586cf8e32f65625a335c74d7c4fa306d1655ac18452296f6"}, ] [package.dependencies] diff --git a/airbyte-integrations/connectors/source-public-apis/pyproject.toml b/airbyte-integrations/connectors/source-public-apis/pyproject.toml index 789b3a59614e..75470b1dc502 100644 --- a/airbyte-integrations/connectors/source-public-apis/pyproject.toml +++ b/airbyte-integrations/connectors/source-public-apis/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.2.6" +version = "0.2.7" name = "source-public-apis" description = "Source implementation for Public Apis." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/public-apis.md b/docs/integrations/sources/public-apis.md index 207569473c0a..a2bce49a01eb 100644 --- a/docs/integrations/sources/public-apis.md +++ b/docs/integrations/sources/public-apis.md @@ -46,6 +46,7 @@ This source requires no setup. | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :------------------- | +| 0.2.7 | 2024-07-13 | [41750](https://github.com/airbytehq/airbyte/pull/41750) | Update dependencies | | 0.2.6 | 2024-07-10 | [41359](https://github.com/airbytehq/airbyte/pull/41359) | Update dependencies | | 0.2.5 | 2024-07-09 | [41218](https://github.com/airbytehq/airbyte/pull/41218) | Update dependencies | | 0.2.4 | 2024-07-06 | [40998](https://github.com/airbytehq/airbyte/pull/40998) | Update dependencies | From d79cb8b10d29efa9c300f1d6f4bef1aeb60dc695 Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:26:50 +0200 Subject: [PATCH 186/260] =?UTF-8?q?=F0=9F=90=99=20source-kyve:=20run=20up-?= =?UTF-8?q?to-date=20pipeline=20[2024-07-13]=20(#41749)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-kyve/metadata.yaml | 2 +- airbyte-integrations/connectors/source-kyve/poetry.lock | 6 +++--- airbyte-integrations/connectors/source-kyve/pyproject.toml | 2 +- docs/integrations/sources/kyve.md | 1 + 4 files changed, 6 insertions(+), 5 deletions(-) diff --git a/airbyte-integrations/connectors/source-kyve/metadata.yaml b/airbyte-integrations/connectors/source-kyve/metadata.yaml index 4cc15b9da9eb..7ad69161324e 100644 --- a/airbyte-integrations/connectors/source-kyve/metadata.yaml +++ b/airbyte-integrations/connectors/source-kyve/metadata.yaml @@ -2,7 +2,7 @@ data: connectorSubtype: api connectorType: source definitionId: 60a1efcc-c31c-4c63-b508-5b48b6a9f4a6 - dockerImageTag: 0.2.7 + dockerImageTag: 0.2.8 maxSecondsBetweenMessages: 7200 dockerRepository: airbyte/source-kyve githubIssueLabel: source-kyve diff --git a/airbyte-integrations/connectors/source-kyve/poetry.lock b/airbyte-integrations/connectors/source-kyve/poetry.lock index cce71c3b0e79..a1ccc2d0271d 100644 --- a/airbyte-integrations/connectors/source-kyve/poetry.lock +++ b/airbyte-integrations/connectors/source-kyve/poetry.lock @@ -288,13 +288,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] diff --git a/airbyte-integrations/connectors/source-kyve/pyproject.toml b/airbyte-integrations/connectors/source-kyve/pyproject.toml index 8c9956ea80c1..415bbc64949c 100644 --- a/airbyte-integrations/connectors/source-kyve/pyproject.toml +++ b/airbyte-integrations/connectors/source-kyve/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.2.7" +version = "0.2.8" name = "source-kyve" description = "Source implementation for KYVE." authors = [ "KYVE Core Team ",] diff --git a/docs/integrations/sources/kyve.md b/docs/integrations/sources/kyve.md index c703e1adfc2d..aa191af0ac76 100644 --- a/docs/integrations/sources/kyve.md +++ b/docs/integrations/sources/kyve.md @@ -29,6 +29,7 @@ You can fetch with one source configuration more than one pool simultaneously. Y | Version | Date | Pull Request | Subject | | :------ | :--------- | :----------- | :--------------------------------------------------- | +| 0.2.8 | 2024-07-13 | [41749](https://github.com/airbytehq/airbyte/pull/41749) | Update dependencies | | 0.2.7 | 2024-07-10 | [41422](https://github.com/airbytehq/airbyte/pull/41422) | Update dependencies | | 0.2.6 | 2024-07-09 | [41239](https://github.com/airbytehq/airbyte/pull/41239) | Update dependencies | | 0.2.5 | 2024-07-06 | [40859](https://github.com/airbytehq/airbyte/pull/40859) | Update dependencies | From d0dee0eb691f46fc9f667bf122902441a3f39e6a Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:26:52 +0200 Subject: [PATCH 187/260] =?UTF-8?q?=F0=9F=90=99=20source-recharge:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-07-13]=20(#41748)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-recharge/metadata.yaml | 2 +- .../connectors/source-recharge/poetry.lock | 12 ++++++------ .../connectors/source-recharge/pyproject.toml | 2 +- docs/integrations/sources/recharge.md | 1 + 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/airbyte-integrations/connectors/source-recharge/metadata.yaml b/airbyte-integrations/connectors/source-recharge/metadata.yaml index ff427e415153..d5d78c23cf9a 100644 --- a/airbyte-integrations/connectors/source-recharge/metadata.yaml +++ b/airbyte-integrations/connectors/source-recharge/metadata.yaml @@ -7,7 +7,7 @@ data: connectorBuildOptions: baseImage: docker.io/airbyte/python-connector-base:2.0.0@sha256:c44839ba84406116e8ba68722a0f30e8f6e7056c726f447681bb9e9ece8bd916 definitionId: 45d2e135-2ede-49e1-939f-3e3ec357a65e - dockerImageTag: 2.0.5 + dockerImageTag: 2.0.6 dockerRepository: airbyte/source-recharge githubIssueLabel: source-recharge icon: recharge.svg diff --git a/airbyte-integrations/connectors/source-recharge/poetry.lock b/airbyte-integrations/connectors/source-recharge/poetry.lock index 32609cc1500c..2f3e886b1a5a 100644 --- a/airbyte-integrations/connectors/source-recharge/poetry.lock +++ b/airbyte-integrations/connectors/source-recharge/poetry.lock @@ -410,13 +410,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] @@ -580,13 +580,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.84" +version = "0.1.85" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.84-py3-none-any.whl", hash = "sha256:01f3c6390dba26c583bac8dd0e551ce3d0509c7f55cad714db0b5c8d36e4c7ff"}, - {file = "langsmith-0.1.84.tar.gz", hash = "sha256:5220c0439838b9a5bd320fd3686be505c5083dcee22d2452006c23891153bea1"}, + {file = "langsmith-0.1.85-py3-none-any.whl", hash = "sha256:c1f94384f10cea96f7b4d33fd3db7ec180c03c7468877d50846f881d2017ff94"}, + {file = "langsmith-0.1.85.tar.gz", hash = "sha256:acff31f9e53efa48586cf8e32f65625a335c74d7c4fa306d1655ac18452296f6"}, ] [package.dependencies] diff --git a/airbyte-integrations/connectors/source-recharge/pyproject.toml b/airbyte-integrations/connectors/source-recharge/pyproject.toml index 4946f56491b0..edd8c67344d8 100644 --- a/airbyte-integrations/connectors/source-recharge/pyproject.toml +++ b/airbyte-integrations/connectors/source-recharge/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "2.0.5" +version = "2.0.6" name = "source-recharge" description = "Source implementation for Recharge." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/recharge.md b/docs/integrations/sources/recharge.md index c638044e744c..bf0e26c86a11 100644 --- a/docs/integrations/sources/recharge.md +++ b/docs/integrations/sources/recharge.md @@ -79,6 +79,7 @@ The Recharge connector should gracefully handle Recharge API limitations under n | Version | Date | Pull Request | Subject | |:--------|:-----------| :------------------------------------------------------- |:-------------------------------------------------------------------------------------------------------------------------------| +| 2.0.6 | 2024-07-13 | [41748](https://github.com/airbytehq/airbyte/pull/41748) | Update dependencies | | 2.0.5 | 2024-07-10 | [41475](https://github.com/airbytehq/airbyte/pull/41475) | Update dependencies | | 2.0.4 | 2024-07-09 | [41167](https://github.com/airbytehq/airbyte/pull/41167) | Update dependencies | | 2.0.3 | 2024-07-06 | [40849](https://github.com/airbytehq/airbyte/pull/40849) | Update dependencies | From 5cc207f8c1edfb31158bbc99a1b8d6aa35b6cf45 Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:26:56 +0200 Subject: [PATCH 188/260] =?UTF-8?q?=F0=9F=90=99=20source-insightly:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-07-13]=20(#41747)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-insightly/metadata.yaml | 4 ++-- .../connectors/source-insightly/poetry.lock | 6 +++--- .../connectors/source-insightly/pyproject.toml | 2 +- docs/integrations/sources/insightly.md | 1 + 4 files changed, 7 insertions(+), 6 deletions(-) diff --git a/airbyte-integrations/connectors/source-insightly/metadata.yaml b/airbyte-integrations/connectors/source-insightly/metadata.yaml index c4f96dfaaeaf..e5c2ba447ca7 100644 --- a/airbyte-integrations/connectors/source-insightly/metadata.yaml +++ b/airbyte-integrations/connectors/source-insightly/metadata.yaml @@ -10,7 +10,7 @@ data: connectorSubtype: api connectorType: source definitionId: 38f84314-fe6a-4257-97be-a8dcd942d693 - dockerImageTag: 0.2.11 + dockerImageTag: 0.2.12 dockerRepository: airbyte/source-insightly documentationUrl: https://docs.airbyte.com/integrations/sources/insightly githubIssueLabel: source-insightly @@ -20,7 +20,7 @@ data: registries: cloud: enabled: true - dockerImageTag: 0.2.11 + dockerImageTag: 0.2.12 oss: enabled: true releaseStage: alpha diff --git a/airbyte-integrations/connectors/source-insightly/poetry.lock b/airbyte-integrations/connectors/source-insightly/poetry.lock index cce71c3b0e79..a1ccc2d0271d 100644 --- a/airbyte-integrations/connectors/source-insightly/poetry.lock +++ b/airbyte-integrations/connectors/source-insightly/poetry.lock @@ -288,13 +288,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] diff --git a/airbyte-integrations/connectors/source-insightly/pyproject.toml b/airbyte-integrations/connectors/source-insightly/pyproject.toml index 92e506cc21ba..e81cc606efb7 100644 --- a/airbyte-integrations/connectors/source-insightly/pyproject.toml +++ b/airbyte-integrations/connectors/source-insightly/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.2.11" +version = "0.2.12" name = "source-insightly" description = "Source implementation for Insightly." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/insightly.md b/docs/integrations/sources/insightly.md index 22ee2d781d84..3c9def6a19f0 100644 --- a/docs/integrations/sources/insightly.md +++ b/docs/integrations/sources/insightly.md @@ -72,6 +72,7 @@ The connector is restricted by Insightly [requests limitation](https://api.na1.i | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :------------------------------------------------------------------------------ | +| 0.2.12 | 2024-07-13 | [41747](https://github.com/airbytehq/airbyte/pull/41747) | Update dependencies | | 0.2.11 | 2024-07-10 | [41596](https://github.com/airbytehq/airbyte/pull/41596) | Update dependencies | | 0.2.10 | 2024-07-09 | [41249](https://github.com/airbytehq/airbyte/pull/41249) | Update dependencies | | 0.2.9 | 2024-07-06 | [40887](https://github.com/airbytehq/airbyte/pull/40887) | Update dependencies | From 805b977b0f7eb3a800d977e5191c29660fc809a5 Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:26:59 +0200 Subject: [PATCH 189/260] =?UTF-8?q?=F0=9F=90=99=20source-github:=20run=20u?= =?UTF-8?q?p-to-date=20pipeline=20[2024-07-13]=20(#41746)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-github/metadata.yaml | 2 +- .../connectors/source-github/poetry.lock | 12 ++++++------ .../connectors/source-github/pyproject.toml | 2 +- docs/integrations/sources/github.md | 1 + 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/airbyte-integrations/connectors/source-github/metadata.yaml b/airbyte-integrations/connectors/source-github/metadata.yaml index b26a5f3f4be6..90690b7bee10 100644 --- a/airbyte-integrations/connectors/source-github/metadata.yaml +++ b/airbyte-integrations/connectors/source-github/metadata.yaml @@ -10,7 +10,7 @@ data: connectorSubtype: api connectorType: source definitionId: ef69ef6e-aa7f-4af1-a01d-ef775033524e - dockerImageTag: 1.7.12 + dockerImageTag: 1.7.13 dockerRepository: airbyte/source-github documentationUrl: https://docs.airbyte.com/integrations/sources/github githubIssueLabel: source-github diff --git a/airbyte-integrations/connectors/source-github/poetry.lock b/airbyte-integrations/connectors/source-github/poetry.lock index 23ca3c899708..22925c4470a8 100644 --- a/airbyte-integrations/connectors/source-github/poetry.lock +++ b/airbyte-integrations/connectors/source-github/poetry.lock @@ -410,13 +410,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] @@ -591,13 +591,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.84" +version = "0.1.85" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.84-py3-none-any.whl", hash = "sha256:01f3c6390dba26c583bac8dd0e551ce3d0509c7f55cad714db0b5c8d36e4c7ff"}, - {file = "langsmith-0.1.84.tar.gz", hash = "sha256:5220c0439838b9a5bd320fd3686be505c5083dcee22d2452006c23891153bea1"}, + {file = "langsmith-0.1.85-py3-none-any.whl", hash = "sha256:c1f94384f10cea96f7b4d33fd3db7ec180c03c7468877d50846f881d2017ff94"}, + {file = "langsmith-0.1.85.tar.gz", hash = "sha256:acff31f9e53efa48586cf8e32f65625a335c74d7c4fa306d1655ac18452296f6"}, ] [package.dependencies] diff --git a/airbyte-integrations/connectors/source-github/pyproject.toml b/airbyte-integrations/connectors/source-github/pyproject.toml index c151a8d9731c..241e3d5da5f1 100644 --- a/airbyte-integrations/connectors/source-github/pyproject.toml +++ b/airbyte-integrations/connectors/source-github/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "1.7.12" +version = "1.7.13" name = "source-github" description = "Source implementation for GitHub." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/github.md b/docs/integrations/sources/github.md index 7bb35a428395..c9db604e6e41 100644 --- a/docs/integrations/sources/github.md +++ b/docs/integrations/sources/github.md @@ -215,6 +215,7 @@ Your token should have at least the `repo` scope. Depending on which streams you | Version | Date | Pull Request | Subject | |:--------|:-----------|:------------------------------------------------------------------------------------------------------------------|:--------------------------------------------------------------------------------------------------------------------------------------------------------------------| +| 1.7.13 | 2024-07-13 | [41746](https://github.com/airbytehq/airbyte/pull/41746) | Update dependencies | | 1.7.12 | 2024-07-10 | [41354](https://github.com/airbytehq/airbyte/pull/41354) | Update dependencies | | 1.7.11 | 2024-07-09 | [41221](https://github.com/airbytehq/airbyte/pull/41221) | Update dependencies | | 1.7.10 | 2024-07-06 | [41000](https://github.com/airbytehq/airbyte/pull/41000) | Update dependencies | From 825aa049e9deecc9e799b138372f29f6e05c3f5b Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:27:01 +0200 Subject: [PATCH 190/260] =?UTF-8?q?=F0=9F=90=99=20source-quickbooks:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-07-13]=20(#41745)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-quickbooks/metadata.yaml | 2 +- .../connectors/source-quickbooks/poetry.lock | 12 ++++++------ .../connectors/source-quickbooks/pyproject.toml | 2 +- docs/integrations/sources/quickbooks.md | 1 + 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/airbyte-integrations/connectors/source-quickbooks/metadata.yaml b/airbyte-integrations/connectors/source-quickbooks/metadata.yaml index 95c9950df45b..c938c9b8bce4 100644 --- a/airbyte-integrations/connectors/source-quickbooks/metadata.yaml +++ b/airbyte-integrations/connectors/source-quickbooks/metadata.yaml @@ -9,7 +9,7 @@ data: baseImage: docker.io/airbyte/python-connector-base:2.0.0@sha256:c44839ba84406116e8ba68722a0f30e8f6e7056c726f447681bb9e9ece8bd916 connectorType: source definitionId: cf9c4355-b171-4477-8f2d-6c5cc5fc8b7e - dockerImageTag: 3.0.11 + dockerImageTag: 3.0.12 dockerRepository: airbyte/source-quickbooks githubIssueLabel: source-quickbooks icon: quickbooks.svg diff --git a/airbyte-integrations/connectors/source-quickbooks/poetry.lock b/airbyte-integrations/connectors/source-quickbooks/poetry.lock index d2ec6735d858..fc25f7590f3f 100644 --- a/airbyte-integrations/connectors/source-quickbooks/poetry.lock +++ b/airbyte-integrations/connectors/source-quickbooks/poetry.lock @@ -410,13 +410,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] @@ -566,13 +566,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.84" +version = "0.1.85" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.84-py3-none-any.whl", hash = "sha256:01f3c6390dba26c583bac8dd0e551ce3d0509c7f55cad714db0b5c8d36e4c7ff"}, - {file = "langsmith-0.1.84.tar.gz", hash = "sha256:5220c0439838b9a5bd320fd3686be505c5083dcee22d2452006c23891153bea1"}, + {file = "langsmith-0.1.85-py3-none-any.whl", hash = "sha256:c1f94384f10cea96f7b4d33fd3db7ec180c03c7468877d50846f881d2017ff94"}, + {file = "langsmith-0.1.85.tar.gz", hash = "sha256:acff31f9e53efa48586cf8e32f65625a335c74d7c4fa306d1655ac18452296f6"}, ] [package.dependencies] diff --git a/airbyte-integrations/connectors/source-quickbooks/pyproject.toml b/airbyte-integrations/connectors/source-quickbooks/pyproject.toml index 322fede7b481..7bd9a25c4d13 100644 --- a/airbyte-integrations/connectors/source-quickbooks/pyproject.toml +++ b/airbyte-integrations/connectors/source-quickbooks/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "3.0.11" +version = "3.0.12" name = "source-quickbooks" description = "Source implementation for quickbooks." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/quickbooks.md b/docs/integrations/sources/quickbooks.md index 94ecf68f519f..8d481bc7ecbd 100644 --- a/docs/integrations/sources/quickbooks.md +++ b/docs/integrations/sources/quickbooks.md @@ -108,6 +108,7 @@ This Source is capable of syncing the following [Streams](https://developer.intu | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :----------------------------------------------------------------- | +| 3.0.12 | 2024-07-13 | [41745](https://github.com/airbytehq/airbyte/pull/41745) | Update dependencies | | 3.0.11 | 2024-07-10 | [41414](https://github.com/airbytehq/airbyte/pull/41414) | Update dependencies | | 3.0.10 | 2024-07-10 | [41325](https://github.com/airbytehq/airbyte/pull/41325) | Update dependencies | | 3.0.9 | 2024-07-09 | [40660](https://github.com/airbytehq/airbyte/pull/40660) | Fix configured catalog, inline schemas | From d2e160947e045d79382e8ad5dd909323afaa4775 Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:27:04 +0200 Subject: [PATCH 191/260] =?UTF-8?q?=F0=9F=90=99=20source-firebolt:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-07-13]=20(#41744)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-firebolt/metadata.yaml | 2 +- .../connectors/source-firebolt/poetry.lock | 12 ++++++------ .../connectors/source-firebolt/pyproject.toml | 2 +- docs/integrations/sources/firebolt.md | 1 + 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/airbyte-integrations/connectors/source-firebolt/metadata.yaml b/airbyte-integrations/connectors/source-firebolt/metadata.yaml index 522cef705ced..08cc1c00c84a 100644 --- a/airbyte-integrations/connectors/source-firebolt/metadata.yaml +++ b/airbyte-integrations/connectors/source-firebolt/metadata.yaml @@ -2,7 +2,7 @@ data: connectorSubtype: database connectorType: source definitionId: 6f2ac653-8623-43c4-8950-19218c7caf3d - dockerImageTag: 2.0.8 + dockerImageTag: 2.0.9 dockerRepository: airbyte/source-firebolt githubIssueLabel: source-firebolt connectorBuildOptions: diff --git a/airbyte-integrations/connectors/source-firebolt/poetry.lock b/airbyte-integrations/connectors/source-firebolt/poetry.lock index 85c42ca98d81..01ffe4839160 100644 --- a/airbyte-integrations/connectors/source-firebolt/poetry.lock +++ b/airbyte-integrations/connectors/source-firebolt/poetry.lock @@ -490,13 +490,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] @@ -770,13 +770,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.84" +version = "0.1.85" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.84-py3-none-any.whl", hash = "sha256:01f3c6390dba26c583bac8dd0e551ce3d0509c7f55cad714db0b5c8d36e4c7ff"}, - {file = "langsmith-0.1.84.tar.gz", hash = "sha256:5220c0439838b9a5bd320fd3686be505c5083dcee22d2452006c23891153bea1"}, + {file = "langsmith-0.1.85-py3-none-any.whl", hash = "sha256:c1f94384f10cea96f7b4d33fd3db7ec180c03c7468877d50846f881d2017ff94"}, + {file = "langsmith-0.1.85.tar.gz", hash = "sha256:acff31f9e53efa48586cf8e32f65625a335c74d7c4fa306d1655ac18452296f6"}, ] [package.dependencies] diff --git a/airbyte-integrations/connectors/source-firebolt/pyproject.toml b/airbyte-integrations/connectors/source-firebolt/pyproject.toml index c7c3d2fc7d09..82e5c9b8229f 100644 --- a/airbyte-integrations/connectors/source-firebolt/pyproject.toml +++ b/airbyte-integrations/connectors/source-firebolt/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "2.0.8" +version = "2.0.9" name = "source-firebolt" description = "Source implementation for Firebolt." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/firebolt.md b/docs/integrations/sources/firebolt.md index 38be91a7a27c..909981f9a3f2 100644 --- a/docs/integrations/sources/firebolt.md +++ b/docs/integrations/sources/firebolt.md @@ -54,6 +54,7 @@ You can now use the Airbyte Firebolt source. | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :----------------------------------------------------------- | +| 2.0.9 | 2024-07-13 | [41744](https://github.com/airbytehq/airbyte/pull/41744) | Update dependencies | | 2.0.8 | 2024-07-10 | [41575](https://github.com/airbytehq/airbyte/pull/41575) | Update dependencies | | 2.0.7 | 2024-07-09 | [41151](https://github.com/airbytehq/airbyte/pull/41151) | Update dependencies | | 2.0.6 | 2024-07-06 | [40979](https://github.com/airbytehq/airbyte/pull/40979) | Update dependencies | From 9da08769a6545c9a9acf4461d61117f630d4d467 Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:27:07 +0200 Subject: [PATCH 192/260] =?UTF-8?q?=F0=9F=90=99=20source-surveycto:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-07-13]=20(#41743)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-surveycto/metadata.yaml | 2 +- .../connectors/source-surveycto/poetry.lock | 6 +++--- .../connectors/source-surveycto/pyproject.toml | 2 +- docs/integrations/sources/surveycto.md | 1 + 4 files changed, 6 insertions(+), 5 deletions(-) diff --git a/airbyte-integrations/connectors/source-surveycto/metadata.yaml b/airbyte-integrations/connectors/source-surveycto/metadata.yaml index 786340b01d48..95d4aeaf7154 100644 --- a/airbyte-integrations/connectors/source-surveycto/metadata.yaml +++ b/airbyte-integrations/connectors/source-surveycto/metadata.yaml @@ -2,7 +2,7 @@ data: connectorSubtype: api connectorType: source definitionId: dd4632f4-15e0-4649-9b71-41719fb1fdee - dockerImageTag: 0.1.10 + dockerImageTag: 0.1.11 dockerRepository: airbyte/source-surveycto githubIssueLabel: source-surveycto icon: surveycto.svg diff --git a/airbyte-integrations/connectors/source-surveycto/poetry.lock b/airbyte-integrations/connectors/source-surveycto/poetry.lock index 864a90b37e29..a69ebcec66e2 100644 --- a/airbyte-integrations/connectors/source-surveycto/poetry.lock +++ b/airbyte-integrations/connectors/source-surveycto/poetry.lock @@ -298,13 +298,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] diff --git a/airbyte-integrations/connectors/source-surveycto/pyproject.toml b/airbyte-integrations/connectors/source-surveycto/pyproject.toml index 2906b466c978..6bc3e515dd22 100644 --- a/airbyte-integrations/connectors/source-surveycto/pyproject.toml +++ b/airbyte-integrations/connectors/source-surveycto/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.1.10" +version = "0.1.11" name = "source-surveycto" description = "Source implementation for Surveycto." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/surveycto.md b/docs/integrations/sources/surveycto.md index 8add55cf58fc..413ca8a2edb2 100644 --- a/docs/integrations/sources/surveycto.md +++ b/docs/integrations/sources/surveycto.md @@ -52,6 +52,7 @@ The SurveyCTO source connector supports the following streams: | Version | Date | Pull Request | Subject | | ------- | ---------- | -------------------------------------------------------- | -------------------------- | +| 0.1.11 | 2024-07-13 | [41743](https://github.com/airbytehq/airbyte/pull/41743) | Update dependencies | | 0.1.10 | 2024-07-10 | [41597](https://github.com/airbytehq/airbyte/pull/41597) | Update dependencies | | 0.1.9 | 2024-07-09 | [41117](https://github.com/airbytehq/airbyte/pull/41117) | Update dependencies | | 0.1.8 | 2024-07-06 | [40782](https://github.com/airbytehq/airbyte/pull/40782) | Update dependencies | From e6f2aa482c22523cb56072c518a7482ec4ba67ae Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:27:10 +0200 Subject: [PATCH 193/260] =?UTF-8?q?=F0=9F=90=99=20source-convertkit:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-07-13]=20(#41742)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-convertkit/metadata.yaml | 2 +- .../connectors/source-convertkit/poetry.lock | 12 ++++++------ .../connectors/source-convertkit/pyproject.toml | 2 +- docs/integrations/sources/convertkit.md | 1 + 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/airbyte-integrations/connectors/source-convertkit/metadata.yaml b/airbyte-integrations/connectors/source-convertkit/metadata.yaml index cb0fc0f68145..c25023e9ca25 100644 --- a/airbyte-integrations/connectors/source-convertkit/metadata.yaml +++ b/airbyte-integrations/connectors/source-convertkit/metadata.yaml @@ -2,7 +2,7 @@ data: connectorSubtype: api connectorType: source definitionId: be9ee02f-6efe-4970-979b-95f797a37188 - dockerImageTag: 0.1.8 + dockerImageTag: 0.1.9 dockerRepository: airbyte/source-convertkit githubIssueLabel: source-convertkit icon: convertkit.svg diff --git a/airbyte-integrations/connectors/source-convertkit/poetry.lock b/airbyte-integrations/connectors/source-convertkit/poetry.lock index 4b03cc351726..13836360394d 100644 --- a/airbyte-integrations/connectors/source-convertkit/poetry.lock +++ b/airbyte-integrations/connectors/source-convertkit/poetry.lock @@ -410,13 +410,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] @@ -566,13 +566,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.84" +version = "0.1.85" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.84-py3-none-any.whl", hash = "sha256:01f3c6390dba26c583bac8dd0e551ce3d0509c7f55cad714db0b5c8d36e4c7ff"}, - {file = "langsmith-0.1.84.tar.gz", hash = "sha256:5220c0439838b9a5bd320fd3686be505c5083dcee22d2452006c23891153bea1"}, + {file = "langsmith-0.1.85-py3-none-any.whl", hash = "sha256:c1f94384f10cea96f7b4d33fd3db7ec180c03c7468877d50846f881d2017ff94"}, + {file = "langsmith-0.1.85.tar.gz", hash = "sha256:acff31f9e53efa48586cf8e32f65625a335c74d7c4fa306d1655ac18452296f6"}, ] [package.dependencies] diff --git a/airbyte-integrations/connectors/source-convertkit/pyproject.toml b/airbyte-integrations/connectors/source-convertkit/pyproject.toml index 618fe8eb8c6d..7a35d19bae2b 100644 --- a/airbyte-integrations/connectors/source-convertkit/pyproject.toml +++ b/airbyte-integrations/connectors/source-convertkit/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.1.8" +version = "0.1.9" name = "source-convertkit" description = "Source implementation for Convertkit." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/convertkit.md b/docs/integrations/sources/convertkit.md index 066a83680c28..63a657635c62 100644 --- a/docs/integrations/sources/convertkit.md +++ b/docs/integrations/sources/convertkit.md @@ -36,6 +36,7 @@ The connector has a rate limit of no more than 120 requests over a rolling 60 se | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :------------- | +| 0.1.9 | 2024-07-13 | [41742](https://github.com/airbytehq/airbyte/pull/41742) | Update dependencies | | 0.1.8 | 2024-07-10 | [41405](https://github.com/airbytehq/airbyte/pull/41405) | Update dependencies | | 0.1.7 | 2024-07-09 | [41272](https://github.com/airbytehq/airbyte/pull/41272) | Update dependencies | | 0.1.6 | 2024-07-06 | [40860](https://github.com/airbytehq/airbyte/pull/40860) | Update dependencies | From 9eaf237817c1f7a7d3be6cd8cf683f6a9f851fd8 Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:27:12 +0200 Subject: [PATCH 194/260] =?UTF-8?q?=F0=9F=90=99=20source-rss:=20run=20up-t?= =?UTF-8?q?o-date=20pipeline=20[2024-07-13]=20(#41741)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-rss/metadata.yaml | 2 +- .../connectors/source-rss/poetry.lock | 12 ++++++------ .../connectors/source-rss/pyproject.toml | 2 +- docs/integrations/sources/rss.md | 1 + 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/airbyte-integrations/connectors/source-rss/metadata.yaml b/airbyte-integrations/connectors/source-rss/metadata.yaml index 06baaa3fd631..4cb157dd3c5d 100644 --- a/airbyte-integrations/connectors/source-rss/metadata.yaml +++ b/airbyte-integrations/connectors/source-rss/metadata.yaml @@ -24,7 +24,7 @@ data: connectorSubtype: api connectorType: source definitionId: 0efee448-6948-49e2-b786-17db50647908 - dockerImageTag: 1.0.7 + dockerImageTag: 1.0.8 dockerRepository: airbyte/source-rss githubIssueLabel: source-rss icon: rss.svg diff --git a/airbyte-integrations/connectors/source-rss/poetry.lock b/airbyte-integrations/connectors/source-rss/poetry.lock index 06b3a9b4dfad..ab4c2d3d5caf 100644 --- a/airbyte-integrations/connectors/source-rss/poetry.lock +++ b/airbyte-integrations/connectors/source-rss/poetry.lock @@ -399,13 +399,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] @@ -569,13 +569,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.84" +version = "0.1.85" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.84-py3-none-any.whl", hash = "sha256:01f3c6390dba26c583bac8dd0e551ce3d0509c7f55cad714db0b5c8d36e4c7ff"}, - {file = "langsmith-0.1.84.tar.gz", hash = "sha256:5220c0439838b9a5bd320fd3686be505c5083dcee22d2452006c23891153bea1"}, + {file = "langsmith-0.1.85-py3-none-any.whl", hash = "sha256:c1f94384f10cea96f7b4d33fd3db7ec180c03c7468877d50846f881d2017ff94"}, + {file = "langsmith-0.1.85.tar.gz", hash = "sha256:acff31f9e53efa48586cf8e32f65625a335c74d7c4fa306d1655ac18452296f6"}, ] [package.dependencies] diff --git a/airbyte-integrations/connectors/source-rss/pyproject.toml b/airbyte-integrations/connectors/source-rss/pyproject.toml index 1452f35dd1e0..e09bc9b9fd2a 100644 --- a/airbyte-integrations/connectors/source-rss/pyproject.toml +++ b/airbyte-integrations/connectors/source-rss/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "1.0.7" +version = "1.0.8" name = "source-rss" description = "Source implementation for rss." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/rss.md b/docs/integrations/sources/rss.md index b5b08085136a..0d832b2178ea 100644 --- a/docs/integrations/sources/rss.md +++ b/docs/integrations/sources/rss.md @@ -38,6 +38,7 @@ None | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :----------------------------- | +| 1.0.8 | 2024-07-13 | [41741](https://github.com/airbytehq/airbyte/pull/41741) | Update dependencies | | 1.0.7 | 2024-07-10 | [41570](https://github.com/airbytehq/airbyte/pull/41570) | Update dependencies | | 1.0.6 | 2024-07-09 | [41197](https://github.com/airbytehq/airbyte/pull/41197) | Update dependencies | | 1.0.5 | 2024-07-06 | [40921](https://github.com/airbytehq/airbyte/pull/40921) | Update dependencies | From 2e9f12945bf39d6cd016bda8184f40dccbe2976c Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:27:15 +0200 Subject: [PATCH 195/260] =?UTF-8?q?=F0=9F=90=99=20source-tyntec-sms:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-07-13]=20(#41740)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-tyntec-sms/metadata.yaml | 2 +- .../connectors/source-tyntec-sms/poetry.lock | 12 ++++++------ .../connectors/source-tyntec-sms/pyproject.toml | 2 +- docs/integrations/sources/tyntec-sms.md | 1 + 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/airbyte-integrations/connectors/source-tyntec-sms/metadata.yaml b/airbyte-integrations/connectors/source-tyntec-sms/metadata.yaml index d8dfda9d0fa8..f8354110c926 100644 --- a/airbyte-integrations/connectors/source-tyntec-sms/metadata.yaml +++ b/airbyte-integrations/connectors/source-tyntec-sms/metadata.yaml @@ -2,7 +2,7 @@ data: connectorSubtype: api connectorType: source definitionId: 3c0c3cd1-b3e0-464a-9090-d3ceb5f92346 - dockerImageTag: 0.1.8 + dockerImageTag: 0.1.9 dockerRepository: airbyte/source-tyntec-sms githubIssueLabel: source-tyntec-sms icon: tyntec.svg diff --git a/airbyte-integrations/connectors/source-tyntec-sms/poetry.lock b/airbyte-integrations/connectors/source-tyntec-sms/poetry.lock index 4b03cc351726..13836360394d 100644 --- a/airbyte-integrations/connectors/source-tyntec-sms/poetry.lock +++ b/airbyte-integrations/connectors/source-tyntec-sms/poetry.lock @@ -410,13 +410,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] @@ -566,13 +566,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.84" +version = "0.1.85" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.84-py3-none-any.whl", hash = "sha256:01f3c6390dba26c583bac8dd0e551ce3d0509c7f55cad714db0b5c8d36e4c7ff"}, - {file = "langsmith-0.1.84.tar.gz", hash = "sha256:5220c0439838b9a5bd320fd3686be505c5083dcee22d2452006c23891153bea1"}, + {file = "langsmith-0.1.85-py3-none-any.whl", hash = "sha256:c1f94384f10cea96f7b4d33fd3db7ec180c03c7468877d50846f881d2017ff94"}, + {file = "langsmith-0.1.85.tar.gz", hash = "sha256:acff31f9e53efa48586cf8e32f65625a335c74d7c4fa306d1655ac18452296f6"}, ] [package.dependencies] diff --git a/airbyte-integrations/connectors/source-tyntec-sms/pyproject.toml b/airbyte-integrations/connectors/source-tyntec-sms/pyproject.toml index 4cc4f3a45e74..5ed3c598a666 100644 --- a/airbyte-integrations/connectors/source-tyntec-sms/pyproject.toml +++ b/airbyte-integrations/connectors/source-tyntec-sms/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.1.8" +version = "0.1.9" name = "source-tyntec-sms" description = "Source implementation for Tyntec Sms." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/tyntec-sms.md b/docs/integrations/sources/tyntec-sms.md index 3ac221b89a6f..34a3318a8330 100644 --- a/docs/integrations/sources/tyntec-sms.md +++ b/docs/integrations/sources/tyntec-sms.md @@ -65,6 +65,7 @@ The Tyntec SMS connector should not run into limitations under normal usage. Ple | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :------------------------ | +| 0.1.9 | 2024-07-13 | [41740](https://github.com/airbytehq/airbyte/pull/41740) | Update dependencies | | 0.1.8 | 2024-07-10 | [41364](https://github.com/airbytehq/airbyte/pull/41364) | Update dependencies | | 0.1.7 | 2024-07-09 | [41108](https://github.com/airbytehq/airbyte/pull/41108) | Update dependencies | | 0.1.6 | 2024-07-06 | [40804](https://github.com/airbytehq/airbyte/pull/40804) | Update dependencies | From 7643cff5c0960f37fa43fbc4691f83290fdf8a87 Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:27:18 +0200 Subject: [PATCH 196/260] =?UTF-8?q?=F0=9F=90=99=20source-typeform:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-07-13]=20(#41739)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-typeform/metadata.yaml | 2 +- .../connectors/source-typeform/poetry.lock | 12 ++++++------ .../connectors/source-typeform/pyproject.toml | 2 +- docs/integrations/sources/typeform.md | 1 + 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/airbyte-integrations/connectors/source-typeform/metadata.yaml b/airbyte-integrations/connectors/source-typeform/metadata.yaml index 41291814757b..665807e998e8 100644 --- a/airbyte-integrations/connectors/source-typeform/metadata.yaml +++ b/airbyte-integrations/connectors/source-typeform/metadata.yaml @@ -10,7 +10,7 @@ data: connectorSubtype: api connectorType: source definitionId: e7eff203-90bf-43e5-a240-19ea3056c474 - dockerImageTag: 1.3.4 + dockerImageTag: 1.3.5 dockerRepository: airbyte/source-typeform documentationUrl: https://docs.airbyte.com/integrations/sources/typeform githubIssueLabel: source-typeform diff --git a/airbyte-integrations/connectors/source-typeform/poetry.lock b/airbyte-integrations/connectors/source-typeform/poetry.lock index 432c24da369b..a6a9923ad095 100644 --- a/airbyte-integrations/connectors/source-typeform/poetry.lock +++ b/airbyte-integrations/connectors/source-typeform/poetry.lock @@ -409,13 +409,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] @@ -565,13 +565,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.84" +version = "0.1.85" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.84-py3-none-any.whl", hash = "sha256:01f3c6390dba26c583bac8dd0e551ce3d0509c7f55cad714db0b5c8d36e4c7ff"}, - {file = "langsmith-0.1.84.tar.gz", hash = "sha256:5220c0439838b9a5bd320fd3686be505c5083dcee22d2452006c23891153bea1"}, + {file = "langsmith-0.1.85-py3-none-any.whl", hash = "sha256:c1f94384f10cea96f7b4d33fd3db7ec180c03c7468877d50846f881d2017ff94"}, + {file = "langsmith-0.1.85.tar.gz", hash = "sha256:acff31f9e53efa48586cf8e32f65625a335c74d7c4fa306d1655ac18452296f6"}, ] [package.dependencies] diff --git a/airbyte-integrations/connectors/source-typeform/pyproject.toml b/airbyte-integrations/connectors/source-typeform/pyproject.toml index 4128948fec51..fc9ab0cb3c11 100644 --- a/airbyte-integrations/connectors/source-typeform/pyproject.toml +++ b/airbyte-integrations/connectors/source-typeform/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "1.3.4" +version = "1.3.5" name = "source-typeform" description = "Source implementation for Typeform." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/typeform.md b/docs/integrations/sources/typeform.md index 8fbf74a18892..843e0d590bf4 100644 --- a/docs/integrations/sources/typeform.md +++ b/docs/integrations/sources/typeform.md @@ -101,6 +101,7 @@ API rate limits \(2 requests per second\): [https://developer.typeform.com/get-s | Version | Date | Pull Request | Subject | |:--------|:-----------| :------------------------------------------------------- |:------------------------------------------------------------------------------------------------| +| 1.3.5 | 2024-07-13 | [41739](https://github.com/airbytehq/airbyte/pull/41739) | Update dependencies | | 1.3.4 | 2024-07-10 | [41434](https://github.com/airbytehq/airbyte/pull/41434) | Update dependencies | | 1.3.3 | 2024-07-09 | [41228](https://github.com/airbytehq/airbyte/pull/41228) | Update dependencies | | 1.3.2 | 2024-07-06 | [40821](https://github.com/airbytehq/airbyte/pull/40821) | Update dependencies | From 3644fbf73f2ae0b702bdee8b234db7efec0e6d7e Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:27:21 +0200 Subject: [PATCH 197/260] =?UTF-8?q?=F0=9F=90=99=20source-n8n:=20run=20up-t?= =?UTF-8?q?o-date=20pipeline=20[2024-07-13]=20(#41738)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-n8n/metadata.yaml | 2 +- .../connectors/source-n8n/poetry.lock | 12 ++++++------ .../connectors/source-n8n/pyproject.toml | 2 +- docs/integrations/sources/n8n.md | 1 + 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/airbyte-integrations/connectors/source-n8n/metadata.yaml b/airbyte-integrations/connectors/source-n8n/metadata.yaml index 1b5098073832..eb67926b890a 100644 --- a/airbyte-integrations/connectors/source-n8n/metadata.yaml +++ b/airbyte-integrations/connectors/source-n8n/metadata.yaml @@ -2,7 +2,7 @@ data: connectorSubtype: api connectorType: source definitionId: 4a961f66-5e99-4430-8320-a73afe52f7a2 - dockerImageTag: 0.1.7 + dockerImageTag: 0.1.8 dockerRepository: airbyte/source-n8n githubIssueLabel: source-n8n icon: n8n.svg diff --git a/airbyte-integrations/connectors/source-n8n/poetry.lock b/airbyte-integrations/connectors/source-n8n/poetry.lock index 4b03cc351726..13836360394d 100644 --- a/airbyte-integrations/connectors/source-n8n/poetry.lock +++ b/airbyte-integrations/connectors/source-n8n/poetry.lock @@ -410,13 +410,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] @@ -566,13 +566,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.84" +version = "0.1.85" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.84-py3-none-any.whl", hash = "sha256:01f3c6390dba26c583bac8dd0e551ce3d0509c7f55cad714db0b5c8d36e4c7ff"}, - {file = "langsmith-0.1.84.tar.gz", hash = "sha256:5220c0439838b9a5bd320fd3686be505c5083dcee22d2452006c23891153bea1"}, + {file = "langsmith-0.1.85-py3-none-any.whl", hash = "sha256:c1f94384f10cea96f7b4d33fd3db7ec180c03c7468877d50846f881d2017ff94"}, + {file = "langsmith-0.1.85.tar.gz", hash = "sha256:acff31f9e53efa48586cf8e32f65625a335c74d7c4fa306d1655ac18452296f6"}, ] [package.dependencies] diff --git a/airbyte-integrations/connectors/source-n8n/pyproject.toml b/airbyte-integrations/connectors/source-n8n/pyproject.toml index 35ac6eada3cc..801e3c4763b0 100644 --- a/airbyte-integrations/connectors/source-n8n/pyproject.toml +++ b/airbyte-integrations/connectors/source-n8n/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.1.7" +version = "0.1.8" name = "source-n8n" description = "Source implementation for N8n." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/n8n.md b/docs/integrations/sources/n8n.md index dc89c80750f7..0736bd1f15d5 100644 --- a/docs/integrations/sources/n8n.md +++ b/docs/integrations/sources/n8n.md @@ -32,6 +32,7 @@ You need a n8n instance or use cloud version | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :-------------------------------- | +| 0.1.8 | 2024-07-13 | [41738](https://github.com/airbytehq/airbyte/pull/41738) | Update dependencies | | 0.1.7 | 2024-07-10 | [41427](https://github.com/airbytehq/airbyte/pull/41427) | Update dependencies | | 0.1.6 | 2024-07-09 | [41191](https://github.com/airbytehq/airbyte/pull/41191) | Update dependencies | | 0.1.5 | 2024-07-06 | [40861](https://github.com/airbytehq/airbyte/pull/40861) | Update dependencies | From 47a0396b616ec32e258b816ac7fd94a654651a10 Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:27:24 +0200 Subject: [PATCH 198/260] =?UTF-8?q?=F0=9F=90=99=20source-reply-io:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-07-13]=20(#41737)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-reply-io/metadata.yaml | 2 +- .../connectors/source-reply-io/poetry.lock | 12 ++++++------ .../connectors/source-reply-io/pyproject.toml | 2 +- docs/integrations/sources/reply-io.md | 1 + 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/airbyte-integrations/connectors/source-reply-io/metadata.yaml b/airbyte-integrations/connectors/source-reply-io/metadata.yaml index a406635c2189..ef15622448ac 100644 --- a/airbyte-integrations/connectors/source-reply-io/metadata.yaml +++ b/airbyte-integrations/connectors/source-reply-io/metadata.yaml @@ -16,7 +16,7 @@ data: connectorSubtype: api connectorType: source definitionId: 8cc6537e-f8a6-423c-b960-e927af76116e - dockerImageTag: 0.1.8 + dockerImageTag: 0.1.9 dockerRepository: airbyte/source-reply-io githubIssueLabel: source-reply-io icon: reply-io.svg diff --git a/airbyte-integrations/connectors/source-reply-io/poetry.lock b/airbyte-integrations/connectors/source-reply-io/poetry.lock index 4b03cc351726..13836360394d 100644 --- a/airbyte-integrations/connectors/source-reply-io/poetry.lock +++ b/airbyte-integrations/connectors/source-reply-io/poetry.lock @@ -410,13 +410,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] @@ -566,13 +566,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.84" +version = "0.1.85" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.84-py3-none-any.whl", hash = "sha256:01f3c6390dba26c583bac8dd0e551ce3d0509c7f55cad714db0b5c8d36e4c7ff"}, - {file = "langsmith-0.1.84.tar.gz", hash = "sha256:5220c0439838b9a5bd320fd3686be505c5083dcee22d2452006c23891153bea1"}, + {file = "langsmith-0.1.85-py3-none-any.whl", hash = "sha256:c1f94384f10cea96f7b4d33fd3db7ec180c03c7468877d50846f881d2017ff94"}, + {file = "langsmith-0.1.85.tar.gz", hash = "sha256:acff31f9e53efa48586cf8e32f65625a335c74d7c4fa306d1655ac18452296f6"}, ] [package.dependencies] diff --git a/airbyte-integrations/connectors/source-reply-io/pyproject.toml b/airbyte-integrations/connectors/source-reply-io/pyproject.toml index b1fab8753146..a5fccb789e23 100644 --- a/airbyte-integrations/connectors/source-reply-io/pyproject.toml +++ b/airbyte-integrations/connectors/source-reply-io/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.1.8" +version = "0.1.9" name = "source-reply-io" description = "Source implementation for reply-io." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/reply-io.md b/docs/integrations/sources/reply-io.md index fd9191420324..1765403a7f95 100644 --- a/docs/integrations/sources/reply-io.md +++ b/docs/integrations/sources/reply-io.md @@ -41,6 +41,7 @@ This Source is capable of syncing the following core Streams: | Version | Date | Pull Request | Subject | |:--------|:-----------| :------------------------------------------------------- | :---------------------------- | +| 0.1.9 | 2024-07-13 | [41737](https://github.com/airbytehq/airbyte/pull/41737) | Update dependencies | | 0.1.8 | 2024-07-10 | [41497](https://github.com/airbytehq/airbyte/pull/41497) | Update dependencies | | 0.1.7 | 2024-07-09 | [41302](https://github.com/airbytehq/airbyte/pull/41302) | Update dependencies | | 0.1.6 | 2024-07-06 | [40805](https://github.com/airbytehq/airbyte/pull/40805) | Update dependencies | From 8ea344d36a8cb4901c4f7d093ba41a26dfd0b451 Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:27:27 +0200 Subject: [PATCH 199/260] =?UTF-8?q?=F0=9F=90=99=20source-toggl:=20run=20up?= =?UTF-8?q?-to-date=20pipeline=20[2024-07-13]=20(#41736)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-toggl/metadata.yaml | 2 +- .../connectors/source-toggl/poetry.lock | 12 ++++++------ .../connectors/source-toggl/pyproject.toml | 2 +- docs/integrations/sources/toggl.md | 1 + 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/airbyte-integrations/connectors/source-toggl/metadata.yaml b/airbyte-integrations/connectors/source-toggl/metadata.yaml index 08bbdc53f054..d5329a715b2a 100644 --- a/airbyte-integrations/connectors/source-toggl/metadata.yaml +++ b/airbyte-integrations/connectors/source-toggl/metadata.yaml @@ -11,7 +11,7 @@ data: connectorSubtype: api connectorType: source definitionId: 7e7c844f-2300-4342-b7d3-6dd7992593cd - dockerImageTag: 0.1.8 + dockerImageTag: 0.1.9 dockerRepository: airbyte/source-toggl githubIssueLabel: source-toggl icon: toggl.svg diff --git a/airbyte-integrations/connectors/source-toggl/poetry.lock b/airbyte-integrations/connectors/source-toggl/poetry.lock index 4b03cc351726..13836360394d 100644 --- a/airbyte-integrations/connectors/source-toggl/poetry.lock +++ b/airbyte-integrations/connectors/source-toggl/poetry.lock @@ -410,13 +410,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] @@ -566,13 +566,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.84" +version = "0.1.85" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.84-py3-none-any.whl", hash = "sha256:01f3c6390dba26c583bac8dd0e551ce3d0509c7f55cad714db0b5c8d36e4c7ff"}, - {file = "langsmith-0.1.84.tar.gz", hash = "sha256:5220c0439838b9a5bd320fd3686be505c5083dcee22d2452006c23891153bea1"}, + {file = "langsmith-0.1.85-py3-none-any.whl", hash = "sha256:c1f94384f10cea96f7b4d33fd3db7ec180c03c7468877d50846f881d2017ff94"}, + {file = "langsmith-0.1.85.tar.gz", hash = "sha256:acff31f9e53efa48586cf8e32f65625a335c74d7c4fa306d1655ac18452296f6"}, ] [package.dependencies] diff --git a/airbyte-integrations/connectors/source-toggl/pyproject.toml b/airbyte-integrations/connectors/source-toggl/pyproject.toml index ad08f2f6bbde..fc5544119b9c 100644 --- a/airbyte-integrations/connectors/source-toggl/pyproject.toml +++ b/airbyte-integrations/connectors/source-toggl/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.1.8" +version = "0.1.9" name = "source-toggl" description = "Source implementation for Toggl." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/toggl.md b/docs/integrations/sources/toggl.md index 2d562d31f693..e76520a438a5 100644 --- a/docs/integrations/sources/toggl.md +++ b/docs/integrations/sources/toggl.md @@ -38,6 +38,7 @@ Toggl APIs are under rate limits for the number of API calls allowed per API key | Version | Date | Pull Request | Subject | |:--------|:-----------| :-------------------------------------------------------- | :-------------------------------------- | +| 0.1.9 | 2024-07-13 | [41736](https://github.com/airbytehq/airbyte/pull/41736) | Update dependencies | | 0.1.8 | 2024-07-10 | [41510](https://github.com/airbytehq/airbyte/pull/41510) | Update dependencies | | 0.1.7 | 2024-07-09 | [41227](https://github.com/airbytehq/airbyte/pull/41227) | Update dependencies | | 0.1.6 | 2024-07-06 | [40968](https://github.com/airbytehq/airbyte/pull/40968) | Update dependencies | From 54b9756df1c5ed0e9d25daeb6fc76431f8970a7c Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:27:30 +0200 Subject: [PATCH 200/260] =?UTF-8?q?=F0=9F=90=99=20source-yahoo-finance-pri?= =?UTF-8?q?ce:=20run=20up-to-date=20pipeline=20[2024-07-13]=20(#41735)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-yahoo-finance-price/metadata.yaml | 2 +- .../connectors/source-yahoo-finance-price/poetry.lock | 6 +++--- .../connectors/source-yahoo-finance-price/pyproject.toml | 2 +- docs/integrations/sources/yahoo-finance-price.md | 1 + 4 files changed, 6 insertions(+), 5 deletions(-) diff --git a/airbyte-integrations/connectors/source-yahoo-finance-price/metadata.yaml b/airbyte-integrations/connectors/source-yahoo-finance-price/metadata.yaml index 954197e995a6..f1fa85d50f01 100644 --- a/airbyte-integrations/connectors/source-yahoo-finance-price/metadata.yaml +++ b/airbyte-integrations/connectors/source-yahoo-finance-price/metadata.yaml @@ -7,7 +7,7 @@ data: connectorSubtype: api connectorType: source definitionId: 09a517d3-803f-448d-97bf-0b1ee64b90ef - dockerImageTag: 0.2.11 + dockerImageTag: 0.2.12 dockerRepository: airbyte/source-yahoo-finance-price documentationUrl: https://docs.airbyte.com/integrations/sources/yahoo-finance-price githubIssueLabel: source-yahoo-finance-price diff --git a/airbyte-integrations/connectors/source-yahoo-finance-price/poetry.lock b/airbyte-integrations/connectors/source-yahoo-finance-price/poetry.lock index cce71c3b0e79..a1ccc2d0271d 100644 --- a/airbyte-integrations/connectors/source-yahoo-finance-price/poetry.lock +++ b/airbyte-integrations/connectors/source-yahoo-finance-price/poetry.lock @@ -288,13 +288,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] diff --git a/airbyte-integrations/connectors/source-yahoo-finance-price/pyproject.toml b/airbyte-integrations/connectors/source-yahoo-finance-price/pyproject.toml index bcb843a16669..7fb8ad8dd327 100644 --- a/airbyte-integrations/connectors/source-yahoo-finance-price/pyproject.toml +++ b/airbyte-integrations/connectors/source-yahoo-finance-price/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.2.11" +version = "0.2.12" name = "source-yahoo-finance-price" description = "Source implementation for Yahoo Finance Price." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/yahoo-finance-price.md b/docs/integrations/sources/yahoo-finance-price.md index c915fb540ac1..06e9b873eb37 100644 --- a/docs/integrations/sources/yahoo-finance-price.md +++ b/docs/integrations/sources/yahoo-finance-price.md @@ -9,6 +9,7 @@ The Airbyte Source for [Yahoo Finance Price](https://finance.yahoo.com/) | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :------------------------------------------------------------------------------ | +| 0.2.12 | 2024-07-13 | [41735](https://github.com/airbytehq/airbyte/pull/41735) | Update dependencies | | 0.2.11 | 2024-07-10 | [41409](https://github.com/airbytehq/airbyte/pull/41409) | Update dependencies | | 0.2.10 | 2024-07-09 | [41266](https://github.com/airbytehq/airbyte/pull/41266) | Update dependencies | | 0.2.9 | 2024-07-06 | [40866](https://github.com/airbytehq/airbyte/pull/40866) | Update dependencies | From 7387fdf8ce082fcd305162ffc216489259ed2b84 Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:27:33 +0200 Subject: [PATCH 201/260] =?UTF-8?q?=F0=9F=90=99=20source-google-search-con?= =?UTF-8?q?sole:=20run=20up-to-date=20pipeline=20[2024-07-13]=20(#41734)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../source-google-search-console/metadata.yaml | 2 +- .../source-google-search-console/poetry.lock | 12 ++++++------ .../source-google-search-console/pyproject.toml | 2 +- docs/integrations/sources/google-search-console.md | 1 + 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/airbyte-integrations/connectors/source-google-search-console/metadata.yaml b/airbyte-integrations/connectors/source-google-search-console/metadata.yaml index 9274cb83e2ad..846520ad90a1 100644 --- a/airbyte-integrations/connectors/source-google-search-console/metadata.yaml +++ b/airbyte-integrations/connectors/source-google-search-console/metadata.yaml @@ -10,7 +10,7 @@ data: connectorSubtype: api connectorType: source definitionId: eb4c9e00-db83-4d63-a386-39cfa91012a8 - dockerImageTag: 1.4.12 + dockerImageTag: 1.4.13 dockerRepository: airbyte/source-google-search-console documentationUrl: https://docs.airbyte.com/integrations/sources/google-search-console githubIssueLabel: source-google-search-console diff --git a/airbyte-integrations/connectors/source-google-search-console/poetry.lock b/airbyte-integrations/connectors/source-google-search-console/poetry.lock index 3e5a6be4ad07..0242ddb9d94b 100644 --- a/airbyte-integrations/connectors/source-google-search-console/poetry.lock +++ b/airbyte-integrations/connectors/source-google-search-console/poetry.lock @@ -410,13 +410,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] @@ -676,13 +676,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.84" +version = "0.1.85" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.84-py3-none-any.whl", hash = "sha256:01f3c6390dba26c583bac8dd0e551ce3d0509c7f55cad714db0b5c8d36e4c7ff"}, - {file = "langsmith-0.1.84.tar.gz", hash = "sha256:5220c0439838b9a5bd320fd3686be505c5083dcee22d2452006c23891153bea1"}, + {file = "langsmith-0.1.85-py3-none-any.whl", hash = "sha256:c1f94384f10cea96f7b4d33fd3db7ec180c03c7468877d50846f881d2017ff94"}, + {file = "langsmith-0.1.85.tar.gz", hash = "sha256:acff31f9e53efa48586cf8e32f65625a335c74d7c4fa306d1655ac18452296f6"}, ] [package.dependencies] diff --git a/airbyte-integrations/connectors/source-google-search-console/pyproject.toml b/airbyte-integrations/connectors/source-google-search-console/pyproject.toml index ea91e3c0968a..bf59eb17cf25 100644 --- a/airbyte-integrations/connectors/source-google-search-console/pyproject.toml +++ b/airbyte-integrations/connectors/source-google-search-console/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "1.4.12" +version = "1.4.13" name = "source-google-search-console" description = "Source implementation for Google Search Console." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/google-search-console.md b/docs/integrations/sources/google-search-console.md index 87537cab2159..63d9a1425966 100644 --- a/docs/integrations/sources/google-search-console.md +++ b/docs/integrations/sources/google-search-console.md @@ -217,6 +217,7 @@ Google Search Console only retains data for websites from the last 16 months. An | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :----------------------------------------------------------------------------------------------------------------------------- | +| 1.4.13 | 2024-07-13 | [41734](https://github.com/airbytehq/airbyte/pull/41734) | Update dependencies | | 1.4.12 | 2024-07-10 | [41440](https://github.com/airbytehq/airbyte/pull/41440) | Update dependencies | | 1.4.11 | 2024-07-09 | [41164](https://github.com/airbytehq/airbyte/pull/41164) | Update dependencies | | 1.4.10 | 2024-07-06 | [40981](https://github.com/airbytehq/airbyte/pull/40981) | Update dependencies | From d91cc5e710fea1a0f698d6aca02d2afdb1325b4f Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:27:36 +0200 Subject: [PATCH 202/260] =?UTF-8?q?=F0=9F=90=99=20destination-amazon-sqs:?= =?UTF-8?q?=20run=20up-to-date=20pipeline=20[2024-07-13]=20(#41733)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/destination-amazon-sqs/metadata.yaml | 2 +- .../connectors/destination-amazon-sqs/poetry.lock | 12 ++++++------ .../connectors/destination-amazon-sqs/pyproject.toml | 2 +- docs/integrations/destinations/amazon-sqs.md | 1 + 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/airbyte-integrations/connectors/destination-amazon-sqs/metadata.yaml b/airbyte-integrations/connectors/destination-amazon-sqs/metadata.yaml index 0f88be8d2ab6..5eff927bc7bb 100644 --- a/airbyte-integrations/connectors/destination-amazon-sqs/metadata.yaml +++ b/airbyte-integrations/connectors/destination-amazon-sqs/metadata.yaml @@ -2,7 +2,7 @@ data: connectorSubtype: api connectorType: destination definitionId: 0eeee7fb-518f-4045-bacc-9619e31c43ea - dockerImageTag: 0.1.12 + dockerImageTag: 0.1.13 dockerRepository: airbyte/destination-amazon-sqs githubIssueLabel: destination-amazon-sqs icon: awssqs.svg diff --git a/airbyte-integrations/connectors/destination-amazon-sqs/poetry.lock b/airbyte-integrations/connectors/destination-amazon-sqs/poetry.lock index 497d3efdab68..eb6ee2701932 100644 --- a/airbyte-integrations/connectors/destination-amazon-sqs/poetry.lock +++ b/airbyte-integrations/connectors/destination-amazon-sqs/poetry.lock @@ -112,13 +112,13 @@ crt = ["botocore[crt] (>=1.21.0,<2.0a0)"] [[package]] name = "botocore" -version = "1.34.142" +version = "1.34.144" description = "Low-level, data-driven core of boto 3." optional = false python-versions = ">=3.8" files = [ - {file = "botocore-1.34.142-py3-none-any.whl", hash = "sha256:9d8095bab0b93b9064e856730a7ffbbb4f897353d3170bec9ddccc5f4a3753bc"}, - {file = "botocore-1.34.142.tar.gz", hash = "sha256:2eeb8e6be729c1f8ded723970ed6c6ac29cc3014d86a99e73428fa8bdca81f63"}, + {file = "botocore-1.34.144-py3-none-any.whl", hash = "sha256:a2cf26e1bf10d5917a2285e50257bc44e94a1d16574f282f3274f7a5d8d1f08b"}, + {file = "botocore-1.34.144.tar.gz", hash = "sha256:4215db28d25309d59c99507f1f77df9089e5bebbad35f6e19c7c44ec5383a3e8"}, ] [package.dependencies] @@ -448,13 +448,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] diff --git a/airbyte-integrations/connectors/destination-amazon-sqs/pyproject.toml b/airbyte-integrations/connectors/destination-amazon-sqs/pyproject.toml index d268f153d1a5..e45cb3c539e4 100644 --- a/airbyte-integrations/connectors/destination-amazon-sqs/pyproject.toml +++ b/airbyte-integrations/connectors/destination-amazon-sqs/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.1.12" +version = "0.1.13" name = "destination-amazon-sqs" description = "Destination implementation for Amazon Sqs." authors = [ "Airbyte ",] diff --git a/docs/integrations/destinations/amazon-sqs.md b/docs/integrations/destinations/amazon-sqs.md index f7994cb89f2c..186a2ce3e399 100644 --- a/docs/integrations/destinations/amazon-sqs.md +++ b/docs/integrations/destinations/amazon-sqs.md @@ -124,6 +124,7 @@ The output SQS message would contain: | Version | Date | Pull Request | Subject | | :------ | :--------- | :-------------------------------------------------------- | :-------------------------------- | +| 0.1.13 | 2024-07-13 | [41733](https://github.com/airbytehq/airbyte/pull/41733) | Update dependencies | | 0.1.12 | 2024-07-10 | [41439](https://github.com/airbytehq/airbyte/pull/41439) | Update dependencies | | 0.1.11 | 2024-07-09 | [41237](https://github.com/airbytehq/airbyte/pull/41237) | Update dependencies | | 0.1.10 | 2024-07-06 | [40960](https://github.com/airbytehq/airbyte/pull/40960) | Update dependencies | From 581d53ad13d65f632c6e32d93ee7958c59787899 Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:27:38 +0200 Subject: [PATCH 203/260] =?UTF-8?q?=F0=9F=90=99=20source-facebook-marketin?= =?UTF-8?q?g:=20run=20up-to-date=20pipeline=20[2024-07-13]=20(#41732)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../source-facebook-marketing/metadata.yaml | 2 +- .../source-facebook-marketing/poetry.lock | 14 +++++++------- .../source-facebook-marketing/pyproject.toml | 2 +- docs/integrations/sources/facebook-marketing.md | 5 +++-- 4 files changed, 12 insertions(+), 11 deletions(-) diff --git a/airbyte-integrations/connectors/source-facebook-marketing/metadata.yaml b/airbyte-integrations/connectors/source-facebook-marketing/metadata.yaml index 7c2e82271ec8..91ad9b7008a9 100644 --- a/airbyte-integrations/connectors/source-facebook-marketing/metadata.yaml +++ b/airbyte-integrations/connectors/source-facebook-marketing/metadata.yaml @@ -10,7 +10,7 @@ data: connectorSubtype: api connectorType: source definitionId: e7778cfc-e97c-4458-9ecb-b4f2bba8946c - dockerImageTag: 3.3.12 + dockerImageTag: 3.3.13 dockerRepository: airbyte/source-facebook-marketing documentationUrl: https://docs.airbyte.com/integrations/sources/facebook-marketing githubIssueLabel: source-facebook-marketing diff --git a/airbyte-integrations/connectors/source-facebook-marketing/poetry.lock b/airbyte-integrations/connectors/source-facebook-marketing/poetry.lock index 99464ff6dc0f..e30d53b3a483 100644 --- a/airbyte-integrations/connectors/source-facebook-marketing/poetry.lock +++ b/airbyte-integrations/connectors/source-facebook-marketing/poetry.lock @@ -1,4 +1,4 @@ -# This file is automatically @generated by Poetry 1.8.2 and should not be changed by hand. +# This file is automatically @generated by Poetry 1.6.1 and should not be changed by hand. [[package]] name = "aiohttp" @@ -578,13 +578,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] @@ -853,13 +853,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.84" +version = "0.1.85" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.84-py3-none-any.whl", hash = "sha256:01f3c6390dba26c583bac8dd0e551ce3d0509c7f55cad714db0b5c8d36e4c7ff"}, - {file = "langsmith-0.1.84.tar.gz", hash = "sha256:5220c0439838b9a5bd320fd3686be505c5083dcee22d2452006c23891153bea1"}, + {file = "langsmith-0.1.85-py3-none-any.whl", hash = "sha256:c1f94384f10cea96f7b4d33fd3db7ec180c03c7468877d50846f881d2017ff94"}, + {file = "langsmith-0.1.85.tar.gz", hash = "sha256:acff31f9e53efa48586cf8e32f65625a335c74d7c4fa306d1655ac18452296f6"}, ] [package.dependencies] diff --git a/airbyte-integrations/connectors/source-facebook-marketing/pyproject.toml b/airbyte-integrations/connectors/source-facebook-marketing/pyproject.toml index d5a48b7ced2e..72bdc0e13ed9 100644 --- a/airbyte-integrations/connectors/source-facebook-marketing/pyproject.toml +++ b/airbyte-integrations/connectors/source-facebook-marketing/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "3.3.12" +version = "3.3.13" name = "source-facebook-marketing" description = "Source implementation for Facebook Marketing." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/facebook-marketing.md b/docs/integrations/sources/facebook-marketing.md index 49aa2e594596..c75fd4653e49 100644 --- a/docs/integrations/sources/facebook-marketing.md +++ b/docs/integrations/sources/facebook-marketing.md @@ -215,8 +215,9 @@ This response indicates that the Facebook Graph API requires you to reduce the f | Version | Date | Pull Request | Subject | |:--------|:-----------|:---------------------------------------------------------|:--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| -| 3.3.12 | 2024-07-11 | [41644](https://github.com/airbytehq/airbyte/pull/41644) | Remove discriminator with missing schemas | -| 3.3.11 | 2024-07-10 | [41039](https://github.com/airbytehq/airbyte/pull/41039) | Pick request fields from configured json schema properties if present | +| 3.3.13 | 2024-07-13 | [41732](https://github.com/airbytehq/airbyte/pull/41732) | Update dependencies | +| 3.3.12 | 2024-07-11 | [41644](https://github.com/airbytehq/airbyte/pull/41644) | Remove discriminator with missing schemas | +| 3.3.11 | 2024-07-10 | [41039](https://github.com/airbytehq/airbyte/pull/41039) | Pick request fields from configured json schema properties if present | | 3.3.10 | 2024-07-10 | [41458](https://github.com/airbytehq/airbyte/pull/41458) | Update dependencies | | 3.3.9 | 2024-07-09 | [41106](https://github.com/airbytehq/airbyte/pull/41106) | Update dependencies | | 3.3.8 | 2024-07-06 | [40934](https://github.com/airbytehq/airbyte/pull/40934) | Update dependencies | From 78fa23b182f95c0af23e9df106bad7cb6c39ed66 Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:27:42 +0200 Subject: [PATCH 204/260] =?UTF-8?q?=F0=9F=90=99=20source-woocommerce:=20ru?= =?UTF-8?q?n=20up-to-date=20pipeline=20[2024-07-13]=20(#41731)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-woocommerce/metadata.yaml | 2 +- .../connectors/source-woocommerce/poetry.lock | 12 ++++++------ .../connectors/source-woocommerce/pyproject.toml | 2 +- docs/integrations/sources/woocommerce.md | 1 + 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/airbyte-integrations/connectors/source-woocommerce/metadata.yaml b/airbyte-integrations/connectors/source-woocommerce/metadata.yaml index 08542d084ee8..214cd7363bfc 100644 --- a/airbyte-integrations/connectors/source-woocommerce/metadata.yaml +++ b/airbyte-integrations/connectors/source-woocommerce/metadata.yaml @@ -8,7 +8,7 @@ data: connectorSubtype: api connectorType: source definitionId: 2a2552ca-9f78-4c1c-9eb7-4d0dc66d72df - dockerImageTag: 0.2.10 + dockerImageTag: 0.2.11 dockerRepository: airbyte/source-woocommerce documentationUrl: https://docs.airbyte.com/integrations/sources/woocommerce githubIssueLabel: source-woocommerce diff --git a/airbyte-integrations/connectors/source-woocommerce/poetry.lock b/airbyte-integrations/connectors/source-woocommerce/poetry.lock index 4b03cc351726..13836360394d 100644 --- a/airbyte-integrations/connectors/source-woocommerce/poetry.lock +++ b/airbyte-integrations/connectors/source-woocommerce/poetry.lock @@ -410,13 +410,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] @@ -566,13 +566,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.84" +version = "0.1.85" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.84-py3-none-any.whl", hash = "sha256:01f3c6390dba26c583bac8dd0e551ce3d0509c7f55cad714db0b5c8d36e4c7ff"}, - {file = "langsmith-0.1.84.tar.gz", hash = "sha256:5220c0439838b9a5bd320fd3686be505c5083dcee22d2452006c23891153bea1"}, + {file = "langsmith-0.1.85-py3-none-any.whl", hash = "sha256:c1f94384f10cea96f7b4d33fd3db7ec180c03c7468877d50846f881d2017ff94"}, + {file = "langsmith-0.1.85.tar.gz", hash = "sha256:acff31f9e53efa48586cf8e32f65625a335c74d7c4fa306d1655ac18452296f6"}, ] [package.dependencies] diff --git a/airbyte-integrations/connectors/source-woocommerce/pyproject.toml b/airbyte-integrations/connectors/source-woocommerce/pyproject.toml index d4278a07c9b1..f037621019ce 100644 --- a/airbyte-integrations/connectors/source-woocommerce/pyproject.toml +++ b/airbyte-integrations/connectors/source-woocommerce/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.2.10" +version = "0.2.11" name = "source-woocommerce" description = "Source implementation for Woocommerce." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/woocommerce.md b/docs/integrations/sources/woocommerce.md index ab7bad17bff4..14d75d912f5d 100644 --- a/docs/integrations/sources/woocommerce.md +++ b/docs/integrations/sources/woocommerce.md @@ -104,6 +104,7 @@ Useful links: | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :--------------------------------------------------------------------- | +| 0.2.11 | 2024-07-13 | [41731](https://github.com/airbytehq/airbyte/pull/41731) | Update dependencies | | 0.2.10 | 2024-07-10 | [41581](https://github.com/airbytehq/airbyte/pull/41581) | Update dependencies | | 0.2.9 | 2024-07-09 | [41161](https://github.com/airbytehq/airbyte/pull/41161) | Update dependencies | | 0.2.8 | 2024-07-06 | [40814](https://github.com/airbytehq/airbyte/pull/40814) | Update dependencies | From 46f55cf84be294d959b01434396f2e71592c9b6f Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:27:45 +0200 Subject: [PATCH 205/260] =?UTF-8?q?=F0=9F=90=99=20source-plaid:=20run=20up?= =?UTF-8?q?-to-date=20pipeline=20[2024-07-13]=20(#41730)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-plaid/metadata.yaml | 2 +- .../connectors/source-plaid/poetry.lock | 12 ++++++------ .../connectors/source-plaid/pyproject.toml | 2 +- docs/integrations/sources/plaid.md | 1 + 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/airbyte-integrations/connectors/source-plaid/metadata.yaml b/airbyte-integrations/connectors/source-plaid/metadata.yaml index 239bebc08a73..36d554f8dfc7 100644 --- a/airbyte-integrations/connectors/source-plaid/metadata.yaml +++ b/airbyte-integrations/connectors/source-plaid/metadata.yaml @@ -2,7 +2,7 @@ data: connectorSubtype: api connectorType: source definitionId: ed799e2b-2158-4c66-8da4-b40fe63bc72a - dockerImageTag: 0.4.7 + dockerImageTag: 0.4.8 dockerRepository: airbyte/source-plaid githubIssueLabel: source-plaid icon: plaid.svg diff --git a/airbyte-integrations/connectors/source-plaid/poetry.lock b/airbyte-integrations/connectors/source-plaid/poetry.lock index 1ac306a5c0f1..31731153c82e 100644 --- a/airbyte-integrations/connectors/source-plaid/poetry.lock +++ b/airbyte-integrations/connectors/source-plaid/poetry.lock @@ -410,13 +410,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] @@ -566,13 +566,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.84" +version = "0.1.85" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.84-py3-none-any.whl", hash = "sha256:01f3c6390dba26c583bac8dd0e551ce3d0509c7f55cad714db0b5c8d36e4c7ff"}, - {file = "langsmith-0.1.84.tar.gz", hash = "sha256:5220c0439838b9a5bd320fd3686be505c5083dcee22d2452006c23891153bea1"}, + {file = "langsmith-0.1.85-py3-none-any.whl", hash = "sha256:c1f94384f10cea96f7b4d33fd3db7ec180c03c7468877d50846f881d2017ff94"}, + {file = "langsmith-0.1.85.tar.gz", hash = "sha256:acff31f9e53efa48586cf8e32f65625a335c74d7c4fa306d1655ac18452296f6"}, ] [package.dependencies] diff --git a/airbyte-integrations/connectors/source-plaid/pyproject.toml b/airbyte-integrations/connectors/source-plaid/pyproject.toml index cba224fa3330..96b4ff3dfa53 100644 --- a/airbyte-integrations/connectors/source-plaid/pyproject.toml +++ b/airbyte-integrations/connectors/source-plaid/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.4.7" +version = "0.4.8" name = "source-plaid" description = "Source implementation for Plaid." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/plaid.md b/docs/integrations/sources/plaid.md index fc94e0846961..0bbdd0d83283 100644 --- a/docs/integrations/sources/plaid.md +++ b/docs/integrations/sources/plaid.md @@ -73,6 +73,7 @@ This guide will walk through how to create the credentials you need to run this | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :------------------------------------------------------------ | +| 0.4.8 | 2024-07-13 | [41730](https://github.com/airbytehq/airbyte/pull/41730) | Update dependencies | | 0.4.7 | 2024-07-10 | [41412](https://github.com/airbytehq/airbyte/pull/41412) | Update dependencies | | 0.4.6 | 2024-07-09 | [41235](https://github.com/airbytehq/airbyte/pull/41235) | Update dependencies | | 0.4.5 | 2024-07-06 | [41007](https://github.com/airbytehq/airbyte/pull/41007) | Update dependencies | From 241a680c238bd408b16bd84f79512f84fdec108a Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:27:48 +0200 Subject: [PATCH 206/260] =?UTF-8?q?=F0=9F=90=99=20source-pipedrive:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-07-13]=20(#41729)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-pipedrive/metadata.yaml | 2 +- .../connectors/source-pipedrive/poetry.lock | 12 ++++++------ .../connectors/source-pipedrive/pyproject.toml | 2 +- docs/integrations/sources/pipedrive.md | 1 + 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/airbyte-integrations/connectors/source-pipedrive/metadata.yaml b/airbyte-integrations/connectors/source-pipedrive/metadata.yaml index 9b817dd891e5..7106458c4832 100644 --- a/airbyte-integrations/connectors/source-pipedrive/metadata.yaml +++ b/airbyte-integrations/connectors/source-pipedrive/metadata.yaml @@ -17,7 +17,7 @@ data: connectorSubtype: api connectorType: source definitionId: d8286229-c680-4063-8c59-23b9b391c700 - dockerImageTag: 2.2.9 + dockerImageTag: 2.2.10 dockerRepository: airbyte/source-pipedrive documentationUrl: https://docs.airbyte.com/integrations/sources/pipedrive githubIssueLabel: source-pipedrive diff --git a/airbyte-integrations/connectors/source-pipedrive/poetry.lock b/airbyte-integrations/connectors/source-pipedrive/poetry.lock index 9b0cf7c8a944..cc9d1ecb9669 100644 --- a/airbyte-integrations/connectors/source-pipedrive/poetry.lock +++ b/airbyte-integrations/connectors/source-pipedrive/poetry.lock @@ -410,13 +410,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] @@ -566,13 +566,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.84" +version = "0.1.85" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.84-py3-none-any.whl", hash = "sha256:01f3c6390dba26c583bac8dd0e551ce3d0509c7f55cad714db0b5c8d36e4c7ff"}, - {file = "langsmith-0.1.84.tar.gz", hash = "sha256:5220c0439838b9a5bd320fd3686be505c5083dcee22d2452006c23891153bea1"}, + {file = "langsmith-0.1.85-py3-none-any.whl", hash = "sha256:c1f94384f10cea96f7b4d33fd3db7ec180c03c7468877d50846f881d2017ff94"}, + {file = "langsmith-0.1.85.tar.gz", hash = "sha256:acff31f9e53efa48586cf8e32f65625a335c74d7c4fa306d1655ac18452296f6"}, ] [package.dependencies] diff --git a/airbyte-integrations/connectors/source-pipedrive/pyproject.toml b/airbyte-integrations/connectors/source-pipedrive/pyproject.toml index 0435da7c7d17..462ffd21cd47 100644 --- a/airbyte-integrations/connectors/source-pipedrive/pyproject.toml +++ b/airbyte-integrations/connectors/source-pipedrive/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "2.2.9" +version = "2.2.10" name = "source-pipedrive" description = "Source implementation for Pipedrive." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/pipedrive.md b/docs/integrations/sources/pipedrive.md index 2df5d4cb04e7..e364fcb9eb82 100644 --- a/docs/integrations/sources/pipedrive.md +++ b/docs/integrations/sources/pipedrive.md @@ -112,6 +112,7 @@ The Pipedrive connector will gracefully handle rate limits. For more information | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :------------------------------------------------------------------------- | +| 2.2.10 | 2024-07-13 | [41729](https://github.com/airbytehq/airbyte/pull/41729) | Update dependencies | | 2.2.9 | 2024-07-10 | [41465](https://github.com/airbytehq/airbyte/pull/41465) | Update dependencies | | 2.2.8 | 2024-07-09 | [41082](https://github.com/airbytehq/airbyte/pull/41082) | Update dependencies | | 2.2.7 | 2024-07-06 | [40778](https://github.com/airbytehq/airbyte/pull/40778) | Update dependencies | From 98792772e498520adab54a47b5e8aa74770fc8af Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:27:51 +0200 Subject: [PATCH 207/260] =?UTF-8?q?=F0=9F=90=99=20source-babelforce:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-07-13]=20(#41728)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-babelforce/metadata.yaml | 2 +- .../connectors/source-babelforce/poetry.lock | 12 ++++++------ .../connectors/source-babelforce/pyproject.toml | 2 +- docs/integrations/sources/babelforce.md | 1 + 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/airbyte-integrations/connectors/source-babelforce/metadata.yaml b/airbyte-integrations/connectors/source-babelforce/metadata.yaml index 97dbc0fec41f..a4c98c03cfc1 100644 --- a/airbyte-integrations/connectors/source-babelforce/metadata.yaml +++ b/airbyte-integrations/connectors/source-babelforce/metadata.yaml @@ -14,7 +14,7 @@ data: connectorSubtype: api connectorType: source definitionId: 971c3e1e-78a5-411e-ad56-c4052b50876b - dockerImageTag: 0.2.8 + dockerImageTag: 0.2.9 dockerRepository: airbyte/source-babelforce githubIssueLabel: source-babelforce icon: babelforce.svg diff --git a/airbyte-integrations/connectors/source-babelforce/poetry.lock b/airbyte-integrations/connectors/source-babelforce/poetry.lock index 1c7c00978d43..728f233c17e0 100644 --- a/airbyte-integrations/connectors/source-babelforce/poetry.lock +++ b/airbyte-integrations/connectors/source-babelforce/poetry.lock @@ -410,13 +410,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] @@ -566,13 +566,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.84" +version = "0.1.85" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.84-py3-none-any.whl", hash = "sha256:01f3c6390dba26c583bac8dd0e551ce3d0509c7f55cad714db0b5c8d36e4c7ff"}, - {file = "langsmith-0.1.84.tar.gz", hash = "sha256:5220c0439838b9a5bd320fd3686be505c5083dcee22d2452006c23891153bea1"}, + {file = "langsmith-0.1.85-py3-none-any.whl", hash = "sha256:c1f94384f10cea96f7b4d33fd3db7ec180c03c7468877d50846f881d2017ff94"}, + {file = "langsmith-0.1.85.tar.gz", hash = "sha256:acff31f9e53efa48586cf8e32f65625a335c74d7c4fa306d1655ac18452296f6"}, ] [package.dependencies] diff --git a/airbyte-integrations/connectors/source-babelforce/pyproject.toml b/airbyte-integrations/connectors/source-babelforce/pyproject.toml index 118f04433d6b..c5da3fec4565 100644 --- a/airbyte-integrations/connectors/source-babelforce/pyproject.toml +++ b/airbyte-integrations/connectors/source-babelforce/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.2.8" +version = "0.2.9" name = "source-babelforce" description = "Source implementation for Babelforce." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/babelforce.md b/docs/integrations/sources/babelforce.md index 1877ddfe762b..5f28fcd35e6f 100644 --- a/docs/integrations/sources/babelforce.md +++ b/docs/integrations/sources/babelforce.md @@ -49,6 +49,7 @@ Generate a API access key ID and token using the [Babelforce documentation](http | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :-------------------------- | +| 0.2.9 | 2024-07-13 | [41728](https://github.com/airbytehq/airbyte/pull/41728) | Update dependencies | | 0.2.8 | 2024-07-10 | [41508](https://github.com/airbytehq/airbyte/pull/41508) | Update dependencies | | 0.2.7 | 2024-07-09 | [41260](https://github.com/airbytehq/airbyte/pull/41260) | Update dependencies | | 0.2.6 | 2024-07-06 | [40911](https://github.com/airbytehq/airbyte/pull/40911) | Update dependencies | From 6ea15ece27e89442af1b623a889e62bc3da72eed Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:27:54 +0200 Subject: [PATCH 208/260] =?UTF-8?q?=F0=9F=90=99=20source-zendesk-talk:=20r?= =?UTF-8?q?un=20up-to-date=20pipeline=20[2024-07-13]=20(#41727)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-zendesk-talk/metadata.yaml | 2 +- .../connectors/source-zendesk-talk/poetry.lock | 6 +++--- .../connectors/source-zendesk-talk/pyproject.toml | 2 +- docs/integrations/sources/zendesk-talk.md | 1 + 4 files changed, 6 insertions(+), 5 deletions(-) diff --git a/airbyte-integrations/connectors/source-zendesk-talk/metadata.yaml b/airbyte-integrations/connectors/source-zendesk-talk/metadata.yaml index 26b436074c46..32c57c1ea643 100644 --- a/airbyte-integrations/connectors/source-zendesk-talk/metadata.yaml +++ b/airbyte-integrations/connectors/source-zendesk-talk/metadata.yaml @@ -11,7 +11,7 @@ data: connectorSubtype: api connectorType: source definitionId: c8630570-086d-4a40-99ae-ea5b18673071 - dockerImageTag: 1.0.6 + dockerImageTag: 1.0.7 dockerRepository: airbyte/source-zendesk-talk documentationUrl: https://docs.airbyte.com/integrations/sources/zendesk-talk githubIssueLabel: source-zendesk-talk diff --git a/airbyte-integrations/connectors/source-zendesk-talk/poetry.lock b/airbyte-integrations/connectors/source-zendesk-talk/poetry.lock index d2058e47d154..5bb9dc42b7f1 100644 --- a/airbyte-integrations/connectors/source-zendesk-talk/poetry.lock +++ b/airbyte-integrations/connectors/source-zendesk-talk/poetry.lock @@ -288,13 +288,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] diff --git a/airbyte-integrations/connectors/source-zendesk-talk/pyproject.toml b/airbyte-integrations/connectors/source-zendesk-talk/pyproject.toml index 9f8cdfc5bd7e..7edfffc17d05 100644 --- a/airbyte-integrations/connectors/source-zendesk-talk/pyproject.toml +++ b/airbyte-integrations/connectors/source-zendesk-talk/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "1.0.6" +version = "1.0.7" name = "source-zendesk-talk" description = "Source implementation for Zendesk Talk." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/zendesk-talk.md b/docs/integrations/sources/zendesk-talk.md index 6f5c11006515..3da01e4c909c 100644 --- a/docs/integrations/sources/zendesk-talk.md +++ b/docs/integrations/sources/zendesk-talk.md @@ -79,6 +79,7 @@ The Zendesk connector should not run into Zendesk API limitations under normal u | Version | Date | Pull Request | Subject | |:--------|:-----------|:---------------------------------------------------------|:----------------------------------------------------------------------------| +| 1.0.7 | 2024-07-13 | [41727](https://github.com/airbytehq/airbyte/pull/41727) | Update dependencies | | 1.0.6 | 2024-07-10 | [41350](https://github.com/airbytehq/airbyte/pull/41350) | Update dependencies | | 1.0.5 | 2024-07-09 | [41119](https://github.com/airbytehq/airbyte/pull/41119) | Update dependencies | | 1.0.4 | 2024-07-06 | [40855](https://github.com/airbytehq/airbyte/pull/40855) | Update dependencies | From 7f345046083aa11f01ced18910007256ef0f9eb0 Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:27:57 +0200 Subject: [PATCH 209/260] =?UTF-8?q?=F0=9F=90=99=20source-sap-fieldglass:?= =?UTF-8?q?=20run=20up-to-date=20pipeline=20[2024-07-13]=20(#41726)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-sap-fieldglass/metadata.yaml | 2 +- .../connectors/source-sap-fieldglass/poetry.lock | 12 ++++++------ .../connectors/source-sap-fieldglass/pyproject.toml | 2 +- docs/integrations/sources/sap-fieldglass.md | 1 + 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/airbyte-integrations/connectors/source-sap-fieldglass/metadata.yaml b/airbyte-integrations/connectors/source-sap-fieldglass/metadata.yaml index 11c789b498a9..f627798abdb7 100644 --- a/airbyte-integrations/connectors/source-sap-fieldglass/metadata.yaml +++ b/airbyte-integrations/connectors/source-sap-fieldglass/metadata.yaml @@ -2,7 +2,7 @@ data: connectorSubtype: api connectorType: source definitionId: ec5f3102-fb31-4916-99ae-864faf8e7e25 - dockerImageTag: 0.1.8 + dockerImageTag: 0.1.9 dockerRepository: airbyte/source-sap-fieldglass githubIssueLabel: source-sap-fieldglass icon: sapfieldglass.svg diff --git a/airbyte-integrations/connectors/source-sap-fieldglass/poetry.lock b/airbyte-integrations/connectors/source-sap-fieldglass/poetry.lock index 4b03cc351726..13836360394d 100644 --- a/airbyte-integrations/connectors/source-sap-fieldglass/poetry.lock +++ b/airbyte-integrations/connectors/source-sap-fieldglass/poetry.lock @@ -410,13 +410,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] @@ -566,13 +566,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.84" +version = "0.1.85" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.84-py3-none-any.whl", hash = "sha256:01f3c6390dba26c583bac8dd0e551ce3d0509c7f55cad714db0b5c8d36e4c7ff"}, - {file = "langsmith-0.1.84.tar.gz", hash = "sha256:5220c0439838b9a5bd320fd3686be505c5083dcee22d2452006c23891153bea1"}, + {file = "langsmith-0.1.85-py3-none-any.whl", hash = "sha256:c1f94384f10cea96f7b4d33fd3db7ec180c03c7468877d50846f881d2017ff94"}, + {file = "langsmith-0.1.85.tar.gz", hash = "sha256:acff31f9e53efa48586cf8e32f65625a335c74d7c4fa306d1655ac18452296f6"}, ] [package.dependencies] diff --git a/airbyte-integrations/connectors/source-sap-fieldglass/pyproject.toml b/airbyte-integrations/connectors/source-sap-fieldglass/pyproject.toml index 84c56f2ff1ff..ccbea2c6f297 100644 --- a/airbyte-integrations/connectors/source-sap-fieldglass/pyproject.toml +++ b/airbyte-integrations/connectors/source-sap-fieldglass/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.1.8" +version = "0.1.9" name = "source-sap-fieldglass" description = "Source implementation for Sap Fieldglass." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/sap-fieldglass.md b/docs/integrations/sources/sap-fieldglass.md index 50adb6c5bcd0..5e37ec19a49f 100644 --- a/docs/integrations/sources/sap-fieldglass.md +++ b/docs/integrations/sources/sap-fieldglass.md @@ -25,6 +25,7 @@ This page contains the setup guide and reference information for the SAP Fieldgl | Version | Date | Pull Request | Subject | | :------ | :--------- | :---------------------------------------------- |:--------------------------------------------| +| 0.1.9 | 2024-07-13 | [41726](https://github.com/airbytehq/airbyte/pull/41726) | Update dependencies | | 0.1.8 | 2024-07-10 | [41355](https://github.com/airbytehq/airbyte/pull/41355) | Update dependencies | | 0.1.7 | 2024-07-09 | [41186](https://github.com/airbytehq/airbyte/pull/41186) | Update dependencies | | 0.1.6 | 2024-07-06 | [40931](https://github.com/airbytehq/airbyte/pull/40931) | Update dependencies | From a309a8d380866aec8ea9b5569e03bf41a0f80c5a Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:28:00 +0200 Subject: [PATCH 210/260] =?UTF-8?q?=F0=9F=90=99=20source-pagerduty:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-07-13]=20(#41725)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-pagerduty/metadata.yaml | 2 +- .../connectors/source-pagerduty/poetry.lock | 12 ++++++------ .../connectors/source-pagerduty/pyproject.toml | 2 +- docs/integrations/sources/pagerduty.md | 1 + 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/airbyte-integrations/connectors/source-pagerduty/metadata.yaml b/airbyte-integrations/connectors/source-pagerduty/metadata.yaml index 683b9ebf81ee..c4792609190c 100644 --- a/airbyte-integrations/connectors/source-pagerduty/metadata.yaml +++ b/airbyte-integrations/connectors/source-pagerduty/metadata.yaml @@ -14,7 +14,7 @@ data: connectorSubtype: api connectorType: source definitionId: 2544ac39-02be-4bf5-82ad-f52bbb833bf5 - dockerImageTag: 0.2.8 + dockerImageTag: 0.2.9 dockerRepository: airbyte/source-pagerduty githubIssueLabel: source-pagerduty icon: pagerduty.svg diff --git a/airbyte-integrations/connectors/source-pagerduty/poetry.lock b/airbyte-integrations/connectors/source-pagerduty/poetry.lock index 1c7c00978d43..728f233c17e0 100644 --- a/airbyte-integrations/connectors/source-pagerduty/poetry.lock +++ b/airbyte-integrations/connectors/source-pagerduty/poetry.lock @@ -410,13 +410,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] @@ -566,13 +566,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.84" +version = "0.1.85" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.84-py3-none-any.whl", hash = "sha256:01f3c6390dba26c583bac8dd0e551ce3d0509c7f55cad714db0b5c8d36e4c7ff"}, - {file = "langsmith-0.1.84.tar.gz", hash = "sha256:5220c0439838b9a5bd320fd3686be505c5083dcee22d2452006c23891153bea1"}, + {file = "langsmith-0.1.85-py3-none-any.whl", hash = "sha256:c1f94384f10cea96f7b4d33fd3db7ec180c03c7468877d50846f881d2017ff94"}, + {file = "langsmith-0.1.85.tar.gz", hash = "sha256:acff31f9e53efa48586cf8e32f65625a335c74d7c4fa306d1655ac18452296f6"}, ] [package.dependencies] diff --git a/airbyte-integrations/connectors/source-pagerduty/pyproject.toml b/airbyte-integrations/connectors/source-pagerduty/pyproject.toml index 30a1d876b82f..162ff3409417 100644 --- a/airbyte-integrations/connectors/source-pagerduty/pyproject.toml +++ b/airbyte-integrations/connectors/source-pagerduty/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.2.8" +version = "0.2.9" name = "source-pagerduty" description = "Source implementation for Pagerduty." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/pagerduty.md b/docs/integrations/sources/pagerduty.md index 45960ba9c49b..e566376527e9 100644 --- a/docs/integrations/sources/pagerduty.md +++ b/docs/integrations/sources/pagerduty.md @@ -53,6 +53,7 @@ Key](https://support.pagerduty.com/docs/generating-api-keys#section-generating-a | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------------- | :----------------------------------- | +| 0.2.9 | 2024-07-13 | [41725](https://github.com/airbytehq/airbyte/pull/41725) | Update dependencies | | 0.2.8 | 2024-07-10 | [41501](https://github.com/airbytehq/airbyte/pull/41501) | Update dependencies | | 0.2.7 | 2024-07-09 | [41240](https://github.com/airbytehq/airbyte/pull/41240) | Update dependencies | | 0.2.6 | 2024-07-06 | [40803](https://github.com/airbytehq/airbyte/pull/40803) | Update dependencies | From 5f4f19e483a646aab4f45a36800608741eb12b81 Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:28:03 +0200 Subject: [PATCH 211/260] =?UTF-8?q?=F0=9F=90=99=20source-klaus-api:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-07-13]=20(#41724)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-klaus-api/metadata.yaml | 2 +- .../connectors/source-klaus-api/poetry.lock | 12 ++++++------ .../connectors/source-klaus-api/pyproject.toml | 2 +- docs/integrations/sources/klaus-api.md | 1 + 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/airbyte-integrations/connectors/source-klaus-api/metadata.yaml b/airbyte-integrations/connectors/source-klaus-api/metadata.yaml index 87c2c4817543..830793381a6d 100644 --- a/airbyte-integrations/connectors/source-klaus-api/metadata.yaml +++ b/airbyte-integrations/connectors/source-klaus-api/metadata.yaml @@ -14,7 +14,7 @@ data: connectorSubtype: api connectorType: source definitionId: aad35903-2c0d-4e25-8010-d62ed909e0b7 - dockerImageTag: 0.1.7 + dockerImageTag: 0.1.8 dockerRepository: airbyte/source-klaus-api documentationUrl: https://docs.airbyte.com/integrations/sources/klaus-api githubIssueLabel: source-klaus-api diff --git a/airbyte-integrations/connectors/source-klaus-api/poetry.lock b/airbyte-integrations/connectors/source-klaus-api/poetry.lock index 7c6f413e1cbf..20e5dc817148 100644 --- a/airbyte-integrations/connectors/source-klaus-api/poetry.lock +++ b/airbyte-integrations/connectors/source-klaus-api/poetry.lock @@ -410,13 +410,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] @@ -566,13 +566,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.84" +version = "0.1.85" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.84-py3-none-any.whl", hash = "sha256:01f3c6390dba26c583bac8dd0e551ce3d0509c7f55cad714db0b5c8d36e4c7ff"}, - {file = "langsmith-0.1.84.tar.gz", hash = "sha256:5220c0439838b9a5bd320fd3686be505c5083dcee22d2452006c23891153bea1"}, + {file = "langsmith-0.1.85-py3-none-any.whl", hash = "sha256:c1f94384f10cea96f7b4d33fd3db7ec180c03c7468877d50846f881d2017ff94"}, + {file = "langsmith-0.1.85.tar.gz", hash = "sha256:acff31f9e53efa48586cf8e32f65625a335c74d7c4fa306d1655ac18452296f6"}, ] [package.dependencies] diff --git a/airbyte-integrations/connectors/source-klaus-api/pyproject.toml b/airbyte-integrations/connectors/source-klaus-api/pyproject.toml index bf00adc5b259..7879ac0109d6 100644 --- a/airbyte-integrations/connectors/source-klaus-api/pyproject.toml +++ b/airbyte-integrations/connectors/source-klaus-api/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.1.7" +version = "0.1.8" name = "source-klaus-api" description = "Source implementation for Klaus Api." authors = [ "Deke Li ",] diff --git a/docs/integrations/sources/klaus-api.md b/docs/integrations/sources/klaus-api.md index f1f93d9babfa..b0083d53a51c 100644 --- a/docs/integrations/sources/klaus-api.md +++ b/docs/integrations/sources/klaus-api.md @@ -34,6 +34,7 @@ This Source is capable of syncing the following core Streams: | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :----------------------------- | +| 0.1.8 | 2024-07-13 | [41724](https://github.com/airbytehq/airbyte/pull/41724) | Update dependencies | | 0.1.7 | 2024-07-10 | [41353](https://github.com/airbytehq/airbyte/pull/41353) | Update dependencies | | 0.1.6 | 2024-07-09 | [41210](https://github.com/airbytehq/airbyte/pull/41210) | Update dependencies | | 0.1.5 | 2024-07-06 | [41009](https://github.com/airbytehq/airbyte/pull/41009) | Update dependencies | From 919310198f842f58edc4cf4b8b5729678a2c661a Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:28:06 +0200 Subject: [PATCH 212/260] =?UTF-8?q?=F0=9F=90=99=20source-secoda:=20run=20u?= =?UTF-8?q?p-to-date=20pipeline=20[2024-07-13]=20(#41723)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-secoda/metadata.yaml | 2 +- .../connectors/source-secoda/poetry.lock | 12 ++++++------ .../connectors/source-secoda/pyproject.toml | 2 +- docs/integrations/sources/secoda.md | 1 + 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/airbyte-integrations/connectors/source-secoda/metadata.yaml b/airbyte-integrations/connectors/source-secoda/metadata.yaml index 69f6b6427cb7..f5575c725cb1 100644 --- a/airbyte-integrations/connectors/source-secoda/metadata.yaml +++ b/airbyte-integrations/connectors/source-secoda/metadata.yaml @@ -2,7 +2,7 @@ data: connectorSubtype: api connectorType: source definitionId: da9fc6b9-8059-4be0-b204-f56e22e4d52d - dockerImageTag: 0.1.8 + dockerImageTag: 0.1.9 dockerRepository: airbyte/source-secoda githubIssueLabel: source-secoda icon: secoda.svg diff --git a/airbyte-integrations/connectors/source-secoda/poetry.lock b/airbyte-integrations/connectors/source-secoda/poetry.lock index 4b03cc351726..13836360394d 100644 --- a/airbyte-integrations/connectors/source-secoda/poetry.lock +++ b/airbyte-integrations/connectors/source-secoda/poetry.lock @@ -410,13 +410,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] @@ -566,13 +566,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.84" +version = "0.1.85" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.84-py3-none-any.whl", hash = "sha256:01f3c6390dba26c583bac8dd0e551ce3d0509c7f55cad714db0b5c8d36e4c7ff"}, - {file = "langsmith-0.1.84.tar.gz", hash = "sha256:5220c0439838b9a5bd320fd3686be505c5083dcee22d2452006c23891153bea1"}, + {file = "langsmith-0.1.85-py3-none-any.whl", hash = "sha256:c1f94384f10cea96f7b4d33fd3db7ec180c03c7468877d50846f881d2017ff94"}, + {file = "langsmith-0.1.85.tar.gz", hash = "sha256:acff31f9e53efa48586cf8e32f65625a335c74d7c4fa306d1655ac18452296f6"}, ] [package.dependencies] diff --git a/airbyte-integrations/connectors/source-secoda/pyproject.toml b/airbyte-integrations/connectors/source-secoda/pyproject.toml index 155425f4c0af..88b5195a62dd 100644 --- a/airbyte-integrations/connectors/source-secoda/pyproject.toml +++ b/airbyte-integrations/connectors/source-secoda/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.1.8" +version = "0.1.9" name = "source-secoda" description = "Source implementation for Secoda." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/secoda.md b/docs/integrations/sources/secoda.md index d68c1c525b5f..cee3c31d1e11 100644 --- a/docs/integrations/sources/secoda.md +++ b/docs/integrations/sources/secoda.md @@ -32,6 +32,7 @@ This source can sync data from the [Secoda API](https://docs.secoda.co/secoda-ap | Version | Date | Pull Request | Subject | | :------ | :--------- | :-------------------------------------------------------- | :--------------------------------------- | +| 0.1.9 | 2024-07-13 | [41723](https://github.com/airbytehq/airbyte/pull/41723) | Update dependencies | | 0.1.8 | 2024-07-10 | [41459](https://github.com/airbytehq/airbyte/pull/41459) | Update dependencies | | 0.1.7 | 2024-07-09 | [41202](https://github.com/airbytehq/airbyte/pull/41202) | Update dependencies | | 0.1.6 | 2024-07-06 | [40848](https://github.com/airbytehq/airbyte/pull/40848) | Update dependencies | From 723285de33336228bdf2671a9ebe550820aaf43b Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:28:09 +0200 Subject: [PATCH 213/260] =?UTF-8?q?=F0=9F=90=99=20source-apple-search-ads:?= =?UTF-8?q?=20run=20up-to-date=20pipeline=20[2024-07-13]=20(#41722)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-apple-search-ads/metadata.yaml | 2 +- .../connectors/source-apple-search-ads/poetry.lock | 12 ++++++------ .../source-apple-search-ads/pyproject.toml | 2 +- docs/integrations/sources/apple-search-ads.md | 1 + 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/airbyte-integrations/connectors/source-apple-search-ads/metadata.yaml b/airbyte-integrations/connectors/source-apple-search-ads/metadata.yaml index 7e77e20cb090..00d69510c613 100644 --- a/airbyte-integrations/connectors/source-apple-search-ads/metadata.yaml +++ b/airbyte-integrations/connectors/source-apple-search-ads/metadata.yaml @@ -2,7 +2,7 @@ data: connectorSubtype: api connectorType: source definitionId: e59c8416-c2fa-4bd3-9e95-52677ea281c1 - dockerImageTag: 0.1.7 + dockerImageTag: 0.1.8 dockerRepository: airbyte/source-apple-search-ads githubIssueLabel: source-apple-search-ads icon: apple.svg diff --git a/airbyte-integrations/connectors/source-apple-search-ads/poetry.lock b/airbyte-integrations/connectors/source-apple-search-ads/poetry.lock index 4b03cc351726..13836360394d 100644 --- a/airbyte-integrations/connectors/source-apple-search-ads/poetry.lock +++ b/airbyte-integrations/connectors/source-apple-search-ads/poetry.lock @@ -410,13 +410,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] @@ -566,13 +566,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.84" +version = "0.1.85" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.84-py3-none-any.whl", hash = "sha256:01f3c6390dba26c583bac8dd0e551ce3d0509c7f55cad714db0b5c8d36e4c7ff"}, - {file = "langsmith-0.1.84.tar.gz", hash = "sha256:5220c0439838b9a5bd320fd3686be505c5083dcee22d2452006c23891153bea1"}, + {file = "langsmith-0.1.85-py3-none-any.whl", hash = "sha256:c1f94384f10cea96f7b4d33fd3db7ec180c03c7468877d50846f881d2017ff94"}, + {file = "langsmith-0.1.85.tar.gz", hash = "sha256:acff31f9e53efa48586cf8e32f65625a335c74d7c4fa306d1655ac18452296f6"}, ] [package.dependencies] diff --git a/airbyte-integrations/connectors/source-apple-search-ads/pyproject.toml b/airbyte-integrations/connectors/source-apple-search-ads/pyproject.toml index dd8ba7247273..d1f0aff1e9cc 100644 --- a/airbyte-integrations/connectors/source-apple-search-ads/pyproject.toml +++ b/airbyte-integrations/connectors/source-apple-search-ads/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.1.7" +version = "0.1.8" name = "source-apple-search-ads" description = "Source implementation for Apple Search Ads." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/apple-search-ads.md b/docs/integrations/sources/apple-search-ads.md index 7a28744cfb5a..4156ab825ad3 100644 --- a/docs/integrations/sources/apple-search-ads.md +++ b/docs/integrations/sources/apple-search-ads.md @@ -60,6 +60,7 @@ However, at this moment and as indicated in the stream names, the connector only | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :----------------------------------------------------------------------------------- | +| 0.1.8 | 2024-07-13 | [41722](https://github.com/airbytehq/airbyte/pull/41722) | Update dependencies | | 0.1.7 | 2024-07-10 | [41546](https://github.com/airbytehq/airbyte/pull/41546) | Update dependencies | | 0.1.6 | 2024-07-09 | [40832](https://github.com/airbytehq/airbyte/pull/40832) | Update dependencies | | 0.1.5 | 2024-06-25 | [40364](https://github.com/airbytehq/airbyte/pull/40364) | Update dependencies | From f06cdbe78e8e95394ad17d85c57dce7d56f66f2e Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:28:11 +0200 Subject: [PATCH 214/260] =?UTF-8?q?=F0=9F=90=99=20destination-google-sheet?= =?UTF-8?q?s:=20run=20up-to-date=20pipeline=20[2024-07-13]=20(#41721)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/destination-google-sheets/metadata.yaml | 2 +- .../connectors/destination-google-sheets/poetry.lock | 6 +++--- .../connectors/destination-google-sheets/pyproject.toml | 2 +- docs/integrations/destinations/google-sheets.md | 1 + 4 files changed, 6 insertions(+), 5 deletions(-) diff --git a/airbyte-integrations/connectors/destination-google-sheets/metadata.yaml b/airbyte-integrations/connectors/destination-google-sheets/metadata.yaml index ee5b250ec9f8..1e776168d487 100644 --- a/airbyte-integrations/connectors/destination-google-sheets/metadata.yaml +++ b/airbyte-integrations/connectors/destination-google-sheets/metadata.yaml @@ -2,7 +2,7 @@ data: connectorSubtype: api connectorType: destination definitionId: a4cbd2d1-8dbe-4818-b8bc-b90ad782d12a - dockerImageTag: 0.2.12 + dockerImageTag: 0.2.13 dockerRepository: airbyte/destination-google-sheets githubIssueLabel: destination-google-sheets icon: google-sheets.svg diff --git a/airbyte-integrations/connectors/destination-google-sheets/poetry.lock b/airbyte-integrations/connectors/destination-google-sheets/poetry.lock index ddd4f2b1a7d2..63ff072dfb0d 100644 --- a/airbyte-integrations/connectors/destination-google-sheets/poetry.lock +++ b/airbyte-integrations/connectors/destination-google-sheets/poetry.lock @@ -288,13 +288,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] diff --git a/airbyte-integrations/connectors/destination-google-sheets/pyproject.toml b/airbyte-integrations/connectors/destination-google-sheets/pyproject.toml index 56c762ff326e..d73836800508 100644 --- a/airbyte-integrations/connectors/destination-google-sheets/pyproject.toml +++ b/airbyte-integrations/connectors/destination-google-sheets/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.2.12" +version = "0.2.13" name = "destination-google-sheets" description = "Destination implementation for Google Sheets." authors = [ "Airbyte ",] diff --git a/docs/integrations/destinations/google-sheets.md b/docs/integrations/destinations/google-sheets.md index ff61df2ccb8e..742d24ae4dd4 100644 --- a/docs/integrations/destinations/google-sheets.md +++ b/docs/integrations/destinations/google-sheets.md @@ -155,6 +155,7 @@ EXAMPLE: | Version | Date | Pull Request | Subject | | ------- | ---------- | -------------------------------------------------------- | ---------------------------------------------------------- | +| 0.2.13 | 2024-07-13 | [41721](https://github.com/airbytehq/airbyte/pull/41721) | Update dependencies | | 0.2.12 | 2024-07-10 | [41520](https://github.com/airbytehq/airbyte/pull/41520) | Update dependencies | | 0.2.11 | 2024-07-09 | [41076](https://github.com/airbytehq/airbyte/pull/41076) | Update dependencies | | 0.2.10 | 2024-07-06 | [40999](https://github.com/airbytehq/airbyte/pull/40999) | Update dependencies | From 4f2b89f381537b8ddc925a21903b9486c7d46136 Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:28:14 +0200 Subject: [PATCH 215/260] =?UTF-8?q?=F0=9F=90=99=20source-orb:=20run=20up-t?= =?UTF-8?q?o-date=20pipeline=20[2024-07-13]=20(#41720)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- airbyte-integrations/connectors/source-orb/metadata.yaml | 2 +- airbyte-integrations/connectors/source-orb/poetry.lock | 6 +++--- airbyte-integrations/connectors/source-orb/pyproject.toml | 2 +- docs/integrations/sources/orb.md | 1 + 4 files changed, 6 insertions(+), 5 deletions(-) diff --git a/airbyte-integrations/connectors/source-orb/metadata.yaml b/airbyte-integrations/connectors/source-orb/metadata.yaml index 3fd2b19e7ed5..631f4a5e4ee9 100644 --- a/airbyte-integrations/connectors/source-orb/metadata.yaml +++ b/airbyte-integrations/connectors/source-orb/metadata.yaml @@ -4,7 +4,7 @@ data: connectorSubtype: api connectorType: source definitionId: 7f0455fb-4518-4ec0-b7a3-d808bf8081cc - dockerImageTag: 2.0.4 + dockerImageTag: 2.0.5 dockerRepository: airbyte/source-orb githubIssueLabel: source-orb icon: orb.svg diff --git a/airbyte-integrations/connectors/source-orb/poetry.lock b/airbyte-integrations/connectors/source-orb/poetry.lock index 2e0c8bc06569..879d5da456d4 100644 --- a/airbyte-integrations/connectors/source-orb/poetry.lock +++ b/airbyte-integrations/connectors/source-orb/poetry.lock @@ -288,13 +288,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] diff --git a/airbyte-integrations/connectors/source-orb/pyproject.toml b/airbyte-integrations/connectors/source-orb/pyproject.toml index 0f63eee98699..da992a674fec 100644 --- a/airbyte-integrations/connectors/source-orb/pyproject.toml +++ b/airbyte-integrations/connectors/source-orb/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "2.0.4" +version = "2.0.5" name = "source-orb" description = "Source implementation for Orb." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/orb.md b/docs/integrations/sources/orb.md index 9e64d6dc876f..1d35110ce027 100644 --- a/docs/integrations/sources/orb.md +++ b/docs/integrations/sources/orb.md @@ -65,6 +65,7 @@ an Orb Account and API Key. | Version | Date | Pull Request | Subject | |---------|------------| -------------------------------------------------------- |-----------------------------------------------------------------------------------------------------------------------------------------------------------------------| +| 2.0.5 | 2024-07-13 | [41720](https://github.com/airbytehq/airbyte/pull/41720) | Update dependencies | | 2.0.4 | 2024-07-10 | [41386](https://github.com/airbytehq/airbyte/pull/41386) | Update dependencies | | 2.0.3 | 2024-07-09 | [41090](https://github.com/airbytehq/airbyte/pull/41090) | Update dependencies | | 2.0.2 | 2024-07-06 | [40826](https://github.com/airbytehq/airbyte/pull/40826) | Update dependencies | From 6604b9547006462617ebad2d2f795754650a0d70 Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:28:18 +0200 Subject: [PATCH 216/260] =?UTF-8?q?=F0=9F=90=99=20source-zendesk-sell:=20r?= =?UTF-8?q?un=20up-to-date=20pipeline=20[2024-07-13]=20(#41718)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-zendesk-sell/metadata.yaml | 2 +- .../connectors/source-zendesk-sell/poetry.lock | 12 ++++++------ .../connectors/source-zendesk-sell/pyproject.toml | 2 +- docs/integrations/sources/zendesk-sell.md | 1 + 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/airbyte-integrations/connectors/source-zendesk-sell/metadata.yaml b/airbyte-integrations/connectors/source-zendesk-sell/metadata.yaml index 11a010fa319e..d1b1466f7e15 100644 --- a/airbyte-integrations/connectors/source-zendesk-sell/metadata.yaml +++ b/airbyte-integrations/connectors/source-zendesk-sell/metadata.yaml @@ -14,7 +14,7 @@ data: connectorSubtype: api connectorType: source definitionId: 982eaa4c-bba1-4cce-a971-06a41f700b8c - dockerImageTag: 0.2.7 + dockerImageTag: 0.2.8 dockerRepository: airbyte/source-zendesk-sell githubIssueLabel: source-zendesk-sell icon: zendesk.svg diff --git a/airbyte-integrations/connectors/source-zendesk-sell/poetry.lock b/airbyte-integrations/connectors/source-zendesk-sell/poetry.lock index 1c7c00978d43..728f233c17e0 100644 --- a/airbyte-integrations/connectors/source-zendesk-sell/poetry.lock +++ b/airbyte-integrations/connectors/source-zendesk-sell/poetry.lock @@ -410,13 +410,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] @@ -566,13 +566,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.84" +version = "0.1.85" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.84-py3-none-any.whl", hash = "sha256:01f3c6390dba26c583bac8dd0e551ce3d0509c7f55cad714db0b5c8d36e4c7ff"}, - {file = "langsmith-0.1.84.tar.gz", hash = "sha256:5220c0439838b9a5bd320fd3686be505c5083dcee22d2452006c23891153bea1"}, + {file = "langsmith-0.1.85-py3-none-any.whl", hash = "sha256:c1f94384f10cea96f7b4d33fd3db7ec180c03c7468877d50846f881d2017ff94"}, + {file = "langsmith-0.1.85.tar.gz", hash = "sha256:acff31f9e53efa48586cf8e32f65625a335c74d7c4fa306d1655ac18452296f6"}, ] [package.dependencies] diff --git a/airbyte-integrations/connectors/source-zendesk-sell/pyproject.toml b/airbyte-integrations/connectors/source-zendesk-sell/pyproject.toml index d0692546c6e4..2513bdd4831e 100644 --- a/airbyte-integrations/connectors/source-zendesk-sell/pyproject.toml +++ b/airbyte-integrations/connectors/source-zendesk-sell/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.2.7" +version = "0.2.8" name = "source-zendesk-sell" description = "Source implementation for Zendesk Sell." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/zendesk-sell.md b/docs/integrations/sources/zendesk-sell.md index 2a52f2c30753..f645a7f91452 100644 --- a/docs/integrations/sources/zendesk-sell.md +++ b/docs/integrations/sources/zendesk-sell.md @@ -77,6 +77,7 @@ We recommend creating a restricted, read-only key specifically for Airbyte acces | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :----------------------------------------------------------------------------- | +| 0.2.8 | 2024-07-13 | [41718](https://github.com/airbytehq/airbyte/pull/41718) | Update dependencies | | 0.2.7 | 2024-07-10 | [41544](https://github.com/airbytehq/airbyte/pull/41544) | Update dependencies | | 0.2.6 | 2024-07-09 | [41308](https://github.com/airbytehq/airbyte/pull/41308) | Update dependencies | | 0.2.5 | 2024-07-06 | [40983](https://github.com/airbytehq/airbyte/pull/40983) | Update dependencies | From 48cbf9319d2e89364fb85afd3551af9ef835f08c Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:28:21 +0200 Subject: [PATCH 217/260] =?UTF-8?q?=F0=9F=90=99=20source-fleetio:=20run=20?= =?UTF-8?q?up-to-date=20pipeline=20[2024-07-13]=20(#41717)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-fleetio/metadata.yaml | 2 +- .../connectors/source-fleetio/poetry.lock | 12 ++++++------ .../connectors/source-fleetio/pyproject.toml | 2 +- docs/integrations/sources/fleetio.md | 1 + 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/airbyte-integrations/connectors/source-fleetio/metadata.yaml b/airbyte-integrations/connectors/source-fleetio/metadata.yaml index 9d14c68db42a..9b88c9a26944 100644 --- a/airbyte-integrations/connectors/source-fleetio/metadata.yaml +++ b/airbyte-integrations/connectors/source-fleetio/metadata.yaml @@ -9,7 +9,7 @@ data: connectorSubtype: api connectorType: source definitionId: 13a7652d-1d94-4033-931a-613d22d3cbb3 - dockerImageTag: 0.1.4 + dockerImageTag: 0.1.5 dockerRepository: airbyte/source-fleetio githubIssueLabel: source-fleetio icon: icon.svg diff --git a/airbyte-integrations/connectors/source-fleetio/poetry.lock b/airbyte-integrations/connectors/source-fleetio/poetry.lock index dad906e4aead..e7fae6691889 100644 --- a/airbyte-integrations/connectors/source-fleetio/poetry.lock +++ b/airbyte-integrations/connectors/source-fleetio/poetry.lock @@ -411,13 +411,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] @@ -567,13 +567,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.84" +version = "0.1.85" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.84-py3-none-any.whl", hash = "sha256:01f3c6390dba26c583bac8dd0e551ce3d0509c7f55cad714db0b5c8d36e4c7ff"}, - {file = "langsmith-0.1.84.tar.gz", hash = "sha256:5220c0439838b9a5bd320fd3686be505c5083dcee22d2452006c23891153bea1"}, + {file = "langsmith-0.1.85-py3-none-any.whl", hash = "sha256:c1f94384f10cea96f7b4d33fd3db7ec180c03c7468877d50846f881d2017ff94"}, + {file = "langsmith-0.1.85.tar.gz", hash = "sha256:acff31f9e53efa48586cf8e32f65625a335c74d7c4fa306d1655ac18452296f6"}, ] [package.dependencies] diff --git a/airbyte-integrations/connectors/source-fleetio/pyproject.toml b/airbyte-integrations/connectors/source-fleetio/pyproject.toml index 62af457ea03d..6180967c656f 100644 --- a/airbyte-integrations/connectors/source-fleetio/pyproject.toml +++ b/airbyte-integrations/connectors/source-fleetio/pyproject.toml @@ -3,7 +3,7 @@ requires = ["poetry-core>=1.0.0"] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.1.4" +version = "0.1.5" name = "source-fleetio" description = "Source implementation for Fleetio." authors = ["John Michael Mizerany "] diff --git a/docs/integrations/sources/fleetio.md b/docs/integrations/sources/fleetio.md index 32393c7f73c9..7245b50cb772 100644 --- a/docs/integrations/sources/fleetio.md +++ b/docs/integrations/sources/fleetio.md @@ -51,6 +51,7 @@ Our source connector adheres to the standard rate limiting with the Airbyte low- | Version | Date | Pull Request | Subject | |:--------|:-----------|:---------------------------------------------------------|:------------------------------------------------| +| 0.1.5 | 2024-07-13 | [41717](https://github.com/airbytehq/airbyte/pull/41717) | Update dependencies | | 0.1.4 | 2024-07-10 | [41476](https://github.com/airbytehq/airbyte/pull/41476) | Update dependencies | | 0.1.3 | 2024-07-09 | [41299](https://github.com/airbytehq/airbyte/pull/41299) | Update dependencies | | 0.1.2 | 2024-07-06 | [39964](https://github.com/airbytehq/airbyte/pull/39964) | Update dependencies | From e0a1b2cd6afe093f2f8feb409f878725508982d6 Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:28:24 +0200 Subject: [PATCH 218/260] =?UTF-8?q?=F0=9F=90=99=20source-younium:=20run=20?= =?UTF-8?q?up-to-date=20pipeline=20[2024-07-13]=20(#41716)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-younium/metadata.yaml | 2 +- .../connectors/source-younium/poetry.lock | 12 ++++++------ .../connectors/source-younium/pyproject.toml | 2 +- docs/integrations/sources/younium.md | 1 + 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/airbyte-integrations/connectors/source-younium/metadata.yaml b/airbyte-integrations/connectors/source-younium/metadata.yaml index d4244b06a7b7..474cf3a06c48 100644 --- a/airbyte-integrations/connectors/source-younium/metadata.yaml +++ b/airbyte-integrations/connectors/source-younium/metadata.yaml @@ -16,7 +16,7 @@ data: connectorSubtype: api connectorType: source definitionId: 9c74c2d7-531a-4ebf-b6d8-6181f805ecdc - dockerImageTag: 0.3.8 + dockerImageTag: 0.3.9 dockerRepository: airbyte/source-younium githubIssueLabel: source-younium icon: younium.svg diff --git a/airbyte-integrations/connectors/source-younium/poetry.lock b/airbyte-integrations/connectors/source-younium/poetry.lock index 1c7c00978d43..728f233c17e0 100644 --- a/airbyte-integrations/connectors/source-younium/poetry.lock +++ b/airbyte-integrations/connectors/source-younium/poetry.lock @@ -410,13 +410,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] @@ -566,13 +566,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.84" +version = "0.1.85" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.84-py3-none-any.whl", hash = "sha256:01f3c6390dba26c583bac8dd0e551ce3d0509c7f55cad714db0b5c8d36e4c7ff"}, - {file = "langsmith-0.1.84.tar.gz", hash = "sha256:5220c0439838b9a5bd320fd3686be505c5083dcee22d2452006c23891153bea1"}, + {file = "langsmith-0.1.85-py3-none-any.whl", hash = "sha256:c1f94384f10cea96f7b4d33fd3db7ec180c03c7468877d50846f881d2017ff94"}, + {file = "langsmith-0.1.85.tar.gz", hash = "sha256:acff31f9e53efa48586cf8e32f65625a335c74d7c4fa306d1655ac18452296f6"}, ] [package.dependencies] diff --git a/airbyte-integrations/connectors/source-younium/pyproject.toml b/airbyte-integrations/connectors/source-younium/pyproject.toml index 16beed9ad045..6f4a690022a5 100644 --- a/airbyte-integrations/connectors/source-younium/pyproject.toml +++ b/airbyte-integrations/connectors/source-younium/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.3.8" +version = "0.3.9" name = "source-younium" description = "Source implementation for Younium." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/younium.md b/docs/integrations/sources/younium.md index 40bcea2563cc..839908717bad 100644 --- a/docs/integrations/sources/younium.md +++ b/docs/integrations/sources/younium.md @@ -46,6 +46,7 @@ The Younium source connector supports the following [sync modes](https://docs.ai | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :--------------------------------------------------------- | +| 0.3.9 | 2024-07-13 | [41716](https://github.com/airbytehq/airbyte/pull/41716) | Update dependencies | | 0.3.8 | 2024-07-10 | [41281](https://github.com/airbytehq/airbyte/pull/41281) | Update dependencies | | 0.3.7 | 2024-07-06 | [40769](https://github.com/airbytehq/airbyte/pull/40769) | Update dependencies | | 0.3.6 | 2024-06-25 | [40263](https://github.com/airbytehq/airbyte/pull/40263) | Update dependencies | From 3181a319ed64f6e3edfab5e7f14759b1fee54c97 Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:28:27 +0200 Subject: [PATCH 219/260] =?UTF-8?q?=F0=9F=90=99=20source-persistiq:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-07-13]=20(#41715)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-persistiq/metadata.yaml | 2 +- .../connectors/source-persistiq/poetry.lock | 12 ++++++------ .../connectors/source-persistiq/pyproject.toml | 2 +- docs/integrations/sources/persistiq.md | 1 + 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/airbyte-integrations/connectors/source-persistiq/metadata.yaml b/airbyte-integrations/connectors/source-persistiq/metadata.yaml index 557467870a9b..e551d8befc55 100644 --- a/airbyte-integrations/connectors/source-persistiq/metadata.yaml +++ b/airbyte-integrations/connectors/source-persistiq/metadata.yaml @@ -16,7 +16,7 @@ data: connectorSubtype: api connectorType: source definitionId: 3052c77e-8b91-47e2-97a0-a29a22794b4b - dockerImageTag: 0.2.8 + dockerImageTag: 0.2.9 dockerRepository: airbyte/source-persistiq githubIssueLabel: source-persistiq icon: persistiq.svg diff --git a/airbyte-integrations/connectors/source-persistiq/poetry.lock b/airbyte-integrations/connectors/source-persistiq/poetry.lock index 351dd514d053..225b4ef0e245 100644 --- a/airbyte-integrations/connectors/source-persistiq/poetry.lock +++ b/airbyte-integrations/connectors/source-persistiq/poetry.lock @@ -410,13 +410,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] @@ -566,13 +566,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.84" +version = "0.1.85" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.84-py3-none-any.whl", hash = "sha256:01f3c6390dba26c583bac8dd0e551ce3d0509c7f55cad714db0b5c8d36e4c7ff"}, - {file = "langsmith-0.1.84.tar.gz", hash = "sha256:5220c0439838b9a5bd320fd3686be505c5083dcee22d2452006c23891153bea1"}, + {file = "langsmith-0.1.85-py3-none-any.whl", hash = "sha256:c1f94384f10cea96f7b4d33fd3db7ec180c03c7468877d50846f881d2017ff94"}, + {file = "langsmith-0.1.85.tar.gz", hash = "sha256:acff31f9e53efa48586cf8e32f65625a335c74d7c4fa306d1655ac18452296f6"}, ] [package.dependencies] diff --git a/airbyte-integrations/connectors/source-persistiq/pyproject.toml b/airbyte-integrations/connectors/source-persistiq/pyproject.toml index 0a9afa8b1019..116be70f2bad 100644 --- a/airbyte-integrations/connectors/source-persistiq/pyproject.toml +++ b/airbyte-integrations/connectors/source-persistiq/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.2.8" +version = "0.2.9" name = "source-persistiq" description = "Source implementation for Persistiq." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/persistiq.md b/docs/integrations/sources/persistiq.md index f6f848d6324e..ff3e8aefb91e 100644 --- a/docs/integrations/sources/persistiq.md +++ b/docs/integrations/sources/persistiq.md @@ -43,6 +43,7 @@ Please read [How to find your API key](https://apidocs.persistiq.com/#introducti | Version | Date | Pull Request | Subject | |:--------|:-----------|:---------------------------------------------------------|:---------------------------------------| +| 0.2.9 | 2024-07-13 | [41715](https://github.com/airbytehq/airbyte/pull/41715) | Update dependencies | | 0.2.8 | 2024-07-10 | [41419](https://github.com/airbytehq/airbyte/pull/41419) | Update dependencies | | 0.2.7 | 2024-07-09 | [41196](https://github.com/airbytehq/airbyte/pull/41196) | Update dependencies | | 0.2.6 | 2024-07-06 | [40787](https://github.com/airbytehq/airbyte/pull/40787) | Update dependencies | From ea7d0f4b0548c226d63316bc42ea2893c11318af Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:28:29 +0200 Subject: [PATCH 220/260] =?UTF-8?q?=F0=9F=90=99=20source-serpstat:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-07-13]=20(#41714)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-serpstat/metadata.yaml | 2 +- .../connectors/source-serpstat/poetry.lock | 12 ++++++------ .../connectors/source-serpstat/pyproject.toml | 2 +- docs/integrations/sources/serpstat.md | 1 + 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/airbyte-integrations/connectors/source-serpstat/metadata.yaml b/airbyte-integrations/connectors/source-serpstat/metadata.yaml index 85e098f17144..2a3d34d1d858 100644 --- a/airbyte-integrations/connectors/source-serpstat/metadata.yaml +++ b/airbyte-integrations/connectors/source-serpstat/metadata.yaml @@ -17,7 +17,7 @@ data: connectorSubtype: api connectorType: source definitionId: 3b2e8fb2-9137-41ff-a1e1-83ecb39e26c8 - dockerImageTag: 0.1.5 + dockerImageTag: 0.1.6 dockerRepository: airbyte/source-serpstat githubIssueLabel: source-serpstat icon: serpstat.svg diff --git a/airbyte-integrations/connectors/source-serpstat/poetry.lock b/airbyte-integrations/connectors/source-serpstat/poetry.lock index cb1a23ecd43b..e0918c3f13c6 100644 --- a/airbyte-integrations/connectors/source-serpstat/poetry.lock +++ b/airbyte-integrations/connectors/source-serpstat/poetry.lock @@ -400,13 +400,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] @@ -556,13 +556,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.84" +version = "0.1.85" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.84-py3-none-any.whl", hash = "sha256:01f3c6390dba26c583bac8dd0e551ce3d0509c7f55cad714db0b5c8d36e4c7ff"}, - {file = "langsmith-0.1.84.tar.gz", hash = "sha256:5220c0439838b9a5bd320fd3686be505c5083dcee22d2452006c23891153bea1"}, + {file = "langsmith-0.1.85-py3-none-any.whl", hash = "sha256:c1f94384f10cea96f7b4d33fd3db7ec180c03c7468877d50846f881d2017ff94"}, + {file = "langsmith-0.1.85.tar.gz", hash = "sha256:acff31f9e53efa48586cf8e32f65625a335c74d7c4fa306d1655ac18452296f6"}, ] [package.dependencies] diff --git a/airbyte-integrations/connectors/source-serpstat/pyproject.toml b/airbyte-integrations/connectors/source-serpstat/pyproject.toml index 1e566fef3fe0..237833df92f0 100644 --- a/airbyte-integrations/connectors/source-serpstat/pyproject.toml +++ b/airbyte-integrations/connectors/source-serpstat/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.1.5" +version = "0.1.6" name = "source-serpstat" description = "Source implementation for serpstat." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/serpstat.md b/docs/integrations/sources/serpstat.md index 84064fb9c19a..a109a47f9e08 100644 --- a/docs/integrations/sources/serpstat.md +++ b/docs/integrations/sources/serpstat.md @@ -52,6 +52,7 @@ The maximum sync speed is limited by the number of requests per second per API k | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :------------------------- | +| 0.1.6 | 2024-07-13 | [41714](https://github.com/airbytehq/airbyte/pull/41714) | Update dependencies | | 0.1.5 | 2024-07-10 | [41550](https://github.com/airbytehq/airbyte/pull/41550) | Update dependencies | | 0.1.4 | 2024-07-06 | [40767](https://github.com/airbytehq/airbyte/pull/40767) | Update dependencies | | 0.1.3 | 2024-06-25 | [40400](https://github.com/airbytehq/airbyte/pull/40400) | Update dependencies | From fdc0201d85b0d7f6f6a8965fcb08dc3e8f43e539 Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:28:32 +0200 Subject: [PATCH 221/260] =?UTF-8?q?=F0=9F=90=99=20source-freshservice:=20r?= =?UTF-8?q?un=20up-to-date=20pipeline=20[2024-07-13]=20(#41713)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-freshservice/metadata.yaml | 2 +- .../connectors/source-freshservice/poetry.lock | 6 +++--- .../connectors/source-freshservice/pyproject.toml | 2 +- docs/integrations/sources/freshservice.md | 1 + 4 files changed, 6 insertions(+), 5 deletions(-) diff --git a/airbyte-integrations/connectors/source-freshservice/metadata.yaml b/airbyte-integrations/connectors/source-freshservice/metadata.yaml index 3e464a74f7bd..f30446387102 100644 --- a/airbyte-integrations/connectors/source-freshservice/metadata.yaml +++ b/airbyte-integrations/connectors/source-freshservice/metadata.yaml @@ -7,7 +7,7 @@ data: connectorSubtype: api connectorType: source definitionId: 9bb85338-ea95-4c93-b267-6be89125b267 - dockerImageTag: 1.3.12 + dockerImageTag: 1.3.13 dockerRepository: airbyte/source-freshservice documentationUrl: https://docs.airbyte.com/integrations/sources/freshservice githubIssueLabel: source-freshservice diff --git a/airbyte-integrations/connectors/source-freshservice/poetry.lock b/airbyte-integrations/connectors/source-freshservice/poetry.lock index 059ad0800506..747aa685c2a5 100644 --- a/airbyte-integrations/connectors/source-freshservice/poetry.lock +++ b/airbyte-integrations/connectors/source-freshservice/poetry.lock @@ -288,13 +288,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] diff --git a/airbyte-integrations/connectors/source-freshservice/pyproject.toml b/airbyte-integrations/connectors/source-freshservice/pyproject.toml index e324ac26f2b3..c35eb8524ef5 100644 --- a/airbyte-integrations/connectors/source-freshservice/pyproject.toml +++ b/airbyte-integrations/connectors/source-freshservice/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "1.3.12" +version = "1.3.13" name = "source-freshservice" description = "Source implementation for Freshservice." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/freshservice.md b/docs/integrations/sources/freshservice.md index 94981884193b..d2945a014fa1 100644 --- a/docs/integrations/sources/freshservice.md +++ b/docs/integrations/sources/freshservice.md @@ -57,6 +57,7 @@ Please read [How to find your API key](https://api.freshservice.com/#authenticat | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- |:---------------------------------------------------------------------------------------| +| 1.3.13 | 2024-07-13 | [41713](https://github.com/airbytehq/airbyte/pull/41713) | Update dependencies | | 1.3.12 | 2024-07-10 | [41423](https://github.com/airbytehq/airbyte/pull/41423) | Update dependencies | | 1.3.11 | 2024-07-09 | [41311](https://github.com/airbytehq/airbyte/pull/41311) | Update dependencies | | 1.3.10 | 2024-07-06 | [40941](https://github.com/airbytehq/airbyte/pull/40941) | Update dependencies | From 55d29197da7d69a66dbf5fd0f43cca81bcebe21f Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:28:35 +0200 Subject: [PATCH 222/260] =?UTF-8?q?=F0=9F=90=99=20source-intercom:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-07-13]=20(#41712)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-intercom/metadata.yaml | 2 +- .../connectors/source-intercom/poetry.lock | 12 ++++++------ .../connectors/source-intercom/pyproject.toml | 2 +- docs/integrations/sources/intercom.md | 1 + 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/airbyte-integrations/connectors/source-intercom/metadata.yaml b/airbyte-integrations/connectors/source-intercom/metadata.yaml index 0d30051ea2a2..2b08295d162e 100644 --- a/airbyte-integrations/connectors/source-intercom/metadata.yaml +++ b/airbyte-integrations/connectors/source-intercom/metadata.yaml @@ -10,7 +10,7 @@ data: connectorSubtype: api connectorType: source definitionId: d8313939-3782-41b0-be29-b3ca20d8dd3a - dockerImageTag: 0.6.12 + dockerImageTag: 0.6.13 dockerRepository: airbyte/source-intercom documentationUrl: https://docs.airbyte.com/integrations/sources/intercom githubIssueLabel: source-intercom diff --git a/airbyte-integrations/connectors/source-intercom/poetry.lock b/airbyte-integrations/connectors/source-intercom/poetry.lock index 5f4ad70cbada..f8605b7f4a51 100644 --- a/airbyte-integrations/connectors/source-intercom/poetry.lock +++ b/airbyte-integrations/connectors/source-intercom/poetry.lock @@ -399,13 +399,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] @@ -555,13 +555,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.84" +version = "0.1.85" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.84-py3-none-any.whl", hash = "sha256:01f3c6390dba26c583bac8dd0e551ce3d0509c7f55cad714db0b5c8d36e4c7ff"}, - {file = "langsmith-0.1.84.tar.gz", hash = "sha256:5220c0439838b9a5bd320fd3686be505c5083dcee22d2452006c23891153bea1"}, + {file = "langsmith-0.1.85-py3-none-any.whl", hash = "sha256:c1f94384f10cea96f7b4d33fd3db7ec180c03c7468877d50846f881d2017ff94"}, + {file = "langsmith-0.1.85.tar.gz", hash = "sha256:acff31f9e53efa48586cf8e32f65625a335c74d7c4fa306d1655ac18452296f6"}, ] [package.dependencies] diff --git a/airbyte-integrations/connectors/source-intercom/pyproject.toml b/airbyte-integrations/connectors/source-intercom/pyproject.toml index d358d6286924..15de81efd559 100644 --- a/airbyte-integrations/connectors/source-intercom/pyproject.toml +++ b/airbyte-integrations/connectors/source-intercom/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.6.12" +version = "0.6.13" name = "source-intercom" description = "Source implementation for Intercom Yaml." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/intercom.md b/docs/integrations/sources/intercom.md index 7e13aa20170c..815bb406bf53 100644 --- a/docs/integrations/sources/intercom.md +++ b/docs/integrations/sources/intercom.md @@ -78,6 +78,7 @@ The Intercom connector should not run into Intercom API limitations under normal | Version | Date | Pull Request | Subject | |:--------|:-----------|:---------------------------------------------------------|:---------------------------------------------------------------------------------------------------------------------------------| +| 0.6.13 | 2024-07-13 | [41712](https://github.com/airbytehq/airbyte/pull/41712) | Update dependencies | | 0.6.12 | 2024-07-10 | [41356](https://github.com/airbytehq/airbyte/pull/41356) | Update dependencies | | 0.6.11 | 2024-07-09 | [41112](https://github.com/airbytehq/airbyte/pull/41112) | Update dependencies | | 0.6.10 | 2024-07-06 | [40878](https://github.com/airbytehq/airbyte/pull/40878) | Update dependencies | From 2d1551d508237e6b3b41eae5bd17d52b3f5c28e2 Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:28:38 +0200 Subject: [PATCH 223/260] =?UTF-8?q?=F0=9F=90=99=20destination-cumulio:=20r?= =?UTF-8?q?un=20up-to-date=20pipeline=20[2024-07-13]=20(#41711)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/destination-cumulio/metadata.yaml | 2 +- .../connectors/destination-cumulio/poetry.lock | 6 +++--- .../connectors/destination-cumulio/pyproject.toml | 2 +- docs/integrations/destinations/cumulio.md | 1 + 4 files changed, 6 insertions(+), 5 deletions(-) diff --git a/airbyte-integrations/connectors/destination-cumulio/metadata.yaml b/airbyte-integrations/connectors/destination-cumulio/metadata.yaml index 26e25937b2eb..4732f13e9a17 100644 --- a/airbyte-integrations/connectors/destination-cumulio/metadata.yaml +++ b/airbyte-integrations/connectors/destination-cumulio/metadata.yaml @@ -1,7 +1,7 @@ data: connectorType: destination definitionId: e088acb6-9780-4568-880c-54c2dd7f431b - dockerImageTag: 0.1.8 + dockerImageTag: 0.1.9 dockerRepository: airbyte/destination-cumulio githubIssueLabel: destination-cumulio connectorSubtype: api diff --git a/airbyte-integrations/connectors/destination-cumulio/poetry.lock b/airbyte-integrations/connectors/destination-cumulio/poetry.lock index aea137956cae..b31f08555b05 100644 --- a/airbyte-integrations/connectors/destination-cumulio/poetry.lock +++ b/airbyte-integrations/connectors/destination-cumulio/poetry.lock @@ -303,13 +303,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] diff --git a/airbyte-integrations/connectors/destination-cumulio/pyproject.toml b/airbyte-integrations/connectors/destination-cumulio/pyproject.toml index e053987c968b..f206d9bf5868 100644 --- a/airbyte-integrations/connectors/destination-cumulio/pyproject.toml +++ b/airbyte-integrations/connectors/destination-cumulio/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.1.8" +version = "0.1.9" name = "destination-cumulio" description = "Airbyte destination connector implementation for Cumul.io." authors = [ "Cumul.io ",] diff --git a/docs/integrations/destinations/cumulio.md b/docs/integrations/destinations/cumulio.md index 375c21c0d515..fa6d8b28e595 100644 --- a/docs/integrations/destinations/cumulio.md +++ b/docs/integrations/destinations/cumulio.md @@ -161,6 +161,7 @@ data less frequently** rather than _smaller amounts of data more frequently_! | Version | Date | Pull Request | Subject | | :------ | :--------- | :-------------------------------------------------------- | :-------------------------------------------------- | +| 0.1.9 | 2024-07-13 | [41711](https://github.com/airbytehq/airbyte/pull/41711) | Update dependencies | | 0.1.8 | 2024-07-10 | [41341](https://github.com/airbytehq/airbyte/pull/41341) | Update dependencies | | 0.1.7 | 2024-07-09 | [41104](https://github.com/airbytehq/airbyte/pull/41104) | Update dependencies | | 0.1.6 | 2024-07-06 | [40763](https://github.com/airbytehq/airbyte/pull/40763) | Update dependencies | From 730288f8c73404ff01a2c74f091771836311f6b2 Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:28:42 +0200 Subject: [PATCH 224/260] =?UTF-8?q?=F0=9F=90=99=20source-linkedin-ads:=20r?= =?UTF-8?q?un=20up-to-date=20pipeline=20[2024-07-13]=20(#41710)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-linkedin-ads/metadata.yaml | 2 +- .../connectors/source-linkedin-ads/poetry.lock | 6 +++--- .../connectors/source-linkedin-ads/pyproject.toml | 2 +- docs/integrations/sources/linkedin-ads.md | 1 + 4 files changed, 6 insertions(+), 5 deletions(-) diff --git a/airbyte-integrations/connectors/source-linkedin-ads/metadata.yaml b/airbyte-integrations/connectors/source-linkedin-ads/metadata.yaml index f6c718a180ac..ae958dc9af34 100644 --- a/airbyte-integrations/connectors/source-linkedin-ads/metadata.yaml +++ b/airbyte-integrations/connectors/source-linkedin-ads/metadata.yaml @@ -11,7 +11,7 @@ data: connectorSubtype: api connectorType: source definitionId: 137ece28-5434-455c-8f34-69dc3782f451 - dockerImageTag: 2.1.9 + dockerImageTag: 2.1.10 dockerRepository: airbyte/source-linkedin-ads documentationUrl: https://docs.airbyte.com/integrations/sources/linkedin-ads githubIssueLabel: source-linkedin-ads diff --git a/airbyte-integrations/connectors/source-linkedin-ads/poetry.lock b/airbyte-integrations/connectors/source-linkedin-ads/poetry.lock index 66f0ac4541a7..5f44e1da9266 100644 --- a/airbyte-integrations/connectors/source-linkedin-ads/poetry.lock +++ b/airbyte-integrations/connectors/source-linkedin-ads/poetry.lock @@ -288,13 +288,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] diff --git a/airbyte-integrations/connectors/source-linkedin-ads/pyproject.toml b/airbyte-integrations/connectors/source-linkedin-ads/pyproject.toml index 21c62970e2b7..f96a0a6d9821 100644 --- a/airbyte-integrations/connectors/source-linkedin-ads/pyproject.toml +++ b/airbyte-integrations/connectors/source-linkedin-ads/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "2.1.9" +version = "2.1.10" name = "source-linkedin-ads" description = "Source implementation for Linkedin Ads." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/linkedin-ads.md b/docs/integrations/sources/linkedin-ads.md index 9107ee44f6b3..9bc9564b1321 100644 --- a/docs/integrations/sources/linkedin-ads.md +++ b/docs/integrations/sources/linkedin-ads.md @@ -178,6 +178,7 @@ After 5 unsuccessful attempts - the connector will stop the sync operation. In s | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :-------------------------------------------------------------------------------------------------------------- | +| 2.1.10 | 2024-07-13 | [41710](https://github.com/airbytehq/airbyte/pull/41710) | Update dependencies | | 2.1.9 | 2024-07-10 | [41517](https://github.com/airbytehq/airbyte/pull/41517) | Update dependencies | | 2.1.8 | 2024-07-09 | [41315](https://github.com/airbytehq/airbyte/pull/41315) | Update dependencies | | 2.1.7 | 2024-07-06 | [40868](https://github.com/airbytehq/airbyte/pull/40868) | Update dependencies | From 88a056935cc5d31b4612c4a1263b68faaf32b2c8 Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:28:45 +0200 Subject: [PATCH 225/260] =?UTF-8?q?=F0=9F=90=99=20source-freshsales:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-07-13]=20(#41709)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-freshsales/metadata.yaml | 2 +- .../connectors/source-freshsales/poetry.lock | 12 ++++++------ .../connectors/source-freshsales/pyproject.toml | 2 +- docs/integrations/sources/freshsales.md | 1 + 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/airbyte-integrations/connectors/source-freshsales/metadata.yaml b/airbyte-integrations/connectors/source-freshsales/metadata.yaml index 6cd2ac67e4ff..bae3f9906f3f 100644 --- a/airbyte-integrations/connectors/source-freshsales/metadata.yaml +++ b/airbyte-integrations/connectors/source-freshsales/metadata.yaml @@ -22,7 +22,7 @@ data: connectorSubtype: api connectorType: source definitionId: eca08d79-7b92-4065-b7f3-79c14836ebe7 - dockerImageTag: 1.0.8 + dockerImageTag: 1.0.9 releases: breakingChanges: 1.0.0: diff --git a/airbyte-integrations/connectors/source-freshsales/poetry.lock b/airbyte-integrations/connectors/source-freshsales/poetry.lock index bee3f86db666..fc2e071391b2 100644 --- a/airbyte-integrations/connectors/source-freshsales/poetry.lock +++ b/airbyte-integrations/connectors/source-freshsales/poetry.lock @@ -400,13 +400,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] @@ -556,13 +556,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.84" +version = "0.1.85" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.84-py3-none-any.whl", hash = "sha256:01f3c6390dba26c583bac8dd0e551ce3d0509c7f55cad714db0b5c8d36e4c7ff"}, - {file = "langsmith-0.1.84.tar.gz", hash = "sha256:5220c0439838b9a5bd320fd3686be505c5083dcee22d2452006c23891153bea1"}, + {file = "langsmith-0.1.85-py3-none-any.whl", hash = "sha256:c1f94384f10cea96f7b4d33fd3db7ec180c03c7468877d50846f881d2017ff94"}, + {file = "langsmith-0.1.85.tar.gz", hash = "sha256:acff31f9e53efa48586cf8e32f65625a335c74d7c4fa306d1655ac18452296f6"}, ] [package.dependencies] diff --git a/airbyte-integrations/connectors/source-freshsales/pyproject.toml b/airbyte-integrations/connectors/source-freshsales/pyproject.toml index f934f0b123fe..4be14339280b 100644 --- a/airbyte-integrations/connectors/source-freshsales/pyproject.toml +++ b/airbyte-integrations/connectors/source-freshsales/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "1.0.8" +version = "1.0.9" name = "source-freshsales" description = "Source implementation for freshsales." diff --git a/docs/integrations/sources/freshsales.md b/docs/integrations/sources/freshsales.md index f3f770d9395c..dacbd52fc30e 100644 --- a/docs/integrations/sources/freshsales.md +++ b/docs/integrations/sources/freshsales.md @@ -68,6 +68,7 @@ The Freshsales connector should not run into Freshsales API limitations under no | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :----------------------------------------------------------- | +| 1.0.9 | 2024-07-13 | [41709](https://github.com/airbytehq/airbyte/pull/41709) | Update dependencies | | 1.0.8 | 2024-07-10 | [41494](https://github.com/airbytehq/airbyte/pull/41494) | Update dependencies | | 1.0.7 | 2024-07-09 | [41226](https://github.com/airbytehq/airbyte/pull/41226) | Update dependencies | | 1.0.6 | 2024-07-06 | [40851](https://github.com/airbytehq/airbyte/pull/40851) | Update dependencies | From 74d3cf91a3d6805a25273002032c943eefa3dc5c Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:28:48 +0200 Subject: [PATCH 226/260] =?UTF-8?q?=F0=9F=90=99=20source-aircall:=20run=20?= =?UTF-8?q?up-to-date=20pipeline=20[2024-07-13]=20(#41708)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-aircall/metadata.yaml | 2 +- .../connectors/source-aircall/poetry.lock | 12 ++++++------ .../connectors/source-aircall/pyproject.toml | 2 +- docs/integrations/sources/aircall.md | 1 + 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/airbyte-integrations/connectors/source-aircall/metadata.yaml b/airbyte-integrations/connectors/source-aircall/metadata.yaml index c7dcbc89b96c..43f6e140cad8 100644 --- a/airbyte-integrations/connectors/source-aircall/metadata.yaml +++ b/airbyte-integrations/connectors/source-aircall/metadata.yaml @@ -2,7 +2,7 @@ data: connectorSubtype: api connectorType: source definitionId: 912eb6b7-a893-4a5b-b1c0-36ebbe2de8cd - dockerImageTag: 0.2.6 + dockerImageTag: 0.2.7 dockerRepository: airbyte/source-aircall githubIssueLabel: source-aircall icon: aircall.svg diff --git a/airbyte-integrations/connectors/source-aircall/poetry.lock b/airbyte-integrations/connectors/source-aircall/poetry.lock index 1ac306a5c0f1..31731153c82e 100644 --- a/airbyte-integrations/connectors/source-aircall/poetry.lock +++ b/airbyte-integrations/connectors/source-aircall/poetry.lock @@ -410,13 +410,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] @@ -566,13 +566,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.84" +version = "0.1.85" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.84-py3-none-any.whl", hash = "sha256:01f3c6390dba26c583bac8dd0e551ce3d0509c7f55cad714db0b5c8d36e4c7ff"}, - {file = "langsmith-0.1.84.tar.gz", hash = "sha256:5220c0439838b9a5bd320fd3686be505c5083dcee22d2452006c23891153bea1"}, + {file = "langsmith-0.1.85-py3-none-any.whl", hash = "sha256:c1f94384f10cea96f7b4d33fd3db7ec180c03c7468877d50846f881d2017ff94"}, + {file = "langsmith-0.1.85.tar.gz", hash = "sha256:acff31f9e53efa48586cf8e32f65625a335c74d7c4fa306d1655ac18452296f6"}, ] [package.dependencies] diff --git a/airbyte-integrations/connectors/source-aircall/pyproject.toml b/airbyte-integrations/connectors/source-aircall/pyproject.toml index 1afa32897ff5..9f2f33ef1a3d 100644 --- a/airbyte-integrations/connectors/source-aircall/pyproject.toml +++ b/airbyte-integrations/connectors/source-aircall/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.2.6" +version = "0.2.7" name = "source-aircall" description = "Source implementation for Aircall." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/aircall.md b/docs/integrations/sources/aircall.md index b4d585313887..513e07186e5d 100644 --- a/docs/integrations/sources/aircall.md +++ b/docs/integrations/sources/aircall.md @@ -73,6 +73,7 @@ Aircall [API reference](https://api.aircall.io/v1) has v1 at present. The connec | Version | Date | Pull Request | Subject | | :------ | :--------- | :----------------------------------------------------------------------------- | :-------------------------- | +| 0.2.7 | 2024-07-13 | [41708](https://github.com/airbytehq/airbyte/pull/41708) | Update dependencies | | 0.2.6 | 2024-07-10 | [41448](https://github.com/airbytehq/airbyte/pull/41448) | Update dependencies | | 0.2.5 | 2024-07-09 | [41156](https://github.com/airbytehq/airbyte/pull/41156) | Update dependencies | | 0.2.4 | 2024-07-06 | [40801](https://github.com/airbytehq/airbyte/pull/40801) | Update dependencies | From 02f14c4242ffd6bf94ef252409aff00c1505a55c Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:28:51 +0200 Subject: [PATCH 227/260] =?UTF-8?q?=F0=9F=90=99=20source-coingecko-coins:?= =?UTF-8?q?=20run=20up-to-date=20pipeline=20[2024-07-13]=20(#41707)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-coingecko-coins/metadata.yaml | 2 +- .../connectors/source-coingecko-coins/poetry.lock | 12 ++++++------ .../connectors/source-coingecko-coins/pyproject.toml | 2 +- docs/integrations/sources/coingecko-coins.md | 1 + 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/airbyte-integrations/connectors/source-coingecko-coins/metadata.yaml b/airbyte-integrations/connectors/source-coingecko-coins/metadata.yaml index ac4b62a60dbd..095ac108a821 100644 --- a/airbyte-integrations/connectors/source-coingecko-coins/metadata.yaml +++ b/airbyte-integrations/connectors/source-coingecko-coins/metadata.yaml @@ -2,7 +2,7 @@ data: connectorSubtype: api connectorType: source definitionId: 9cdd4183-d0ba-40c3-aad3-6f46d4103974 - dockerImageTag: 0.1.6 + dockerImageTag: 0.1.7 dockerRepository: airbyte/source-coingecko-coins githubIssueLabel: source-coingecko-coins icon: coingeckocoins.svg diff --git a/airbyte-integrations/connectors/source-coingecko-coins/poetry.lock b/airbyte-integrations/connectors/source-coingecko-coins/poetry.lock index 4b03cc351726..13836360394d 100644 --- a/airbyte-integrations/connectors/source-coingecko-coins/poetry.lock +++ b/airbyte-integrations/connectors/source-coingecko-coins/poetry.lock @@ -410,13 +410,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] @@ -566,13 +566,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.84" +version = "0.1.85" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.84-py3-none-any.whl", hash = "sha256:01f3c6390dba26c583bac8dd0e551ce3d0509c7f55cad714db0b5c8d36e4c7ff"}, - {file = "langsmith-0.1.84.tar.gz", hash = "sha256:5220c0439838b9a5bd320fd3686be505c5083dcee22d2452006c23891153bea1"}, + {file = "langsmith-0.1.85-py3-none-any.whl", hash = "sha256:c1f94384f10cea96f7b4d33fd3db7ec180c03c7468877d50846f881d2017ff94"}, + {file = "langsmith-0.1.85.tar.gz", hash = "sha256:acff31f9e53efa48586cf8e32f65625a335c74d7c4fa306d1655ac18452296f6"}, ] [package.dependencies] diff --git a/airbyte-integrations/connectors/source-coingecko-coins/pyproject.toml b/airbyte-integrations/connectors/source-coingecko-coins/pyproject.toml index b587a34b1f2b..9fdfc0d39217 100644 --- a/airbyte-integrations/connectors/source-coingecko-coins/pyproject.toml +++ b/airbyte-integrations/connectors/source-coingecko-coins/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.1.6" +version = "0.1.7" name = "source-coingecko-coins" description = "Source implementation for Coingecko Coins." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/coingecko-coins.md b/docs/integrations/sources/coingecko-coins.md index 9fda3e658161..cf54e5471646 100644 --- a/docs/integrations/sources/coingecko-coins.md +++ b/docs/integrations/sources/coingecko-coins.md @@ -52,6 +52,7 @@ The following fields are required fields for the connector to work: | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :-------------------------------------------- | +| 0.1.7 | 2024-07-13 | [41707](https://github.com/airbytehq/airbyte/pull/41707) | Update dependencies | | 0.1.6 | 2024-07-10 | [41262](https://github.com/airbytehq/airbyte/pull/41262) | Update dependencies | | 0.1.5 | 2024-07-06 | [40879](https://github.com/airbytehq/airbyte/pull/40879) | Update dependencies | | 0.1.4 | 2024-06-25 | [40292](https://github.com/airbytehq/airbyte/pull/40292) | Update dependencies | From 8b7790a0f6e7af59d8042a4df4c2dce340c3961c Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:28:55 +0200 Subject: [PATCH 228/260] =?UTF-8?q?=F0=9F=90=99=20source-google-pagespeed-?= =?UTF-8?q?insights:=20run=20up-to-date=20pipeline=20[2024-07-13]=20(#4170?= =?UTF-8?q?6)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../source-google-pagespeed-insights/metadata.yaml | 2 +- .../connectors/source-google-pagespeed-insights/poetry.lock | 6 +++--- .../source-google-pagespeed-insights/pyproject.toml | 2 +- docs/integrations/sources/google-pagespeed-insights.md | 1 + 4 files changed, 6 insertions(+), 5 deletions(-) diff --git a/airbyte-integrations/connectors/source-google-pagespeed-insights/metadata.yaml b/airbyte-integrations/connectors/source-google-pagespeed-insights/metadata.yaml index af1d2c92c16e..212e0b0f8f79 100644 --- a/airbyte-integrations/connectors/source-google-pagespeed-insights/metadata.yaml +++ b/airbyte-integrations/connectors/source-google-pagespeed-insights/metadata.yaml @@ -7,7 +7,7 @@ data: connectorSubtype: api connectorType: source definitionId: 1e9086ab-ddac-4c1d-aafd-ba43ff575fe4 - dockerImageTag: 0.1.12 + dockerImageTag: 0.1.13 dockerRepository: airbyte/source-google-pagespeed-insights documentationUrl: https://docs.airbyte.com/integrations/sources/google-pagespeed-insights githubIssueLabel: source-google-pagespeed-insights diff --git a/airbyte-integrations/connectors/source-google-pagespeed-insights/poetry.lock b/airbyte-integrations/connectors/source-google-pagespeed-insights/poetry.lock index 6f83e5bed3a6..c0f7f643d050 100644 --- a/airbyte-integrations/connectors/source-google-pagespeed-insights/poetry.lock +++ b/airbyte-integrations/connectors/source-google-pagespeed-insights/poetry.lock @@ -288,13 +288,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] diff --git a/airbyte-integrations/connectors/source-google-pagespeed-insights/pyproject.toml b/airbyte-integrations/connectors/source-google-pagespeed-insights/pyproject.toml index 8202b30356c9..f334ea7f1c1b 100644 --- a/airbyte-integrations/connectors/source-google-pagespeed-insights/pyproject.toml +++ b/airbyte-integrations/connectors/source-google-pagespeed-insights/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.1.12" +version = "0.1.13" name = "source-google-pagespeed-insights" description = "Source implementation for Google Pagespeed Insights." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/google-pagespeed-insights.md b/docs/integrations/sources/google-pagespeed-insights.md index 17ef2e6ff49d..951cb76394c4 100644 --- a/docs/integrations/sources/google-pagespeed-insights.md +++ b/docs/integrations/sources/google-pagespeed-insights.md @@ -55,6 +55,7 @@ If the connector is used with an API key, Google allows for 25.000 queries per d | Version | Date | Pull Request | Subject | | :------ | :--------- | :-------------------------------------------------------- | :------------------------------------------------------------------------------ | +| 0.1.13 | 2024-07-13 | [41706](https://github.com/airbytehq/airbyte/pull/41706) | Update dependencies | | 0.1.12 | 2024-07-10 | [41591](https://github.com/airbytehq/airbyte/pull/41591) | Update dependencies | | 0.1.11 | 2024-07-09 | [41155](https://github.com/airbytehq/airbyte/pull/41155) | Update dependencies | | 0.1.10 | 2024-07-06 | [41011](https://github.com/airbytehq/airbyte/pull/41011) | Update dependencies | From fbcd7ec94c76dda5194f0c44ef616c2c0966d4b8 Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:28:59 +0200 Subject: [PATCH 229/260] =?UTF-8?q?=F0=9F=90=99=20source-configcat:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-07-13]=20(#41705)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-configcat/metadata.yaml | 2 +- .../connectors/source-configcat/poetry.lock | 12 ++++++------ .../connectors/source-configcat/pyproject.toml | 2 +- docs/integrations/sources/configcat.md | 1 + 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/airbyte-integrations/connectors/source-configcat/metadata.yaml b/airbyte-integrations/connectors/source-configcat/metadata.yaml index e7f1e9137fbd..79041e745c6a 100644 --- a/airbyte-integrations/connectors/source-configcat/metadata.yaml +++ b/airbyte-integrations/connectors/source-configcat/metadata.yaml @@ -2,7 +2,7 @@ data: connectorSubtype: api connectorType: source definitionId: 4fd7565c-8b99-439b-80d0-2d965e1d958c - dockerImageTag: 0.1.6 + dockerImageTag: 0.1.7 dockerRepository: airbyte/source-configcat githubIssueLabel: source-configcat icon: configcat.svg diff --git a/airbyte-integrations/connectors/source-configcat/poetry.lock b/airbyte-integrations/connectors/source-configcat/poetry.lock index 4b03cc351726..13836360394d 100644 --- a/airbyte-integrations/connectors/source-configcat/poetry.lock +++ b/airbyte-integrations/connectors/source-configcat/poetry.lock @@ -410,13 +410,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] @@ -566,13 +566,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.84" +version = "0.1.85" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.84-py3-none-any.whl", hash = "sha256:01f3c6390dba26c583bac8dd0e551ce3d0509c7f55cad714db0b5c8d36e4c7ff"}, - {file = "langsmith-0.1.84.tar.gz", hash = "sha256:5220c0439838b9a5bd320fd3686be505c5083dcee22d2452006c23891153bea1"}, + {file = "langsmith-0.1.85-py3-none-any.whl", hash = "sha256:c1f94384f10cea96f7b4d33fd3db7ec180c03c7468877d50846f881d2017ff94"}, + {file = "langsmith-0.1.85.tar.gz", hash = "sha256:acff31f9e53efa48586cf8e32f65625a335c74d7c4fa306d1655ac18452296f6"}, ] [package.dependencies] diff --git a/airbyte-integrations/connectors/source-configcat/pyproject.toml b/airbyte-integrations/connectors/source-configcat/pyproject.toml index d0c635bd73d7..90d07eb74d16 100644 --- a/airbyte-integrations/connectors/source-configcat/pyproject.toml +++ b/airbyte-integrations/connectors/source-configcat/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.1.6" +version = "0.1.7" name = "source-configcat" description = "Source implementation for Configcat." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/configcat.md b/docs/integrations/sources/configcat.md index 9af73cbfb025..3bf83e16433c 100644 --- a/docs/integrations/sources/configcat.md +++ b/docs/integrations/sources/configcat.md @@ -37,6 +37,7 @@ Configcat APIs are under rate limits for the number of API calls allowed per API | Version | Date | Pull Request | Subject | | :------ | :--------- | :-------------------------------------------------------- | :------------------------------------------ | +| 0.1.7 | 2024-07-13 | [41705](https://github.com/airbytehq/airbyte/pull/41705) | Update dependencies | | 0.1.6 | 2024-07-10 | [41450](https://github.com/airbytehq/airbyte/pull/41450) | Update dependencies | | 0.1.5 | 2024-07-06 | [40929](https://github.com/airbytehq/airbyte/pull/40929) | Update dependencies | | 0.1.4 | 2024-06-25 | [40442](https://github.com/airbytehq/airbyte/pull/40442) | Update dependencies | From 315a22073503c67e3b68c1c1ff3537c77302fd9d Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:29:02 +0200 Subject: [PATCH 230/260] =?UTF-8?q?=F0=9F=90=99=20source-google-directory:?= =?UTF-8?q?=20run=20up-to-date=20pipeline=20[2024-07-13]=20(#41704)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-google-directory/metadata.yaml | 4 ++-- .../connectors/source-google-directory/poetry.lock | 6 +++--- .../connectors/source-google-directory/pyproject.toml | 2 +- docs/integrations/sources/google-directory.md | 1 + 4 files changed, 7 insertions(+), 6 deletions(-) diff --git a/airbyte-integrations/connectors/source-google-directory/metadata.yaml b/airbyte-integrations/connectors/source-google-directory/metadata.yaml index 8bb8b4b98055..524b004d6760 100644 --- a/airbyte-integrations/connectors/source-google-directory/metadata.yaml +++ b/airbyte-integrations/connectors/source-google-directory/metadata.yaml @@ -2,7 +2,7 @@ data: connectorSubtype: api connectorType: source definitionId: d19ae824-e289-4b14-995a-0632eb46d246 - dockerImageTag: 0.2.7 + dockerImageTag: 0.2.8 dockerRepository: airbyte/source-google-directory githubIssueLabel: source-google-directory icon: googledirectory.svg @@ -14,7 +14,7 @@ data: packageName: airbyte-source-google-directory registries: cloud: - dockerImageTag: 0.2.7 + dockerImageTag: 0.2.8 enabled: true oss: enabled: true diff --git a/airbyte-integrations/connectors/source-google-directory/poetry.lock b/airbyte-integrations/connectors/source-google-directory/poetry.lock index 6cdb3bafe292..897b6e9dbbbf 100644 --- a/airbyte-integrations/connectors/source-google-directory/poetry.lock +++ b/airbyte-integrations/connectors/source-google-directory/poetry.lock @@ -288,13 +288,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] diff --git a/airbyte-integrations/connectors/source-google-directory/pyproject.toml b/airbyte-integrations/connectors/source-google-directory/pyproject.toml index 2c7b86bfa996..545b854552bd 100644 --- a/airbyte-integrations/connectors/source-google-directory/pyproject.toml +++ b/airbyte-integrations/connectors/source-google-directory/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.2.7" +version = "0.2.8" name = "source-google-directory" description = "Source implementation for Google Directory." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/google-directory.md b/docs/integrations/sources/google-directory.md index 8bcc053acac9..02720eca7466 100644 --- a/docs/integrations/sources/google-directory.md +++ b/docs/integrations/sources/google-directory.md @@ -70,6 +70,7 @@ You should now be ready to use the Google Directory connector in Airbyte. | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :----------------------------------------------------------- | +| 0.2.8 | 2024-07-13 | [41704](https://github.com/airbytehq/airbyte/pull/41704) | Update dependencies | | 0.2.7 | 2024-07-10 | [41468](https://github.com/airbytehq/airbyte/pull/41468) | Update dependencies | | 0.2.6 | 2024-07-09 | [41233](https://github.com/airbytehq/airbyte/pull/41233) | Update dependencies | | 0.2.5 | 2024-07-06 | [40948](https://github.com/airbytehq/airbyte/pull/40948) | Update dependencies | From 05fe3f1ad2c82e03d926a0f3353891566e86f897 Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:29:05 +0200 Subject: [PATCH 231/260] =?UTF-8?q?=F0=9F=90=99=20source-smartengage:=20ru?= =?UTF-8?q?n=20up-to-date=20pipeline=20[2024-07-13]=20(#41703)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-smartengage/metadata.yaml | 2 +- .../connectors/source-smartengage/poetry.lock | 6 +++--- .../connectors/source-smartengage/pyproject.toml | 2 +- docs/integrations/sources/smartengage.md | 1 + 4 files changed, 6 insertions(+), 5 deletions(-) diff --git a/airbyte-integrations/connectors/source-smartengage/metadata.yaml b/airbyte-integrations/connectors/source-smartengage/metadata.yaml index 7d22a4f03412..58fc1dd110e5 100644 --- a/airbyte-integrations/connectors/source-smartengage/metadata.yaml +++ b/airbyte-integrations/connectors/source-smartengage/metadata.yaml @@ -7,7 +7,7 @@ data: connectorSubtype: api connectorType: source definitionId: 21cc4a17-a011-4485-8a3e-e2341a91ab9f - dockerImageTag: 0.1.10 + dockerImageTag: 0.1.11 dockerRepository: airbyte/source-smartengage documentationUrl: https://docs.airbyte.com/integrations/sources/smartengage githubIssueLabel: source-smartengage diff --git a/airbyte-integrations/connectors/source-smartengage/poetry.lock b/airbyte-integrations/connectors/source-smartengage/poetry.lock index 6f83e5bed3a6..c0f7f643d050 100644 --- a/airbyte-integrations/connectors/source-smartengage/poetry.lock +++ b/airbyte-integrations/connectors/source-smartengage/poetry.lock @@ -288,13 +288,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] diff --git a/airbyte-integrations/connectors/source-smartengage/pyproject.toml b/airbyte-integrations/connectors/source-smartengage/pyproject.toml index 461bc37a60d8..2215bba7b944 100644 --- a/airbyte-integrations/connectors/source-smartengage/pyproject.toml +++ b/airbyte-integrations/connectors/source-smartengage/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.1.10" +version = "0.1.11" name = "source-smartengage" description = "Source implementation for Smartengage." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/smartengage.md b/docs/integrations/sources/smartengage.md index f141a906cc7d..3cd61f44f44f 100644 --- a/docs/integrations/sources/smartengage.md +++ b/docs/integrations/sources/smartengage.md @@ -31,6 +31,7 @@ This source can sync data from the [SmartEngage API](https://smartengage.com/doc | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :------------------------------------------------------------------------------ | +| 0.1.11 | 2024-07-13 | [41703](https://github.com/airbytehq/airbyte/pull/41703) | Update dependencies | | 0.1.10 | 2024-07-10 | [41411](https://github.com/airbytehq/airbyte/pull/41411) | Update dependencies | | 0.1.9 | 2024-07-09 | [41252](https://github.com/airbytehq/airbyte/pull/41252) | Update dependencies | | 0.1.8 | 2024-07-06 | [40950](https://github.com/airbytehq/airbyte/pull/40950) | Update dependencies | From f2c06b9813d3724513fc4c49f6d94f077870c219 Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:29:08 +0200 Subject: [PATCH 232/260] =?UTF-8?q?=F0=9F=90=99=20source-activecampaign:?= =?UTF-8?q?=20run=20up-to-date=20pipeline=20[2024-07-13]=20(#41702)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-activecampaign/metadata.yaml | 2 +- .../connectors/source-activecampaign/poetry.lock | 12 ++++++------ .../connectors/source-activecampaign/pyproject.toml | 2 +- docs/integrations/sources/activecampaign.md | 1 + 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/airbyte-integrations/connectors/source-activecampaign/metadata.yaml b/airbyte-integrations/connectors/source-activecampaign/metadata.yaml index 4e8eda440b05..ee1a97785fd7 100644 --- a/airbyte-integrations/connectors/source-activecampaign/metadata.yaml +++ b/airbyte-integrations/connectors/source-activecampaign/metadata.yaml @@ -14,7 +14,7 @@ data: connectorSubtype: api connectorType: source definitionId: 9f32dab3-77cb-45a1-9d33-347aa5fbe363 - dockerImageTag: 0.1.8 + dockerImageTag: 0.1.9 dockerRepository: airbyte/source-activecampaign documentationUrl: https://docs.airbyte.com/integrations/sources/activecampaign githubIssueLabel: source-activecampaign diff --git a/airbyte-integrations/connectors/source-activecampaign/poetry.lock b/airbyte-integrations/connectors/source-activecampaign/poetry.lock index 4b03cc351726..13836360394d 100644 --- a/airbyte-integrations/connectors/source-activecampaign/poetry.lock +++ b/airbyte-integrations/connectors/source-activecampaign/poetry.lock @@ -410,13 +410,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] @@ -566,13 +566,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.84" +version = "0.1.85" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.84-py3-none-any.whl", hash = "sha256:01f3c6390dba26c583bac8dd0e551ce3d0509c7f55cad714db0b5c8d36e4c7ff"}, - {file = "langsmith-0.1.84.tar.gz", hash = "sha256:5220c0439838b9a5bd320fd3686be505c5083dcee22d2452006c23891153bea1"}, + {file = "langsmith-0.1.85-py3-none-any.whl", hash = "sha256:c1f94384f10cea96f7b4d33fd3db7ec180c03c7468877d50846f881d2017ff94"}, + {file = "langsmith-0.1.85.tar.gz", hash = "sha256:acff31f9e53efa48586cf8e32f65625a335c74d7c4fa306d1655ac18452296f6"}, ] [package.dependencies] diff --git a/airbyte-integrations/connectors/source-activecampaign/pyproject.toml b/airbyte-integrations/connectors/source-activecampaign/pyproject.toml index b35ff6679e54..3b509468f749 100644 --- a/airbyte-integrations/connectors/source-activecampaign/pyproject.toml +++ b/airbyte-integrations/connectors/source-activecampaign/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.1.8" +version = "0.1.9" name = "source-activecampaign" description = "Source implementation for Activecampaign." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/activecampaign.md b/docs/integrations/sources/activecampaign.md index 63c6dcff23ca..dfe10da38d8e 100644 --- a/docs/integrations/sources/activecampaign.md +++ b/docs/integrations/sources/activecampaign.md @@ -38,6 +38,7 @@ The connector has a rate limit of 5 requests per second per account. | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :------------- | +| 0.1.9 | 2024-07-13 | [41702](https://github.com/airbytehq/airbyte/pull/41702) | Update dependencies | | 0.1.8 | 2024-07-10 | [41577](https://github.com/airbytehq/airbyte/pull/41577) | Update dependencies | | 0.1.7 | 2024-07-10 | [41326](https://github.com/airbytehq/airbyte/pull/41326) | Update dependencies | | 0.1.6 | 2024-07-06 | [40873](https://github.com/airbytehq/airbyte/pull/40873) | Update dependencies | From 6e143d7703d3be66d70e0cbc4196b7cc673ce24d Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:29:11 +0200 Subject: [PATCH 233/260] =?UTF-8?q?=F0=9F=90=99=20source-surveymonkey:=20r?= =?UTF-8?q?un=20up-to-date=20pipeline=20[2024-07-13]=20(#41701)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-surveymonkey/metadata.yaml | 2 +- .../connectors/source-surveymonkey/poetry.lock | 12 ++++++------ .../connectors/source-surveymonkey/pyproject.toml | 2 +- docs/integrations/sources/surveymonkey.md | 1 + 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/airbyte-integrations/connectors/source-surveymonkey/metadata.yaml b/airbyte-integrations/connectors/source-surveymonkey/metadata.yaml index bcb3aae2708e..7524c832a0ee 100644 --- a/airbyte-integrations/connectors/source-surveymonkey/metadata.yaml +++ b/airbyte-integrations/connectors/source-surveymonkey/metadata.yaml @@ -10,7 +10,7 @@ data: connectorSubtype: api connectorType: source definitionId: badc5925-0485-42be-8caa-b34096cb71b5 - dockerImageTag: 0.3.11 + dockerImageTag: 0.3.12 dockerRepository: airbyte/source-surveymonkey documentationUrl: https://docs.airbyte.com/integrations/sources/surveymonkey githubIssueLabel: source-surveymonkey diff --git a/airbyte-integrations/connectors/source-surveymonkey/poetry.lock b/airbyte-integrations/connectors/source-surveymonkey/poetry.lock index 287eae65ebe1..0e5f77c0f9ec 100644 --- a/airbyte-integrations/connectors/source-surveymonkey/poetry.lock +++ b/airbyte-integrations/connectors/source-surveymonkey/poetry.lock @@ -400,13 +400,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] @@ -556,13 +556,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.84" +version = "0.1.85" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.84-py3-none-any.whl", hash = "sha256:01f3c6390dba26c583bac8dd0e551ce3d0509c7f55cad714db0b5c8d36e4c7ff"}, - {file = "langsmith-0.1.84.tar.gz", hash = "sha256:5220c0439838b9a5bd320fd3686be505c5083dcee22d2452006c23891153bea1"}, + {file = "langsmith-0.1.85-py3-none-any.whl", hash = "sha256:c1f94384f10cea96f7b4d33fd3db7ec180c03c7468877d50846f881d2017ff94"}, + {file = "langsmith-0.1.85.tar.gz", hash = "sha256:acff31f9e53efa48586cf8e32f65625a335c74d7c4fa306d1655ac18452296f6"}, ] [package.dependencies] diff --git a/airbyte-integrations/connectors/source-surveymonkey/pyproject.toml b/airbyte-integrations/connectors/source-surveymonkey/pyproject.toml index 07b023260e8c..fe72f3e53fef 100644 --- a/airbyte-integrations/connectors/source-surveymonkey/pyproject.toml +++ b/airbyte-integrations/connectors/source-surveymonkey/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.3.11" +version = "0.3.12" name = "source-surveymonkey" description = "Source implementation for Surveymonkey." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/surveymonkey.md b/docs/integrations/sources/surveymonkey.md index c4ceca5260b0..5ddadc5351d0 100644 --- a/docs/integrations/sources/surveymonkey.md +++ b/docs/integrations/sources/surveymonkey.md @@ -75,6 +75,7 @@ To cover more data from this source we use caching. | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :------------------------------------------------------------------------------- | +| 0.3.12 | 2024-07-13 | [41701](https://github.com/airbytehq/airbyte/pull/41701) | Update dependencies | | 0.3.11 | 2024-07-10 | [41352](https://github.com/airbytehq/airbyte/pull/41352) | Update dependencies | | 0.3.10 | 2024-07-09 | [41258](https://github.com/airbytehq/airbyte/pull/41258) | Update dependencies | | 0.3.9 | 2024-07-06 | [40958](https://github.com/airbytehq/airbyte/pull/40958) | Update dependencies | From 6f3e7fc8e4f358fdf9e52ac5764043ec5424fecf Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:29:14 +0200 Subject: [PATCH 234/260] =?UTF-8?q?=F0=9F=90=99=20source-launchdarkly:=20r?= =?UTF-8?q?un=20up-to-date=20pipeline=20[2024-07-13]=20(#41700)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-launchdarkly/metadata.yaml | 2 +- .../connectors/source-launchdarkly/poetry.lock | 12 ++++++------ .../connectors/source-launchdarkly/pyproject.toml | 2 +- docs/integrations/sources/launchdarkly.md | 1 + 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/airbyte-integrations/connectors/source-launchdarkly/metadata.yaml b/airbyte-integrations/connectors/source-launchdarkly/metadata.yaml index 3d0d5f97ffc6..362844517fbb 100644 --- a/airbyte-integrations/connectors/source-launchdarkly/metadata.yaml +++ b/airbyte-integrations/connectors/source-launchdarkly/metadata.yaml @@ -10,7 +10,7 @@ data: connectorSubtype: api connectorType: source definitionId: f96bb511-5e3c-48fc-b408-547953cd81a4 - dockerImageTag: 0.1.7 + dockerImageTag: 0.1.8 dockerRepository: airbyte/source-launchdarkly githubIssueLabel: source-launchdarkly icon: launchdarkly.svg diff --git a/airbyte-integrations/connectors/source-launchdarkly/poetry.lock b/airbyte-integrations/connectors/source-launchdarkly/poetry.lock index cb1a23ecd43b..e0918c3f13c6 100644 --- a/airbyte-integrations/connectors/source-launchdarkly/poetry.lock +++ b/airbyte-integrations/connectors/source-launchdarkly/poetry.lock @@ -400,13 +400,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] @@ -556,13 +556,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.84" +version = "0.1.85" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.84-py3-none-any.whl", hash = "sha256:01f3c6390dba26c583bac8dd0e551ce3d0509c7f55cad714db0b5c8d36e4c7ff"}, - {file = "langsmith-0.1.84.tar.gz", hash = "sha256:5220c0439838b9a5bd320fd3686be505c5083dcee22d2452006c23891153bea1"}, + {file = "langsmith-0.1.85-py3-none-any.whl", hash = "sha256:c1f94384f10cea96f7b4d33fd3db7ec180c03c7468877d50846f881d2017ff94"}, + {file = "langsmith-0.1.85.tar.gz", hash = "sha256:acff31f9e53efa48586cf8e32f65625a335c74d7c4fa306d1655ac18452296f6"}, ] [package.dependencies] diff --git a/airbyte-integrations/connectors/source-launchdarkly/pyproject.toml b/airbyte-integrations/connectors/source-launchdarkly/pyproject.toml index cf8e075a1800..30dca37d5002 100644 --- a/airbyte-integrations/connectors/source-launchdarkly/pyproject.toml +++ b/airbyte-integrations/connectors/source-launchdarkly/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.1.7" +version = "0.1.8" name = "source-launchdarkly" description = "Source implementation for launchdarkly." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/launchdarkly.md b/docs/integrations/sources/launchdarkly.md index 12de9640cb3a..74c23a1f547f 100644 --- a/docs/integrations/sources/launchdarkly.md +++ b/docs/integrations/sources/launchdarkly.md @@ -37,6 +37,7 @@ Launchdarkly APIs are under rate limits for the number of API calls allowed per | Version | Date | Pull Request | Subject | | :------ | :--------- | :-------------------------------------------------------- | :--------------------------------------------- | +| 0.1.8 | 2024-07-13 | [41700](https://github.com/airbytehq/airbyte/pull/41700) | Update dependencies | | 0.1.7 | 2024-07-10 | [41425](https://github.com/airbytehq/airbyte/pull/41425) | Update dependencies | | 0.1.6 | 2024-07-09 | [41284](https://github.com/airbytehq/airbyte/pull/41284) | Update dependencies | | 0.1.5 | 2024-07-06 | [40891](https://github.com/airbytehq/airbyte/pull/40891) | Update dependencies | From 86cf67f05c41d0e30db52ff46128acb49870a0e8 Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:29:17 +0200 Subject: [PATCH 235/260] =?UTF-8?q?=F0=9F=90=99=20source-salesloft:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-07-13]=20(#41699)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-salesloft/metadata.yaml | 2 +- .../connectors/source-salesloft/poetry.lock | 12 ++++++------ .../connectors/source-salesloft/pyproject.toml | 2 +- docs/integrations/sources/salesloft.md | 1 + 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/airbyte-integrations/connectors/source-salesloft/metadata.yaml b/airbyte-integrations/connectors/source-salesloft/metadata.yaml index 77d1823fe796..91e067d7d884 100644 --- a/airbyte-integrations/connectors/source-salesloft/metadata.yaml +++ b/airbyte-integrations/connectors/source-salesloft/metadata.yaml @@ -22,7 +22,7 @@ data: connectorSubtype: api connectorType: source definitionId: 41991d12-d4b5-439e-afd0-260a31d4c53f - dockerImageTag: 1.2.8 + dockerImageTag: 1.2.9 dockerRepository: airbyte/source-salesloft githubIssueLabel: source-salesloft icon: icon.svg diff --git a/airbyte-integrations/connectors/source-salesloft/poetry.lock b/airbyte-integrations/connectors/source-salesloft/poetry.lock index 9811c2cd81a5..e73b15538087 100644 --- a/airbyte-integrations/connectors/source-salesloft/poetry.lock +++ b/airbyte-integrations/connectors/source-salesloft/poetry.lock @@ -409,13 +409,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] @@ -565,13 +565,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.84" +version = "0.1.85" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.84-py3-none-any.whl", hash = "sha256:01f3c6390dba26c583bac8dd0e551ce3d0509c7f55cad714db0b5c8d36e4c7ff"}, - {file = "langsmith-0.1.84.tar.gz", hash = "sha256:5220c0439838b9a5bd320fd3686be505c5083dcee22d2452006c23891153bea1"}, + {file = "langsmith-0.1.85-py3-none-any.whl", hash = "sha256:c1f94384f10cea96f7b4d33fd3db7ec180c03c7468877d50846f881d2017ff94"}, + {file = "langsmith-0.1.85.tar.gz", hash = "sha256:acff31f9e53efa48586cf8e32f65625a335c74d7c4fa306d1655ac18452296f6"}, ] [package.dependencies] diff --git a/airbyte-integrations/connectors/source-salesloft/pyproject.toml b/airbyte-integrations/connectors/source-salesloft/pyproject.toml index 0a2edd3790b5..24f21def3ac2 100644 --- a/airbyte-integrations/connectors/source-salesloft/pyproject.toml +++ b/airbyte-integrations/connectors/source-salesloft/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "1.2.8" +version = "1.2.9" name = "source-salesloft" description = "Source implementation for Salesloft." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/salesloft.md b/docs/integrations/sources/salesloft.md index c51011d2a7e7..9db8357451e5 100644 --- a/docs/integrations/sources/salesloft.md +++ b/docs/integrations/sources/salesloft.md @@ -105,6 +105,7 @@ Salesloft has the [rate limits](hhttps://developers.salesloft.com/api.html#!/Top | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :---------------------------------------------------------------- | +| 1.2.9 | 2024-07-13 | [41699](https://github.com/airbytehq/airbyte/pull/41699) | Update dependencies | | 1.2.8 | 2024-07-10 | [41532](https://github.com/airbytehq/airbyte/pull/41532) | Update dependencies | | 1.2.7 | 2024-07-10 | [41327](https://github.com/airbytehq/airbyte/pull/41327) | Update dependencies | | 1.2.6 | 2024-07-06 | [40896](https://github.com/airbytehq/airbyte/pull/40896) | Update dependencies | From 5bd42e674bb2325d38451fa40b6e7650fb814fd1 Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:29:19 +0200 Subject: [PATCH 236/260] =?UTF-8?q?=F0=9F=90=99=20destination-astra:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-07-13]=20(#41698)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/destination-astra/metadata.yaml | 2 +- .../connectors/destination-astra/poetry.lock | 12 ++++++------ .../connectors/destination-astra/pyproject.toml | 2 +- docs/integrations/destinations/astra.md | 1 + 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/airbyte-integrations/connectors/destination-astra/metadata.yaml b/airbyte-integrations/connectors/destination-astra/metadata.yaml index ac73a2c040af..03589f6b6559 100644 --- a/airbyte-integrations/connectors/destination-astra/metadata.yaml +++ b/airbyte-integrations/connectors/destination-astra/metadata.yaml @@ -15,7 +15,7 @@ data: connectorSubtype: database connectorType: destination definitionId: 042ce96f-1158-4662-9543-e2ff015be97a - dockerImageTag: 0.1.12 + dockerImageTag: 0.1.13 dockerRepository: airbyte/destination-astra githubIssueLabel: destination-astra icon: astra.svg diff --git a/airbyte-integrations/connectors/destination-astra/poetry.lock b/airbyte-integrations/connectors/destination-astra/poetry.lock index a8aa6ab5e14c..7f375098e269 100644 --- a/airbyte-integrations/connectors/destination-astra/poetry.lock +++ b/airbyte-integrations/connectors/destination-astra/poetry.lock @@ -527,13 +527,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] @@ -1190,13 +1190,13 @@ extended-testing = ["beautifulsoup4 (>=4.12.3,<5.0.0)", "lxml (>=4.9.3,<6.0)"] [[package]] name = "langsmith" -version = "0.1.84" +version = "0.1.85" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.84-py3-none-any.whl", hash = "sha256:01f3c6390dba26c583bac8dd0e551ce3d0509c7f55cad714db0b5c8d36e4c7ff"}, - {file = "langsmith-0.1.84.tar.gz", hash = "sha256:5220c0439838b9a5bd320fd3686be505c5083dcee22d2452006c23891153bea1"}, + {file = "langsmith-0.1.85-py3-none-any.whl", hash = "sha256:c1f94384f10cea96f7b4d33fd3db7ec180c03c7468877d50846f881d2017ff94"}, + {file = "langsmith-0.1.85.tar.gz", hash = "sha256:acff31f9e53efa48586cf8e32f65625a335c74d7c4fa306d1655ac18452296f6"}, ] [package.dependencies] diff --git a/airbyte-integrations/connectors/destination-astra/pyproject.toml b/airbyte-integrations/connectors/destination-astra/pyproject.toml index f5fd2692179d..91d0858e1e4b 100644 --- a/airbyte-integrations/connectors/destination-astra/pyproject.toml +++ b/airbyte-integrations/connectors/destination-astra/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name = "airbyte-destination-astra" -version = "0.1.12" +version = "0.1.13" description = "Airbyte destination implementation for Astra DB." authors = ["Airbyte "] license = "MIT" diff --git a/docs/integrations/destinations/astra.md b/docs/integrations/destinations/astra.md index 9dee7ceb4c20..eb55a6598da5 100644 --- a/docs/integrations/destinations/astra.md +++ b/docs/integrations/destinations/astra.md @@ -43,6 +43,7 @@ This page contains the setup guide and reference information for the destination | Version | Date | Pull Request | Subject | | :------ | :--------- | :----------- | :-------------------------------------------------------- | +| 0.1.13 | 2024-07-13 | [41698](https://github.com/airbytehq/airbyte/pull/41698) | Update dependencies | | 0.1.12 | 2024-07-10 | [41451](https://github.com/airbytehq/airbyte/pull/41451) | Update dependencies | | 0.1.11 | 2024-07-09 | [41095](https://github.com/airbytehq/airbyte/pull/41095) | Update dependencies | | 0.1.10 | 2024-07-06 | [40779](https://github.com/airbytehq/airbyte/pull/40779) | Update dependencies | From 95889ebf5a99a9b3d405bb73f3ef79a2d4810a15 Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:29:22 +0200 Subject: [PATCH 237/260] =?UTF-8?q?=F0=9F=90=99=20source-omnisend:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-07-13]=20(#41697)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-omnisend/metadata.yaml | 2 +- .../connectors/source-omnisend/poetry.lock | 12 ++++++------ .../connectors/source-omnisend/pyproject.toml | 2 +- docs/integrations/sources/omnisend.md | 1 + 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/airbyte-integrations/connectors/source-omnisend/metadata.yaml b/airbyte-integrations/connectors/source-omnisend/metadata.yaml index 9465d64131a1..8c74d1e0e89b 100644 --- a/airbyte-integrations/connectors/source-omnisend/metadata.yaml +++ b/airbyte-integrations/connectors/source-omnisend/metadata.yaml @@ -16,7 +16,7 @@ data: connectorSubtype: api connectorType: source definitionId: e7f0c5e2-4815-48c4-90cf-f47124209835 - dockerImageTag: 0.1.7 + dockerImageTag: 0.1.8 dockerRepository: airbyte/source-omnisend githubIssueLabel: source-omnisend icon: omnisend.svg diff --git a/airbyte-integrations/connectors/source-omnisend/poetry.lock b/airbyte-integrations/connectors/source-omnisend/poetry.lock index bbd8b4148615..a5ccc85cf211 100644 --- a/airbyte-integrations/connectors/source-omnisend/poetry.lock +++ b/airbyte-integrations/connectors/source-omnisend/poetry.lock @@ -410,13 +410,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] @@ -566,13 +566,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.84" +version = "0.1.85" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.84-py3-none-any.whl", hash = "sha256:01f3c6390dba26c583bac8dd0e551ce3d0509c7f55cad714db0b5c8d36e4c7ff"}, - {file = "langsmith-0.1.84.tar.gz", hash = "sha256:5220c0439838b9a5bd320fd3686be505c5083dcee22d2452006c23891153bea1"}, + {file = "langsmith-0.1.85-py3-none-any.whl", hash = "sha256:c1f94384f10cea96f7b4d33fd3db7ec180c03c7468877d50846f881d2017ff94"}, + {file = "langsmith-0.1.85.tar.gz", hash = "sha256:acff31f9e53efa48586cf8e32f65625a335c74d7c4fa306d1655ac18452296f6"}, ] [package.dependencies] diff --git a/airbyte-integrations/connectors/source-omnisend/pyproject.toml b/airbyte-integrations/connectors/source-omnisend/pyproject.toml index 80bb0af8dfd6..c5f71eb1e5c1 100644 --- a/airbyte-integrations/connectors/source-omnisend/pyproject.toml +++ b/airbyte-integrations/connectors/source-omnisend/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.1.7" +version = "0.1.8" name = "source-omnisend" description = "Source implementation for Omnisend." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/omnisend.md b/docs/integrations/sources/omnisend.md index 3f94d9c2b512..afbbc448e053 100644 --- a/docs/integrations/sources/omnisend.md +++ b/docs/integrations/sources/omnisend.md @@ -36,6 +36,7 @@ The connector has a rate limit of 400 requests per 1 minute. | Version | Date | Pull Request | Subject | |:--------|:-----------| :------------------------------------------------------- | :------------- | +| 0.1.8 | 2024-07-13 | [41697](https://github.com/airbytehq/airbyte/pull/41697) | Update dependencies | | 0.1.7 | 2024-07-10 | [41454](https://github.com/airbytehq/airbyte/pull/41454) | Update dependencies | | 0.1.6 | 2024-07-09 | [41319](https://github.com/airbytehq/airbyte/pull/41319) | Update dependencies | | 0.1.5 | 2024-07-06 | [40969](https://github.com/airbytehq/airbyte/pull/40969) | Update dependencies | From c0d5a19de64577dc8bfc16fd06a88c852f82ae44 Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:29:25 +0200 Subject: [PATCH 238/260] =?UTF-8?q?=F0=9F=90=99=20source-mailersend:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-07-13]=20(#41696)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-mailersend/metadata.yaml | 2 +- .../connectors/source-mailersend/poetry.lock | 12 ++++++------ .../connectors/source-mailersend/pyproject.toml | 2 +- docs/integrations/sources/mailersend.md | 1 + 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/airbyte-integrations/connectors/source-mailersend/metadata.yaml b/airbyte-integrations/connectors/source-mailersend/metadata.yaml index f518b190eed9..98468505e8d2 100644 --- a/airbyte-integrations/connectors/source-mailersend/metadata.yaml +++ b/airbyte-integrations/connectors/source-mailersend/metadata.yaml @@ -2,7 +2,7 @@ data: connectorSubtype: api connectorType: source definitionId: 2707d529-3c04-46eb-9c7e-40d4038df6f7 - dockerImageTag: 0.1.7 + dockerImageTag: 0.1.8 dockerRepository: airbyte/source-mailersend githubIssueLabel: source-mailersend icon: mailersend.svg diff --git a/airbyte-integrations/connectors/source-mailersend/poetry.lock b/airbyte-integrations/connectors/source-mailersend/poetry.lock index bbd8b4148615..a5ccc85cf211 100644 --- a/airbyte-integrations/connectors/source-mailersend/poetry.lock +++ b/airbyte-integrations/connectors/source-mailersend/poetry.lock @@ -410,13 +410,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] @@ -566,13 +566,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.84" +version = "0.1.85" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.84-py3-none-any.whl", hash = "sha256:01f3c6390dba26c583bac8dd0e551ce3d0509c7f55cad714db0b5c8d36e4c7ff"}, - {file = "langsmith-0.1.84.tar.gz", hash = "sha256:5220c0439838b9a5bd320fd3686be505c5083dcee22d2452006c23891153bea1"}, + {file = "langsmith-0.1.85-py3-none-any.whl", hash = "sha256:c1f94384f10cea96f7b4d33fd3db7ec180c03c7468877d50846f881d2017ff94"}, + {file = "langsmith-0.1.85.tar.gz", hash = "sha256:acff31f9e53efa48586cf8e32f65625a335c74d7c4fa306d1655ac18452296f6"}, ] [package.dependencies] diff --git a/airbyte-integrations/connectors/source-mailersend/pyproject.toml b/airbyte-integrations/connectors/source-mailersend/pyproject.toml index db723c01e057..7214cf085ccd 100644 --- a/airbyte-integrations/connectors/source-mailersend/pyproject.toml +++ b/airbyte-integrations/connectors/source-mailersend/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.1.7" +version = "0.1.8" name = "source-mailersend" description = "Source implementation for Mailersend." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/mailersend.md b/docs/integrations/sources/mailersend.md index 3348ca7bf1f1..3096c7929312 100644 --- a/docs/integrations/sources/mailersend.md +++ b/docs/integrations/sources/mailersend.md @@ -28,6 +28,7 @@ MailerSend has a default [rate limit](https://developers.mailersend.com/general. | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :--------------------------------------- | +| 0.1.8 | 2024-07-13 | [41696](https://github.com/airbytehq/airbyte/pull/41696) | Update dependencies | | 0.1.7 | 2024-07-10 | [41557](https://github.com/airbytehq/airbyte/pull/41557) | Update dependencies | | 0.1.6 | 2024-07-09 | [41322](https://github.com/airbytehq/airbyte/pull/41322) | Update dependencies | | 0.1.5 | 2024-07-06 | [40856](https://github.com/airbytehq/airbyte/pull/40856) | Update dependencies | From a1e617c24d6075bb83fb5dfb2be9602afe0a2bac Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:29:28 +0200 Subject: [PATCH 239/260] =?UTF-8?q?=F0=9F=90=99=20source-tiktok-marketing:?= =?UTF-8?q?=20run=20up-to-date=20pipeline=20[2024-07-13]=20(#41695)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-tiktok-marketing/metadata.yaml | 2 +- .../connectors/source-tiktok-marketing/poetry.lock | 12 ++++++------ .../source-tiktok-marketing/pyproject.toml | 2 +- docs/integrations/sources/tiktok-marketing.md | 1 + 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/airbyte-integrations/connectors/source-tiktok-marketing/metadata.yaml b/airbyte-integrations/connectors/source-tiktok-marketing/metadata.yaml index b8079dca91e9..fc70ff75d4ab 100644 --- a/airbyte-integrations/connectors/source-tiktok-marketing/metadata.yaml +++ b/airbyte-integrations/connectors/source-tiktok-marketing/metadata.yaml @@ -11,7 +11,7 @@ data: connectorSubtype: api connectorType: source definitionId: 4bfac00d-ce15-44ff-95b9-9e3c3e8fbd35 - dockerImageTag: 4.0.3 + dockerImageTag: 4.0.4 dockerRepository: airbyte/source-tiktok-marketing documentationUrl: https://docs.airbyte.com/integrations/sources/tiktok-marketing githubIssueLabel: source-tiktok-marketing diff --git a/airbyte-integrations/connectors/source-tiktok-marketing/poetry.lock b/airbyte-integrations/connectors/source-tiktok-marketing/poetry.lock index fea80d3a7bb9..b21ba2c6d1e7 100644 --- a/airbyte-integrations/connectors/source-tiktok-marketing/poetry.lock +++ b/airbyte-integrations/connectors/source-tiktok-marketing/poetry.lock @@ -410,13 +410,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] @@ -566,13 +566,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.84" +version = "0.1.85" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.84-py3-none-any.whl", hash = "sha256:01f3c6390dba26c583bac8dd0e551ce3d0509c7f55cad714db0b5c8d36e4c7ff"}, - {file = "langsmith-0.1.84.tar.gz", hash = "sha256:5220c0439838b9a5bd320fd3686be505c5083dcee22d2452006c23891153bea1"}, + {file = "langsmith-0.1.85-py3-none-any.whl", hash = "sha256:c1f94384f10cea96f7b4d33fd3db7ec180c03c7468877d50846f881d2017ff94"}, + {file = "langsmith-0.1.85.tar.gz", hash = "sha256:acff31f9e53efa48586cf8e32f65625a335c74d7c4fa306d1655ac18452296f6"}, ] [package.dependencies] diff --git a/airbyte-integrations/connectors/source-tiktok-marketing/pyproject.toml b/airbyte-integrations/connectors/source-tiktok-marketing/pyproject.toml index afcd96295bcb..2e438d7d9775 100644 --- a/airbyte-integrations/connectors/source-tiktok-marketing/pyproject.toml +++ b/airbyte-integrations/connectors/source-tiktok-marketing/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "4.0.3" +version = "4.0.4" name = "source-tiktok-marketing" description = "Source implementation for Tiktok Marketing." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/tiktok-marketing.md b/docs/integrations/sources/tiktok-marketing.md index 24ba528ce000..a6df531f4baa 100644 --- a/docs/integrations/sources/tiktok-marketing.md +++ b/docs/integrations/sources/tiktok-marketing.md @@ -126,6 +126,7 @@ The connector is restricted by [requests limitation](https://business-api.tiktok | Version | Date | Pull Request | Subject | |:--------|:-----------|:---------------------------------------------------------|:------------------------------------------------------------------------------------------------------------| +| 4.0.4 | 2024-07-13 | [41695](https://github.com/airbytehq/airbyte/pull/41695) | Update dependencies | | 4.0.3 | 2024-07-10 | [41370](https://github.com/airbytehq/airbyte/pull/41370) | Update dependencies | | 4.0.2 | 2024-07-09 | [41153](https://github.com/airbytehq/airbyte/pull/41153) | Update dependencies | | 4.0.1 | 2024-07-06 | [40915](https://github.com/airbytehq/airbyte/pull/40915) | Update dependencies | From b08785cbb3cc5773a86667f66604919f80af813c Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:29:30 +0200 Subject: [PATCH 240/260] =?UTF-8?q?=F0=9F=90=99=20source-paystack:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-07-13]=20(#41694)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-paystack/metadata.yaml | 2 +- .../connectors/source-paystack/poetry.lock | 12 ++++++------ .../connectors/source-paystack/pyproject.toml | 2 +- docs/integrations/sources/paystack.md | 1 + 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/airbyte-integrations/connectors/source-paystack/metadata.yaml b/airbyte-integrations/connectors/source-paystack/metadata.yaml index 8b27c3355131..ddc91209eead 100644 --- a/airbyte-integrations/connectors/source-paystack/metadata.yaml +++ b/airbyte-integrations/connectors/source-paystack/metadata.yaml @@ -5,7 +5,7 @@ data: connectorSubtype: api connectorType: source definitionId: 193bdcb8-1dd9-48d1-aade-91cadfd74f9b - dockerImageTag: 1.0.4 + dockerImageTag: 1.0.5 dockerRepository: airbyte/source-paystack githubIssueLabel: source-paystack icon: paystack.svg diff --git a/airbyte-integrations/connectors/source-paystack/poetry.lock b/airbyte-integrations/connectors/source-paystack/poetry.lock index 89b2d5c4065d..4f022c500f8d 100644 --- a/airbyte-integrations/connectors/source-paystack/poetry.lock +++ b/airbyte-integrations/connectors/source-paystack/poetry.lock @@ -400,13 +400,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] @@ -556,13 +556,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.84" +version = "0.1.85" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.84-py3-none-any.whl", hash = "sha256:01f3c6390dba26c583bac8dd0e551ce3d0509c7f55cad714db0b5c8d36e4c7ff"}, - {file = "langsmith-0.1.84.tar.gz", hash = "sha256:5220c0439838b9a5bd320fd3686be505c5083dcee22d2452006c23891153bea1"}, + {file = "langsmith-0.1.85-py3-none-any.whl", hash = "sha256:c1f94384f10cea96f7b4d33fd3db7ec180c03c7468877d50846f881d2017ff94"}, + {file = "langsmith-0.1.85.tar.gz", hash = "sha256:acff31f9e53efa48586cf8e32f65625a335c74d7c4fa306d1655ac18452296f6"}, ] [package.dependencies] diff --git a/airbyte-integrations/connectors/source-paystack/pyproject.toml b/airbyte-integrations/connectors/source-paystack/pyproject.toml index 55af364ceb12..d914106f6cb7 100644 --- a/airbyte-integrations/connectors/source-paystack/pyproject.toml +++ b/airbyte-integrations/connectors/source-paystack/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "1.0.4" +version = "1.0.5" name = "source-paystack" description = "Source implementation for paystack." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/paystack.md b/docs/integrations/sources/paystack.md index bcffa616cf18..03b649913e8c 100644 --- a/docs/integrations/sources/paystack.md +++ b/docs/integrations/sources/paystack.md @@ -68,6 +68,7 @@ The Paystack connector should not run into Paystack API limitations under normal | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :------------------------------------------------------------- | +| 1.0.5 | 2024-07-13 | [41694](https://github.com/airbytehq/airbyte/pull/41694) | Update dependencies | | 1.0.4 | 2024-07-10 | [41424](https://github.com/airbytehq/airbyte/pull/41424) | Update dependencies | | 1.0.3 | 2024-07-09 | [41214](https://github.com/airbytehq/airbyte/pull/41214) | Update dependencies | | 1.0.2 | 2024-07-06 | [40783](https://github.com/airbytehq/airbyte/pull/40783) | Update dependencies | From f7edbddc4866961216d0a0a26e2eeb9a801ebcf9 Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:29:33 +0200 Subject: [PATCH 241/260] =?UTF-8?q?=F0=9F=90=99=20source-clockify:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-07-13]=20(#41693)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-clockify/metadata.yaml | 2 +- airbyte-integrations/connectors/source-clockify/poetry.lock | 6 +++--- .../connectors/source-clockify/pyproject.toml | 2 +- docs/integrations/sources/clockify.md | 1 + 4 files changed, 6 insertions(+), 5 deletions(-) diff --git a/airbyte-integrations/connectors/source-clockify/metadata.yaml b/airbyte-integrations/connectors/source-clockify/metadata.yaml index 4578a7bbc74c..1136b62606cc 100644 --- a/airbyte-integrations/connectors/source-clockify/metadata.yaml +++ b/airbyte-integrations/connectors/source-clockify/metadata.yaml @@ -10,7 +10,7 @@ data: connectorSubtype: api connectorType: source definitionId: e71aae8a-5143-11ed-bdc3-0242ac120002 - dockerImageTag: 0.3.10 + dockerImageTag: 0.3.11 dockerRepository: airbyte/source-clockify documentationUrl: https://docs.airbyte.com/integrations/sources/clockify githubIssueLabel: source-clockify diff --git a/airbyte-integrations/connectors/source-clockify/poetry.lock b/airbyte-integrations/connectors/source-clockify/poetry.lock index cce71c3b0e79..a1ccc2d0271d 100644 --- a/airbyte-integrations/connectors/source-clockify/poetry.lock +++ b/airbyte-integrations/connectors/source-clockify/poetry.lock @@ -288,13 +288,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] diff --git a/airbyte-integrations/connectors/source-clockify/pyproject.toml b/airbyte-integrations/connectors/source-clockify/pyproject.toml index 02d3c44be69e..8348490fda70 100644 --- a/airbyte-integrations/connectors/source-clockify/pyproject.toml +++ b/airbyte-integrations/connectors/source-clockify/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.3.10" +version = "0.3.11" name = "source-clockify" description = "Source implementation for Clockify." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/clockify.md b/docs/integrations/sources/clockify.md index 1654653812f9..d39c7de99a1e 100644 --- a/docs/integrations/sources/clockify.md +++ b/docs/integrations/sources/clockify.md @@ -9,6 +9,7 @@ The Airbyte Source for [Clockify](https://clockify.me) | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :------------------------------------------------------------------------------ | +| 0.3.11 | 2024-07-13 | [41693](https://github.com/airbytehq/airbyte/pull/41693) | Update dependencies | | 0.3.10 | 2024-07-10 | [41480](https://github.com/airbytehq/airbyte/pull/41480) | Update dependencies | | 0.3.9 | 2024-07-10 | [41330](https://github.com/airbytehq/airbyte/pull/41330) | Update dependencies | | 0.3.8 | 2024-07-06 | [40831](https://github.com/airbytehq/airbyte/pull/40831) | Update dependencies | From 59ba519c4ad135296d0c92ec6f619cd6ab81b5d9 Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:29:36 +0200 Subject: [PATCH 242/260] =?UTF-8?q?=F0=9F=90=99=20source-jina-ai-reader:?= =?UTF-8?q?=20run=20up-to-date=20pipeline=20[2024-07-13]=20(#41692)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-jina-ai-reader/metadata.yaml | 2 +- .../connectors/source-jina-ai-reader/poetry.lock | 12 ++++++------ .../connectors/source-jina-ai-reader/pyproject.toml | 2 +- docs/integrations/sources/jina-ai-reader.md | 1 + 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/airbyte-integrations/connectors/source-jina-ai-reader/metadata.yaml b/airbyte-integrations/connectors/source-jina-ai-reader/metadata.yaml index 35de0ac0febb..2851d10a1b48 100644 --- a/airbyte-integrations/connectors/source-jina-ai-reader/metadata.yaml +++ b/airbyte-integrations/connectors/source-jina-ai-reader/metadata.yaml @@ -17,7 +17,7 @@ data: connectorSubtype: api connectorType: source definitionId: 47077a7f-7ab0-47ee-b428-650396a708c7 - dockerImageTag: 0.1.4 + dockerImageTag: 0.1.5 dockerRepository: airbyte/source-jina-ai-reader githubIssueLabel: source-jina-ai-reader icon: jina-ai-reader.svg diff --git a/airbyte-integrations/connectors/source-jina-ai-reader/poetry.lock b/airbyte-integrations/connectors/source-jina-ai-reader/poetry.lock index 89b2d5c4065d..4f022c500f8d 100644 --- a/airbyte-integrations/connectors/source-jina-ai-reader/poetry.lock +++ b/airbyte-integrations/connectors/source-jina-ai-reader/poetry.lock @@ -400,13 +400,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] @@ -556,13 +556,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.84" +version = "0.1.85" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.84-py3-none-any.whl", hash = "sha256:01f3c6390dba26c583bac8dd0e551ce3d0509c7f55cad714db0b5c8d36e4c7ff"}, - {file = "langsmith-0.1.84.tar.gz", hash = "sha256:5220c0439838b9a5bd320fd3686be505c5083dcee22d2452006c23891153bea1"}, + {file = "langsmith-0.1.85-py3-none-any.whl", hash = "sha256:c1f94384f10cea96f7b4d33fd3db7ec180c03c7468877d50846f881d2017ff94"}, + {file = "langsmith-0.1.85.tar.gz", hash = "sha256:acff31f9e53efa48586cf8e32f65625a335c74d7c4fa306d1655ac18452296f6"}, ] [package.dependencies] diff --git a/airbyte-integrations/connectors/source-jina-ai-reader/pyproject.toml b/airbyte-integrations/connectors/source-jina-ai-reader/pyproject.toml index ff7c4c1cfa01..35932a39d9e2 100644 --- a/airbyte-integrations/connectors/source-jina-ai-reader/pyproject.toml +++ b/airbyte-integrations/connectors/source-jina-ai-reader/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.1.4" +version = "0.1.5" name = "source-jina-ai-reader" description = "Source implementation for jina-ai-reader." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/jina-ai-reader.md b/docs/integrations/sources/jina-ai-reader.md index 651b99c33bca..3cd49487d50e 100644 --- a/docs/integrations/sources/jina-ai-reader.md +++ b/docs/integrations/sources/jina-ai-reader.md @@ -50,6 +50,7 @@ The website also provides a free bearer token for testing with its interface. | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :------------------------------------------------------------------- | +| 0.1.5 | 2024-07-13 | [41692](https://github.com/airbytehq/airbyte/pull/41692) | Update dependencies | | 0.1.4 | 2024-07-10 | [41594](https://github.com/airbytehq/airbyte/pull/41594) | Update dependencies | | 0.1.3 | 2024-07-09 | [41245](https://github.com/airbytehq/airbyte/pull/41245) | Update dependencies | | 0.1.2 | 2024-07-06 | [40880](https://github.com/airbytehq/airbyte/pull/40880) | Update dependencies | From bcbb43f93dd79f2c255ee0f33c7bd9efbc4996e9 Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:29:38 +0200 Subject: [PATCH 243/260] =?UTF-8?q?=F0=9F=90=99=20source-chargebee:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-07-13]=20(#41691)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-chargebee/metadata.yaml | 2 +- .../connectors/source-chargebee/poetry.lock | 6 +++--- .../connectors/source-chargebee/pyproject.toml | 2 +- docs/integrations/sources/chargebee.md | 1 + 4 files changed, 6 insertions(+), 5 deletions(-) diff --git a/airbyte-integrations/connectors/source-chargebee/metadata.yaml b/airbyte-integrations/connectors/source-chargebee/metadata.yaml index 6f255970d592..dae3f02f55c8 100644 --- a/airbyte-integrations/connectors/source-chargebee/metadata.yaml +++ b/airbyte-integrations/connectors/source-chargebee/metadata.yaml @@ -10,7 +10,7 @@ data: connectorSubtype: api connectorType: source definitionId: 686473f1-76d9-4994-9cc7-9b13da46147c - dockerImageTag: 0.6.1 + dockerImageTag: 0.6.2 dockerRepository: airbyte/source-chargebee documentationUrl: https://docs.airbyte.com/integrations/sources/chargebee githubIssueLabel: source-chargebee diff --git a/airbyte-integrations/connectors/source-chargebee/poetry.lock b/airbyte-integrations/connectors/source-chargebee/poetry.lock index f3de588cc584..e56de48354a0 100644 --- a/airbyte-integrations/connectors/source-chargebee/poetry.lock +++ b/airbyte-integrations/connectors/source-chargebee/poetry.lock @@ -288,13 +288,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] diff --git a/airbyte-integrations/connectors/source-chargebee/pyproject.toml b/airbyte-integrations/connectors/source-chargebee/pyproject.toml index 1dee447b9b95..b971951d0ecc 100644 --- a/airbyte-integrations/connectors/source-chargebee/pyproject.toml +++ b/airbyte-integrations/connectors/source-chargebee/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.6.1" +version = "0.6.2" name = "source-chargebee" description = "Source implementation for Chargebee." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/chargebee.md b/docs/integrations/sources/chargebee.md index 271c71069a91..90de15a49044 100644 --- a/docs/integrations/sources/chargebee.md +++ b/docs/integrations/sources/chargebee.md @@ -104,6 +104,7 @@ The Chargebee connector should not run into [Chargebee API](https://apidocs.char | Version | Date | Pull Request | Subject | |:--------|:-----------|:---------------------------------------------------------|:-----------------------------------------------------------------------------------------------------------------------------------------------| +| 0.6.2 | 2024-07-13 | [41691](https://github.com/airbytehq/airbyte/pull/41691) | Update dependencies | | 0.6.1 | 2024-07-10 | [41113](https://github.com/airbytehq/airbyte/pull/41113) | Update dependencies | | 0.6.0 | 2024-07-10 | [39217](https://github.com/airbytehq/airbyte/pull/39217) | Adds new stream `subscription_with_scheduled_changes` | | 0.5.5 | 2024-07-06 | [40965](https://github.com/airbytehq/airbyte/pull/40965) | Update dependencies | From 349bf645c56236b870940f9baffa9519909b3047 Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:29:41 +0200 Subject: [PATCH 244/260] =?UTF-8?q?=F0=9F=90=99=20source-webflow:=20run=20?= =?UTF-8?q?up-to-date=20pipeline=20[2024-07-13]=20(#41690)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-webflow/metadata.yaml | 2 +- airbyte-integrations/connectors/source-webflow/poetry.lock | 6 +++--- .../connectors/source-webflow/pyproject.toml | 2 +- docs/integrations/sources/webflow.md | 1 + 4 files changed, 6 insertions(+), 5 deletions(-) diff --git a/airbyte-integrations/connectors/source-webflow/metadata.yaml b/airbyte-integrations/connectors/source-webflow/metadata.yaml index e1d6b2643340..1799c4e97dab 100644 --- a/airbyte-integrations/connectors/source-webflow/metadata.yaml +++ b/airbyte-integrations/connectors/source-webflow/metadata.yaml @@ -2,7 +2,7 @@ data: connectorSubtype: api connectorType: source definitionId: ef580275-d9a9-48bb-af5e-db0f5855be04 - dockerImageTag: 0.1.11 + dockerImageTag: 0.1.12 dockerRepository: airbyte/source-webflow githubIssueLabel: source-webflow icon: webflow.svg diff --git a/airbyte-integrations/connectors/source-webflow/poetry.lock b/airbyte-integrations/connectors/source-webflow/poetry.lock index 6f83e5bed3a6..c0f7f643d050 100644 --- a/airbyte-integrations/connectors/source-webflow/poetry.lock +++ b/airbyte-integrations/connectors/source-webflow/poetry.lock @@ -288,13 +288,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] diff --git a/airbyte-integrations/connectors/source-webflow/pyproject.toml b/airbyte-integrations/connectors/source-webflow/pyproject.toml index 371f515b7724..d0ce5eabe45b 100644 --- a/airbyte-integrations/connectors/source-webflow/pyproject.toml +++ b/airbyte-integrations/connectors/source-webflow/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.1.11" +version = "0.1.12" name = "source-webflow" description = "Source implementation for Webflow." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/webflow.md b/docs/integrations/sources/webflow.md index fceb7e99900f..3b9a96e63122 100644 --- a/docs/integrations/sources/webflow.md +++ b/docs/integrations/sources/webflow.md @@ -41,6 +41,7 @@ If you are interested in learning more about the Webflow API and implementation | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :--------------------------------------------------------------------- | +| 0.1.12 | 2024-07-13 | [41690](https://github.com/airbytehq/airbyte/pull/41690) | Update dependencies | | 0.1.11 | 2024-07-10 | [41482](https://github.com/airbytehq/airbyte/pull/41482) | Update dependencies | | 0.1.10 | 2024-07-09 | [41280](https://github.com/airbytehq/airbyte/pull/41280) | Update dependencies | | 0.1.9 | 2024-07-06 | [40996](https://github.com/airbytehq/airbyte/pull/40996) | Update dependencies | From 3c3a3575ce773218b500bf8ff322d2bfb939e1f1 Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:29:44 +0200 Subject: [PATCH 245/260] =?UTF-8?q?=F0=9F=90=99=20destination-rabbitmq:=20?= =?UTF-8?q?run=20up-to-date=20pipeline=20[2024-07-13]=20(#41689)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/destination-rabbitmq/metadata.yaml | 2 +- .../connectors/destination-rabbitmq/poetry.lock | 6 +++--- .../connectors/destination-rabbitmq/pyproject.toml | 2 +- docs/integrations/destinations/rabbitmq.md | 1 + 4 files changed, 6 insertions(+), 5 deletions(-) diff --git a/airbyte-integrations/connectors/destination-rabbitmq/metadata.yaml b/airbyte-integrations/connectors/destination-rabbitmq/metadata.yaml index e06ccff711ac..57a0a995f138 100644 --- a/airbyte-integrations/connectors/destination-rabbitmq/metadata.yaml +++ b/airbyte-integrations/connectors/destination-rabbitmq/metadata.yaml @@ -2,7 +2,7 @@ data: connectorSubtype: database connectorType: destination definitionId: e06ad785-ad6f-4647-b2e8-3027a5c59454 - dockerImageTag: 0.1.10 + dockerImageTag: 0.1.11 dockerRepository: airbyte/destination-rabbitmq githubIssueLabel: destination-rabbitmq icon: pulsar.svg diff --git a/airbyte-integrations/connectors/destination-rabbitmq/poetry.lock b/airbyte-integrations/connectors/destination-rabbitmq/poetry.lock index 8bc19f3faf7f..56f62db5e7ed 100644 --- a/airbyte-integrations/connectors/destination-rabbitmq/poetry.lock +++ b/airbyte-integrations/connectors/destination-rabbitmq/poetry.lock @@ -288,13 +288,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] diff --git a/airbyte-integrations/connectors/destination-rabbitmq/pyproject.toml b/airbyte-integrations/connectors/destination-rabbitmq/pyproject.toml index 7f3d63b6fa08..5bc7425ed08c 100644 --- a/airbyte-integrations/connectors/destination-rabbitmq/pyproject.toml +++ b/airbyte-integrations/connectors/destination-rabbitmq/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.1.10" +version = "0.1.11" name = "destination-rabbitmq" description = "Destination implementation for Rabbitmq." authors = [ "Airbyte ",] diff --git a/docs/integrations/destinations/rabbitmq.md b/docs/integrations/destinations/rabbitmq.md index 3a3c09934524..7fbfec9250c6 100644 --- a/docs/integrations/destinations/rabbitmq.md +++ b/docs/integrations/destinations/rabbitmq.md @@ -48,6 +48,7 @@ To use the RabbitMQ destination, you'll need: | Version | Date | Pull Request | Subject | | :------ | :--------------- | :-------------------------------------------------------- | :---------------------------------------------- | +| 0.1.11 | 2024-07-13 | [41689](https://github.com/airbytehq/airbyte/pull/41689) | Update dependencies | | 0.1.10 | 2024-07-10 | [41279](https://github.com/airbytehq/airbyte/pull/41279) | Update dependencies | | 0.1.9 | 2024-07-06 | [40991](https://github.com/airbytehq/airbyte/pull/40991) | Update dependencies | | 0.1.8 | 2024-06-27 | [40215](https://github.com/airbytehq/airbyte/pull/40215) | Replaced deprecated AirbyteLogger with logging.Logger | From 27425175b973b73bf0cad342f25840118067ec6c Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:29:47 +0200 Subject: [PATCH 246/260] =?UTF-8?q?=F0=9F=90=99=20source-microsoft-sharepo?= =?UTF-8?q?int:=20run=20up-to-date=20pipeline=20[2024-07-13]=20(#41688)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../source-microsoft-sharepoint/metadata.yaml | 2 +- .../source-microsoft-sharepoint/poetry.lock | 12 ++++++------ .../source-microsoft-sharepoint/pyproject.toml | 2 +- docs/integrations/sources/microsoft-sharepoint.md | 1 + 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/airbyte-integrations/connectors/source-microsoft-sharepoint/metadata.yaml b/airbyte-integrations/connectors/source-microsoft-sharepoint/metadata.yaml index f51868d4fda4..d540ae21f1f0 100644 --- a/airbyte-integrations/connectors/source-microsoft-sharepoint/metadata.yaml +++ b/airbyte-integrations/connectors/source-microsoft-sharepoint/metadata.yaml @@ -20,7 +20,7 @@ data: connectorSubtype: file connectorType: source definitionId: 59353119-f0f2-4e5a-a8ba-15d887bc34f6 - dockerImageTag: 0.2.10 + dockerImageTag: 0.2.11 dockerRepository: airbyte/source-microsoft-sharepoint githubIssueLabel: source-microsoft-sharepoint icon: microsoft-sharepoint.svg diff --git a/airbyte-integrations/connectors/source-microsoft-sharepoint/poetry.lock b/airbyte-integrations/connectors/source-microsoft-sharepoint/poetry.lock index 3bd3212271a0..07fa5ed78fdb 100644 --- a/airbyte-integrations/connectors/source-microsoft-sharepoint/poetry.lock +++ b/airbyte-integrations/connectors/source-microsoft-sharepoint/poetry.lock @@ -511,13 +511,13 @@ dev = ["coverage", "pytest (>=7.4.4)"] [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] @@ -768,13 +768,13 @@ six = "*" [[package]] name = "langsmith" -version = "0.1.84" +version = "0.1.85" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.84-py3-none-any.whl", hash = "sha256:01f3c6390dba26c583bac8dd0e551ce3d0509c7f55cad714db0b5c8d36e4c7ff"}, - {file = "langsmith-0.1.84.tar.gz", hash = "sha256:5220c0439838b9a5bd320fd3686be505c5083dcee22d2452006c23891153bea1"}, + {file = "langsmith-0.1.85-py3-none-any.whl", hash = "sha256:c1f94384f10cea96f7b4d33fd3db7ec180c03c7468877d50846f881d2017ff94"}, + {file = "langsmith-0.1.85.tar.gz", hash = "sha256:acff31f9e53efa48586cf8e32f65625a335c74d7c4fa306d1655ac18452296f6"}, ] [package.dependencies] diff --git a/airbyte-integrations/connectors/source-microsoft-sharepoint/pyproject.toml b/airbyte-integrations/connectors/source-microsoft-sharepoint/pyproject.toml index 61e9267ee134..7d6d17c01582 100644 --- a/airbyte-integrations/connectors/source-microsoft-sharepoint/pyproject.toml +++ b/airbyte-integrations/connectors/source-microsoft-sharepoint/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.2.10" +version = "0.2.11" name = "source-microsoft-sharepoint" description = "Source implementation for Microsoft SharePoint." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/microsoft-sharepoint.md b/docs/integrations/sources/microsoft-sharepoint.md index ffbf4738baa7..817701307fb2 100644 --- a/docs/integrations/sources/microsoft-sharepoint.md +++ b/docs/integrations/sources/microsoft-sharepoint.md @@ -135,6 +135,7 @@ The connector is restricted by normal Microsoft Graph [requests limitation](http | Version | Date | Pull Request | Subject | |:--------|:-----------|:---------------------------------------------------------|:--------------------------------------------------| +| 0.2.11 | 2024-07-13 | [41688](https://github.com/airbytehq/airbyte/pull/41688) | Update dependencies | | 0.2.10 | 2024-07-10 | [41589](https://github.com/airbytehq/airbyte/pull/41589) | Update dependencies | | 0.2.9 | 2024-07-06 | [40917](https://github.com/airbytehq/airbyte/pull/40917) | Update dependencies | | 0.2.8 | 2024-06-26 | [40539](https://github.com/airbytehq/airbyte/pull/40539) | Update dependencies | From c082957e9c0aab0c8619776c071bc7551b07c257 Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:29:50 +0200 Subject: [PATCH 247/260] =?UTF-8?q?=F0=9F=90=99=20source-tempo:=20run=20up?= =?UTF-8?q?-to-date=20pipeline=20[2024-07-13]=20(#41687)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-tempo/metadata.yaml | 2 +- .../connectors/source-tempo/poetry.lock | 12 ++++++------ .../connectors/source-tempo/pyproject.toml | 2 +- docs/integrations/sources/tempo.md | 1 + 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/airbyte-integrations/connectors/source-tempo/metadata.yaml b/airbyte-integrations/connectors/source-tempo/metadata.yaml index 29226e6931f9..22c7b15d36db 100644 --- a/airbyte-integrations/connectors/source-tempo/metadata.yaml +++ b/airbyte-integrations/connectors/source-tempo/metadata.yaml @@ -8,7 +8,7 @@ data: connectorSubtype: api connectorType: source definitionId: d1aa448b-7c54-498e-ad95-263cbebcd2db - dockerImageTag: 0.3.7 + dockerImageTag: 0.3.8 dockerRepository: airbyte/source-tempo documentationUrl: https://docs.airbyte.com/integrations/sources/tempo githubIssueLabel: source-tempo diff --git a/airbyte-integrations/connectors/source-tempo/poetry.lock b/airbyte-integrations/connectors/source-tempo/poetry.lock index bbd8b4148615..a5ccc85cf211 100644 --- a/airbyte-integrations/connectors/source-tempo/poetry.lock +++ b/airbyte-integrations/connectors/source-tempo/poetry.lock @@ -410,13 +410,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] @@ -566,13 +566,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.84" +version = "0.1.85" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.84-py3-none-any.whl", hash = "sha256:01f3c6390dba26c583bac8dd0e551ce3d0509c7f55cad714db0b5c8d36e4c7ff"}, - {file = "langsmith-0.1.84.tar.gz", hash = "sha256:5220c0439838b9a5bd320fd3686be505c5083dcee22d2452006c23891153bea1"}, + {file = "langsmith-0.1.85-py3-none-any.whl", hash = "sha256:c1f94384f10cea96f7b4d33fd3db7ec180c03c7468877d50846f881d2017ff94"}, + {file = "langsmith-0.1.85.tar.gz", hash = "sha256:acff31f9e53efa48586cf8e32f65625a335c74d7c4fa306d1655ac18452296f6"}, ] [package.dependencies] diff --git a/airbyte-integrations/connectors/source-tempo/pyproject.toml b/airbyte-integrations/connectors/source-tempo/pyproject.toml index 1ebb8cde9b10..d13c59de396b 100644 --- a/airbyte-integrations/connectors/source-tempo/pyproject.toml +++ b/airbyte-integrations/connectors/source-tempo/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.3.7" +version = "0.3.8" name = "source-tempo" description = "Source implementation for Tempo." authors = [ "Thomas van Latum ",] diff --git a/docs/integrations/sources/tempo.md b/docs/integrations/sources/tempo.md index 47f2ab593dad..1b5eac4367f6 100644 --- a/docs/integrations/sources/tempo.md +++ b/docs/integrations/sources/tempo.md @@ -49,6 +49,7 @@ If there are more endpoints you'd like Airbyte to support, please [create an iss | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :-------------------------------------------------------- | +| 0.3.8 | 2024-07-13 | [41687](https://github.com/airbytehq/airbyte/pull/41687) | Update dependencies | | 0.3.7 | 2024-07-10 | [41357](https://github.com/airbytehq/airbyte/pull/41357) | Update dependencies | | 0.3.6 | 2024-07-09 | [41307](https://github.com/airbytehq/airbyte/pull/41307) | Update dependencies | | 0.3.5 | 2024-07-06 | [40862](https://github.com/airbytehq/airbyte/pull/40862) | Update dependencies | From 1f828501bb805be33368fa1eaf02c46965589675 Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:29:53 +0200 Subject: [PATCH 248/260] =?UTF-8?q?=F0=9F=90=99=20source-wikipedia-pagevie?= =?UTF-8?q?ws:=20run=20up-to-date=20pipeline=20[2024-07-13]=20(#41686)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../source-wikipedia-pageviews/metadata.yaml | 2 +- .../source-wikipedia-pageviews/poetry.lock | 12 ++++++------ .../source-wikipedia-pageviews/pyproject.toml | 2 +- docs/integrations/sources/wikipedia-pageviews.md | 1 + 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/airbyte-integrations/connectors/source-wikipedia-pageviews/metadata.yaml b/airbyte-integrations/connectors/source-wikipedia-pageviews/metadata.yaml index 248cc650dcfd..04d08317ddbd 100644 --- a/airbyte-integrations/connectors/source-wikipedia-pageviews/metadata.yaml +++ b/airbyte-integrations/connectors/source-wikipedia-pageviews/metadata.yaml @@ -10,7 +10,7 @@ data: connectorSubtype: api connectorType: source definitionId: 87c58f70-6f7a-4f70-aba5-bab1a458f5ba - dockerImageTag: 0.1.3 + dockerImageTag: 0.1.4 dockerRepository: airbyte/source-wikipedia-pageviews githubIssueLabel: source-wikipedia-pageviews icon: wikipedia-pageviews.svg diff --git a/airbyte-integrations/connectors/source-wikipedia-pageviews/poetry.lock b/airbyte-integrations/connectors/source-wikipedia-pageviews/poetry.lock index 2c9054053b03..60449bc02c04 100644 --- a/airbyte-integrations/connectors/source-wikipedia-pageviews/poetry.lock +++ b/airbyte-integrations/connectors/source-wikipedia-pageviews/poetry.lock @@ -411,13 +411,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] @@ -567,13 +567,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.84" +version = "0.1.85" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.84-py3-none-any.whl", hash = "sha256:01f3c6390dba26c583bac8dd0e551ce3d0509c7f55cad714db0b5c8d36e4c7ff"}, - {file = "langsmith-0.1.84.tar.gz", hash = "sha256:5220c0439838b9a5bd320fd3686be505c5083dcee22d2452006c23891153bea1"}, + {file = "langsmith-0.1.85-py3-none-any.whl", hash = "sha256:c1f94384f10cea96f7b4d33fd3db7ec180c03c7468877d50846f881d2017ff94"}, + {file = "langsmith-0.1.85.tar.gz", hash = "sha256:acff31f9e53efa48586cf8e32f65625a335c74d7c4fa306d1655ac18452296f6"}, ] [package.dependencies] diff --git a/airbyte-integrations/connectors/source-wikipedia-pageviews/pyproject.toml b/airbyte-integrations/connectors/source-wikipedia-pageviews/pyproject.toml index 7e7dbce494e3..f59deeee0a8d 100644 --- a/airbyte-integrations/connectors/source-wikipedia-pageviews/pyproject.toml +++ b/airbyte-integrations/connectors/source-wikipedia-pageviews/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.1.3" +version = "0.1.4" name = "source-wikipedia-pageviews" description = "Source implementation for wikipedia-pageviews." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/wikipedia-pageviews.md b/docs/integrations/sources/wikipedia-pageviews.md index eb9d7796e5c1..dbdecfb50ae8 100644 --- a/docs/integrations/sources/wikipedia-pageviews.md +++ b/docs/integrations/sources/wikipedia-pageviews.md @@ -53,6 +53,7 @@ The Wikipedia Pageviews source connector supports the following [sync modes](htt | Version | Date | Pull Request | Subject | | :------ | :--------- | :-------------------------------------------------------- | :------------- | +| 0.1.4 | 2024-07-13 | [41686](https://github.com/airbytehq/airbyte/pull/41686) | Update dependencies | | 0.1.3 | 2024-07-10 | [41560](https://github.com/airbytehq/airbyte/pull/41560) | Update dependencies | | 0.1.2 | 2024-07-09 | [41081](https://github.com/airbytehq/airbyte/pull/41081) | Update dependencies | | 0.1.1 | 2024-05-31 | [38724](https://github.com/airbytehq/airbyte/pull/38724) | Make connector compatible with builder | From 3e1082e440d6ae64dfde94c34c1d4b0a0fd25289 Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:29:56 +0200 Subject: [PATCH 249/260] =?UTF-8?q?=F0=9F=90=99=20source-iterable:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-07-13]=20(#41684)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-iterable/metadata.yaml | 2 +- .../connectors/source-iterable/poetry.lock | 12 ++++++------ .../connectors/source-iterable/pyproject.toml | 2 +- docs/integrations/sources/iterable.md | 1 + 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/airbyte-integrations/connectors/source-iterable/metadata.yaml b/airbyte-integrations/connectors/source-iterable/metadata.yaml index 989e4f917468..98f9b62d3e45 100644 --- a/airbyte-integrations/connectors/source-iterable/metadata.yaml +++ b/airbyte-integrations/connectors/source-iterable/metadata.yaml @@ -10,7 +10,7 @@ data: connectorSubtype: api connectorType: source definitionId: 2e875208-0c0b-4ee4-9e92-1cb3156ea799 - dockerImageTag: 0.5.9 + dockerImageTag: 0.5.10 dockerRepository: airbyte/source-iterable documentationUrl: https://docs.airbyte.com/integrations/sources/iterable githubIssueLabel: source-iterable diff --git a/airbyte-integrations/connectors/source-iterable/poetry.lock b/airbyte-integrations/connectors/source-iterable/poetry.lock index 301bd85956c0..ae5038d9dd15 100644 --- a/airbyte-integrations/connectors/source-iterable/poetry.lock +++ b/airbyte-integrations/connectors/source-iterable/poetry.lock @@ -410,13 +410,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] @@ -580,13 +580,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.84" +version = "0.1.85" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.84-py3-none-any.whl", hash = "sha256:01f3c6390dba26c583bac8dd0e551ce3d0509c7f55cad714db0b5c8d36e4c7ff"}, - {file = "langsmith-0.1.84.tar.gz", hash = "sha256:5220c0439838b9a5bd320fd3686be505c5083dcee22d2452006c23891153bea1"}, + {file = "langsmith-0.1.85-py3-none-any.whl", hash = "sha256:c1f94384f10cea96f7b4d33fd3db7ec180c03c7468877d50846f881d2017ff94"}, + {file = "langsmith-0.1.85.tar.gz", hash = "sha256:acff31f9e53efa48586cf8e32f65625a335c74d7c4fa306d1655ac18452296f6"}, ] [package.dependencies] diff --git a/airbyte-integrations/connectors/source-iterable/pyproject.toml b/airbyte-integrations/connectors/source-iterable/pyproject.toml index 293d0081b9de..ef9db339fa7a 100644 --- a/airbyte-integrations/connectors/source-iterable/pyproject.toml +++ b/airbyte-integrations/connectors/source-iterable/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.5.9" +version = "0.5.10" name = "source-iterable" description = "Source implementation for Iterable." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/iterable.md b/docs/integrations/sources/iterable.md index 69b3797c8a86..873d021295a9 100644 --- a/docs/integrations/sources/iterable.md +++ b/docs/integrations/sources/iterable.md @@ -83,6 +83,7 @@ The Iterable source connector supports the following [sync modes](https://docs.a | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| 0.5.10 | 2024-07-13 | [41684](https://github.com/airbytehq/airbyte/pull/41684) | Update dependencies | | 0.5.9 | 2024-07-10 | [41401](https://github.com/airbytehq/airbyte/pull/41401) | Update dependencies | | 0.5.8 | 2024-07-09 | [41293](https://github.com/airbytehq/airbyte/pull/41293) | Update dependencies | | 0.5.7 | 2024-07-06 | [40811](https://github.com/airbytehq/airbyte/pull/40811) | Update dependencies | From 6bde9e9b9b745a3a0d71cd20f9ac675f8ed015c6 Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:29:59 +0200 Subject: [PATCH 250/260] =?UTF-8?q?=F0=9F=90=99=20source-mailchimp:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-07-13]=20(#41683)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-mailchimp/metadata.yaml | 2 +- .../connectors/source-mailchimp/poetry.lock | 18 +++++++++--------- .../connectors/source-mailchimp/pyproject.toml | 2 +- docs/integrations/sources/mailchimp.md | 1 + 4 files changed, 12 insertions(+), 11 deletions(-) diff --git a/airbyte-integrations/connectors/source-mailchimp/metadata.yaml b/airbyte-integrations/connectors/source-mailchimp/metadata.yaml index aeb0a297d61b..cdf101752992 100644 --- a/airbyte-integrations/connectors/source-mailchimp/metadata.yaml +++ b/airbyte-integrations/connectors/source-mailchimp/metadata.yaml @@ -11,7 +11,7 @@ data: connectorSubtype: api connectorType: source definitionId: b03a9f3e-22a5-11eb-adc1-0242ac120002 - dockerImageTag: 2.0.10 + dockerImageTag: 2.0.11 dockerRepository: airbyte/source-mailchimp documentationUrl: https://docs.airbyte.com/integrations/sources/mailchimp githubIssueLabel: source-mailchimp diff --git a/airbyte-integrations/connectors/source-mailchimp/poetry.lock b/airbyte-integrations/connectors/source-mailchimp/poetry.lock index 78828ec0727b..c0907f5b43ac 100644 --- a/airbyte-integrations/connectors/source-mailchimp/poetry.lock +++ b/airbyte-integrations/connectors/source-mailchimp/poetry.lock @@ -2,13 +2,13 @@ [[package]] name = "airbyte-cdk" -version = "3.1.0" +version = "3.4.1" description = "A framework for writing Airbyte Connectors." optional = false python-versions = "<4.0,>=3.9" files = [ - {file = "airbyte_cdk-3.1.0-py3-none-any.whl", hash = "sha256:eea2260629091e4df55467696148e41e21bda0263045f1bcad0a8e9dde472c64"}, - {file = "airbyte_cdk-3.1.0.tar.gz", hash = "sha256:7f9690a6ed0bc69d89cb7312516cbf9a3a17dbf78ee3e7b2dc97e9ddf0147a38"}, + {file = "airbyte_cdk-3.4.1-py3-none-any.whl", hash = "sha256:423b238da33480f1a464ee92277be55b3661612cd9bfeacc82313bc97792e775"}, + {file = "airbyte_cdk-3.4.1.tar.gz", hash = "sha256:cf66f4bdc85fa6a66a822ce074130f0d82eb3e8e8c85508b14b9fc1784b9416e"}, ] [package.dependencies] @@ -421,13 +421,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] @@ -591,13 +591,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.84" +version = "0.1.85" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.84-py3-none-any.whl", hash = "sha256:01f3c6390dba26c583bac8dd0e551ce3d0509c7f55cad714db0b5c8d36e4c7ff"}, - {file = "langsmith-0.1.84.tar.gz", hash = "sha256:5220c0439838b9a5bd320fd3686be505c5083dcee22d2452006c23891153bea1"}, + {file = "langsmith-0.1.85-py3-none-any.whl", hash = "sha256:c1f94384f10cea96f7b4d33fd3db7ec180c03c7468877d50846f881d2017ff94"}, + {file = "langsmith-0.1.85.tar.gz", hash = "sha256:acff31f9e53efa48586cf8e32f65625a335c74d7c4fa306d1655ac18452296f6"}, ] [package.dependencies] diff --git a/airbyte-integrations/connectors/source-mailchimp/pyproject.toml b/airbyte-integrations/connectors/source-mailchimp/pyproject.toml index b4cdc1d1d68a..4c52409b93ef 100644 --- a/airbyte-integrations/connectors/source-mailchimp/pyproject.toml +++ b/airbyte-integrations/connectors/source-mailchimp/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "2.0.10" +version = "2.0.11" name = "source-mailchimp" description = "Source implementation for Mailchimp." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/mailchimp.md b/docs/integrations/sources/mailchimp.md index 3bc6c2af9c8d..27a71e4b4bd3 100644 --- a/docs/integrations/sources/mailchimp.md +++ b/docs/integrations/sources/mailchimp.md @@ -126,6 +126,7 @@ Now that you have set up the Mailchimp source connector, check out the following | Version | Date | Pull Request | Subject | |---------|------------|----------------------------------------------------------|----------------------------------------------------------------------------| +| 2.0.11 | 2024-07-13 | [41683](https://github.com/airbytehq/airbyte/pull/41683) | Update dependencies | | 2.0.10 | 2024-07-10 | [41399](https://github.com/airbytehq/airbyte/pull/41399) | Update dependencies | | 2.0.9 | 2024-07-09 | [41152](https://github.com/airbytehq/airbyte/pull/41152) | Update dependencies | | 2.0.8 | 2024-07-06 | [40897](https://github.com/airbytehq/airbyte/pull/40897) | Update dependencies | From 09c27fe543c24c2fc8c10be57dfcec69bdcfffb3 Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:30:02 +0200 Subject: [PATCH 251/260] =?UTF-8?q?=F0=9F=90=99=20source-xkcd:=20run=20up-?= =?UTF-8?q?to-date=20pipeline=20[2024-07-13]=20(#41682)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-xkcd/metadata.yaml | 2 +- .../connectors/source-xkcd/poetry.lock | 12 ++++++------ .../connectors/source-xkcd/pyproject.toml | 2 +- docs/integrations/sources/xkcd.md | 1 + 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/airbyte-integrations/connectors/source-xkcd/metadata.yaml b/airbyte-integrations/connectors/source-xkcd/metadata.yaml index 213b2fba3949..9ca0909868f9 100644 --- a/airbyte-integrations/connectors/source-xkcd/metadata.yaml +++ b/airbyte-integrations/connectors/source-xkcd/metadata.yaml @@ -2,7 +2,7 @@ data: connectorSubtype: api connectorType: source definitionId: 80fddd16-17bd-4c0c-bf4a-80df7863fc9d - dockerImageTag: 0.1.8 + dockerImageTag: 0.1.9 dockerRepository: airbyte/source-xkcd githubIssueLabel: source-xkcd icon: xkcd.svg diff --git a/airbyte-integrations/connectors/source-xkcd/poetry.lock b/airbyte-integrations/connectors/source-xkcd/poetry.lock index 483507e32356..3a76135ef536 100644 --- a/airbyte-integrations/connectors/source-xkcd/poetry.lock +++ b/airbyte-integrations/connectors/source-xkcd/poetry.lock @@ -409,13 +409,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] @@ -565,13 +565,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.84" +version = "0.1.85" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.84-py3-none-any.whl", hash = "sha256:01f3c6390dba26c583bac8dd0e551ce3d0509c7f55cad714db0b5c8d36e4c7ff"}, - {file = "langsmith-0.1.84.tar.gz", hash = "sha256:5220c0439838b9a5bd320fd3686be505c5083dcee22d2452006c23891153bea1"}, + {file = "langsmith-0.1.85-py3-none-any.whl", hash = "sha256:c1f94384f10cea96f7b4d33fd3db7ec180c03c7468877d50846f881d2017ff94"}, + {file = "langsmith-0.1.85.tar.gz", hash = "sha256:acff31f9e53efa48586cf8e32f65625a335c74d7c4fa306d1655ac18452296f6"}, ] [package.dependencies] diff --git a/airbyte-integrations/connectors/source-xkcd/pyproject.toml b/airbyte-integrations/connectors/source-xkcd/pyproject.toml index b7d0c788ae4a..fb9fc3ce7b55 100644 --- a/airbyte-integrations/connectors/source-xkcd/pyproject.toml +++ b/airbyte-integrations/connectors/source-xkcd/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.1.8" +version = "0.1.9" name = "source-xkcd" description = "Source implementation for Xkcd." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/xkcd.md b/docs/integrations/sources/xkcd.md index 962d3440b7a2..63d646f4cd9b 100644 --- a/docs/integrations/sources/xkcd.md +++ b/docs/integrations/sources/xkcd.md @@ -25,6 +25,7 @@ XKCD does not perform rate limiting. | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :---------------------------------------- | +| 0.1.9 | 2024-07-13 | [41682](https://github.com/airbytehq/airbyte/pull/41682) | Update dependencies | | 0.1.8 | 2024-07-10 | [41393](https://github.com/airbytehq/airbyte/pull/41393) | Update dependencies | | 0.1.7 | 2024-07-09 | [41204](https://github.com/airbytehq/airbyte/pull/41204) | Update dependencies | | 0.1.6 | 2024-07-06 | [40817](https://github.com/airbytehq/airbyte/pull/40817) | Update dependencies | From 6eb13eadd2dffd2ba359d79799956d152d5ee8b6 Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:30:07 +0200 Subject: [PATCH 252/260] =?UTF-8?q?=F0=9F=90=99=20source-google-sheets:=20?= =?UTF-8?q?run=20up-to-date=20pipeline=20[2024-07-13]=20(#41527)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-google-sheets/metadata.yaml | 4 ++-- .../connectors/source-google-sheets/poetry.lock | 12 ++++++------ .../connectors/source-google-sheets/pyproject.toml | 2 +- docs/integrations/sources/google-sheets.md | 1 + 4 files changed, 10 insertions(+), 9 deletions(-) diff --git a/airbyte-integrations/connectors/source-google-sheets/metadata.yaml b/airbyte-integrations/connectors/source-google-sheets/metadata.yaml index 11b838d0bfe1..46b79d93ba96 100644 --- a/airbyte-integrations/connectors/source-google-sheets/metadata.yaml +++ b/airbyte-integrations/connectors/source-google-sheets/metadata.yaml @@ -6,11 +6,11 @@ data: hosts: - "*.googleapis.com" connectorBuildOptions: - baseImage: docker.io/airbyte/python-connector-base:1.2.3@sha256:a8abfdc75f8e22931657a1ae15069e7b925e74bb7b5ef36371a85e4caeae5696 + baseImage: docker.io/airbyte/python-connector-base:2.0.0@sha256:c44839ba84406116e8ba68722a0f30e8f6e7056c726f447681bb9e9ece8bd916 connectorSubtype: file connectorType: source definitionId: 71607ba1-c0ac-4799-8049-7f4b90dd50f7 - dockerImageTag: 0.5.10 + dockerImageTag: 0.5.11 dockerRepository: airbyte/source-google-sheets documentationUrl: https://docs.airbyte.com/integrations/sources/google-sheets githubIssueLabel: source-google-sheets diff --git a/airbyte-integrations/connectors/source-google-sheets/poetry.lock b/airbyte-integrations/connectors/source-google-sheets/poetry.lock index 444796489e4c..4ab4a714b5ee 100644 --- a/airbyte-integrations/connectors/source-google-sheets/poetry.lock +++ b/airbyte-integrations/connectors/source-google-sheets/poetry.lock @@ -410,13 +410,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] @@ -692,13 +692,13 @@ requests = ">=2,<3" [[package]] name = "langsmith" -version = "0.1.84" +version = "0.1.85" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.84-py3-none-any.whl", hash = "sha256:01f3c6390dba26c583bac8dd0e551ce3d0509c7f55cad714db0b5c8d36e4c7ff"}, - {file = "langsmith-0.1.84.tar.gz", hash = "sha256:5220c0439838b9a5bd320fd3686be505c5083dcee22d2452006c23891153bea1"}, + {file = "langsmith-0.1.85-py3-none-any.whl", hash = "sha256:c1f94384f10cea96f7b4d33fd3db7ec180c03c7468877d50846f881d2017ff94"}, + {file = "langsmith-0.1.85.tar.gz", hash = "sha256:acff31f9e53efa48586cf8e32f65625a335c74d7c4fa306d1655ac18452296f6"}, ] [package.dependencies] diff --git a/airbyte-integrations/connectors/source-google-sheets/pyproject.toml b/airbyte-integrations/connectors/source-google-sheets/pyproject.toml index 21b9671fe896..c83177d866fe 100644 --- a/airbyte-integrations/connectors/source-google-sheets/pyproject.toml +++ b/airbyte-integrations/connectors/source-google-sheets/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.5.10" +version = "0.5.11" name = "source-google-sheets" description = "Source implementation for Google Sheets." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/google-sheets.md b/docs/integrations/sources/google-sheets.md index 8074360db595..10bb36063304 100644 --- a/docs/integrations/sources/google-sheets.md +++ b/docs/integrations/sources/google-sheets.md @@ -166,6 +166,7 @@ Airbyte batches requests to the API in order to efficiently pull data and respec | Version | Date | Pull Request | Subject | |---------|------------|----------------------------------------------------------|-----------------------------------------------------------------------------------| +| 0.5.11 | 2024-07-13 | [41527](https://github.com/airbytehq/airbyte/pull/41527) | Update dependencies | | 0.5.10 | 2024-07-09 | [41273](https://github.com/airbytehq/airbyte/pull/41273) | Update dependencies | | 0.5.9 | 2024-07-06 | [41005](https://github.com/airbytehq/airbyte/pull/41005) | Update dependencies | | 0.5.8 | 2024-06-28 | [40587](https://github.com/airbytehq/airbyte/pull/40587) | Replaced deprecated AirbyteLogger with logging.Logger | From ffab1fb0fa94bd000fe8968f32601948fd5e9675 Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:30:11 +0200 Subject: [PATCH 253/260] =?UTF-8?q?=F0=9F=90=99=20source-tmdb:=20run=20up-?= =?UTF-8?q?to-date=20pipeline=20[2024-07-13]=20(#41511)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-tmdb/metadata.yaml | 4 ++-- .../connectors/source-tmdb/poetry.lock | 12 ++++++------ .../connectors/source-tmdb/pyproject.toml | 2 +- docs/integrations/sources/tmdb.md | 1 + 4 files changed, 10 insertions(+), 9 deletions(-) diff --git a/airbyte-integrations/connectors/source-tmdb/metadata.yaml b/airbyte-integrations/connectors/source-tmdb/metadata.yaml index 881e8f3c93b5..703317ee3000 100644 --- a/airbyte-integrations/connectors/source-tmdb/metadata.yaml +++ b/airbyte-integrations/connectors/source-tmdb/metadata.yaml @@ -2,7 +2,7 @@ data: connectorSubtype: api connectorType: source definitionId: 6240848f-f795-45eb-8f5e-c7542822fc03 - dockerImageTag: 0.1.6 + dockerImageTag: 0.1.7 dockerRepository: airbyte/source-tmdb githubIssueLabel: source-tmdb icon: tmdb.svg @@ -35,5 +35,5 @@ data: type: GSM alias: airbyte-connector-testing-secret-store connectorBuildOptions: - baseImage: docker.io/airbyte/python-connector-base:1.2.3@sha256:a8abfdc75f8e22931657a1ae15069e7b925e74bb7b5ef36371a85e4caeae5696 + baseImage: docker.io/airbyte/python-connector-base:2.0.0@sha256:c44839ba84406116e8ba68722a0f30e8f6e7056c726f447681bb9e9ece8bd916 metadataSpecVersion: "1.0" diff --git a/airbyte-integrations/connectors/source-tmdb/poetry.lock b/airbyte-integrations/connectors/source-tmdb/poetry.lock index 4b03cc351726..13836360394d 100644 --- a/airbyte-integrations/connectors/source-tmdb/poetry.lock +++ b/airbyte-integrations/connectors/source-tmdb/poetry.lock @@ -410,13 +410,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] @@ -566,13 +566,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.84" +version = "0.1.85" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.84-py3-none-any.whl", hash = "sha256:01f3c6390dba26c583bac8dd0e551ce3d0509c7f55cad714db0b5c8d36e4c7ff"}, - {file = "langsmith-0.1.84.tar.gz", hash = "sha256:5220c0439838b9a5bd320fd3686be505c5083dcee22d2452006c23891153bea1"}, + {file = "langsmith-0.1.85-py3-none-any.whl", hash = "sha256:c1f94384f10cea96f7b4d33fd3db7ec180c03c7468877d50846f881d2017ff94"}, + {file = "langsmith-0.1.85.tar.gz", hash = "sha256:acff31f9e53efa48586cf8e32f65625a335c74d7c4fa306d1655ac18452296f6"}, ] [package.dependencies] diff --git a/airbyte-integrations/connectors/source-tmdb/pyproject.toml b/airbyte-integrations/connectors/source-tmdb/pyproject.toml index f6e68e6526a6..85898be1ae73 100644 --- a/airbyte-integrations/connectors/source-tmdb/pyproject.toml +++ b/airbyte-integrations/connectors/source-tmdb/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.1.6" +version = "0.1.7" name = "source-tmdb" description = "Source implementation for Tmdb." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/tmdb.md b/docs/integrations/sources/tmdb.md index a4ea0d69e6f6..91b5498b7a4c 100644 --- a/docs/integrations/sources/tmdb.md +++ b/docs/integrations/sources/tmdb.md @@ -96,6 +96,7 @@ TMDb's [API reference](https://developers.themoviedb.org/3/getting-started/intro | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------ | :------------- | +| 0.1.7 | 2024-07-13 | [41511](https://github.com/airbytehq/airbyte/pull/41511) | Update dependencies | | 0.1.6 | 2024-07-09 | [41181](https://github.com/airbytehq/airbyte/pull/41181) | Update dependencies | | 0.1.5 | 2024-07-06 | [40959](https://github.com/airbytehq/airbyte/pull/40959) | Update dependencies | | 0.1.4 | 2024-06-26 | [40273](https://github.com/airbytehq/airbyte/pull/40273) | Update dependencies | From 0fe3e665003de27bec2c0d7e65ee30123d8b1347 Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:30:14 +0200 Subject: [PATCH 254/260] =?UTF-8?q?=F0=9F=90=99=20source-workramp:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-07-13]=20(#41473)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-workramp/metadata.yaml | 4 ++-- .../connectors/source-workramp/poetry.lock | 12 ++++++------ .../connectors/source-workramp/pyproject.toml | 2 +- docs/integrations/sources/workramp.md | 1 + 4 files changed, 10 insertions(+), 9 deletions(-) diff --git a/airbyte-integrations/connectors/source-workramp/metadata.yaml b/airbyte-integrations/connectors/source-workramp/metadata.yaml index fa9308170443..7e60a9ecf1e3 100644 --- a/airbyte-integrations/connectors/source-workramp/metadata.yaml +++ b/airbyte-integrations/connectors/source-workramp/metadata.yaml @@ -12,11 +12,11 @@ data: # Please update to the latest version of the connector base image. # https://hub.docker.com/r/airbyte/python-connector-base # Please use the full address with sha256 hash to guarantee build reproducibility. - baseImage: docker.io/airbyte/python-connector-base:1.2.3@sha256:a8abfdc75f8e22931657a1ae15069e7b925e74bb7b5ef36371a85e4caeae5696 + baseImage: docker.io/airbyte/python-connector-base:2.0.0@sha256:c44839ba84406116e8ba68722a0f30e8f6e7056c726f447681bb9e9ece8bd916 connectorSubtype: api connectorType: source definitionId: 05b0bce2-4ec4-4534-bb1a-5d0127bd91b7 - dockerImageTag: 0.1.7 + dockerImageTag: 0.1.8 dockerRepository: airbyte/source-workramp githubIssueLabel: source-workramp icon: workramp.svg diff --git a/airbyte-integrations/connectors/source-workramp/poetry.lock b/airbyte-integrations/connectors/source-workramp/poetry.lock index 4b03cc351726..13836360394d 100644 --- a/airbyte-integrations/connectors/source-workramp/poetry.lock +++ b/airbyte-integrations/connectors/source-workramp/poetry.lock @@ -410,13 +410,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] @@ -566,13 +566,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.84" +version = "0.1.85" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.84-py3-none-any.whl", hash = "sha256:01f3c6390dba26c583bac8dd0e551ce3d0509c7f55cad714db0b5c8d36e4c7ff"}, - {file = "langsmith-0.1.84.tar.gz", hash = "sha256:5220c0439838b9a5bd320fd3686be505c5083dcee22d2452006c23891153bea1"}, + {file = "langsmith-0.1.85-py3-none-any.whl", hash = "sha256:c1f94384f10cea96f7b4d33fd3db7ec180c03c7468877d50846f881d2017ff94"}, + {file = "langsmith-0.1.85.tar.gz", hash = "sha256:acff31f9e53efa48586cf8e32f65625a335c74d7c4fa306d1655ac18452296f6"}, ] [package.dependencies] diff --git a/airbyte-integrations/connectors/source-workramp/pyproject.toml b/airbyte-integrations/connectors/source-workramp/pyproject.toml index 6c17eeb02732..f3a8539d9a0c 100644 --- a/airbyte-integrations/connectors/source-workramp/pyproject.toml +++ b/airbyte-integrations/connectors/source-workramp/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.1.7" +version = "0.1.8" name = "source-workramp" description = "Source implementation for Workramp." authors = [ "Elliot Trabac ",] diff --git a/docs/integrations/sources/workramp.md b/docs/integrations/sources/workramp.md index e5af0ade71d7..349df6591845 100644 --- a/docs/integrations/sources/workramp.md +++ b/docs/integrations/sources/workramp.md @@ -40,6 +40,7 @@ The Workramp connector should not run into Workramp API limitations under normal | Version | Date | Pull Request | Subject | |:--------|:-----------| :------------------------------------------------------- | :---------------------------- | +| 0.1.8 | 2024-07-13 | [41473](https://github.com/airbytehq/airbyte/pull/41473) | Update dependencies | | 0.1.7 | 2024-07-09 | [41116](https://github.com/airbytehq/airbyte/pull/41116) | Update dependencies | | 0.1.6 | 2024-07-06 | [40845](https://github.com/airbytehq/airbyte/pull/40845) | Update dependencies | | 0.1.5 | 2024-06-25 | [40388](https://github.com/airbytehq/airbyte/pull/40388) | Update dependencies | From dc0289f51e38fa0cda8f9fb8f88d33a39b126831 Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:30:17 +0200 Subject: [PATCH 255/260] =?UTF-8?q?=F0=9F=90=99=20source-visma-economic:?= =?UTF-8?q?=20run=20up-to-date=20pipeline=20[2024-07-13]=20(#41456)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-visma-economic/metadata.yaml | 4 ++-- .../connectors/source-visma-economic/poetry.lock | 6 +++--- .../connectors/source-visma-economic/pyproject.toml | 2 +- docs/integrations/sources/visma-economic.md | 1 + 4 files changed, 7 insertions(+), 6 deletions(-) diff --git a/airbyte-integrations/connectors/source-visma-economic/metadata.yaml b/airbyte-integrations/connectors/source-visma-economic/metadata.yaml index 2f290f08ca53..9448bca05315 100644 --- a/airbyte-integrations/connectors/source-visma-economic/metadata.yaml +++ b/airbyte-integrations/connectors/source-visma-economic/metadata.yaml @@ -3,11 +3,11 @@ data: hosts: - restapi.e-conomic.com connectorBuildOptions: - baseImage: docker.io/airbyte/python-connector-base:1.2.3@sha256:a8abfdc75f8e22931657a1ae15069e7b925e74bb7b5ef36371a85e4caeae5696 + baseImage: docker.io/airbyte/python-connector-base:2.0.0@sha256:c44839ba84406116e8ba68722a0f30e8f6e7056c726f447681bb9e9ece8bd916 connectorSubtype: api connectorType: source definitionId: 42495935-95de-4f5c-ae08-8fac00f6b308 - dockerImageTag: 0.2.10 + dockerImageTag: 0.2.11 dockerRepository: airbyte/source-visma-economic documentationUrl: https://docs.airbyte.com/integrations/sources/visma-economic githubIssueLabel: source-visma-economic diff --git a/airbyte-integrations/connectors/source-visma-economic/poetry.lock b/airbyte-integrations/connectors/source-visma-economic/poetry.lock index cce71c3b0e79..a1ccc2d0271d 100644 --- a/airbyte-integrations/connectors/source-visma-economic/poetry.lock +++ b/airbyte-integrations/connectors/source-visma-economic/poetry.lock @@ -288,13 +288,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] diff --git a/airbyte-integrations/connectors/source-visma-economic/pyproject.toml b/airbyte-integrations/connectors/source-visma-economic/pyproject.toml index 031db31a8d10..17267ea357ac 100644 --- a/airbyte-integrations/connectors/source-visma-economic/pyproject.toml +++ b/airbyte-integrations/connectors/source-visma-economic/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.2.10" +version = "0.2.11" name = "source-visma-economic" description = "Source implementation for Visma Economic." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/visma-economic.md b/docs/integrations/sources/visma-economic.md index d597b7815161..0682f20fb1e2 100644 --- a/docs/integrations/sources/visma-economic.md +++ b/docs/integrations/sources/visma-economic.md @@ -52,6 +52,7 @@ For more information about the api see the [E-conomic REST API Documentation](ht | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :------------------------------------------------------------------------------ | +| 0.2.11 | 2024-07-13 | [41456](https://github.com/airbytehq/airbyte/pull/41456) | Update dependencies | | 0.2.10 | 2024-07-09 | [41292](https://github.com/airbytehq/airbyte/pull/41292) | Update dependencies | | 0.2.9 | 2024-07-06 | [40905](https://github.com/airbytehq/airbyte/pull/40905) | Update dependencies | | 0.2.8 | 2024-06-25 | [40492](https://github.com/airbytehq/airbyte/pull/40492) | Update dependencies | From 5f042afe8bf653ce20c780a3683c1a19d0433e9a Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:30:20 +0200 Subject: [PATCH 256/260] =?UTF-8?q?=F0=9F=90=99=20source-appfollow:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-07-13]=20(#41372)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-appfollow/metadata.yaml | 4 ++-- .../connectors/source-appfollow/poetry.lock | 12 ++++++------ .../connectors/source-appfollow/pyproject.toml | 2 +- docs/integrations/sources/appfollow.md | 1 + 4 files changed, 10 insertions(+), 9 deletions(-) diff --git a/airbyte-integrations/connectors/source-appfollow/metadata.yaml b/airbyte-integrations/connectors/source-appfollow/metadata.yaml index 962d316294a1..29afac08591b 100644 --- a/airbyte-integrations/connectors/source-appfollow/metadata.yaml +++ b/airbyte-integrations/connectors/source-appfollow/metadata.yaml @@ -14,7 +14,7 @@ data: connectorSubtype: api connectorType: source definitionId: b4375641-e270-41d3-9c20-4f9cecad87a8 - dockerImageTag: 1.0.6 + dockerImageTag: 1.0.7 dockerRepository: airbyte/source-appfollow githubIssueLabel: source-appfollow icon: appfollow.svg @@ -44,5 +44,5 @@ data: type: GSM alias: airbyte-connector-testing-secret-store connectorBuildOptions: - baseImage: docker.io/airbyte/python-connector-base:1.2.3@sha256:a8abfdc75f8e22931657a1ae15069e7b925e74bb7b5ef36371a85e4caeae5696 + baseImage: docker.io/airbyte/python-connector-base:2.0.0@sha256:c44839ba84406116e8ba68722a0f30e8f6e7056c726f447681bb9e9ece8bd916 metadataSpecVersion: "1.0" diff --git a/airbyte-integrations/connectors/source-appfollow/poetry.lock b/airbyte-integrations/connectors/source-appfollow/poetry.lock index 4b03cc351726..13836360394d 100644 --- a/airbyte-integrations/connectors/source-appfollow/poetry.lock +++ b/airbyte-integrations/connectors/source-appfollow/poetry.lock @@ -410,13 +410,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] @@ -566,13 +566,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.84" +version = "0.1.85" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.84-py3-none-any.whl", hash = "sha256:01f3c6390dba26c583bac8dd0e551ce3d0509c7f55cad714db0b5c8d36e4c7ff"}, - {file = "langsmith-0.1.84.tar.gz", hash = "sha256:5220c0439838b9a5bd320fd3686be505c5083dcee22d2452006c23891153bea1"}, + {file = "langsmith-0.1.85-py3-none-any.whl", hash = "sha256:c1f94384f10cea96f7b4d33fd3db7ec180c03c7468877d50846f881d2017ff94"}, + {file = "langsmith-0.1.85.tar.gz", hash = "sha256:acff31f9e53efa48586cf8e32f65625a335c74d7c4fa306d1655ac18452296f6"}, ] [package.dependencies] diff --git a/airbyte-integrations/connectors/source-appfollow/pyproject.toml b/airbyte-integrations/connectors/source-appfollow/pyproject.toml index 4d493aa487cd..0eb6f7adf4e0 100644 --- a/airbyte-integrations/connectors/source-appfollow/pyproject.toml +++ b/airbyte-integrations/connectors/source-appfollow/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "1.0.6" +version = "1.0.7" name = "source-appfollow" description = "Source implementation for Appfollow." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/appfollow.md b/docs/integrations/sources/appfollow.md index 5b7518ab1d97..1c07fd916e0e 100644 --- a/docs/integrations/sources/appfollow.md +++ b/docs/integrations/sources/appfollow.md @@ -40,6 +40,7 @@ The Appfollow connector ideally should gracefully handle Appfollow API limitatio | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :-------------------------------------- | +| 1.0.7 | 2024-07-13 | [41372](https://github.com/airbytehq/airbyte/pull/41372) | Update dependencies | | 1.0.6 | 2024-07-09 | [41234](https://github.com/airbytehq/airbyte/pull/41234) | Update dependencies | | 1.0.5 | 2024-07-06 | [40793](https://github.com/airbytehq/airbyte/pull/40793) | Update dependencies | | 1.0.4 | 2024-06-25 | [40284](https://github.com/airbytehq/airbyte/pull/40284) | Update dependencies | From 070c9b000964f2313054b74abbe9b77a8c905bba Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:30:24 +0200 Subject: [PATCH 257/260] =?UTF-8?q?=F0=9F=90=99=20source-braintree:=20run?= =?UTF-8?q?=20up-to-date=20pipeline=20[2024-07-13]=20(#41340)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-braintree/metadata.yaml | 4 ++-- .../connectors/source-braintree/poetry.lock | 6 +++--- .../connectors/source-braintree/pyproject.toml | 2 +- docs/integrations/sources/braintree.md | 1 + 4 files changed, 7 insertions(+), 6 deletions(-) diff --git a/airbyte-integrations/connectors/source-braintree/metadata.yaml b/airbyte-integrations/connectors/source-braintree/metadata.yaml index 121b03e664e9..93b55ba95cb2 100644 --- a/airbyte-integrations/connectors/source-braintree/metadata.yaml +++ b/airbyte-integrations/connectors/source-braintree/metadata.yaml @@ -5,7 +5,7 @@ data: connectorSubtype: api connectorType: source definitionId: 63cea06f-1c75-458d-88fe-ad48c7cb27fd - dockerImageTag: 0.3.3 + dockerImageTag: 0.3.4 dockerRepository: airbyte/source-braintree documentationUrl: https://docs.airbyte.com/integrations/sources/braintree githubIssueLabel: source-braintree @@ -25,7 +25,7 @@ data: # Please update to the latest version of the connector base image. # https://hub.docker.com/r/airbyte/python-connector-base # Please use the full address with sha256 hash to guarantee build reproducibility. - baseImage: docker.io/airbyte/python-connector-base:1.2.3@sha256:a8abfdc75f8e22931657a1ae15069e7b925e74bb7b5ef36371a85e4caeae5696 + baseImage: docker.io/airbyte/python-connector-base:2.0.0@sha256:c44839ba84406116e8ba68722a0f30e8f6e7056c726f447681bb9e9ece8bd916 releaseStage: alpha supportLevel: community tags: diff --git a/airbyte-integrations/connectors/source-braintree/poetry.lock b/airbyte-integrations/connectors/source-braintree/poetry.lock index fcb790bc20a6..7d82b6453a67 100644 --- a/airbyte-integrations/connectors/source-braintree/poetry.lock +++ b/airbyte-integrations/connectors/source-braintree/poetry.lock @@ -301,13 +301,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] diff --git a/airbyte-integrations/connectors/source-braintree/pyproject.toml b/airbyte-integrations/connectors/source-braintree/pyproject.toml index 3744490a10b7..f0edf1345bd9 100644 --- a/airbyte-integrations/connectors/source-braintree/pyproject.toml +++ b/airbyte-integrations/connectors/source-braintree/pyproject.toml @@ -3,7 +3,7 @@ requires = ["poetry-core>=1.0.0"] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.3.3" +version = "0.3.4" name = "source-braintree" description = "Source implementation for Braintree." authors = ["Airbyte "] diff --git a/docs/integrations/sources/braintree.md b/docs/integrations/sources/braintree.md index ee7f12418b77..14fdbabd4e08 100644 --- a/docs/integrations/sources/braintree.md +++ b/docs/integrations/sources/braintree.md @@ -72,6 +72,7 @@ The Braintree connector should not run into Braintree API limitations under norm | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :--------------------------------------------------- | +| 0.3.4 | 2024-07-13 | [41340](https://github.com/airbytehq/airbyte/pull/41340) | Update dependencies | | 0.3.3 | 2024-07-09 | [41312](https://github.com/airbytehq/airbyte/pull/41312) | Update dependencies | | 0.3.2 | 2024-07-06 | [40863](https://github.com/airbytehq/airbyte/pull/40863) | Update dependencies | | 0.3.1 | 2024-07-02 | [40693](https://github.com/airbytehq/airbyte/pull/40693) | Corrects subscription stream fields | From ddc60b0a454c2a3c0298eecab878363140e41d9c Mon Sep 17 00:00:00 2001 From: Augustin Date: Sun, 14 Jul 2024 02:30:29 +0200 Subject: [PATCH 258/260] =?UTF-8?q?=F0=9F=90=99=20source-exchange-rates:?= =?UTF-8?q?=20run=20up-to-date=20pipeline=20[2024-07-13]=20(#41157)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../source-exchange-rates/metadata.yaml | 4 ++-- .../source-exchange-rates/poetry.lock | 18 +++++++++--------- .../source-exchange-rates/pyproject.toml | 2 +- docs/integrations/sources/exchange-rates.md | 1 + 4 files changed, 13 insertions(+), 12 deletions(-) diff --git a/airbyte-integrations/connectors/source-exchange-rates/metadata.yaml b/airbyte-integrations/connectors/source-exchange-rates/metadata.yaml index eb8e4f602f4f..3bfeeebdebba 100644 --- a/airbyte-integrations/connectors/source-exchange-rates/metadata.yaml +++ b/airbyte-integrations/connectors/source-exchange-rates/metadata.yaml @@ -16,11 +16,11 @@ data: # Please update to the latest version of the connector base image. # https://hub.docker.com/r/airbyte/python-connector-base # Please use the full address with sha256 hash to guarantee build reproducibility. - baseImage: docker.io/airbyte/python-connector-base:1.2.2@sha256:57703de3b4c4204bd68a7b13c9300f8e03c0189bffddaffc796f1da25d2dbea0 + baseImage: docker.io/airbyte/python-connector-base:2.0.0@sha256:c44839ba84406116e8ba68722a0f30e8f6e7056c726f447681bb9e9ece8bd916 connectorSubtype: api connectorType: source definitionId: e2b40e36-aa0e-4bed-b41b-bcea6fa348b1 - dockerImageTag: 1.3.6 + dockerImageTag: 1.3.7 dockerRepository: airbyte/source-exchange-rates githubIssueLabel: source-exchange-rates icon: exchangeratesapi.svg diff --git a/airbyte-integrations/connectors/source-exchange-rates/poetry.lock b/airbyte-integrations/connectors/source-exchange-rates/poetry.lock index f0955bd67e75..cc9d1ecb9669 100644 --- a/airbyte-integrations/connectors/source-exchange-rates/poetry.lock +++ b/airbyte-integrations/connectors/source-exchange-rates/poetry.lock @@ -410,13 +410,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] @@ -566,13 +566,13 @@ extended-testing = ["jinja2 (>=3,<4)"] [[package]] name = "langsmith" -version = "0.1.83" +version = "0.1.85" description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform." optional = false python-versions = "<4.0,>=3.8.1" files = [ - {file = "langsmith-0.1.83-py3-none-any.whl", hash = "sha256:f54d8cd8479b648b6339f3f735d19292c3516d080f680933ecdca3eab4b67ed3"}, - {file = "langsmith-0.1.83.tar.gz", hash = "sha256:5cdd947212c8ad19adb992c06471c860185a777daa6859bb47150f90daf64bf3"}, + {file = "langsmith-0.1.85-py3-none-any.whl", hash = "sha256:c1f94384f10cea96f7b4d33fd3db7ec180c03c7468877d50846f881d2017ff94"}, + {file = "langsmith-0.1.85.tar.gz", hash = "sha256:acff31f9e53efa48586cf8e32f65625a335c74d7c4fa306d1655ac18452296f6"}, ] [package.dependencies] @@ -1129,13 +1129,13 @@ yaml = ["pyyaml (>=6.0.1)"] [[package]] name = "setuptools" -version = "70.2.0" +version = "70.3.0" description = "Easily download, build, install, upgrade, and uninstall Python packages" optional = false python-versions = ">=3.8" files = [ - {file = "setuptools-70.2.0-py3-none-any.whl", hash = "sha256:b8b8060bb426838fbe942479c90296ce976249451118ef566a5a0b7d8b78fb05"}, - {file = "setuptools-70.2.0.tar.gz", hash = "sha256:bd63e505105011b25c3c11f753f7e3b8465ea739efddaccef8f0efac2137bac1"}, + {file = "setuptools-70.3.0-py3-none-any.whl", hash = "sha256:fe384da74336c398e0d956d1cae0669bc02eed936cdb1d49b57de1990dc11ffc"}, + {file = "setuptools-70.3.0.tar.gz", hash = "sha256:f171bab1dfbc86b132997f26a119f6056a57950d058587841a0082e8830f9dc5"}, ] [package.extras] diff --git a/airbyte-integrations/connectors/source-exchange-rates/pyproject.toml b/airbyte-integrations/connectors/source-exchange-rates/pyproject.toml index 4d43f0cc5aef..0420cd5ef9db 100644 --- a/airbyte-integrations/connectors/source-exchange-rates/pyproject.toml +++ b/airbyte-integrations/connectors/source-exchange-rates/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "1.3.6" +version = "1.3.7" name = "source-exchange-rates" description = "Source implementation for Exchange Rates." authors = [ "Airbyte ",] diff --git a/docs/integrations/sources/exchange-rates.md b/docs/integrations/sources/exchange-rates.md index ba8186a28579..4dfc6df698d5 100644 --- a/docs/integrations/sources/exchange-rates.md +++ b/docs/integrations/sources/exchange-rates.md @@ -90,6 +90,7 @@ The Exchange Rates API has rate limits that vary per pricing plan. The free plan | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :------------------------------------------------------------------------------------------------------------------ | +| 1.3.7 | 2024-07-13 | [41157](https://github.com/airbytehq/airbyte/pull/41157) | Update dependencies | | 1.3.6 | 2024-07-06 | [40924](https://github.com/airbytehq/airbyte/pull/40924) | Update dependencies | | 1.3.5 | 2024-06-26 | [40508](https://github.com/airbytehq/airbyte/pull/40508) | Update dependencies | | 1.3.4 | 2024-06-23 | [40125](https://github.com/airbytehq/airbyte/pull/40125) | Update dependencies | From 311ea0bc22ade94ff43adc86b13546ae324473ce Mon Sep 17 00:00:00 2001 From: Aldo Gonzalez <168454423+aldogonzalez8@users.noreply.github.com> Date: Sun, 14 Jul 2024 11:53:25 -0600 Subject: [PATCH 259/260] =?UTF-8?q?=F0=9F=90=9B=20bug(Source=20zendesk-sup?= =?UTF-8?q?ort):=20amend=20expected=20record=20id=20(#41939)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../integration_tests/expected_records.jsonl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/airbyte-integrations/connectors/source-zendesk-support/integration_tests/expected_records.jsonl b/airbyte-integrations/connectors/source-zendesk-support/integration_tests/expected_records.jsonl index 5bb33ec8dd50..b87cca36e519 100644 --- a/airbyte-integrations/connectors/source-zendesk-support/integration_tests/expected_records.jsonl +++ b/airbyte-integrations/connectors/source-zendesk-support/integration_tests/expected_records.jsonl @@ -53,7 +53,7 @@ {"stream": "article_comments", "data": {"id": 7253381447311, "url": "https://d3v-airbyte.zendesk.com/api/v2/help_center/en-us/articles/7253394935055/comments/7253381447311.json", "body": "

Test comment 2

", "author_id": 360786799676, "source_id": 7253394935055, "source_type": "Article", "html_url": "https://d3v-airbyte.zendesk.com/hc/en-us/articles/7253394935055/comments/7253381447311", "locale": "en-us", "created_at": "2023-06-22T00:33:36Z", "updated_at": "2023-06-22T00:33:42Z", "vote_sum": -1, "vote_count": 1, "non_author_editor_id": null, "non_author_updated_at": null}, "emitted_at": 1720179618138} {"stream": "article_comments", "data": {"id": 7253366869647, "url": "https://d3v-airbyte.zendesk.com/api/v2/help_center/en-us/articles/7253394935055/comments/7253366869647.json", "body": "

Test comment

", "author_id": 360786799676, "source_id": 7253394935055, "source_type": "Article", "html_url": "https://d3v-airbyte.zendesk.com/hc/en-us/articles/7253394935055/comments/7253366869647", "locale": "en-us", "created_at": "2023-06-22T00:33:29Z", "updated_at": "2023-06-22T00:33:40Z", "vote_sum": 1, "vote_count": 1, "non_author_editor_id": null, "non_author_updated_at": null}, "emitted_at": 1720179618139} {"stream": "article_comment_votes", "data": {"id": 7253393200655, "url": "https://d3v-airbyte.zendesk.com/api/v2/help_center/votes/7253393200655.json", "user_id": 360786799676, "value": -1, "item_id": 7253381447311, "item_type": "Comment", "created_at": "2023-06-22T00:33:42Z", "updated_at": "2023-06-22T00:33:42Z"}, "emitted_at": 1720179626332} -{"stream": "article_comment_votes", "data": {"id": 7253381522703, "url": "https://d3v-airbyte.zendesk.com/api/v2/help_center/votes/7253381522703.json", "user_id": 360786799676, "value": 1, "item_id": 7253366869647, "item_type": "Comment", "created_at": "2023-06-22T00:33:40Z", "updated_at": "2023-06-22T00:33:40Z"}, "emitted_at": 1720179626703} +{"stream":"article_comment_votes","data":{"id":10195844788495,"url":"https://d3v-airbyte.zendesk.com/api/v2/help_center/votes/10195844788495.json","user_id":360786799676,"value":1,"item_id":7253366869647,"item_type":"Comment","created_at":"2024-07-12T11:36:32Z","updated_at":"2024-07-12T11:36:32Z"},"emitted_at":1720892329723} {"stream": "article_votes", "data": {"id": 7816935174287, "url": "https://d3v-airbyte.zendesk.com/api/v2/help_center/votes/7816935174287.json", "user_id": 360786799676, "value": 1, "item_id": 7253394935055, "item_type": "Article", "created_at": "2023-09-04T13:52:38Z", "updated_at": "2023-09-04T13:52:38Z"}, "emitted_at": 1720179630599} {"stream": "article_votes", "data": {"id": 7816935384335, "url": "https://d3v-airbyte.zendesk.com/api/v2/help_center/votes/7816935384335.json", "user_id": 360786799676, "value": 1, "item_id": 7253391120527, "item_type": "Article", "created_at": "2023-09-04T13:52:58Z", "updated_at": "2023-09-04T13:52:58Z"}, "emitted_at": 1720179630986} {"stream": "posts", "data": {"id": 7253351904271, "title": "How do I get around the community?", "details": "

You can use search to find answers. You can also browse topics and posts using views and filters. See Getting around the community.

", "author_id": 360786799676, "vote_sum": 0, "vote_count": 0, "comment_count": 0, "follower_count": 0, "topic_id": 7253351897871, "html_url": "https://d3v-airbyte.zendesk.com/hc/en-us/community/posts/7253351904271-How-do-I-get-around-the-community", "created_at": "2023-06-22T00:32:21Z", "updated_at": "2023-06-22T00:32:21Z", "url": "https://d3v-airbyte.zendesk.com/api/v2/help_center/community/posts/7253351904271-How-do-I-get-around-the-community.json", "featured": false, "pinned": false, "closed": false, "frozen": false, "status": "none", "non_author_editor_id": null, "non_author_updated_at": null, "content_tag_ids": []}, "emitted_at": 1720179631673} From 08203c7f0c86dabea8c6af29af1264c10fdaeaec Mon Sep 17 00:00:00 2001 From: btkcodedev Date: Mon, 15 Jul 2024 05:45:39 +0530 Subject: [PATCH 260/260] =?UTF-8?q?=E2=9C=A8Source=20TMDB:=20Make=20Connec?= =?UTF-8?q?tor=20Compatible=20with=20Builder=20(#39109)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-tmdb/README.md | 2 +- .../source-tmdb/acceptance-test-config.yml | 10 +- .../connectors/source-tmdb/metadata.yaml | 7 +- .../connectors/source-tmdb/poetry.lock | 18 +- .../connectors/source-tmdb/pyproject.toml | 4 +- .../source-tmdb/source_tmdb/manifest.yaml | 10351 +++++++++++++++- .../schemas/certification_movie.json | 607 - .../source_tmdb/schemas/certification_tv.json | 398 - .../source_tmdb/schemas/changes_movie.json | 59 - .../source_tmdb/schemas/changes_person.json | 59 - .../source_tmdb/schemas/changes_tv.json | 59 - .../schemas/movies_alternative_titles.json | 49 - .../source_tmdb/schemas/movies_changes.json | 85 - .../source_tmdb/schemas/movies_credits.json | 192 - .../source_tmdb/schemas/movies_details.json | 265 - .../schemas/movies_external_ids.json | 43 - .../source_tmdb/schemas/movies_images.json | 128 - .../source_tmdb/schemas/movies_keywords.json | 41 - .../source_tmdb/schemas/movies_latest.json | 189 - .../source_tmdb/schemas/movies_lists.json | 208 - .../schemas/movies_now_playing.json | 158 - .../source_tmdb/schemas/movies_popular.json | 137 - .../schemas/movies_recommendations.json | 135 - .../schemas/movies_releases_dates.json | 75 - .../source_tmdb/schemas/movies_reviews.json | 122 - .../schemas/movies_similar_movies.json | 135 - .../source_tmdb/schemas/movies_top_rated.json | 327 - .../schemas/movies_translations.json | 456 - .../source_tmdb/schemas/movies_upcoming.json | 158 - .../source_tmdb/schemas/movies_videos.json | 135 - .../schemas/movies_watch_providers.json | 5814 --------- .../schemas/search_collections.json | 67 - .../source_tmdb/schemas/search_companies.json | 60 - .../source_tmdb/schemas/search_keywords.json | 53 - .../source_tmdb/schemas/search_movies.json | 137 - .../source_tmdb/schemas/search_multi.json | 137 - .../source_tmdb/schemas/search_people.json | 189 - .../source_tmdb/schemas/search_tv_shows.json | 138 - .../source_tmdb/schemas/trending.json | 137 - .../source-tmdb/source_tmdb/spec.yaml | 38 - docs/integrations/sources/tmdb-migrations.md | 8 + docs/integrations/sources/tmdb.md | 11 +- 42 files changed, 10095 insertions(+), 11306 deletions(-) delete mode 100644 airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/certification_movie.json delete mode 100644 airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/certification_tv.json delete mode 100644 airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/changes_movie.json delete mode 100644 airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/changes_person.json delete mode 100644 airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/changes_tv.json delete mode 100644 airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/movies_alternative_titles.json delete mode 100644 airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/movies_changes.json delete mode 100644 airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/movies_credits.json delete mode 100644 airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/movies_details.json delete mode 100644 airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/movies_external_ids.json delete mode 100644 airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/movies_images.json delete mode 100644 airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/movies_keywords.json delete mode 100644 airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/movies_latest.json delete mode 100644 airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/movies_lists.json delete mode 100644 airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/movies_now_playing.json delete mode 100644 airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/movies_popular.json delete mode 100644 airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/movies_recommendations.json delete mode 100644 airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/movies_releases_dates.json delete mode 100644 airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/movies_reviews.json delete mode 100644 airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/movies_similar_movies.json delete mode 100644 airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/movies_top_rated.json delete mode 100644 airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/movies_translations.json delete mode 100644 airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/movies_upcoming.json delete mode 100644 airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/movies_videos.json delete mode 100644 airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/movies_watch_providers.json delete mode 100644 airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/search_collections.json delete mode 100644 airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/search_companies.json delete mode 100644 airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/search_keywords.json delete mode 100644 airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/search_movies.json delete mode 100644 airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/search_multi.json delete mode 100644 airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/search_people.json delete mode 100644 airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/search_tv_shows.json delete mode 100644 airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/trending.json delete mode 100644 airbyte-integrations/connectors/source-tmdb/source_tmdb/spec.yaml create mode 100644 docs/integrations/sources/tmdb-migrations.md diff --git a/airbyte-integrations/connectors/source-tmdb/README.md b/airbyte-integrations/connectors/source-tmdb/README.md index fcd4a22e0df9..8ed1075d62e2 100644 --- a/airbyte-integrations/connectors/source-tmdb/README.md +++ b/airbyte-integrations/connectors/source-tmdb/README.md @@ -30,7 +30,7 @@ See `sample_files/sample_config.json` for a sample config file. poetry run source-tmdb spec poetry run source-tmdb check --config secrets/config.json poetry run source-tmdb discover --config secrets/config.json -poetry run source-tmdb read --config secrets/config.json --catalog sample_files/configured_catalog.json +poetry run source-tmdb read --config secrets/config.json --catalog integration_tests/configured_catalog.json ``` ### Running unit tests diff --git a/airbyte-integrations/connectors/source-tmdb/acceptance-test-config.yml b/airbyte-integrations/connectors/source-tmdb/acceptance-test-config.yml index f408a7e6ad9e..08039128d554 100644 --- a/airbyte-integrations/connectors/source-tmdb/acceptance-test-config.yml +++ b/airbyte-integrations/connectors/source-tmdb/acceptance-test-config.yml @@ -14,15 +14,15 @@ acceptance_tests: discovery: tests: - config_path: "secrets/config.json" + backward_compatibility_tests_config: + disable_for_version: "0.1.2" #Type in schema['properties']['results']['items']['properties']['known_for']['items']['properties']['poster_path'] can be optionally null basic_read: tests: - config_path: "secrets/config.json" configured_catalog_path: "integration_tests/configured_catalog.json" - empty_streams: [] - # TODO uncomment this block to specify that the tests should assert the connector outputs the records provided in the input file a file - # expect_records: - # path: "integration_tests/expected_records.jsonl" - # exact_order: no + empty_streams: + - name: trending + bypass_reason: Streams seems to be not responding incremental: bypass_reason: "This connector does not implement incremental sync" # TODO uncomment this block this block if your connector implements incremental sync: diff --git a/airbyte-integrations/connectors/source-tmdb/metadata.yaml b/airbyte-integrations/connectors/source-tmdb/metadata.yaml index 703317ee3000..414d61dc48d9 100644 --- a/airbyte-integrations/connectors/source-tmdb/metadata.yaml +++ b/airbyte-integrations/connectors/source-tmdb/metadata.yaml @@ -2,7 +2,7 @@ data: connectorSubtype: api connectorType: source definitionId: 6240848f-f795-45eb-8f5e-c7542822fc03 - dockerImageTag: 0.1.7 + dockerImageTag: 1.0.0 dockerRepository: airbyte/source-tmdb githubIssueLabel: source-tmdb icon: tmdb.svg @@ -17,6 +17,11 @@ data: enabled: false oss: enabled: true + releases: + breakingChanges: + 1.0.0: + upgradeDeadline: "2024-07-30" + message: The search_people schema has been changed it's 'type' in schema['properties']['fully_deducted'] to be optionally empty releaseStage: alpha documentationUrl: https://docs.airbyte.com/integrations/sources/tmdb tags: diff --git a/airbyte-integrations/connectors/source-tmdb/poetry.lock b/airbyte-integrations/connectors/source-tmdb/poetry.lock index 13836360394d..b55b9b02d5dd 100644 --- a/airbyte-integrations/connectors/source-tmdb/poetry.lock +++ b/airbyte-integrations/connectors/source-tmdb/poetry.lock @@ -1,14 +1,14 @@ -# This file is automatically @generated by Poetry 1.6.1 and should not be changed by hand. +# This file is automatically @generated by Poetry 1.8.2 and should not be changed by hand. [[package]] name = "airbyte-cdk" -version = "1.0.0" +version = "1.8.0" description = "A framework for writing Airbyte Connectors." optional = false python-versions = "<4.0,>=3.9" files = [ - {file = "airbyte_cdk-1.0.0-py3-none-any.whl", hash = "sha256:74cd8d4f9790b9a164731c42236cb015166b5ab2b0754b6a1fd730f223eb4e7f"}, - {file = "airbyte_cdk-1.0.0.tar.gz", hash = "sha256:102b75ce589460be4f75dabd3402ac7aa633c90758558c81d140fd436b76371f"}, + {file = "airbyte_cdk-1.8.0-py3-none-any.whl", hash = "sha256:ca23d7877005fe87ffc4a3a3de29ee55eed625d874eb59b49664b156f9ae9ee2"}, + {file = "airbyte_cdk-1.8.0.tar.gz", hash = "sha256:ac82fbfd6b650b7ed015900748e30fdd2a4c574caa54d1bcc03cb584a17f1533"}, ] [package.dependencies] @@ -17,7 +17,7 @@ backoff = "*" cachetools = "*" cryptography = ">=42.0.5,<43.0.0" Deprecated = ">=1.2,<1.3" -dpath = ">=2.0.1,<2.1.0" +dpath = ">=2.1.6,<3.0.0" genson = "1.2.2" isodate = ">=0.6.1,<0.7.0" Jinja2 = ">=3.1.2,<3.2.0" @@ -399,13 +399,13 @@ dev = ["PyTest", "PyTest-Cov", "bump2version (<1)", "sphinx (<2)", "tox"] [[package]] name = "dpath" -version = "2.0.8" +version = "2.2.0" description = "Filesystem-like pathing and searching for dictionaries" optional = false python-versions = ">=3.7" files = [ - {file = "dpath-2.0.8-py3-none-any.whl", hash = "sha256:f92f595214dd93a00558d75d4b858beee519f4cffca87f02616ad6cd013f3436"}, - {file = "dpath-2.0.8.tar.gz", hash = "sha256:a3440157ebe80d0a3ad794f1b61c571bef125214800ffdb9afc9424e8250fe9b"}, + {file = "dpath-2.2.0-py3-none-any.whl", hash = "sha256:b330a375ded0a0d2ed404440f6c6a715deae5313af40bbb01c8a41d891900576"}, + {file = "dpath-2.2.0.tar.gz", hash = "sha256:34f7e630dc55ea3f219e555726f5da4b4b25f2200319c8e6902c394258dd6a3e"}, ] [[package]] @@ -1334,4 +1334,4 @@ files = [ [metadata] lock-version = "2.0" python-versions = "^3.9,<3.12" -content-hash = "656a09cf041cb51ce84e287501b40bd60394c28750360db74d7c8fc4b7f291f7" +content-hash = "912963301c039ac2f732e49803dddb895253a3f531d279fb210b45c6ea2e435a" diff --git a/airbyte-integrations/connectors/source-tmdb/pyproject.toml b/airbyte-integrations/connectors/source-tmdb/pyproject.toml index 85898be1ae73..5a1d2920bf91 100644 --- a/airbyte-integrations/connectors/source-tmdb/pyproject.toml +++ b/airbyte-integrations/connectors/source-tmdb/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.1.7" +version = "1.0.0" name = "source-tmdb" description = "Source implementation for Tmdb." authors = [ "Airbyte ",] @@ -17,7 +17,7 @@ include = "source_tmdb" [tool.poetry.dependencies] python = "^3.9,<3.12" -airbyte-cdk = "1.0.0" +airbyte-cdk = "^1" [tool.poetry.scripts] source-tmdb = "source_tmdb.run:run" diff --git a/airbyte-integrations/connectors/source-tmdb/source_tmdb/manifest.yaml b/airbyte-integrations/connectors/source-tmdb/source_tmdb/manifest.yaml index fa0697965ba2..643707fe3bf6 100644 --- a/airbyte-integrations/connectors/source-tmdb/source_tmdb/manifest.yaml +++ b/airbyte-integrations/connectors/source-tmdb/source_tmdb/manifest.yaml @@ -1,300 +1,10065 @@ -version: "0.29.0" +version: 0.79.1 -definitions: - selector: - extractor: - field_path: [] - schema_normalization: Default - requester: - url_base: "https://api.themoviedb.org/3/" - http_method: "GET" - request_parameters: - api_key: "{{ config['api_key'] }}" - language: | - {{ - config['language'] - if parameters['name'] == 'search_collections' or - parameters['name'] == 'search_movies' or - parameters['name'] == 'search_multi' or - parameters['name'] == 'search_people' or - parameters['name'] == 'search_tv_shows' - else '' - }} - query: | - {{ - config['query'] - if parameters['name'] == 'search_collections' or - parameters['name'] == 'search_companies' or - parameters['name'] == 'search_keywords' or - parameters['name'] == 'search_movies' or - parameters['name'] == 'search_multi' or - parameters['name'] == 'search_people' or - parameters['name'] == 'search_tv_shows' - else '' - }} - retriever: - record_selector: - $ref: "#/definitions/selector" - paginator: - type: NoPagination - requester: - $ref: "#/definitions/requester" - - base_stream: - schema_loader: - type: JsonFileSchemaLoader - file_path: "./source_tmdb/schemas/{{ parameters['name'] }}.json" - retriever: - $ref: "#/definitions/retriever" - - page_stream: - schema_loader: - type: JsonFileSchemaLoader - file_path: "./source_tmdb/schemas/{{ parameters['name'] }}.json" - retriever: - record_selector: - $ref: "#/definitions/selector" - paginator: - type: "DefaultPaginator" - pagination_strategy: - type: "PageIncrement" - page_size: 1000 - page_token_option: - type: RequestOption - inject_into: "request_parameter" - field_name: "page" - page_size_option: - inject_into: "request_parameter" - field_name: "" - requester: - $ref: "#/definitions/requester" - - certification_movie_stream: - $ref: "#/definitions/base_stream" - $parameters: - name: "certification_movie" - path: "/certification/movie/list" - - certification_tv_stream: - $ref: "#/definitions/base_stream" - $parameters: - name: "certification_tv" - path: "/certification/tv/list" - - changes_movie_stream: - $ref: "#/definitions/page_stream" - $parameters: - name: "changes_movie" - path: "/movie/changes" - - changes_tv_stream: - $ref: "#/definitions/page_stream" - $parameters: - name: "changes_tv" - path: "/tv/changes" - - changes_person_stream: - $ref: "#/definitions/page_stream" - $parameters: - name: "changes_person" - path: "/person/changes" - - movies_details_stream: - $ref: "#/definitions/base_stream" - $parameters: - name: "movies_details" - path: "/movie/{{ config['movie_id'] }}" - - movies_alternative_titles_stream: - $ref: "#/definitions/base_stream" - $parameters: - name: "movies_alternative_titles" - path: "/movie/{{ config['movie_id'] }}/alternative_titles" - - movies_credits_stream: - $ref: "#/definitions/base_stream" - $parameters: - name: "movies_credits" - path: "/movie/{{ config['movie_id'] }}/credits" - - movies_external_ids_stream: - $ref: "#/definitions/base_stream" - $parameters: - name: "movies_external_ids" - path: "/movie/{{ config['movie_id'] }}/external_ids" - - movies_images_stream: - $ref: "#/definitions/base_stream" - $parameters: - name: "movies_images" - path: "/movie/{{ config['movie_id'] }}/images" - - movies_keywords_stream: - $ref: "#/definitions/base_stream" - $parameters: - name: "movies_keywords" - path: "/movie/{{ config['movie_id'] }}/keywords" - - movies_lists_stream: - $ref: "#/definitions/base_stream" - $parameters: - name: "movies_lists" - path: "/movie/{{ config['movie_id'] }}/lists" - - movies_recommendations_stream: - $ref: "#/definitions/base_stream" - $parameters: - name: "movies_recommendations" - path: "/movie/{{ config['movie_id'] }}/recommendations" - - movies_releases_dates_stream: - $ref: "#/definitions/base_stream" - $parameters: - name: "movies_releases_dates" - path: "/movie/{{ config['movie_id'] }}/release_dates" - - movies_reviews_stream: - $ref: "#/definitions/base_stream" - $parameters: - name: "movies_reviews" - path: "/movie/{{ config['movie_id'] }}/reviews" - - movies_similar_movies_stream: - $ref: "#/definitions/base_stream" - $parameters: - name: "movies_similar_movies" - path: "/movie/{{ config['movie_id'] }}/similar" +type: DeclarativeSource - movies_translations_stream: - $ref: "#/definitions/base_stream" - $parameters: - name: "movies_translations" - path: "/movie/{{ config['movie_id'] }}/translations" - - movies_videos_stream: - $ref: "#/definitions/base_stream" - $parameters: - name: "movies_videos" - path: "/movie/{{ config['movie_id'] }}/videos" - - movies_watch_providers_stream: - $ref: "#/definitions/base_stream" - $parameters: - name: "movies_watch_providers" - path: "/movie/{{ config['movie_id'] }}/watch/providers" - - movies_latest_stream: - $ref: "#/definitions/base_stream" - $parameters: - name: "movies_latest" - path: "/movie/latest" - - movies_now_playing_stream: - $ref: "#/definitions/page_stream" - $parameters: - name: "movies_now_playing" - path: "/movie/now_playing" - - movies_popular_stream: - $ref: "#/definitions/page_stream" - $parameters: - name: "movies_popular" - path: "/movie/popular" - - movies_top_rated_stream: - $ref: "#/definitions/page_stream" - $parameters: - name: "movies_top_rated" - path: "/movie/top_rated" - - movies_upcoming_stream: - $ref: "#/definitions/page_stream" - $parameters: - name: "movies_upcoming" - path: "/movie/upcoming" - - trending_stream: - $ref: "#/definitions/base_stream" - $parameters: - name: "trending" - path: "/trending/all/day" - - search_companies_stream: - $ref: "#/definitions/page_stream" - $parameters: - name: "search_companies" - path: "/search/company" - - search_collections_stream: - $ref: "#/definitions/page_stream" - $parameters: - name: "search_collections" - path: "/search/collection" - - search_keywords_stream: - $ref: "#/definitions/page_stream" - $parameters: - name: "search_keywords" - path: "/search/keyword" - - search_movies_stream: - $ref: "#/definitions/page_stream" - $parameters: - name: "search_movies" - path: "/search/movie" +check: + type: CheckStream + stream_names: + - certification_movie - search_multi_stream: - $ref: "#/definitions/page_stream" - $parameters: - name: "search_multi" - path: "/search/multi" +definitions: + streams: + certification_movie: + type: DeclarativeStream + name: certification_movie + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /certification/movie/list + http_method: GET + request_parameters: + api_key: "{{ config['api_key'] }}" + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/certification_movie" + certification_tv: + type: DeclarativeStream + name: certification_tv + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /certification/tv/list + http_method: GET + request_parameters: + api_key: "{{ config['api_key'] }}" + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/certification_tv" + changes_movie: + type: DeclarativeStream + name: changes_movie + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /movie/changes + http_method: GET + request_parameters: + api_key: "{{ config['api_key'] }}" + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + inject_into: request_parameter + field_name: "{{ config['nothing'] }}" + pagination_strategy: + type: PageIncrement + page_size: 1000 + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/changes_movie" + changes_tv: + type: DeclarativeStream + name: changes_tv + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /tv/changes + http_method: GET + request_parameters: + api_key: "{{ config['api_key'] }}" + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + inject_into: request_parameter + field_name: "{{ config['nothing'] }}" + pagination_strategy: + type: PageIncrement + page_size: 1000 + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/changes_tv" + changes_person: + type: DeclarativeStream + name: changes_person + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /person/changes + http_method: GET + request_parameters: + api_key: "{{ config['api_key'] }}" + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + inject_into: request_parameter + field_name: "{{ config['nothing'] }}" + pagination_strategy: + type: PageIncrement + page_size: 1000 + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/changes_person" + movies_details: + type: DeclarativeStream + name: movies_details + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /movie/{{ config['movie_id'] }} + http_method: GET + request_parameters: + api_key: "{{ config['api_key'] }}" + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/movies_details" + movies_alternative_titles: + type: DeclarativeStream + name: movies_alternative_titles + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /movie/{{ config['movie_id'] }}/alternative_titles + http_method: GET + request_parameters: + api_key: "{{ config['api_key'] }}" + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/movies_alternative_titles" + movies_credits: + type: DeclarativeStream + name: movies_credits + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /movie/{{ config['movie_id'] }}/credits + http_method: GET + request_parameters: + api_key: "{{ config['api_key'] }}" + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/movies_credits" + movies_external_ids: + type: DeclarativeStream + name: movies_external_ids + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /movie/{{ config['movie_id'] }}/external_ids + http_method: GET + request_parameters: + api_key: "{{ config['api_key'] }}" + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/movies_external_ids" + movies_images: + type: DeclarativeStream + name: movies_images + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /movie/{{ config['movie_id'] }}/images + http_method: GET + request_parameters: + api_key: "{{ config['api_key'] }}" + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/movies_images" + movies_keywords: + type: DeclarativeStream + name: movies_keywords + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /movie/{{ config['movie_id'] }}/keywords + http_method: GET + request_parameters: + api_key: "{{ config['api_key'] }}" + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/movies_keywords" + movies_latest: + type: DeclarativeStream + name: movies_latest + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /movie/latest + http_method: GET + request_parameters: + api_key: "{{ config['api_key'] }}" + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/movies_latest" + movies_lists: + type: DeclarativeStream + name: movies_lists + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /movie/{{ config['movie_id'] }}/lists + http_method: GET + request_parameters: + api_key: "{{ config['api_key'] }}" + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/movies_lists" + movies_now_playing: + type: DeclarativeStream + name: movies_now_playing + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /movie/now_playing + http_method: GET + request_parameters: + api_key: "{{ config['api_key'] }}" + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + inject_into: request_parameter + field_name: "{{ config['nothing'] }}" + pagination_strategy: + type: PageIncrement + page_size: 1000 + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/movies_now_playing" + movies_popular: + type: DeclarativeStream + name: movies_popular + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /movie/popular + http_method: GET + request_parameters: + api_key: "{{ config['api_key'] }}" + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + inject_into: request_parameter + field_name: "{{ config['nothing'] }}" + pagination_strategy: + type: PageIncrement + page_size: 1000 + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/movies_popular" + movies_recommendations: + type: DeclarativeStream + name: movies_recommendations + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /movie/{{ config['movie_id'] }}/recommendations + http_method: GET + request_parameters: + api_key: "{{ config['api_key'] }}" + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/movies_recommendations" + movies_releases_dates: + type: DeclarativeStream + name: movies_releases_dates + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /movie/{{ config['movie_id'] }}/release_dates + http_method: GET + request_parameters: + api_key: "{{ config['api_key'] }}" + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/movies_releases_dates" + movies_reviews: + type: DeclarativeStream + name: movies_reviews + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /movie/{{ config['movie_id'] }}/reviews + http_method: GET + request_parameters: + api_key: "{{ config['api_key'] }}" + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/movies_reviews" + movies_similar_movies: + type: DeclarativeStream + name: movies_similar_movies + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /movie/{{ config['movie_id'] }}/similar + http_method: GET + request_parameters: + api_key: "{{ config['api_key'] }}" + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/movies_similar_movies" + movies_top_rated: + type: DeclarativeStream + name: movies_top_rated + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /movie/top_rated + http_method: GET + request_parameters: + api_key: "{{ config['api_key'] }}" + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + inject_into: request_parameter + field_name: "{{ config['nothing'] }}" + pagination_strategy: + type: PageIncrement + page_size: 1000 + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/movies_top_rated" + movies_translations: + type: DeclarativeStream + name: movies_translations + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /movie/{{ config['movie_id'] }}/translations + http_method: GET + request_parameters: + api_key: "{{ config['api_key'] }}" + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/movies_translations" + movies_upcoming: + type: DeclarativeStream + name: movies_upcoming + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /movie/upcoming + http_method: GET + request_parameters: + api_key: "{{ config['api_key'] }}" + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + inject_into: request_parameter + field_name: "{{ config['nothing'] }}" + pagination_strategy: + type: PageIncrement + page_size: 1000 + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/movies_upcoming" + movies_videos: + type: DeclarativeStream + name: movies_videos + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /movie/{{ config['movie_id'] }}/videos + http_method: GET + request_parameters: + api_key: "{{ config['api_key'] }}" + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/movies_videos" + movies_watch_providers: + type: DeclarativeStream + name: movies_watch_providers + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /movie/{{ config['movie_id'] }}/watch/providers + http_method: GET + request_parameters: + api_key: "{{ config['api_key'] }}" + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/movies_watch_providers" + trending: + type: DeclarativeStream + name: trending + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /trending/all/day + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/trending" + search_collections: + type: DeclarativeStream + name: search_collections + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /search/collection + http_method: GET + request_parameters: + api_key: "{{ config['api_key'] }}" + language: "{{ config['language'] }}" + query: "{{ config['query'] }}" + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + inject_into: request_parameter + field_name: "{{ config['nothing'] }}" + pagination_strategy: + type: PageIncrement + page_size: 1000 + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/search_collections" + search_companies: + type: DeclarativeStream + name: search_companies + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /search/company + http_method: GET + request_parameters: + api_key: "{{ config['api_key'] }}" + query: "{{ config['query'] }}" + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + inject_into: request_parameter + field_name: "{{ config['nothing'] }}" + pagination_strategy: + type: PageIncrement + page_size: 1000 + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/search_companies" + search_keywords: + type: DeclarativeStream + name: search_keywords + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /search/keyword + http_method: GET + request_parameters: + api_key: "{{ config['api_key'] }}" + query: "{{ config['query'] }}" + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + inject_into: request_parameter + field_name: "{{ config['nothing'] }}" + pagination_strategy: + type: PageIncrement + page_size: 1000 + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/search_keywords" + search_movies: + type: DeclarativeStream + name: search_movies + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /search/movie + http_method: GET + request_parameters: + api_key: "{{ config['api_key'] }}" + query: "{{ config['query'] }}" + language: "{{ config['language'] }}" + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + inject_into: request_parameter + field_name: "{{ config['nothing'] }}" + pagination_strategy: + type: PageIncrement + page_size: 1000 + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/search_movies" + search_multi: + type: DeclarativeStream + name: search_multi + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /search/multi + http_method: GET + request_parameters: + api_key: "{{ config['api_key'] }}" + query: "{{ config['query'] }}" + language: "{{ config['language'] }}" + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + inject_into: request_parameter + field_name: "{{ config['nothing'] }}" + pagination_strategy: + type: PageIncrement + page_size: 1000 + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/search_multi" + search_people: + type: DeclarativeStream + name: search_people + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /search/person + http_method: GET + request_parameters: + api_key: "{{ config['api_key'] }}" + query: "{{ config['query'] }}" + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + inject_into: request_parameter + field_name: "{{ config['nothing'] }}" + pagination_strategy: + type: PageIncrement + page_size: 1000 + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/search_people" + search_tv_shows: + type: DeclarativeStream + name: search_tv_shows + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /search/tv + http_method: GET + request_parameters: + api_key: "{{ config['api_key'] }}" + query: "{{ config['query'] }}" + language: "{{ config['language'] }}" + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + inject_into: request_parameter + field_name: "{{ config['nothing'] }}" + pagination_strategy: + type: PageIncrement + page_size: 1000 + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/search_tv_shows" + base_requester: + type: HttpRequester + url_base: https://api.themoviedb.org/3/ - search_people_stream: - $ref: "#/definitions/page_stream" - $parameters: - name: "search_people" - path: "/search/person" +streams: + - $ref: "#/definitions/streams/certification_movie" + - $ref: "#/definitions/streams/certification_tv" + - $ref: "#/definitions/streams/changes_movie" + - $ref: "#/definitions/streams/changes_tv" + - $ref: "#/definitions/streams/changes_person" + - $ref: "#/definitions/streams/movies_details" + - $ref: "#/definitions/streams/movies_alternative_titles" + - $ref: "#/definitions/streams/movies_credits" + - $ref: "#/definitions/streams/movies_external_ids" + - $ref: "#/definitions/streams/movies_images" + - $ref: "#/definitions/streams/movies_keywords" + - $ref: "#/definitions/streams/movies_latest" + - $ref: "#/definitions/streams/movies_lists" + - $ref: "#/definitions/streams/movies_now_playing" + - $ref: "#/definitions/streams/movies_popular" + - $ref: "#/definitions/streams/movies_recommendations" + - $ref: "#/definitions/streams/movies_releases_dates" + - $ref: "#/definitions/streams/movies_reviews" + - $ref: "#/definitions/streams/movies_similar_movies" + - $ref: "#/definitions/streams/movies_top_rated" + - $ref: "#/definitions/streams/movies_translations" + - $ref: "#/definitions/streams/movies_upcoming" + - $ref: "#/definitions/streams/movies_videos" + - $ref: "#/definitions/streams/movies_watch_providers" + - $ref: "#/definitions/streams/trending" + - $ref: "#/definitions/streams/search_collections" + - $ref: "#/definitions/streams/search_companies" + - $ref: "#/definitions/streams/search_keywords" + - $ref: "#/definitions/streams/search_movies" + - $ref: "#/definitions/streams/search_multi" + - $ref: "#/definitions/streams/search_people" + - $ref: "#/definitions/streams/search_tv_shows" - search_tv_shows_stream: - $ref: "#/definitions/page_stream" - $parameters: - name: "search_tv_shows" - path: "/search/tv" +spec: + type: Spec + connection_specification: + type: object + $schema: http://json-schema.org/draft-07/schema# + required: + - api_key + - language + - movie_id + - query + properties: + api_key: + type: string + title: Unique key for establishing connection + description: API Key from tmdb account + airbyte_secret: true + order: 0 + language: + type: string + title: Language for filtering + description: >- + Language expressed in ISO 639-1 scheme, Mandate for required streams + (Example en-US) + examples: + - en-US + - en-UK + order: 1 + movie_id: + type: string + title: Movie ID for targeting movies + description: Target movie ID, Mandate for movie streams (Example is 550) + examples: + - 550 + - 560 + order: 2 + query: + type: string + title: Query for search streams + description: Target movie ID, Mandate for search streams + examples: + - Marvel + - DC + order: 3 + additionalProperties: true -streams: - - "#/definitions/certification_movie_stream" - - "#/definitions/certification_tv_stream" - - "#/definitions/changes_movie_stream" - - "#/definitions/changes_tv_stream" - - "#/definitions/changes_person_stream" - - "#/definitions/movies_details_stream" - - "#/definitions/movies_alternative_titles_stream" - - "#/definitions/movies_credits_stream" - - "#/definitions/movies_external_ids_stream" - - "#/definitions/movies_images_stream" - - "#/definitions/movies_keywords_stream" - - "#/definitions/movies_latest_stream" - - "#/definitions/movies_lists_stream" - - "#/definitions/movies_now_playing_stream" - - "#/definitions/movies_popular_stream" - - "#/definitions/movies_recommendations_stream" - - "#/definitions/movies_releases_dates_stream" - - "#/definitions/movies_reviews_stream" - - "#/definitions/movies_similar_movies_stream" - - "#/definitions/movies_top_rated_stream" - - "#/definitions/movies_translations_stream" - - "#/definitions/movies_upcoming_stream" - - "#/definitions/movies_videos_stream" - - "#/definitions/movies_watch_providers_stream" - - "#/definitions/trending_stream" - - "#/definitions/search_collections_stream" - - "#/definitions/search_companies_stream" - - "#/definitions/search_keywords_stream" - - "#/definitions/search_movies_stream" - - "#/definitions/search_multi_stream" - - "#/definitions/search_people_stream" - - "#/definitions/search_tv_shows_stream" +metadata: + autoImportSchema: + certification_movie: false + certification_tv: false + changes_movie: false + changes_tv: false + changes_person: false + movies_details: false + movies_alternative_titles: false + movies_credits: false + movies_external_ids: false + movies_images: false + movies_keywords: false + movies_latest: false + movies_lists: false + movies_now_playing: false + movies_popular: false + movies_recommendations: false + movies_releases_dates: false + movies_reviews: false + movies_similar_movies: false + movies_top_rated: false + movies_translations: false + movies_upcoming: false + movies_videos: false + movies_watch_providers: false + trending: false + search_collections: false + search_companies: false + search_keywords: false + search_movies: false + search_multi: false + search_people: false + search_tv_shows: false -check: - stream_names: - - "trending" +schemas: + certification_movie: + type: object + definitions: {} + $id: https://example.com/object1667208363.json + $schema: http://json-schema.org/draft-07/schema# + properties: + certifications: + type: object + $id: "#root/certifications" + properties: + AU: + type: array + $id: "#root/certifications/AU" + default: [] + items: + type: object + $id: "#root/certifications/AU/items" + properties: + certification: + type: string + $id: "#root/certifications/AU/items/certification" + examples: + - E + pattern: ^.*$ + title: Certification + meaning: + type: string + $id: "#root/certifications/AU/items/meaning" + examples: + - >- + Exempt from classification. Films that are exempt from + classification must not contain contentious material (i.e. + material that would ordinarily be rated M or higher). + pattern: ^.*$ + title: Meaning + order: + type: integer + $id: "#root/certifications/AU/items/order" + default: 0 + examples: + - 1 + title: Order + required: + - certification + - meaning + - order + title: Items + title: Au + BG: + type: array + $id: "#root/certifications/BG" + default: [] + items: + type: object + $id: "#root/certifications/BG/items" + properties: + certification: + type: string + $id: "#root/certifications/BG/items/certification" + examples: + - A + pattern: ^.*$ + title: Certification + meaning: + type: string + $id: "#root/certifications/BG/items/meaning" + examples: + - Recommended for children. + pattern: ^.*$ + title: Meaning + order: + type: integer + $id: "#root/certifications/BG/items/order" + default: 0 + examples: + - 1 + title: Order + required: + - certification + - meaning + - order + title: Items + title: Bg + BR: + type: array + $id: "#root/certifications/BR" + default: [] + items: + type: object + $id: "#root/certifications/BR/items" + properties: + certification: + type: string + $id: "#root/certifications/BR/items/certification" + examples: + - L + pattern: ^.*$ + title: Certification + meaning: + type: string + $id: "#root/certifications/BR/items/meaning" + examples: + - >- + General Audiences. Do not expose children to potentially + harmful content. + pattern: ^.*$ + title: Meaning + order: + type: integer + $id: "#root/certifications/BR/items/order" + default: 0 + examples: + - 1 + title: Order + required: + - certification + - meaning + - order + title: Items + title: Br + CA: + type: array + $id: "#root/certifications/CA" + default: [] + items: + type: object + $id: "#root/certifications/CA/items" + properties: + certification: + type: string + $id: "#root/certifications/CA/items/certification" + examples: + - 18A + pattern: ^.*$ + title: Certification + meaning: + type: string + $id: "#root/certifications/CA/items/meaning" + examples: + - >- + Persons under 18 years of age must be accompanied by an + adult. In the Maritimes & Manitoba, children under the age + of 14 are prohibited from viewing the film. + pattern: ^.*$ + title: Meaning + order: + type: integer + $id: "#root/certifications/CA/items/order" + default: 0 + examples: + - 4 + title: Order + required: + - certification + - meaning + - order + title: Items + title: Ca + DE: + type: array + $id: "#root/certifications/DE" + default: [] + items: + type: object + $id: "#root/certifications/DE/items" + properties: + certification: + type: string + $id: "#root/certifications/DE/items/certification" + examples: + - "0" + pattern: ^.*$ + title: Certification + meaning: + type: string + $id: "#root/certifications/DE/items/meaning" + examples: + - No age restriction. + pattern: ^.*$ + title: Meaning + order: + type: integer + $id: "#root/certifications/DE/items/order" + default: 0 + examples: + - 1 + title: Order + required: + - certification + - meaning + - order + title: Items + title: De + ES: + type: array + $id: "#root/certifications/ES" + default: [] + items: + type: object + $id: "#root/certifications/ES/items" + properties: + certification: + type: string + $id: "#root/certifications/ES/items/certification" + examples: + - APTA + pattern: ^.*$ + title: Certification + meaning: + type: string + $id: "#root/certifications/ES/items/meaning" + examples: + - General admission. + pattern: ^.*$ + title: Meaning + order: + type: integer + $id: "#root/certifications/ES/items/order" + default: 0 + examples: + - 1 + title: Order + required: + - certification + - meaning + - order + title: Items + title: Es + FI: + type: array + $id: "#root/certifications/FI" + default: [] + items: + type: object + $id: "#root/certifications/FI/items" + properties: + certification: + type: string + $id: "#root/certifications/FI/items/certification" + examples: + - S + pattern: ^.*$ + title: Certification + meaning: + type: string + $id: "#root/certifications/FI/items/meaning" + examples: + - For all ages. + pattern: ^.*$ + title: Meaning + order: + type: integer + $id: "#root/certifications/FI/items/order" + default: 0 + examples: + - 1 + title: Order + required: + - certification + - meaning + - order + title: Items + title: Fi + FR: + type: array + $id: "#root/certifications/FR" + default: [] + items: + type: object + $id: "#root/certifications/FR/items" + properties: + certification: + type: string + $id: "#root/certifications/FR/items/certification" + examples: + - U + pattern: ^.*$ + title: Certification + meaning: + type: string + $id: "#root/certifications/FR/items/meaning" + examples: + - (Tous publics) valid for all audiences. + pattern: ^.*$ + title: Meaning + order: + type: integer + $id: "#root/certifications/FR/items/order" + default: 0 + examples: + - 1 + title: Order + required: + - certification + - meaning + - order + title: Items + title: Fr + GB: + type: array + $id: "#root/certifications/GB" + default: [] + items: + type: object + $id: "#root/certifications/GB/items" + properties: + certification: + type: string + $id: "#root/certifications/GB/items/certification" + examples: + - "15" + pattern: ^.*$ + title: Certification + meaning: + type: string + $id: "#root/certifications/GB/items/meaning" + examples: + - >- + Only those over 15 years are admitted. Nobody younger than + 15 can rent or buy a 15-rated VHS, DVD, Blu-ray Disc, UMD + or game, or watch a film in the cinema with this rating. + Films under this category can contain adult themes, hard + drugs, frequent strong language and limited use of very + strong language, strong violence and strong sex + references, and nudity without graphic detail. Sexual + activity may be portrayed but without any strong detail. + Sexual violence may be shown if discreet and justified by + context. + pattern: ^.*$ + title: Meaning + order: + type: integer + $id: "#root/certifications/GB/items/order" + default: 0 + examples: + - 5 + title: Order + required: + - certification + - meaning + - order + title: Items + title: Gb + IN: + type: array + $id: "#root/certifications/IN" + default: [] + items: + type: object + $id: "#root/certifications/IN/items" + properties: + certification: + type: string + $id: "#root/certifications/IN/items/certification" + examples: + - U + pattern: ^.*$ + title: Certification + meaning: + type: string + $id: "#root/certifications/IN/items/meaning" + examples: + - >- + Unrestricted Public Exhibition throughout India, suitable + for all age groups. Films under this category should not + upset children over 4. Such films may contain educational, + social or family-oriented themes. Films under this + category may also contain fantasy violence and/or mild bad + language. + pattern: ^.*$ + title: Meaning + order: + type: integer + $id: "#root/certifications/IN/items/order" + default: 0 + examples: + - 0 + title: Order + required: + - certification + - meaning + - order + title: Items + title: In + NL: + type: array + $id: "#root/certifications/NL" + default: [] + items: + type: object + $id: "#root/certifications/NL/items" + properties: + certification: + type: string + $id: "#root/certifications/NL/items/certification" + examples: + - AL + pattern: ^.*$ + title: Certification + meaning: + type: string + $id: "#root/certifications/NL/items/meaning" + examples: + - All ages. + pattern: ^.*$ + title: Meaning + order: + type: integer + $id: "#root/certifications/NL/items/order" + default: 0 + examples: + - 1 + title: Order + required: + - certification + - meaning + - order + title: Items + title: Nl + NZ: + type: array + $id: "#root/certifications/NZ" + default: [] + items: + type: object + $id: "#root/certifications/NZ/items" + properties: + certification: + type: string + $id: "#root/certifications/NZ/items/certification" + examples: + - M + pattern: ^.*$ + title: Certification + meaning: + type: string + $id: "#root/certifications/NZ/items/meaning" + examples: + - >- + Suitable for (but not restricted to) mature audiences 16 + years and up. + pattern: ^.*$ + title: Meaning + order: + type: integer + $id: "#root/certifications/NZ/items/order" + default: 0 + examples: + - 3 + title: Order + required: + - certification + - meaning + - order + title: Items + title: Nz + PH: + type: array + $id: "#root/certifications/PH" + default: [] + items: + type: object + $id: "#root/certifications/PH/items" + properties: + certification: + type: string + $id: "#root/certifications/PH/items/certification" + examples: + - G + pattern: ^.*$ + title: Certification + meaning: + type: string + $id: "#root/certifications/PH/items/meaning" + examples: + - General Audiences. Viewers of all ages are admitted. + pattern: ^.*$ + title: Meaning + order: + type: integer + $id: "#root/certifications/PH/items/order" + default: 0 + examples: + - 1 + title: Order + required: + - certification + - meaning + - order + title: Items + title: Ph + PT: + type: array + $id: "#root/certifications/PT" + default: [] + items: + type: object + $id: "#root/certifications/PT/items" + properties: + certification: + type: string + $id: "#root/certifications/PT/items/certification" + examples: + - Públicos + pattern: ^.*$ + title: Certification + meaning: + type: string + $id: "#root/certifications/PT/items/meaning" + examples: + - >- + For all the public (especially designed for children under + 3 years of age). + pattern: ^.*$ + title: Meaning + order: + type: integer + $id: "#root/certifications/PT/items/order" + default: 0 + examples: + - 1 + title: Order + required: + - certification + - meaning + - order + title: Items + title: Pt + US: + type: array + $id: "#root/certifications/US" + default: [] + items: + type: object + $id: "#root/certifications/US/items" + properties: + certification: + type: string + $id: "#root/certifications/US/items/certification" + examples: + - G + pattern: ^.*$ + title: Certification + meaning: + type: string + $id: "#root/certifications/US/items/meaning" + examples: + - >- + All ages admitted. There is no content that would be + objectionable to most parents. This is one of only two + ratings dating back to 1968 that still exists today. + pattern: ^.*$ + title: Meaning + order: + type: integer + $id: "#root/certifications/US/items/order" + default: 0 + examples: + - 1 + title: Order + required: + - certification + - meaning + - order + title: Items + title: Us + required: + - US + - CA + - AU + - DE + - FR + - NZ + - IN + - GB + - NL + - BR + - FI + - BG + - ES + - PH + - PT + title: Certifications + required: + - certifications + title: Root + additionalProperties: true + certification_tv: + type: object + definitions: {} + $id: https://example.com/object1667208548.json + $schema: http://json-schema.org/draft-07/schema# + properties: + certifications: + type: object + $id: "#root/certifications" + properties: + AU: + type: array + $id: "#root/certifications/AU" + default: [] + items: + type: object + $id: "#root/certifications/AU/items" + properties: + certification: + type: string + $id: "#root/certifications/AU/items/certification" + examples: + - P + pattern: ^.*$ + title: Certification + meaning: + type: string + $id: "#root/certifications/AU/items/meaning" + examples: + - >- + Programming is intended for younger children 2–11; + commercial stations must show at least 30 minutes of + P-rated content each weekday and weekends at all times. No + advertisements may be shown during P-rated programs. + pattern: ^.*$ + title: Meaning + order: + type: integer + $id: "#root/certifications/AU/items/order" + default: 0 + examples: + - 1 + title: Order + required: + - certification + - meaning + - order + title: Items + title: Au + BR: + type: array + $id: "#root/certifications/BR" + default: [] + items: + type: object + $id: "#root/certifications/BR/items" + properties: + certification: + type: string + $id: "#root/certifications/BR/items/certification" + examples: + - L + pattern: ^.*$ + title: Certification + meaning: + type: string + $id: "#root/certifications/BR/items/meaning" + examples: + - Content is suitable for all audiences. + pattern: ^.*$ + title: Meaning + order: + type: integer + $id: "#root/certifications/BR/items/order" + default: 0 + examples: + - 0 + title: Order + required: + - certification + - meaning + - order + title: Items + title: Br + CA: + type: array + $id: "#root/certifications/CA" + default: [] + items: + type: object + $id: "#root/certifications/CA/items" + properties: + certification: + type: string + $id: "#root/certifications/CA/items/certification" + examples: + - Exempt + pattern: ^.*$ + title: Certification + meaning: + type: string + $id: "#root/certifications/CA/items/meaning" + examples: + - >- + Shows which are exempt from ratings (such as news and + sports programming) will not display an on-screen rating + at all. + pattern: ^.*$ + title: Meaning + order: + type: integer + $id: "#root/certifications/CA/items/order" + default: 0 + examples: + - 0 + title: Order + required: + - certification + - meaning + - order + title: Items + title: Ca + DE: + type: array + $id: "#root/certifications/DE" + default: [] + items: + type: object + $id: "#root/certifications/DE/items" + properties: + certification: + type: string + $id: "#root/certifications/DE/items/certification" + examples: + - "0" + pattern: ^.*$ + title: Certification + meaning: + type: string + $id: "#root/certifications/DE/items/meaning" + examples: + - Can be aired at any time. + pattern: ^.*$ + title: Meaning + order: + type: integer + $id: "#root/certifications/DE/items/order" + default: 0 + examples: + - 0 + title: Order + required: + - certification + - meaning + - order + title: Items + title: De + FR: + type: array + $id: "#root/certifications/FR" + default: [] + items: + type: object + $id: "#root/certifications/FR/items" + properties: + certification: + type: string + $id: "#root/certifications/FR/items/certification" + examples: + - NR + pattern: ^.*$ + title: Certification + meaning: + type: string + $id: "#root/certifications/FR/items/meaning" + examples: + - No rating information. + pattern: ^.*$ + title: Meaning + order: + type: integer + $id: "#root/certifications/FR/items/order" + default: 0 + examples: + - 0 + title: Order + required: + - certification + - meaning + - order + title: Items + title: Fr + GB: + type: array + $id: "#root/certifications/GB" + default: [] + items: + type: object + $id: "#root/certifications/GB/items" + properties: + certification: + type: string + $id: "#root/certifications/GB/items/certification" + examples: + - U + pattern: ^.*$ + title: Certification + meaning: + type: string + $id: "#root/certifications/GB/items/meaning" + examples: + - >- + The U symbol stands for Universal. A U film should be + suitable for audiences aged four years and over. + pattern: ^.*$ + title: Meaning + order: + type: integer + $id: "#root/certifications/GB/items/order" + default: 0 + examples: + - 0 + title: Order + required: + - certification + - meaning + - order + title: Items + title: Gb + KR: + type: array + $id: "#root/certifications/KR" + default: [] + items: + type: object + $id: "#root/certifications/KR/items" + properties: + certification: + type: string + $id: "#root/certifications/KR/items/certification" + examples: + - Exempt + pattern: ^.*$ + title: Certification + meaning: + type: string + $id: "#root/certifications/KR/items/meaning" + examples: + - >- + This rating is only for knowledge based game shows; + lifestyle shows; documentary shows; news; current topic + discussion shows; education/culture shows; sports that + excludes MMA or other violent sports; and other programs + that Korea Communications Standards Commission recognizes. + pattern: ^.*$ + title: Meaning + order: + type: integer + $id: "#root/certifications/KR/items/order" + default: 0 + examples: + - 0 + title: Order + required: + - certification + - meaning + - order + title: Items + title: Kr + RU: + type: array + $id: "#root/certifications/RU" + default: [] + items: + type: object + $id: "#root/certifications/RU/items" + properties: + certification: + type: string + $id: "#root/certifications/RU/items/certification" + examples: + - 18+ + pattern: ^.*$ + title: Certification + meaning: + type: string + $id: "#root/certifications/RU/items/meaning" + examples: + - Restricted to People 18 or Older. + pattern: ^.*$ + title: Meaning + order: + type: integer + $id: "#root/certifications/RU/items/order" + default: 0 + examples: + - 5 + title: Order + required: + - certification + - meaning + - order + title: Items + title: Ru + TH: + type: array + $id: "#root/certifications/TH" + default: [] + items: + type: object + $id: "#root/certifications/TH/items" + properties: + certification: + type: string + $id: "#root/certifications/TH/items/certification" + examples: + - ส + pattern: ^.*$ + title: Certification + meaning: + type: string + $id: "#root/certifications/TH/items/meaning" + examples: + - >- + Sor - Educational movies which the public should be + encouraged to see. + pattern: ^.*$ + title: Meaning + order: + type: integer + $id: "#root/certifications/TH/items/order" + default: 0 + examples: + - 0 + title: Order + required: + - certification + - meaning + - order + title: Items + title: Th + US: + type: array + $id: "#root/certifications/US" + default: [] + items: + type: object + $id: "#root/certifications/US/items" + properties: + certification: + type: string + $id: "#root/certifications/US/items/certification" + examples: + - NR + pattern: ^.*$ + title: Certification + meaning: + type: string + $id: "#root/certifications/US/items/meaning" + examples: + - No rating information. + pattern: ^.*$ + title: Meaning + order: + type: integer + $id: "#root/certifications/US/items/order" + default: 0 + examples: + - 0 + title: Order + required: + - certification + - meaning + - order + title: Items + title: Us + required: + - RU + - US + - CA + - AU + - FR + - DE + - TH + - KR + - GB + - BR + title: Certifications + required: + - certifications + title: Root + additionalProperties: true + changes_movie: + type: object + definitions: {} + $id: https://example.com/object1667208732.json + $schema: http://json-schema.org/draft-07/schema# + properties: + page: + type: integer + $id: "#root/page" + default: 0 + examples: + - 1 + title: Page + results: + type: array + $id: "#root/results" + default: [] + items: + type: object + $id: "#root/results/items" + properties: + adult: + type: + - "null" + - boolean + $id: "#root/results/items/adult" + default: true + examples: + - false + title: Adult + id: + type: integer + $id: "#root/results/items/id" + default: 0 + examples: + - 412683 + title: Id + required: + - id + - adult + title: Items + title: Results + total_pages: + type: integer + $id: "#root/total_pages" + default: 0 + examples: + - 10 + title: Total_pages + total_results: + type: integer + $id: "#root/total_results" + default: 0 + examples: + - 952 + title: Total_results + required: + - results + - page + - total_pages + - total_results + title: Root + additionalProperties: true + changes_tv: + type: object + definitions: {} + $id: https://example.com/object1667208773.json + $schema: http://json-schema.org/draft-07/schema# + properties: + page: + type: integer + $id: "#root/page" + default: 0 + examples: + - 1 + title: Page + results: + type: array + $id: "#root/results" + default: [] + items: + type: object + $id: "#root/results/items" + properties: + adult: + type: + - "null" + - boolean + $id: "#root/results/items/adult" + default: true + examples: + - false + title: Adult + id: + type: integer + $id: "#root/results/items/id" + default: 0 + examples: + - 67563 + title: Id + required: + - id + - adult + title: Items + title: Results + total_pages: + type: integer + $id: "#root/total_pages" + default: 0 + examples: + - 2 + title: Total_pages + total_results: + type: integer + $id: "#root/total_results" + default: 0 + examples: + - 122 + title: Total_results + required: + - results + - page + - total_pages + - total_results + title: Root + additionalProperties: true + changes_person: + type: object + definitions: {} + $id: https://example.com/object1667210538.json + $schema: http://json-schema.org/draft-07/schema# + properties: + page: + type: integer + $id: "#root/page" + default: 0 + examples: + - 1 + title: Page + results: + type: array + $id: "#root/results" + default: [] + items: + type: object + $id: "#root/results/items" + properties: + adult: + type: + - "null" + - boolean + $id: "#root/results/items/adult" + default: true + examples: + - false + title: Adult + id: + type: integer + $id: "#root/results/items/id" + default: 0 + examples: + - 1670120 + title: Id + required: + - id + - adult + title: Items + title: Results + total_pages: + type: integer + $id: "#root/total_pages" + default: 0 + examples: + - 7 + title: Total_pages + total_results: + type: integer + $id: "#root/total_results" + default: 0 + examples: + - 620 + title: Total_results + required: + - results + - page + - total_pages + - total_results + title: Root + additionalProperties: true + movies_details: + type: object + definitions: {} + $id: https://example.com/object1666852195.json + $schema: http://json-schema.org/draft-07/schema# + properties: + adult: + type: boolean + $id: "#root/adult" + default: true + title: Adult + backdrop_path: + type: + - "null" + - string + $id: "#root/backdrop_path" + pattern: ^.*$ + title: Backdrop_path + belongs_to_collection: + type: + - "null" + - object + $id: "#root/belongs_to_collection" + default: null + title: Belongs_to_collection + budget: + type: integer + $id: "#root/budget" + default: 0 + title: Budget + genres: + type: + - "null" + - array + $id: "#root/genres" + default: [] + items: + type: object + $id: "#root/genres/items" + properties: + id: + type: integer + $id: "#root/genres/items/id" + default: 0 + title: Id + name: + type: string + $id: "#root/genres/items/name" + pattern: ^.*$ + title: Name + title: Items + title: Genres + homepage: + type: + - "null" + - string + $id: "#root/homepage" + pattern: ^.*$ + title: Homepage + id: + type: integer + $id: "#root/id" + default: 0 + title: Id + imdb_id: + type: string + $id: "#root/imdb_id" + pattern: ^.*$ + title: Imdb_id + original_language: + type: string + $id: "#root/original_language" + pattern: ^.*$ + title: Original_language + original_title: + type: string + $id: "#root/original_title" + pattern: ^.*$ + title: Original_title + overview: + type: + - "null" + - string + $id: "#root/overview" + pattern: ^.*$ + title: Overview + popularity: + type: number + $id: "#root/popularity" + default: 0 + title: Popularity + poster_path: + type: + - string + - "null" + $id: "#root/poster_path" + default: null + title: Poster_path + production_companies: + type: + - "null" + - array + $id: "#root/production_companies" + default: [] + items: + type: object + $id: "#root/production_companies/items" + properties: + id: + type: integer + $id: "#root/production_companies/items/id" + default: 0 + title: Id + logo_path: + type: + - "null" + - string + $id: "#root/production_companies/items/logo_path" + pattern: ^.*$ + title: Logo_path + name: + type: string + $id: "#root/production_companies/items/name" + pattern: ^.*$ + title: Name + origin_country: + type: string + $id: "#root/production_companies/items/origin_country" + pattern: ^.*$ + title: Origin_country + title: Items + title: Production_companies + production_countries: + type: + - "null" + - array + $id: "#root/production_countries" + default: [] + items: + type: object + $id: "#root/production_countries/items" + properties: + iso_3166_1: + type: string + $id: "#root/production_countries/items/iso_3166_1" + pattern: ^.*$ + title: Iso_3166_1 + name: + type: string + $id: "#root/production_countries/items/name" + pattern: ^.*$ + title: Name + title: Items + title: Production_countries + release_date: + type: string + $id: "#root/release_date" + pattern: ^.*$ + title: Release_date + revenue: + type: integer + $id: "#root/revenue" + default: 0 + title: Revenue + runtime: + type: + - "null" + - integer + $id: "#root/runtime" + default: 0 + title: Runtime + spoken_languages: + type: + - "null" + - array + $id: "#root/spoken_languages" + default: [] + items: + type: object + $id: "#root/spoken_languages/items" + properties: + iso_639_1: + type: string + $id: "#root/spoken_languages/items/iso_639_1" + pattern: ^.*$ + title: Iso_639_1 + name: + type: string + $id: "#root/spoken_languages/items/name" + pattern: ^.*$ + title: Name + title: Items + title: Spoken_languages + status: + type: string + $id: "#root/status" + pattern: ^.*$ + title: Status + tagline: + type: + - "null" + - string + $id: "#root/tagline" + pattern: ^.*$ + title: Tagline + title: + type: string + $id: "#root/title" + pattern: ^.*$ + title: Title + video: + type: boolean + $id: "#root/video" + default: true + title: Video + vote_average: + type: number + $id: "#root/vote_average" + default: 0 + title: Vote_average + vote_count: + type: integer + $id: "#root/vote_count" + default: 0 + title: Vote_count + title: Root + additionalProperties: true + movies_alternative_titles: + type: object + definitions: {} + $id: https://example.com/object1666884919.json + $schema: http://json-schema.org/draft-07/schema# + properties: + id: + type: integer + $id: "#root/id" + default: 0 + title: Id + titles: + type: + - array + - "null" + - object + $id: "#root/titles" + default: [] + items: + type: + - array + - "null" + - object + $id: "#root/titles/items" + properties: + type: + type: string + $id: "#root/titles/items/type" + pattern: ^.*$ + title: Type + iso_3166_1: + type: string + $id: "#root/titles/items/iso_3166_1" + pattern: ^.*$ + title: Iso_3166_1 + title: + type: string + $id: "#root/titles/items/title" + pattern: ^.*$ + title: Title + title: Items + title: Titles + title: Root + additionalProperties: true + movies_credits: + type: object + definitions: {} + $id: https://example.com/object1666852792.json + $schema: http://json-schema.org/draft-07/schema# + properties: + cast: + type: array + $id: "#root/cast" + default: [] + items: + type: object + $id: "#root/cast/items" + properties: + adult: + type: boolean + $id: "#root/cast/items/adult" + default: true + title: Adult + cast_id: + type: integer + $id: "#root/cast/items/cast_id" + default: 0 + title: Cast_id + character: + type: string + $id: "#root/cast/items/character" + pattern: ^.*$ + title: Character + credit_id: + type: string + $id: "#root/cast/items/credit_id" + pattern: ^.*$ + title: Credit_id + gender: + type: integer + $id: "#root/cast/items/gender" + default: 0 + title: Gender + id: + type: integer + $id: "#root/cast/items/id" + default: 0 + title: Id + known_for_department: + type: string + $id: "#root/cast/items/known_for_department" + pattern: ^.*$ + title: Known_for_department + name: + type: string + $id: "#root/cast/items/name" + pattern: ^.*$ + title: Name + order: + type: integer + $id: "#root/cast/items/order" + default: 0 + title: Order + original_name: + type: string + $id: "#root/cast/items/original_name" + pattern: ^.*$ + title: Original_name + popularity: + type: number + $id: "#root/cast/items/popularity" + default: 0 + title: Popularity + profile_path: + type: + - "null" + - string + $id: "#root/cast/items/profile_path" + pattern: ^.*$ + title: Profile_path + title: Items + title: Cast + crew: + type: array + $id: "#root/crew" + default: [] + items: + type: object + $id: "#root/crew/items" + properties: + adult: + type: boolean + $id: "#root/crew/items/adult" + default: true + title: Adult + credit_id: + type: string + $id: "#root/crew/items/credit_id" + pattern: ^.*$ + title: Credit_id + department: + type: string + $id: "#root/crew/items/department" + pattern: ^.*$ + title: Department + gender: + type: integer + $id: "#root/crew/items/gender" + default: 0 + title: Gender + id: + type: integer + $id: "#root/crew/items/id" + default: 0 + title: Id + job: + type: string + $id: "#root/crew/items/job" + pattern: ^.*$ + title: Job + known_for_department: + type: string + $id: "#root/crew/items/known_for_department" + pattern: ^.*$ + title: Known_for_department + name: + type: string + $id: "#root/crew/items/name" + pattern: ^.*$ + title: Name + original_name: + type: string + $id: "#root/crew/items/original_name" + pattern: ^.*$ + title: Original_name + popularity: + type: number + $id: "#root/crew/items/popularity" + default: 0 + title: Popularity + profile_path: + type: + - "null" + - string + $id: "#root/crew/items/profile_path" + pattern: ^.*$ + title: Profile_path + title: Items + title: Crew + id: + type: integer + $id: "#root/id" + default: 0 + title: Id + title: Root + additionalProperties: true + movies_external_ids: + type: object + definitions: {} + $id: https://example.com/object1666852857.json + $schema: http://json-schema.org/draft-07/schema# + properties: + facebook_id: + type: string + $id: "#root/facebook_id" + pattern: ^.*$ + title: Facebook_id + id: + type: integer + $id: "#root/id" + default: 0 + title: Id + imdb_id: + type: string + $id: "#root/imdb_id" + pattern: ^.*$ + title: Imdb_id + instagram_id: + type: + - "null" + - string + $id: "#root/instagram_id" + pattern: ^.*$ + title: Instagram_id + twitter_id: + type: + - "null" + - string + $id: "#root/twitter_id" + pattern: ^.*$ + title: Twitter_id + title: Root + additionalProperties: true + movies_images: + type: object + definitions: {} + $id: https://example.com/object1666852902.json + $schema: http://json-schema.org/draft-07/schema# + properties: + backdrops: + type: array + $id: "#root/backdrops" + default: [] + items: + type: object + $id: "#root/backdrops/items" + properties: + aspect_ratio: + type: number + $id: "#root/backdrops/items/aspect_ratio" + default: 0 + title: Aspect_ratio + file_path: + type: string + $id: "#root/backdrops/items/file_path" + pattern: ^.*$ + title: File_path + height: + type: integer + $id: "#root/backdrops/items/height" + default: 0 + title: Height + iso_639_1: + type: + - string + - "null" + $id: "#root/backdrops/items/iso_639_1" + default: null + title: Iso_639_1 + vote_average: + type: + - number + - integer + - string + $id: "#root/backdrops/items/vote_average" + default: 0 + title: Vote_average + vote_count: + type: integer + $id: "#root/backdrops/items/vote_count" + default: 0 + title: Vote_count + width: + type: integer + $id: "#root/backdrops/items/width" + default: 0 + title: Width + title: Items + title: Backdrops + id: + type: integer + $id: "#root/id" + default: 0 + title: Id + posters: + type: array + $id: "#root/posters" + default: [] + items: + type: object + $id: "#root/posters/items" + properties: + aspect_ratio: + type: number + $id: "#root/posters/items/aspect_ratio" + default: 0 + title: Aspect_ratio + file_path: + type: string + $id: "#root/posters/items/file_path" + pattern: ^.*$ + title: File_path + height: + type: integer + $id: "#root/posters/items/height" + default: 0 + title: Height + iso_639_1: + type: + - "null" + - string + $id: "#root/posters/items/iso_639_1" + pattern: ^.*$ + title: Iso_639_1 + vote_average: + type: + - number + - integer + - string + $id: "#root/posters/items/vote_average" + default: 0 + title: Vote_average + vote_count: + type: integer + $id: "#root/posters/items/vote_count" + default: 0 + title: Vote_count + width: + type: integer + $id: "#root/posters/items/width" + default: 0 + title: Width + title: Items + title: Posters + title: Root + additionalProperties: true + movies_keywords: + type: object + definitions: {} + $id: https://example.com/object1666852923.json + $schema: http://json-schema.org/draft-07/schema# + properties: + id: + type: integer + $id: "#root/id" + default: 0 + title: Id + keywords: + type: array + $id: "#root/keywords" + default: [] + items: + type: object + $id: "#root/keywords/items" + properties: + id: + type: integer + $id: "#root/keywords/items/id" + default: 0 + title: Id + name: + type: string + $id: "#root/keywords/items/name" + pattern: ^.*$ + title: Name + title: Items + title: Keywords + title: Root + additionalProperties: true + movies_latest: + type: object + definitions: {} + $id: https://example.com/object1666853268.json + $schema: http://json-schema.org/draft-07/schema# + properties: + adult: + type: boolean + $id: "#root/adult" + default: true + title: Adult + backdrop_path: + type: + - string + - "null" + $id: "#root/backdrop_path" + default: null + title: Backdrop_path + belongs_to_collection: + type: + - string + - "null" + $id: "#root/belongs_to_collection" + default: null + title: Belongs_to_collection + budget: + type: integer + $id: "#root/budget" + default: 0 + title: Budget + genres: + type: array + $id: "#root/genres" + default: [] + items: + type: object + $id: "#root/genres/items" + properties: + id: + type: integer + $id: "#root/genres/items/id" + default: 0 + title: Id + name: + type: string + $id: "#root/genres/items/name" + pattern: ^.*$ + title: Name + title: Items + title: Genres + homepage: + type: string + $id: "#root/homepage" + pattern: ^.*$ + title: Homepage + id: + type: integer + $id: "#root/id" + default: 0 + title: Id + imdb_id: + type: + - "null" + - string + $id: "#root/imdb_id" + pattern: ^.*$ + title: Imdb_id + original_language: + type: string + $id: "#root/original_language" + pattern: ^.*$ + title: Original_language + original_title: + type: string + $id: "#root/original_title" + pattern: ^.*$ + title: Original_title + overview: + type: string + $id: "#root/overview" + pattern: ^.*$ + title: Overview + popularity: + type: integer + $id: "#root/popularity" + default: 0 + title: Popularity + poster_path: + type: + - "null" + - string + $id: "#root/poster_path" + pattern: ^.*$ + title: Poster_path + production_companies: + type: array + $id: "#root/production_companies" + default: [] + title: Production_companies + production_countries: + type: array + $id: "#root/production_countries" + default: [] + title: Production_countries + release_date: + type: string + $id: "#root/release_date" + pattern: ^.*$ + title: Release_date + revenue: + type: integer + $id: "#root/revenue" + default: 0 + title: Revenue + runtime: + type: integer + $id: "#root/runtime" + default: 0 + title: Runtime + spoken_languages: + type: array + $id: "#root/spoken_languages" + default: [] + title: Spoken_languages + status: + type: string + $id: "#root/status" + pattern: ^.*$ + title: Status + tagline: + type: string + $id: "#root/tagline" + pattern: ^.*$ + title: Tagline + title: + type: string + $id: "#root/title" + pattern: ^.*$ + title: Title + video: + type: boolean + $id: "#root/video" + default: true + title: Video + vote_average: + type: integer + $id: "#root/vote_average" + default: 0 + title: Vote_average + vote_count: + type: integer + $id: "#root/vote_count" + default: 0 + title: Vote_count + title: Root + additionalProperties: true + movies_lists: + id: 550 + page: 1 + results: + - description: Pick one and then one or two alternates + favorite_count: 0 + id: 7213 + iso_639_1: en + item_count: 1358 + list_type: movie + name: Movie Night + poster_path: /p60VSQL7usdxztIGokJPpHmKWdU.jpg + - description: Your favorite and classic movies of the 1990s + favorite_count: 0 + id: 6968 + iso_639_1: en + item_count: 482 + list_type: movie + name: "1990" + poster_path: /5R68Xn4EG0g5qlaQxpE89zGrtes.jpg + - description: All the movies I own on vhs/dvd/bluray or digital. + favorite_count: 0 + id: 9660 + iso_639_1: en + item_count: 3299 + list_type: movie + name: My Film Collection + poster_path: /3TsnEEkBRfQ1b7Gi2FTsuxHFUZq.jpg + - favorite_count: 0 + id: 8085 + iso_639_1: en + item_count: 23 + list_type: movie + name: Twists and Shouts + poster_path: /drzZQfdyoAq7pXq4EPI2aZKyGD5.jpg + - favorite_count: 0 + id: 12031 + iso_639_1: fr + item_count: 475 + list_type: movie + name: Films + poster_path: null + - description: List maintained by Movie Collection, the iOS app. + favorite_count: 0 + id: 1718 + iso_639_1: en + item_count: 610 + list_type: movie + name: Movie Collection + poster_path: null + - favorite_count: 0 + id: 11052 + iso_639_1: en + item_count: 478 + list_type: movie + name: Movies + poster_path: null + - description: Weekly Box Office Nº1 from 1982 + favorite_count: 0 + id: 5576 + iso_639_1: es + item_count: 647 + list_type: movie + name: Weekly Box Office Nº1 from 1982 + poster_path: /yTpKlgaNw3fEBndyDYPg3hRloR5.jpg + - favorite_count: 0 + id: 4023 + iso_639_1: it + item_count: 1072 + list_type: movie + name: Dvd collection + poster_path: /sHGO5Ct2Vo0KPVnSEmSf3Zo5MIl.jpg + - description: Películas para recomendar + favorite_count: 0 + id: 10354 + iso_639_1: en + item_count: 33 + list_type: movie + name: Peliculones + poster_path: null + - favorite_count: 0 + id: 10141 + iso_639_1: en + item_count: 304 + list_type: movie + name: R3ST + poster_path: null + - favorite_count: 0 + id: 5829 + iso_639_1: de + item_count: 396 + list_type: movie + name: Criss Filme + poster_path: /gnNU653Lm0cCpdYDaOgjTREf6JI.jpg + - description: movies that I've watched + favorite_count: 0 + id: 6357 + iso_639_1: en + item_count: 1690 + list_type: movie + name: watched + poster_path: /7o7fCNaruJGrTjWpmmK2jj8rE7Q.jpg + - favorite_count: 0 + id: 9267 + iso_639_1: en + item_count: 121 + list_type: movie + name: Dangerous Hill Classics + poster_path: /f7KYM1uO8f2duhoSY3Bps55mIe.jpg + - description: List maintained by Movie Collection, the iOS app. + favorite_count: 0 + id: 3136 + iso_639_1: en + item_count: 185 + list_type: movie + name: Movie Collection + poster_path: /koLwUfgmlT2kr0twamPJ8l6eQIp.jpg + - favorite_count: 0 + id: 4557 + iso_639_1: hu + item_count: 591 + list_type: movie + name: Watched + poster_path: /43pgav2uIG0ZNGdcaZX1v073ITv.jpg + - favorite_count: 0 + id: 12467 + iso_639_1: en + item_count: 13 + list_type: movie + name: Bradd + poster_path: null + - favorite_count: 0 + id: 4280 + iso_639_1: it + item_count: 390 + list_type: movie + name: MY COLLECTION + poster_path: /noLXB6fiDAl9uC6O2W26kCDXIFl.jpg + - description: Movies that I have watched. + favorite_count: 0 + id: 10482 + iso_639_1: en + item_count: 567 + list_type: movie + name: Watched + poster_path: null + - description: DVDs I have + favorite_count: 0 + id: 11773 + iso_639_1: en + item_count: 1158 + list_type: movie + name: DVD Collection + poster_path: null + total_pages: 18 + total_results: 358 + additionalProperties: true + movies_now_playing: + type: object + definitions: {} + $id: https://example.com/object1666853486.json + $schema: http://json-schema.org/draft-07/schema# + properties: + dates: + type: object + $id: "#root/dates" + properties: + maximum: + type: string + $id: "#root/dates/maximum" + pattern: ^.*$ + title: Maximum + minimum: + type: string + $id: "#root/dates/minimum" + pattern: ^.*$ + title: Minimum + title: Dates + page: + type: integer + $id: "#root/page" + default: 0 + title: Page + results: + type: array + $id: "#root/results" + default: [] + items: + type: object + $id: "#root/results/items" + properties: + adult: + type: boolean + $id: "#root/results/items/adult" + default: true + title: Adult + backdrop_path: + type: string + $id: "#root/results/items/backdrop_path" + pattern: ^.*$ + title: Backdrop_path + genre_ids: + type: array + $id: "#root/results/items/genre_ids" + default: [] + items: + type: integer + $id: "#root/results/items/genre_ids/items" + default: 0 + title: Items + title: Genre_ids + id: + type: integer + $id: "#root/results/items/id" + default: 0 + title: Id + original_language: + type: string + $id: "#root/results/items/original_language" + pattern: ^.*$ + title: Original_language + original_title: + type: string + $id: "#root/results/items/original_title" + pattern: ^.*$ + title: Original_title + overview: + type: string + $id: "#root/results/items/overview" + pattern: ^.*$ + title: Overview + popularity: + type: number + $id: "#root/results/items/popularity" + default: 0 + title: Popularity + poster_path: + type: string + $id: "#root/results/items/poster_path" + pattern: ^.*$ + title: Poster_path + release_date: + type: string + $id: "#root/results/items/release_date" + pattern: ^.*$ + title: Release_date + title: + type: string + $id: "#root/results/items/title" + pattern: ^.*$ + title: Title + video: + type: boolean + $id: "#root/results/items/video" + default: true + title: Video + vote_average: + type: number + $id: "#root/results/items/vote_average" + default: 0 + title: Vote_average + vote_count: + type: integer + $id: "#root/results/items/vote_count" + default: 0 + title: Vote_count + title: Items + title: Results + total_pages: + type: integer + $id: "#root/total_pages" + default: 0 + title: Total_pages + total_results: + type: integer + $id: "#root/total_results" + default: 0 + title: Total_results + title: Root + additionalProperties: true + movies_popular: + type: object + definitions: {} + $id: https://example.com/object1666853522.json + $schema: http://json-schema.org/draft-07/schema# + properties: + page: + type: integer + $id: "#root/page" + default: 0 + title: Page + results: + type: array + $id: "#root/results" + default: [] + items: + type: object + $id: "#root/results/items" + properties: + adult: + type: boolean + $id: "#root/results/items/adult" + default: true + title: Adult + backdrop_path: + type: string + $id: "#root/results/items/backdrop_path" + pattern: ^.*$ + title: Backdrop_path + genre_ids: + type: array + $id: "#root/results/items/genre_ids" + default: [] + items: + type: integer + $id: "#root/results/items/genre_ids/items" + default: 0 + title: Items + title: Genre_ids + id: + type: integer + $id: "#root/results/items/id" + default: 0 + title: Id + original_language: + type: string + $id: "#root/results/items/original_language" + pattern: ^.*$ + title: Original_language + original_title: + type: string + $id: "#root/results/items/original_title" + pattern: ^.*$ + title: Original_title + overview: + type: string + $id: "#root/results/items/overview" + pattern: ^.*$ + title: Overview + popularity: + type: number + $id: "#root/results/items/popularity" + default: 0 + title: Popularity + poster_path: + type: string + $id: "#root/results/items/poster_path" + pattern: ^.*$ + title: Poster_path + release_date: + type: string + $id: "#root/results/items/release_date" + pattern: ^.*$ + title: Release_date + title: + type: string + $id: "#root/results/items/title" + pattern: ^.*$ + title: Title + video: + type: boolean + $id: "#root/results/items/video" + default: true + title: Video + vote_average: + type: number + $id: "#root/results/items/vote_average" + default: 0 + title: Vote_average + vote_count: + type: integer + $id: "#root/results/items/vote_count" + default: 0 + title: Vote_count + title: Items + title: Results + total_pages: + type: integer + $id: "#root/total_pages" + default: 0 + title: Total_pages + total_results: + type: integer + $id: "#root/total_results" + default: 0 + title: Total_results + title: Root + additionalProperties: true + movies_recommendations: + type: object + definitions: {} + $id: https://example.com/object1666852992.json + $schema: http://json-schema.org/draft-07/schema# + properties: + page: + type: integer + $id: "#root/page" + default: 0 + title: Page + results: + type: array + $id: "#root/results" + default: [] + items: + type: object + $id: "#root/results/items" + properties: + adult: + type: boolean + $id: "#root/results/items/adult" + default: true + title: Adult + backdrop_path: + type: + - string + - "null" + $id: "#root/results/items/backdrop_path" + default: null + title: Backdrop_path + genre_ids: + type: array + $id: "#root/results/items/genre_ids" + default: [] + items: + type: integer + $id: "#root/results/items/genre_ids/items" + default: 0 + title: Items + title: Genre_ids + id: + type: integer + $id: "#root/results/items/id" + default: 0 + title: Id + original_language: + type: string + $id: "#root/results/items/original_language" + pattern: ^.*$ + title: Original_language + original_title: + type: string + $id: "#root/results/items/original_title" + pattern: ^.*$ + title: Original_title + overview: + type: string + $id: "#root/results/items/overview" + pattern: ^.*$ + title: Overview + popularity: + type: number + $id: "#root/results/items/popularity" + default: 0 + title: Popularity + poster_path: + type: + - string + - "null" + $id: "#root/results/items/poster_path" + default: null + title: Poster_path + release_date: + type: string + $id: "#root/results/items/release_date" + pattern: ^.*$ + title: Release_date + title: + type: string + $id: "#root/results/items/title" + pattern: ^.*$ + title: Title + video: + type: boolean + $id: "#root/results/items/video" + default: true + title: Video + vote_average: + type: + - number + - integer + - string + $id: "#root/results/items/vote_average" + default: 0 + title: Vote_average + vote_count: + type: integer + $id: "#root/results/items/vote_count" + default: 0 + title: Vote_count + title: Items + title: Results + total_pages: + type: integer + $id: "#root/total_pages" + default: 0 + title: Total_pages + total_results: + type: integer + $id: "#root/total_results" + default: 0 + title: Total_results + title: Root + additionalProperties: true + movies_releases_dates: + type: object + definitions: {} + $id: https://example.com/object1666853037.json + $schema: http://json-schema.org/draft-07/schema# + properties: + id: + type: integer + $id: "#root/id" + default: 0 + title: Id + results: + type: array + $id: "#root/results" + default: [] + items: + type: object + $id: "#root/results/items" + properties: + iso_3166_1: + type: string + $id: "#root/results/items/iso_3166_1" + pattern: ^.*$ + title: Iso_3166_1 + release_dates: + type: array + $id: "#root/results/items/release_dates" + default: [] + items: + type: object + $id: "#root/results/items/release_dates/items" + properties: + type: + type: integer + $id: "#root/results/items/release_dates/items/type" + default: 0 + title: Type + certification: + type: string + $id: "#root/results/items/release_dates/items/certification" + pattern: ^.*$ + title: Certification + iso_639_1: + type: string + $id: "#root/results/items/release_dates/items/iso_639_1" + pattern: ^.*$ + title: Iso_639_1 + release_date: + type: string + $id: "#root/results/items/release_dates/items/release_date" + pattern: ^.*$ + title: Release_date + title: Items + title: Release_dates + title: Items + title: Results + title: Root + additionalProperties: true + movies_reviews: + type: object + definitions: {} + $id: https://example.com/object1666853293.json + $schema: http://json-schema.org/draft-07/schema# + properties: + id: + type: integer + $id: "#root/id" + default: 0 + title: Id + page: + type: integer + $id: "#root/page" + default: 0 + title: Page + results: + type: array + $id: "#root/results" + default: [] + items: + type: object + $id: "#root/results/items" + properties: + author: + type: string + $id: "#root/results/items/author" + pattern: ^.*$ + title: Author + author_details: + type: object + $id: "#root/results/items/author_details" + properties: + avatar_path: + type: + - "null" + - string + $id: "#root/results/items/author_details/avatar_path" + pattern: ^.*$ + title: Avatar_path + name: + type: string + $id: "#root/results/items/author_details/name" + pattern: ^.*$ + title: Name + rating: + type: + - "null" + - string + $id: "#root/results/items/author_details/rating" + default: null + title: Rating + username: + type: string + $id: "#root/results/items/author_details/username" + pattern: ^.*$ + title: Username + title: Author_details + content: + type: string + $id: "#root/results/items/content" + pattern: ^.* + title: Content + created_at: + type: string + $id: "#root/results/items/created_at" + pattern: ^.*$ + title: Created_at + id: + type: string + $id: "#root/results/items/id" + pattern: ^.*$ + title: Id + updated_at: + type: string + $id: "#root/results/items/updated_at" + pattern: ^.*$ + title: Updated_at + url: + type: string + $id: "#root/results/items/url" + pattern: ^.*$ + title: Url + title: Items + title: Results + total_pages: + type: integer + $id: "#root/total_pages" + default: 0 + title: Total_pages + total_results: + type: integer + $id: "#root/total_results" + default: 0 + title: Total_results + title: Root + additionalProperties: true + movies_similar_movies: + type: object + definitions: {} + $id: https://example.com/object1666853122.json + $schema: http://json-schema.org/draft-07/schema# + properties: + page: + type: integer + $id: "#root/page" + default: 0 + title: Page + results: + type: array + $id: "#root/results" + default: [] + items: + type: object + $id: "#root/results/items" + properties: + adult: + type: boolean + $id: "#root/results/items/adult" + default: true + title: Adult + backdrop_path: + type: + - string + - "null" + $id: "#root/results/items/backdrop_path" + default: null + title: Backdrop_path + genre_ids: + type: array + $id: "#root/results/items/genre_ids" + default: [] + items: + type: integer + $id: "#root/results/items/genre_ids/items" + default: 0 + title: Items + title: Genre_ids + id: + type: integer + $id: "#root/results/items/id" + default: 0 + title: Id + original_language: + type: string + $id: "#root/results/items/original_language" + pattern: ^.*$ + title: Original_language + original_title: + type: string + $id: "#root/results/items/original_title" + pattern: ^.*$ + title: Original_title + overview: + type: string + $id: "#root/results/items/overview" + pattern: ^.*$ + title: Overview + popularity: + type: number + $id: "#root/results/items/popularity" + default: 0 + title: Popularity + poster_path: + type: + - string + - "null" + $id: "#root/results/items/poster_path" + default: null + title: Poster_path + release_date: + type: string + $id: "#root/results/items/release_date" + pattern: ^.*$ + title: Release_date + title: + type: string + $id: "#root/results/items/title" + pattern: ^.*$ + title: Title + video: + type: boolean + $id: "#root/results/items/video" + default: true + title: Video + vote_average: + type: + - number + - integer + - string + $id: "#root/results/items/vote_average" + default: 0 + title: Vote_average + vote_count: + type: integer + $id: "#root/results/items/vote_count" + default: 0 + title: Vote_count + title: Items + title: Results + total_pages: + type: integer + $id: "#root/total_pages" + default: 0 + title: Total_pages + total_results: + type: integer + $id: "#root/total_results" + default: 0 + title: Total_results + title: Root + additionalProperties: true + movies_top_rated: + page: 1 + results: + - adult: false + backdrop_path: /xBKGJQsAIeweesB79KC89FpBrVr.jpg + genre_ids: + - 18 + - 80 + id: 278 + original_language: en + original_title: The Shawshank Redemption + overview: >- + Framed in the 1940s for the double murder of his wife and her lover, + upstanding banker Andy Dufresne begins a new life at the Shawshank + prison, where he puts his accounting skills to work for an amoral + warden. During his long stretch in prison, Dufresne comes to be + admired by the other inmates -- including an older prisoner named Red + -- for his integrity and unquenchable sense of hope. + popularity: 6.741296 + poster_path: /9O7gLzmreU0nGkIB6K3BsJbzvNv.jpg + release_date: "1994-09-10" + title: The Shawshank Redemption + video: false + vote_average: 8.32 + vote_count: 5238 + - adult: false + backdrop_path: /6bbZ6XyvgfjhQwbplnUh1LSj1ky.jpg + genre_ids: + - 18 + - 10402 + id: 244786 + original_language: en + original_title: Whiplash + overview: >- + Under the direction of a ruthless instructor, a talented young drummer + begins to pursue perfection at any cost, even his humanity. + popularity: 10.776056 + poster_path: /lIv1QinFqz4dlp5U4lQ6HaiskOZ.jpg + release_date: "2014-10-10" + title: Whiplash + video: false + vote_average: 8.29 + vote_count: 2059 + - adult: false + backdrop_path: /6xKCYgH16UuwEGAyroLU6p8HLIn.jpg + genre_ids: + - 18 + - 80 + id: 238 + original_language: en + original_title: The Godfather + overview: >- + The story spans the years from 1945 to 1955 and chronicles the + fictional Italian-American Corleone crime family. When organized crime + family patriarch Vito Corleone barely survives an attempt on his life, + his youngest son, Michael, steps in to take care of the would-be + killers, launching a campaign of bloody revenge. + popularity: 4.554654 + poster_path: /d4KNaTrltq6bpkFS01pYtyXa09m.jpg + release_date: "1972-03-15" + title: The Godfather + video: false + vote_average: 8.26 + vote_count: 3570 + - adult: false + backdrop_path: /djgM2d3e42p9GFQObg6lwK2SVw2.jpg + genre_ids: + - 14 + - 12 + - 16 + - 10751 + id: 129 + original_language: ja + original_title: 千と千尋の神隠し + overview: >- + Spirited Away is an Oscar winning Japanese animated film about a ten + year old girl who wanders away from her parents along a path that + leads to a world ruled by strange and unusual monster-like animals. + Her parents have been changed into pigs along with others inside a + bathhouse full of these creatures. Will she ever see the world how it + once was? + popularity: 6.886678 + poster_path: /ynXoOxmDHNQ4UAy0oU6avW71HVW.jpg + release_date: "2001-07-20" + title: Spirited Away + video: false + vote_average: 8.15 + vote_count: 2000 + - adult: false + backdrop_path: /xu9zaAevzQ5nnrsXN6JcahLnG4i.jpg + genre_ids: + - 12 + - 18 + - 878 + id: 157336 + original_language: en + original_title: Interstellar + overview: >- + Interstellar chronicles the adventures of a group of explorers who + make use of a newly discovered wormhole to surpass the limitations on + human space travel and conquer the vast distances involved in an + interstellar voyage. + popularity: 12.481061 + poster_path: /nBNZadXqJSdt05SHLqgT0HuC5Gm.jpg + release_date: "2014-11-05" + title: Interstellar + video: false + vote_average: 8.12 + vote_count: 5600 + - adult: false + backdrop_path: /gLbBRyS7MBrmVUNce91Hmx9vzqI.jpg + genre_ids: + - 18 + - 80 + id: 240 + original_language: en + original_title: "The Godfather: Part II" + overview: >- + The continuing saga of the Corleone crime family tells the story of a + young Vito Corleone growing up in Sicily and in 1910s New York; and + follows Michael Corleone in the 1950s as he attempts to expand the + family business into Las Vegas, Hollywood and Cuba + popularity: 4.003715 + poster_path: /tHbMIIF51rguMNSastqoQwR0sBs.jpg + release_date: "1974-12-20" + title: "The Godfather: Part II" + video: false + vote_average: 8.1 + vote_count: 1894 + - adult: false + backdrop_path: /ihWaJZCUIon2dXcosjQG2JHJAPN.jpg + genre_ids: + - 18 + - 35 + id: 77338 + original_language: fr + original_title: Intouchables + overview: >- + A true story of two men who should never have met - a quadriplegic + aristocrat who was injured in a paragliding accident and a young man + from the projects. + popularity: 3.698279 + poster_path: /4mFsNQwbD0F237Tx7gAPotd0nbJ.jpg + release_date: "2011-11-02" + title: The Intouchables + video: false + vote_average: 8.1 + vote_count: 2740 + - adult: false + backdrop_path: /fCUIuG7y4YKC3hofZ8wsj7zhCpR.jpg + genre_ids: + - 16 + - 18 + - 10751 + - 10752 + id: 12477 + original_language: ja + original_title: 火垂るの墓 + overview: >- + In the latter part of World War II, a boy and his sister, orphaned + when their mother is killed in the firebombing of Tokyo, are left to + survive on their own in what remains of civilian life in Japan. The + plot follows this boy and his sister as they do their best to survive + in the Japanese countryside, battling hunger, prejudice, and pride in + their own quiet, personal battle. + popularity: 1.001401 + poster_path: /bwVhmPpydv8P7mWfrmL3XVw0MV5.jpg + release_date: "1988-04-16" + title: Grave of the Fireflies + video: false + vote_average: 8.07 + vote_count: 430 + - adult: false + backdrop_path: /rIpSszng8P0DL0TimSzZbpfnvh1.jpg + genre_ids: + - 18 + - 36 + - 10752 + id: 424 + original_language: en + original_title: Schindler's List + overview: >- + Told from the perspective of businessman Oskar Schindler who saved + over a thousand Jewish lives from the Nazis while they worked as + slaves in his factory. Schindler’s List is based on a true story, + illustrated in black and white and controversially filmed in many + original locations. + popularity: 5.372319 + poster_path: /yPisjyLweCl1tbgwgtzBCNCBle.jpg + release_date: "1993-11-29" + title: Schindler's List + video: false + vote_average: 8.07 + vote_count: 2308 + - adult: false + backdrop_path: /tBhp8MGaiL3BXpPCSl5xY397sGH.jpg + genre_ids: + - 18 + - 53 + id: 264644 + original_language: en + original_title: Room + overview: >- + Jack is a young boy of 5 years old who has lived all his life in one + room. He believes everything within it are the only real things in the + world. But what will happen when his Ma suddenly tells him that there + are other things outside of Room? + popularity: 5.593128 + poster_path: /eqFckcHuFCT1FrzLOAvXBb4jHwq.jpg + release_date: "2015-10-16" + title: Room + video: false + vote_average: 8.06 + vote_count: 1179 + - adult: false + backdrop_path: /bORe0eI72D874TMawOOFvqWS6Xe.jpg + genre_ids: + - 35 + - 18 + id: 637 + original_language: it + original_title: La vita è bella + overview: >- + A touching story of an Italian book seller of Jewish ancestry who + lives in his own little fairy tale. His creative and happy life would + come to an abrupt halt when his entire family is deported to a + concentration camp during World War II. While locked up he tries to + convince his son that the whole thing is just a game. + popularity: 5.385594 + poster_path: /f7DImXDebOs148U4uPjI61iDvaK.jpg + release_date: "1997-12-20" + title: Life Is Beautiful + video: false + vote_average: 8.06 + vote_count: 1593 + - adult: false + backdrop_path: /9j4UaRypr19wz0BOofwvkPRm1Se.jpg + genre_ids: + - 10749 + - 18 + - 10402 + id: 369557 + original_language: en + original_title: Sing Street + overview: >- + A boy growing up in Dublin during the 1980s escapes his strained + family life by starting a band to impress the mysterious girl he + likes. + popularity: 3.343073 + poster_path: /s0C78plmx3dFcO3WMnoXCz56FiN.jpg + release_date: "2016-04-15" + title: Sing Street + video: false + vote_average: 8.06 + vote_count: 61 + - adult: false + backdrop_path: /nnMC0BM6XbjIIrT4miYmMtPGcQV.jpg + genre_ids: + - 18 + - 28 + - 80 + - 53 + id: 155 + original_language: en + original_title: The Dark Knight + overview: >- + Batman raises the stakes in his war on crime. With the help of Lt. Jim + Gordon and District Attorney Harvey Dent, Batman sets out to dismantle + the remaining criminal organizations that plague the streets. The + partnership proves to be effective, but they soon find themselves prey + to a reign of chaos unleashed by a rising criminal mastermind known to + the terrified citizens of Gotham as the Joker. + popularity: 8.090715 + poster_path: /1hRoyzDtpgMU7Dz4JF22RANzQO7.jpg + release_date: "2008-07-16" + title: The Dark Knight + video: false + vote_average: 8.06 + vote_count: 7744 + - adult: false + backdrop_path: /8uO0gUM8aNqYLs1OsTBQiXu0fEv.jpg + genre_ids: + - 18 + id: 550 + original_language: en + original_title: Fight Club + overview: >- + A ticking-time-bomb insomniac and a slippery soap salesman channel + primal male aggression into a shocking new form of therapy. Their + concept catches on, with underground "fight clubs" forming in every + town, until an eccentric gets in the way and ignites an out-of-control + spiral toward oblivion. + popularity: 6.590102 + poster_path: /811DjJTon9gD6hZ8nCjSitaIXFQ.jpg + release_date: "1999-10-14" + title: Fight Club + video: false + vote_average: 8.05 + vote_count: 5221 + - adult: false + backdrop_path: /mte63qJaVnoxkkXbHkdFujBnBgd.jpg + genre_ids: + - 53 + - 80 + id: 680 + original_language: en + original_title: Pulp Fiction + overview: >- + A burger-loving hit man, his philosophical partner, a drug-addled + gangster's moll and a washed-up boxer converge in this sprawling, + comedic crime caper. Their adventures unfurl in three stories that + ingeniously trip back and forth in time. + popularity: 7.760216 + poster_path: /dM2w364MScsjFf8pfMbaWUcWrR.jpg + release_date: "1994-10-14" + title: Pulp Fiction + video: false + vote_average: 8.04 + vote_count: 4722 + - adult: false + backdrop_path: /dB2rATwfCbsPGfRLIoluBnKdVHb.jpg + genre_ids: + - 12 + - 14 + - 16 + id: 128 + original_language: ja + original_title: もののけ姫 + overview: >- + Ashitaka, a prince of the disappearing Ainu tribe, is cursed by a + demonized boar god and must journey to the west to find a cure. Along + the way, he encounters San, a young human woman fighting to protect + the forest, and Lady Eboshi, who is trying to destroy it. Ashitaka + must find a way to bring balance to this conflict. + popularity: 4.672361 + poster_path: /gzlJkVfWV5VEG5xK25cvFGJgkDz.jpg + release_date: "1997-07-12" + title: Princess Mononoke + video: false + vote_average: 8.04 + vote_count: 954 + - adult: false + backdrop_path: /cqn1ynw78Wan37jzs1Ckm7va97G.jpg + genre_ids: + - 16 + - 10751 + - 10749 + id: 140420 + original_language: en + original_title: Paperman + overview: >- + An urban office worker finds that paper airplanes are instrumental in + meeting a girl in ways he never expected. + popularity: 2.907096 + poster_path: /3TpMBcAYH4cxCw5WoRacWodMTCG.jpg + release_date: "2012-11-02" + title: Paperman + video: false + vote_average: 8.03 + vote_count: 452 + - adult: false + backdrop_path: /xDEOxA01480uLTWuvQCw61VmDBt.jpg + genre_ids: + - 18 + - 80 + id: 769 + original_language: en + original_title: Goodfellas + overview: >- + Henry Hill is a small time gangster, who takes part in a robbery with + Jimmy Conway and Tommy De Vito, two other gangsters who have set their + sights a bit higher. His two partners kill off everyone else involved + in the robbery, and slowly start to climb up through the hierarchy of + the Mob. Henry, however, is badly affected by his partners success, + but will he stoop low enough to bring about the downfall of Jimmy and + Tommy? + popularity: 3.783589 + poster_path: /pwpGfTImTGifEGgLb3s6LRPd4I6.jpg + release_date: "1990-09-12" + title: Goodfellas + video: false + vote_average: 8.02 + vote_count: 1528 + - adult: false + backdrop_path: /ctOEhQiFIHWkiaYp7b0ibSTe5IL.jpg + genre_ids: + - 35 + - 18 + - 10749 + id: 13 + original_language: en + original_title: Forrest Gump + overview: >- + A man with a low IQ has accomplished great things in his life and been + present during significant historic events - in each case, far + exceeding what anyone imagined he could do. Yet, despite all the + things he has attained, his one true love eludes him. 'Forrest Gump' + is the story of a man who rose above his challenges, and who proved + that determination, courage, and love are more important than ability. + popularity: 6.224491 + poster_path: /z4ROnCrL77ZMzT0MsNXY5j25wS2.jpg + release_date: "1994-07-06" + title: Forrest Gump + video: false + vote_average: 8.02 + vote_count: 4279 + - adult: false + backdrop_path: /61vLiK96sbXeHpQiMxI4CuqBA3z.jpg + genre_ids: + - 28 + - 18 + id: 346 + original_language: ja + original_title: 七人の侍 + overview: >- + A veteran samurai, who has fallen on hard times, answers a village's + request for protection from bandits. He gathers 6 other samurai to + help him, and they teach the townspeople how to defend themselves, and + they supply the samurai with three small meals a day. The film + culminates in a giant battle when 40 bandits attack the village. + popularity: 2.93856 + poster_path: /5hqbJSmtAimbaP3XcYshCixuUtk.jpg + release_date: "1954-04-26" + title: Seven Samurai + video: false + vote_average: 8.02 + vote_count: 436 + total_pages: 261 + total_results: 5206 + additionalProperties: true + movies_translations: + id: 550 + translations: + - data: + overview: >- + Джек, страждає хронічним безсонням і відчайдушно намагається + вирватися з нудного життя. Саме тоді він зустрічає Тайлера Дердена, + торговця із збоченою філософією. Тайлер впевнений, що + самовдосконалення - доля слабких, а саморуйнування - єдине, заради + чого варто жити. І ось вже Джек і Тайлер луплять один одному пики на + стоянці перед баром, що приносить їм неабияке задоволення. Залучаючи + інших чоловіків до простих радощів фізичної жорстокості, Джек і + Тайлер засновують таємний Бійцівський Клуб, який має величезний + успіх. Але Джека чекає шокуюче відкриття, здатне змінити все... + title: Бійцівський клуб + english_name: Ukrainian + iso_3166_1: UA + iso_639_1: uk + name: Український + - data: + overview: >- + Ein Yuppie findet beim charismatischen Tyler Durden Unterschlupf, + nachdem seine Wohnung in die Luft gejagt wird. Ein Gerangel zwischen + den beiden entwickelt sich zu einer Schlägerei, die mit der + Erkenntnis endet, dass man sich nach einer ordentlichen Portion + Prügel einfach besser fühlt. Der "Fight Club" ist geboren. Immer + mehr Männer versammeln sich, um sich zu schlagen - und gestärkt in + den Alltag zu gehen. Wie ein Virus greift das Konzept um sich, doch + für Tyler ist der Kampfverein nur die erste Stufe, um die USA in die + Knie zu zwingen. + english_name: German + iso_3166_1: DE + iso_639_1: de + name: Deutsch + - data: + homepage: https://www.welcometofc.com/ + overview: >- + Jack (Edward Norton) é um executivo que trabalha como investigador + de seguros, tem uma boa vida financeira, mas sofre com problemas de + insônia. Para tentar se curar, ele começa a freqüentar terapias em + grupo, mas sua vida vira de cabeça para baixo quando ele conhece + Tyler (Brad Pitt). Com ele, forma um clube da luta, onde pessoas são + amigas, mas se esmurram violentamente em algumas noites. Tudo ganha + propósitos maiores quando as coisas começam a ficar loucas e + surreais. + title: Clube de Combate + english_name: Portuguese + iso_3166_1: PT + iso_639_1: pt + name: Português + - data: + overview: >- + Een verzekeringsinspecteur die aan chronische slapeloosheid lijdt + probeert wanhopig uit zijn oersaaie bestaan te ontsnappen. Bij + toeval ontmoet hij Tyler Durden, een charismatische zeepverkoper met + een bizarre levensfilosofie. Tyler gelooft namelijk dat + "zelfverbetering" enkel voor de zwakken is, het is "zelfvernieling" + die het leven meer waarde geeft. Samen met Tyler organiseert hij de + ultieme vorm van ontspanning: zogeheten "Fight Clubs", waar gewone + jonge mannen het beest in zichzelf loslaten in blotevuistgevechten. + Het bevrijdende effect op de deelnemende mannen doet een vreemd + soort kameraadschap ontstaan, dat al snel gevaarlijke vormen + aanneemt. + english_name: Dutch + iso_3166_1: NL + iso_639_1: nl + name: Nederlands + - data: + overview: >- + Терзаемый хронической бессоницей и отчаянно пытающийся вырваться из + мучительно скучной жизни клерк встречает некоего Тайлера Дардена, + харизматического торговца мылом с извращенной философией. Тайлер + уверен, что самосовершенствование — удел слабых, а саморазрушение — + единственное, ради чего стоит жить. + title: Бойцовский клуб + english_name: Russian + iso_3166_1: RU + iso_639_1: ru + name: Pусский + - data: + overview: >- + Un uomo di trent'anni è insofferente su tutto e la notte non riesce + più a dormire. In cerca di qualche luogo dove scaricare la propria + ansia si mette a frequentare quei corsi dove gruppi di malati gravi + si riuniscono e confessano agli altri le rispettive situazioni. + Mentre si lascia andare alla commozione e al pianto di fronte a + quello che vede, l'uomo fa la conoscenza prima di Marla Singer poi + di Tyler Durden. Lei è una ragazza a sua volta alla deriva, incapace + di scelte o decisioni; lui è un tipo deciso e vigoroso con un'idea + precisa in testa. Tyler fa saltare per aria l'appartamento dell'uomo + e i due vanno a vivere insieme in una casa fatiscente. Deciso a + coinvolgerlo nel suo progetto, Tyler lo fa entrare in un 'Fight + Club', uno stanzone sotterraneo dove ci si riunisce per picchiarsi e + in questo modo sentirsi di nuovo vivi... + title: Fight Club + english_name: Italian + iso_3166_1: IT + iso_639_1: it + name: Italiano + - data: + overview: >- + Dövüş kulübünün ilk kuralı, dövüş kulübü hakkında konuşmamaktır. + Dövüş kulübünün ikinci kuralı da, kulüp hakkında konuşmamaktır... + Filmin baş kişisi, sıradan hayatının girdaplarında bunalımlar + geçiren bir sigorta müfettişi olan Jack, Kanserli olmadığı halde, + uykusuzluğunu yenmek ve hayatına anlam katmak adına, kanserlilere + moral destek sağlayan terapi gruplarına katılır. Orada, Marla Singer + adlı bir kızla garip bir yakınlık kurar. Bir iş gezisi dönüşü ise, + Tyler Durden adlı egzantrik karakterle tanışır. Durden, Jack'in + olmak isteyip de olamadığı adam gibidir. Tyler'ın girişimleriyle bir + yeraltı faaliyeti olarak başlayan dövüş kulübü, Jack'e hayatında + yepyeni kapılar açacaktır... Ve tabii, bu kapılardan ister istemez + Marla geçecektir... Fakat... Tyler Durden gerçekte kimdir? + title: Dövüş Kulübü + english_name: Turkish + iso_3166_1: TR + iso_639_1: tr + name: Türkçe + - data: + overview: >- + Brad Pitt och Edward Norton gör två knockoutbra roller i denna + häpnadsväckande och originella thriller med ironisk underton av + David Fincher, regissören till Seven. Norton spelar Jack, en + kroniskt sömnlös man som desperat försöker fly sitt olidligt tråkiga + liv. Men så möter han Tyler Durden (Pitt) en karismatisk + tvålförsäljare med en snedvriden filosofi. Tyler menar att + självförbättring är för de svaga - det är självdestruktion som + verkligen gör livet värt att leva. Inom kort är Jack och Tyler i + full gång med att mörbulta varandra på en parkeringsplats. Ett + renande slagsmål med en endorfinkick utan dess like. För att + introducera andra män i denna enkla lycka av fysiskt våld bildar + Jack och Tyler en hemlig "Fight Club" som snabbt blir omåttligt + populär. Men en hemsk överraskning väntar Jack, en sanning som + kommer att förändra allt... Filmen innehåller också kommentarer av + David Fincher, Brad Pitt, Edward Norton och Helena Bonham Carter. + title: Fight Club + english_name: Swedish + iso_3166_1: SE + iso_639_1: sv + name: svenska + - data: + overview: >- + Co ty możesz o sobie wiedzieć, jeśli nigdy nie walczyłeś? W tym + niezwykłym, pełnym niespodziewanych zwrotów akcji i nie pozbawionym + swoistego humoru filmie w reżyserii Davida Finchera ("Siedem") + oryginalne i dynamiczne kreacje stworzyli Brad Pitt ("Siedem") i + Edward Norton ("Lęk pierwotny"). Jack (Norton) cierpi na chroniczną + bezsenność i jest całkowicie znudzony swym dotychczasowym życiem. Do + czasu, gdy spotyka charyzmatycznego Tylera Durdena (Pitt) - + sprzedawcę mydła o dość pokrętnej filozofii życia... Uważa on + bowiem, że samo-doskonalenie jest dla słabeuszy, a to co + rzeczywiście sprawia, że warto żyć to samo-destrukcja. + title: Podziemny krąg + english_name: Polish + iso_3166_1: PL + iso_639_1: pl + name: Polski + - data: + overview: >- + Když nemůžete půl roku usnout, celý okolní svět vám začne připadat + jako nekonečný sen. Všechno kolem vás je nedokonalou xeroxovou kopií + sebe sama. Chodíte do práce, díváte se na televizi a jste vděčni za + to, když občas ztratíte vědomí a nevíte o světě. Lidí s podobnými + problémy moc není, ale mladý úspěšný úředník, který si říká Jack, je + jedním z nich. Má slušnou práci, vydělává slušné peníze, ale trpí + nejtěžší formou nespavosti. Na služební cestě se Jack seznámí s + Tylerem Durdenem, který mu nabídne příbytek pod podmínkou, že mu + vrazí pořádnou ránu. Tato "výměna názorů" se oběma zalíbí a brzy + vznikne první Klub rváčů. Místo, kde můžou mladí muži, znechucení + světem, odložit své starosti a stát se na pár minut zvířaty. + title: Klub rváčů + english_name: Czech + iso_3166_1: CZ + iso_639_1: cs + name: Český + - data: + overview: >- + יאפי הסובל מנדודי שינה ועייפות כרונית מתחיל לבקר בסדנאות שיקום של + חולי סרטן, אלכוהוליסטים אנונימיים וארגונים אחרים כדי להגיע להתרגשות + בחייו. שם הוא פוגש צעירה משועממת ומתחזה כמוהו, איתה הוא מפתח קשר של + אהבה/שנאה. במקביל הוא מתחבר אל צעיר ניהיליסט, המתפרנס מייצור סבון + משומן אדם ובז לכל מה שקשור לממסד וחוק. השניים מקימים מועדון אגרוף + בלתי חוקי לאנשים המחפשים פורקן מחוץ למסגרת הבורגנית. הקרבות מזרימים + אדרנלין לדם, אך גם מובילים להקמתה של כת אנרכיסטית, מיליטנטית + ומסוכנת. + title: מועדון קרב + english_name: Hebrew + iso_3166_1: IL + iso_639_1: he + name: עִבְרִית + - data: + overview: >- + Усамљени безимени тридесетогодишњак (Едвард Нортон), запослен као + кординатор за опозив у ауто-компанији, има проблема са несаницом + коју покушава да реши на разне начине. У авиону упознаје Тајлера + Дардена (Бред Пит), произвођача и продавца сапуна, са којим ће се + спријатељити и основати удружење „Борилачки клуб“ које ће од простог + малог друштва где људи после напорног дана долазе да се испразне + постати тајни и добро организован анархистички покрет. + title: Борилачки клуб + english_name: Serbian + iso_3166_1: RS + iso_639_1: sr + name: Srpski + - data: + overview: >- + 空虚な生活を送るヤング・エグゼクティブのジャックは、謎の男テイラーに導かれるまま、謎の秘密組織「ファイト・クラブ」のメンバーになる。そこは鍛え抜かれた男達が己の拳のみを武器に闘いを繰り広げる、壮絶で危険な空間だった。 + title: ファイト・クラブ + english_name: Japanese + iso_3166_1: JP + iso_639_1: ja + name: 日本語 + - data: + overview: >- + Ένα στέλεχος που πάσχει από αϋπνίες βρίσκει τον αληθινό εαυτό του + στα "Fight Club", όπου συμμετέχει σε αγώνες πυγμαχίας με γυμνά + χέρια. Ο ιδρυτής των "Fight Club", ωστόσο, αποδεικνύεται μια + επικίνδυνη προσωπικότητα, που επιδίδεται σε πράξεις τρομοκρατίας + ενάντια στην καθεστηκυία τάξη. + english_name: Greek + iso_3166_1: GR + iso_639_1: el + name: ελληνικά + - data: + overview: >- + Разказвачът (Едуард Нортън) е самотник, чийто живот е безцелен низ + от незначителни случки. Промяната започва едва след запознанството + му с агресивния нихилист Джак (Брад Пит). Той го въвежда в подземния + свят на тъмни сделки и машинации. Разказвача се включва като + участник в кървави боксови двубои, които не му носят очакваното + удовлетворение. Постепенно той осъзнава, че губи контрол над себе + си, откривайки, че мачовете са част от зловещ план? + title: Боен клуб + english_name: Bulgarian + iso_3166_1: BG + iso_639_1: bg + name: български език + - data: + overview: >- + 자동차 회사의 리콜 심사관으로 일하는 주인공(에드워드 노튼)은 일상의 무료함과 공허함 속에서 늘 새로운 탈출을 꿈꾼다. + 그는 비행기에서 자신을 비누 제조업자라고 소개하는 타일러 더든(브래드 피트)을 만난다. 집에 돌아온 주인공은 아파트가 + 누군가에 의해 폭파되었음을 발견하고, 타일러에게 도움을 청해 함께 생활하게 된다. 어느 날 밤 타일러는 주인공에게 자신을 + 때려달라고 부탁한다. 사람은 싸워봐야 진정한 자신을 알 수 있다는 것이다. 결국 이들은 매주 토요일 밤 술집 지하에서 + 맨주먹으로 격투를 벌이는 파이트 클럽을 결성하기에 이르는데... + title: 파이트 클럽 + english_name: Korean + iso_3166_1: KR + iso_639_1: ko + name: 한국어/조선말 + - data: + overview: >- + Keď nemôžete pol roka zaspať, celý okolitý svet vám začne pripadať + ako nekonečný sen. Všetko okolo vás je nedokonalou xeroxovou kópiou + seba samého. Chodíte do práce, pozeráte sa na televíziu a ste vďační + za to, keď občas stratíte vedomie a neviete o svete. Ľudí s + podobnými problémami moc nie je, ale mladý úspešný úradník, ktorý si + hovorí Jack, je jedným z nich. Má slušnú prácu, zarába slušné + peniaze, ale trpí najťažšou formou nespavosti. Na služobnej ceste sa + Jack zoznámi s Tylerom Durdenom, ktorý mu ponúkne príbytok pod + podmienkou, že mu vrazí poriadnu ranu. Táto "výmena názorov" sa obom + zapáči a čoskoro vznikne prvý Klub bitkárov. Miesto, kde môžu mladí + muži, znechutení svetom, odložiť svoje starosti a stať sa na pár + minút zvieratami. + title: Klub bitkárov + english_name: Slovak + iso_3166_1: SK + iso_639_1: sk + name: Slovenčina + - data: {} + english_name: Arabic + iso_3166_1: SA + iso_639_1: ar + name: العربية + - data: + title: Cīņas klubs + english_name: Latvian + iso_3166_1: LV + iso_639_1: lv + name: Latviešu + - data: + overview: >- + Jack (Edward Norton) é um executivo jovem, trabalha como + investigador de seguros, mora confortavelmente, mas ele está ficando + cada vez mais insatisfeito com sua vida medíocre. Para piorar ele + está enfrentando uma terrível crise de insônia, até que encontra uma + cura inusitada para o sua falta de sono ao frequentar grupos de + auto-ajuda. Nesses encontros ele passa a conviver com pessoas + problemáticas como a viciada Marla Singer (Helena Bonham Carter) e a + conhecer estranhos como Tyler Durden (Brad Pitt). Misterioso e cheio + de ideias, Tyler apresenta para Jack um grupo secreto que se + encontra para extravasar suas angústias e tensões através de + violentos combates corporais. + title: Clube da Luta + english_name: Portuguese + iso_3166_1: BR + iso_639_1: pt + name: Português + - data: + title: Döyüshçü Klubu + english_name: Azerbaijani + iso_3166_1: AZ + iso_639_1: az + name: Azərbaycan + - data: + title: Kaklusklubi + english_name: Estonian + iso_3166_1: ET + iso_639_1: et + name: Eesti + - data: + overview: >- + Nemigos kamuojamas Džekas lankosi įvairiuose nelaimėlių + susitikimuose, klausosi jų išpažinčių ir drauge verkia. Jis skraido + lėktuvais, kiekvienąkart tikėdamasis katastrofos. Tačiau kartą + skrisdamas jis sutinka spalvingą asmenybę. Tailerio gyvenimas + nepaprastas - nerūpestingas ir linksmas. Jis kartais linksmai ir + nerūpestingai paprašo trenkti jam į galvą... Džekas neatsisako. + Todėl tarp draugų užverda rimtos muštynės, ir netrukus jiedu įkuria + klubą, kur vaikinai gali muštis iki sąmonės netekimo... + title: Kovos klubas + english_name: Lithuanian + iso_3166_1: LT + iso_639_1: lt + name: "Lietuvi\x9Akai" + - data: + title: Borechki Klub + english_name: Macedonian + iso_3166_1: MK + iso_639_1: mk + - data: + title: Klub boraca + english_name: Croatian + iso_3166_1: HR + iso_639_1: hr + name: Hrvatski + - data: + title: 鬥陣俱樂部 + english_name: Twi + iso_3166_1: TW + iso_639_1: tw + - data: + overview: >- + Un insomniac gata să cedeze și un vânzător de săpun fără scrupule + își canalizează agresiunea masculină într-o formă de terapie nouă și + șocantă. Ideea lor se prinde și „cluburi de luptă” se formează în + fiecare oraș, până când apare un excentric și pornește o spirală + ieșită de sub control către uitare. + title: Clubul de lupte + english_name: Romanian + iso_3166_1: RO + iso_639_1: ro + name: Română + - data: + overview: >- + 傑克(愛德華諾頓飾演)是一個充滿中年危機意識的人,他非常憎恨自己的生活及一切,再加上他患有嚴重的失眠症,所以他常常參加各種團體諮詢會,只為了能接觸人群。在某一個團體諮詢會上,傑克遇上了一個跟他同樣理由來參加的女煙槍,瑪拉(海倫娜寶漢卡特飾演)。 + 在一個商務旅行中,傑克在飛機上遇到賣肥皂的商人-泰勒(布萊德彼特飾演),兩人因緣際會地成了好友,並開始創建了「鬥陣俱樂部」:一個讓彼此不戴護具而互毆的聚會,宗旨在發洩情緒。 + 某夜,泰勒在傑克的公寓中把瑪拉給「上」了,這讓傑克非常忌妒。同時「鬥陣俱樂部」也成了全國性的地下大組織,所有成員都將泰勒視為教父。為了辨識起見,成員還都剃了光頭。 + 傑克對於「鬥陣俱樂部」的現況及泰勒的瘋狂模樣越來越無法忍受,所以他決定疏遠泰勒。但是,此時的「鬥陣俱樂部」成員卻發起全國性的暴動,他們炸毀了不少建築物......,一切的局勢都是傑克始料未及的,他該如何解決這混亂的現狀?「鬥陣俱樂部」又會瘋狂成什麼樣子? + 傑克與泰勒之間的恩恩怨怨會如何了結? + title: 鬥陣俱樂部 + english_name: Mandarin + iso_3166_1: TW + iso_639_1: zh + name: 普通话 + - data: + overview: >- + Un joven hastiado de su gris y monótona vida lucha contra el + insomnio. En un viaje en avión conoce a un carismático vendedor de + jabón que sostiene una teoría muy particular: el perfeccionismo es + cosa de gentes débiles; sólo la autodestrucción hace que la vida + merezca la pena. Ambos deciden entonces fundar un club secreto de + lucha, donde poder descargar sus frustaciones y su ira, que tendrá + un éxito arrollador. + title: El club de la pelea + english_name: Spanish + iso_3166_1: MX + iso_639_1: es + name: Español + - data: + overview: >- + Fight Club ni le prispodoba o (samo)destruktivnem begu posameznika + iz ujetosti potrošniškega nesmisla, temveč (tudi) parabola upora + zoper nezmožnost poistovetenja s prvobitnim moškim/očetovskim + principom — odraža se v sprevrženi percepciji psihosocialnih norm in + nevrotični konfrontaciji ter boju (dobesedno "z golimi pestmi") s + samim seboj. Dodajmo še patološke predstave o ljubezenski zvezi in + vlogi ženske, metaforični upor maskuliniziranega segmenta potlačene + moške dominantnosti, ki v ničemer ne najde prave identifikacije in + opore, zato njegov dezorientirani razcepljeni um primanjkljaj + kompenzira tako, da ustvarja namišljene alegorične osebnosti — ter + izvrstno igralsko zasedbo (Edward Norton, Brad Pitt, Helena Bontham + Carter) — pa dobimo enega najbolj izvirnih (in vplivnih) produktov + ameriške literature in kinematografije zadnjih desetletij. + title: Klub golih pesti + english_name: Slovenian + iso_3166_1: SI + iso_639_1: sl + name: Slovenščina + - data: + overview: >- + ไทเลอร์ (แบรด พิทท์) กล่าวว่า ทุกสิ่งทุกอย่างที่คุณครอบครองอยู่นั้น + ท้ายที่สุดแล้วพวกมันก็จะครอบงำคุณเสีย + แต่ถ้าหากคุณสูญสิ้นทุกสิ่งเมื่อใด + คุณก็จะกล้าทำอะไรต่อมิอะไรได้อย่างไร้กังวลตลอดไป ซึ่ง Fight Club + เปรียบได้กับอิสรภาพแบบนั้น " + title: ดิบดวลดิบ + english_name: Thai + iso_3166_1: TH + iso_639_1: th + name: ภาษาไทย + - data: + homepage: https://www.foxmovies.com/movies/fight-club + overview: >- + A ticking-time-bomb insomniac and a slippery soap salesman channel + primal male aggression into a shocking new form of therapy. Their + concept catches on, with underground "fight clubs" forming in every + town, until an eccentric gets in the way and ignites an + out-of-control spiral toward oblivion. + english_name: English + iso_3166_1: US + iso_639_1: en + name: English + - data: + overview: >- + Un joven sin ilusiones lucha contra su insomnio, consecuencia quizás + de su hastío por su gris y rutinaria vida. En un viaje en avión + conoce a Tyler Durden, un carismático vendedor de jabón que sostiene + una filosofía muy particular: el perfeccionismo es cosa de gentes + débiles; en cambio, la autodestrucción es lo único que hace que + realmente la vida merezca la pena. Ambos deciden entonces formar un + club secreto de lucha donde descargar sus frustaciones y su ira que + tendrá un éxito arrollador. + title: El club de la lucha + english_name: Spanish + iso_3166_1: ES + iso_639_1: es + name: Español + - data: + overview: >- + Le narrateur, sans identité précise, vit seul, travaille seul, dort + seul, mange seul ses plateaux-repas pour une personne comme beaucoup + d'autres personnes seules qui connaissent la misère humaine, morale + et sexuelle. Mais un jour il fait la rencontre de Tyler Durden, une + sorte d'anarchiste entre gourou et philosophe qui prêche l'amour de + son prochain. Ensemble ils vont créer le Fight club, un lieu + clandestin ou l'on peut retrouver sa virilité, l'échange et la + communication. + title: Fight Club + english_name: French + iso_3166_1: FR + iso_639_1: fr + name: Français + - data: + overview: >- + Amerika nagyvárosainak pincéiben egy titkos szervezet működik: ha + egy éjjel az utca összes nyilvános telefonja összetörik, ők jártak + ott; ha egy köztéri szobor óriás fémgömbje legurul talapzatáról, és + szétrombol egy gyorsétkezdét, az az ő művük; ha egy elegáns bank + parkolójának összes autóját rettentően összerondítják a galambok - + az sem véletlen. Vigyáznak a leveleinkre, átveszik + telefonüzeneteinket, kísérnek az utcán: és még csak készülnek a + végső dobásra: a nagy bummra... Pedig az egészet csak két túlzottan + unatkozó jóbarát találta ki: azzal kezdték, hogy rájöttek, nincs + jobb stresszoldó, mint ha alaposan megverik egymást. Pofonokat adni + jó. Pofonokat kapni jó. Számukra ez a boldog élet szabálya. + title: Harcosok klubja + english_name: Hungarian + iso_3166_1: HU + iso_639_1: hu + name: Magyar + - data: + overview: >- + 杰克( 爱德华·诺顿 Edward Norton + 饰)是一个充满中年危机意识的人,他非常憎恨自己的生活及一切,再加上他患有严重的失眠症,所以他常常参加各种团体谘询会,只为了能接触人群。在某一个团体谘询会上,杰克遇上了一个跟他同样理由来参加的女烟枪,玛拉(海伦娜·邦汉·卡特 + Helena Bonham Carter 饰),在莫名激素的影响下,杰克和玛拉一起逃离了谘询会,两人的情愫因而滋生… + 一个偶然的机会,杰克遇到了卖肥皂的商人泰勒(布拉德·皮特 Brad Pitt + 饰),一个浑身充满叛逆、残酷和暴烈的痞子英雄,并因为自己公寓失火而住进了泰勒破旧不堪的家中。两人因缘际会地成为了好朋友,并创立了“搏击俱乐部”:一个让人们不戴护具而徒手搏击,宗旨在于发泄情绪的地下组织。 + title: 搏击俱乐部 + english_name: Mandarin + iso_3166_1: CN + iso_639_1: zh + name: 普通话 + - data: + overview: >- + Nortons evner som stjerneskuespiller viser sig i rollen som Jack, en + kronisk søvnløs der er desperat efter at slippe ud af sit ulideligt + kedelige liv. Da møder han Tyler Durden (Pitt), en karismatisk + sæbesælger med en usædvanlig livsfilosofi. Tyler synes at udvikling + af én selv er for de svage - det er selvdestruktionen der gør livet + værd at leve. Inden længe er Jack og Tyler ved at slå hinanden til + plukfisk på en parkeringsplads, en slåskamp der giver det ultimative + kick. For at introducere andre mænd for de simple glæder ved fysisk + vold, danner Jack og Tyler den hemmelige Fight Club der bliver + voldsomt populær. Men en chokerende overraskelse der vender op og + ned på alt, venter Jack... + title: Fight Club + english_name: Danish + iso_3166_1: DK + iso_639_1: da + name: Dansk + - data: + overview: >- + Jack (Norton) kärsii kroonisesta unettomuudesta ja yrittää + epätoivoisesti paeta sietämättömän tylsää elämäänsä. Työmatkalla hän + tapaa karismaattisen saippuakauppiaan, Tyler Durdenin (Pitt), jolla + on vähintäänkin kieroutunut elämänkatsomus. Tyler uskoo itsetuhon + olevan elämän suola. Ennen pitkää Jack ja Tyler purkavat + patoutumiaan hakkaamalla toisiaan tohjoksi paikallisbaarin + parkkipaikalla, ja huomaavat ankaran nyrkkitappelun tuottavan heille + äärimmäisen hyvänolontunteen. Jotta muutkin miehet pääsisivät + jyvälle tästä fyysisen väkivallan tuottamasta ilosta, Jack ja Tyler + perustavat salaisen tappelukerhon, Fight Clubin, jonka suosio on + valtava. Mutta Jackia odottaa järkyttävä yllätys, joka muuttaa + kaiken. + title: Fight Club + english_name: Finnish + iso_3166_1: FI + iso_639_1: fi + name: suomi + - data: + overview: >- + Jack kjeder seg til han møter Tyler, som mener selvdestruksjon gjør + livet verdt å leve. For å introdusere andre menn for de simple + gleder ved fysisk vold, danner de den hemmelige Fight Club som blir + voldsomt populær. Med Brad Pitt og Edward Norton. + english_name: Norwegian + iso_3166_1: "NO" + iso_639_1: "no" + name: Norsk + - data: + title: ഫൈറ്റ് ക്ലബ്ബ് + english_name: Malayalam + iso_3166_1: IN + iso_639_1: ml + - data: + overview: >- + «راوی» (نورتن)، جوانی پریشان حال پی می برد که به کمک مشت بازی با دست + های برهنه، بیش از هر زمان دیگری احساس زنده بودن می کند. او و «تایلر + دردن» (پیت) که به دوستانی صمیمی تبدیل شده اند، هفته ای یک بار با هم + ملاقات می کنند تا با هم مشت بازی کنند. در حالی که افراد دیگری هم به + باشگاه شان می پیوندند، محفل شان به رغم آن که رازی است بین شرکت کننده + هایش، شهرت و محبوبیت یک باشگاه زیرزمینی را پیدا می کند. + title: باشگاه مشت زنی + english_name: Persian + iso_3166_1: IR + iso_639_1: fa + name: فارسی + additionalProperties: true + movies_upcoming: + type: object + definitions: {} + $id: https://example.com/object1666853600.json + $schema: http://json-schema.org/draft-07/schema# + properties: + dates: + type: object + $id: "#root/dates" + properties: + maximum: + type: string + $id: "#root/dates/maximum" + pattern: ^.*$ + title: Maximum + minimum: + type: string + $id: "#root/dates/minimum" + pattern: ^.*$ + title: Minimum + title: Dates + page: + type: integer + $id: "#root/page" + default: 0 + title: Page + results: + type: array + $id: "#root/results" + default: [] + items: + type: object + $id: "#root/results/items" + properties: + adult: + type: boolean + $id: "#root/results/items/adult" + default: true + title: Adult + backdrop_path: + type: + - "null" + - string + $id: "#root/results/items/backdrop_path" + pattern: ^.*$ + title: Backdrop_path + genre_ids: + type: array + $id: "#root/results/items/genre_ids" + default: [] + items: + type: integer + $id: "#root/results/items/genre_ids/items" + default: 0 + title: Items + title: Genre_ids + id: + type: integer + $id: "#root/results/items/id" + default: 0 + title: Id + original_language: + type: string + $id: "#root/results/items/original_language" + pattern: ^.*$ + title: Original_language + original_title: + type: string + $id: "#root/results/items/original_title" + pattern: ^.*$ + title: Original_title + overview: + type: string + $id: "#root/results/items/overview" + pattern: ^.*$ + title: Overview + popularity: + type: number + $id: "#root/results/items/popularity" + default: 0 + title: Popularity + poster_path: + type: string + $id: "#root/results/items/poster_path" + pattern: ^.*$ + title: Poster_path + release_date: + type: string + $id: "#root/results/items/release_date" + pattern: ^.*$ + title: Release_date + title: + type: string + $id: "#root/results/items/title" + pattern: ^.*$ + title: Title + video: + type: boolean + $id: "#root/results/items/video" + default: true + title: Video + vote_average: + type: number + $id: "#root/results/items/vote_average" + default: 0 + title: Vote_average + vote_count: + type: integer + $id: "#root/results/items/vote_count" + default: 0 + title: Vote_count + title: Items + title: Results + total_pages: + type: integer + $id: "#root/total_pages" + default: 0 + title: Total_pages + total_results: + type: integer + $id: "#root/total_results" + default: 0 + title: Total_results + title: Root + additionalProperties: true + movies_videos: + type: object + definitions: {} + $id: https://example.com/object1666853122.json + $schema: http://json-schema.org/draft-07/schema# + properties: + page: + type: integer + $id: "#root/page" + default: 0 + title: Page + results: + type: array + $id: "#root/results" + default: [] + items: + type: object + $id: "#root/results/items" + properties: + adult: + type: boolean + $id: "#root/results/items/adult" + default: true + title: Adult + backdrop_path: + type: "null" + $id: "#root/results/items/backdrop_path" + default: null + title: Backdrop_path + genre_ids: + type: array + $id: "#root/results/items/genre_ids" + default: [] + items: + type: integer + $id: "#root/results/items/genre_ids/items" + default: 0 + title: Items + title: Genre_ids + id: + type: string + $id: "#root/results/items/id" + default: 0 + title: Id + original_language: + type: string + $id: "#root/results/items/original_language" + pattern: ^.*$ + title: Original_language + original_title: + type: string + $id: "#root/results/items/original_title" + pattern: ^.*$ + title: Original_title + overview: + type: string + $id: "#root/results/items/overview" + pattern: ^.*$ + title: Overview + popularity: + type: number + $id: "#root/results/items/popularity" + default: 0 + title: Popularity + poster_path: + type: "null" + $id: "#root/results/items/poster_path" + default: null + title: Poster_path + release_date: + type: string + $id: "#root/results/items/release_date" + pattern: ^.*$ + title: Release_date + title: + type: string + $id: "#root/results/items/title" + pattern: ^.*$ + title: Title + video: + type: boolean + $id: "#root/results/items/video" + default: true + title: Video + vote_average: + type: integer + $id: "#root/results/items/vote_average" + default: 0 + title: Vote_average + vote_count: + type: integer + $id: "#root/results/items/vote_count" + default: 0 + title: Vote_count + title: Items + title: Results + total_pages: + type: integer + $id: "#root/total_pages" + default: 0 + title: Total_pages + total_results: + type: integer + $id: "#root/total_results" + default: 0 + title: Total_results + title: Root + additionalProperties: true + movies_watch_providers: + type: object + definitions: {} + $id: https://example.com/object1666860173.json + $schema: http://json-schema.org/draft-07/schema# + properties: + id: + type: integer + $id: "#root/id" + default: 0 + title: Id + results: + type: object + $id: "#root/results" + properties: + AR: + type: object + $id: "#root/results/AR" + properties: + buy: + type: array + $id: "#root/results/AR/buy" + default: [] + items: + type: object + $id: "#root/results/AR/buy/items" + properties: + display_priority: + type: integer + $id: "#root/results/AR/buy/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/AR/buy/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/AR/buy/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/AR/buy/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Buy + flatrate: + type: array + $id: "#root/results/AR/flatrate" + default: [] + items: + type: object + $id: "#root/results/AR/flatrate/items" + properties: + display_priority: + type: integer + $id: "#root/results/AR/flatrate/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/AR/flatrate/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/AR/flatrate/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/AR/flatrate/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Flatrate + link: + type: string + $id: "#root/results/AR/link" + pattern: ^.*$ + title: Link + rent: + type: array + $id: "#root/results/AR/rent" + default: [] + items: + type: object + $id: "#root/results/AR/rent/items" + properties: + display_priority: + type: integer + $id: "#root/results/AR/rent/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/AR/rent/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/AR/rent/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/AR/rent/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Rent + title: Ar + AT: + type: object + $id: "#root/results/AT" + properties: + buy: + type: array + $id: "#root/results/AT/buy" + default: [] + items: + type: object + $id: "#root/results/AT/buy/items" + properties: + display_priority: + type: integer + $id: "#root/results/AT/buy/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/AT/buy/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/AT/buy/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/AT/buy/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Buy + link: + type: string + $id: "#root/results/AT/link" + pattern: ^.*$ + title: Link + rent: + type: array + $id: "#root/results/AT/rent" + default: [] + items: + type: object + $id: "#root/results/AT/rent/items" + properties: + display_priority: + type: integer + $id: "#root/results/AT/rent/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/AT/rent/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/AT/rent/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/AT/rent/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Rent + title: At + AU: + type: object + $id: "#root/results/AU" + properties: + buy: + type: array + $id: "#root/results/AU/buy" + default: [] + items: + type: object + $id: "#root/results/AU/buy/items" + properties: + display_priority: + type: integer + $id: "#root/results/AU/buy/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/AU/buy/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/AU/buy/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/AU/buy/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Buy + flatrate: + type: array + $id: "#root/results/AU/flatrate" + default: [] + items: + type: object + $id: "#root/results/AU/flatrate/items" + properties: + display_priority: + type: integer + $id: "#root/results/AU/flatrate/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/AU/flatrate/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/AU/flatrate/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/AU/flatrate/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Flatrate + link: + type: string + $id: "#root/results/AU/link" + pattern: ^.*$ + title: Link + rent: + type: array + $id: "#root/results/AU/rent" + default: [] + items: + type: object + $id: "#root/results/AU/rent/items" + properties: + display_priority: + type: integer + $id: "#root/results/AU/rent/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/AU/rent/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/AU/rent/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/AU/rent/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Rent + title: Au + BE: + type: object + $id: "#root/results/BE" + properties: + buy: + type: array + $id: "#root/results/BE/buy" + default: [] + items: + type: object + $id: "#root/results/BE/buy/items" + properties: + display_priority: + type: integer + $id: "#root/results/BE/buy/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/BE/buy/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/BE/buy/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/BE/buy/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Buy + flatrate: + type: array + $id: "#root/results/BE/flatrate" + default: [] + items: + type: object + $id: "#root/results/BE/flatrate/items" + properties: + display_priority: + type: integer + $id: "#root/results/BE/flatrate/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/BE/flatrate/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/BE/flatrate/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/BE/flatrate/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Flatrate + link: + type: string + $id: "#root/results/BE/link" + pattern: ^.*$ + title: Link + rent: + type: array + $id: "#root/results/BE/rent" + default: [] + items: + type: object + $id: "#root/results/BE/rent/items" + properties: + display_priority: + type: integer + $id: "#root/results/BE/rent/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/BE/rent/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/BE/rent/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/BE/rent/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Rent + title: Be + BR: + type: object + $id: "#root/results/BR" + properties: + buy: + type: array + $id: "#root/results/BR/buy" + default: [] + items: + type: object + $id: "#root/results/BR/buy/items" + properties: + display_priority: + type: integer + $id: "#root/results/BR/buy/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/BR/buy/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/BR/buy/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/BR/buy/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Buy + flatrate: + type: array + $id: "#root/results/BR/flatrate" + default: [] + items: + type: object + $id: "#root/results/BR/flatrate/items" + properties: + display_priority: + type: integer + $id: "#root/results/BR/flatrate/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/BR/flatrate/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/BR/flatrate/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/BR/flatrate/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Flatrate + link: + type: string + $id: "#root/results/BR/link" + pattern: ^.*$ + title: Link + rent: + type: array + $id: "#root/results/BR/rent" + default: [] + items: + type: object + $id: "#root/results/BR/rent/items" + properties: + display_priority: + type: integer + $id: "#root/results/BR/rent/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/BR/rent/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/BR/rent/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/BR/rent/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Rent + title: Br + CA: + type: object + $id: "#root/results/CA" + properties: + buy: + type: array + $id: "#root/results/CA/buy" + default: [] + items: + type: object + $id: "#root/results/CA/buy/items" + properties: + display_priority: + type: integer + $id: "#root/results/CA/buy/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/CA/buy/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/CA/buy/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/CA/buy/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Buy + flatrate: + type: array + $id: "#root/results/CA/flatrate" + default: [] + items: + type: object + $id: "#root/results/CA/flatrate/items" + properties: + display_priority: + type: integer + $id: "#root/results/CA/flatrate/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/CA/flatrate/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/CA/flatrate/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/CA/flatrate/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Flatrate + link: + type: string + $id: "#root/results/CA/link" + pattern: ^.*$ + title: Link + rent: + type: array + $id: "#root/results/CA/rent" + default: [] + items: + type: object + $id: "#root/results/CA/rent/items" + properties: + display_priority: + type: integer + $id: "#root/results/CA/rent/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/CA/rent/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/CA/rent/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/CA/rent/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Rent + title: Ca + CH: + type: object + $id: "#root/results/CH" + properties: + buy: + type: array + $id: "#root/results/CH/buy" + default: [] + items: + type: object + $id: "#root/results/CH/buy/items" + properties: + display_priority: + type: integer + $id: "#root/results/CH/buy/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/CH/buy/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/CH/buy/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/CH/buy/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Buy + flatrate: + type: array + $id: "#root/results/CH/flatrate" + default: [] + items: + type: object + $id: "#root/results/CH/flatrate/items" + properties: + display_priority: + type: integer + $id: "#root/results/CH/flatrate/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/CH/flatrate/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/CH/flatrate/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/CH/flatrate/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Flatrate + link: + type: string + $id: "#root/results/CH/link" + pattern: ^.*$ + title: Link + rent: + type: array + $id: "#root/results/CH/rent" + default: [] + items: + type: object + $id: "#root/results/CH/rent/items" + properties: + display_priority: + type: integer + $id: "#root/results/CH/rent/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/CH/rent/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/CH/rent/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/CH/rent/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Rent + title: Ch + CL: + type: object + $id: "#root/results/CL" + properties: + buy: + type: array + $id: "#root/results/CL/buy" + default: [] + items: + type: object + $id: "#root/results/CL/buy/items" + properties: + display_priority: + type: integer + $id: "#root/results/CL/buy/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/CL/buy/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/CL/buy/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/CL/buy/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Buy + flatrate: + type: array + $id: "#root/results/CL/flatrate" + default: [] + items: + type: object + $id: "#root/results/CL/flatrate/items" + properties: + display_priority: + type: integer + $id: "#root/results/CL/flatrate/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/CL/flatrate/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/CL/flatrate/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/CL/flatrate/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Flatrate + link: + type: string + $id: "#root/results/CL/link" + pattern: ^.*$ + title: Link + rent: + type: array + $id: "#root/results/CL/rent" + default: [] + items: + type: object + $id: "#root/results/CL/rent/items" + properties: + display_priority: + type: integer + $id: "#root/results/CL/rent/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/CL/rent/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/CL/rent/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/CL/rent/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Rent + title: Cl + CO: + type: object + $id: "#root/results/CO" + properties: + buy: + type: array + $id: "#root/results/CO/buy" + default: [] + items: + type: object + $id: "#root/results/CO/buy/items" + properties: + display_priority: + type: integer + $id: "#root/results/CO/buy/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/CO/buy/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/CO/buy/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/CO/buy/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Buy + flatrate: + type: array + $id: "#root/results/CO/flatrate" + default: [] + items: + type: object + $id: "#root/results/CO/flatrate/items" + properties: + display_priority: + type: integer + $id: "#root/results/CO/flatrate/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/CO/flatrate/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/CO/flatrate/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/CO/flatrate/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Flatrate + link: + type: string + $id: "#root/results/CO/link" + pattern: ^.*$ + title: Link + rent: + type: array + $id: "#root/results/CO/rent" + default: [] + items: + type: object + $id: "#root/results/CO/rent/items" + properties: + display_priority: + type: integer + $id: "#root/results/CO/rent/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/CO/rent/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/CO/rent/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/CO/rent/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Rent + title: Co + CZ: + type: object + $id: "#root/results/CZ" + properties: + buy: + type: array + $id: "#root/results/CZ/buy" + default: [] + items: + type: object + $id: "#root/results/CZ/buy/items" + properties: + display_priority: + type: integer + $id: "#root/results/CZ/buy/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/CZ/buy/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/CZ/buy/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/CZ/buy/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Buy + flatrate: + type: array + $id: "#root/results/CZ/flatrate" + default: [] + items: + type: object + $id: "#root/results/CZ/flatrate/items" + properties: + display_priority: + type: integer + $id: "#root/results/CZ/flatrate/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/CZ/flatrate/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/CZ/flatrate/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/CZ/flatrate/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Flatrate + link: + type: string + $id: "#root/results/CZ/link" + pattern: ^.*$ + title: Link + rent: + type: array + $id: "#root/results/CZ/rent" + default: [] + items: + type: object + $id: "#root/results/CZ/rent/items" + properties: + display_priority: + type: integer + $id: "#root/results/CZ/rent/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/CZ/rent/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/CZ/rent/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/CZ/rent/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Rent + title: Cz + DE: + type: object + $id: "#root/results/DE" + properties: + buy: + type: array + $id: "#root/results/DE/buy" + default: [] + items: + type: object + $id: "#root/results/DE/buy/items" + properties: + display_priority: + type: integer + $id: "#root/results/DE/buy/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/DE/buy/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/DE/buy/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/DE/buy/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Buy + link: + type: string + $id: "#root/results/DE/link" + pattern: ^.*$ + title: Link + rent: + type: array + $id: "#root/results/DE/rent" + default: [] + items: + type: object + $id: "#root/results/DE/rent/items" + properties: + display_priority: + type: integer + $id: "#root/results/DE/rent/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/DE/rent/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/DE/rent/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/DE/rent/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Rent + title: De + DK: + type: object + $id: "#root/results/DK" + properties: + buy: + type: array + $id: "#root/results/DK/buy" + default: [] + items: + type: object + $id: "#root/results/DK/buy/items" + properties: + display_priority: + type: integer + $id: "#root/results/DK/buy/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/DK/buy/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/DK/buy/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/DK/buy/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Buy + flatrate: + type: array + $id: "#root/results/DK/flatrate" + default: [] + items: + type: object + $id: "#root/results/DK/flatrate/items" + properties: + display_priority: + type: integer + $id: "#root/results/DK/flatrate/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/DK/flatrate/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/DK/flatrate/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/DK/flatrate/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Flatrate + link: + type: string + $id: "#root/results/DK/link" + pattern: ^.*$ + title: Link + rent: + type: array + $id: "#root/results/DK/rent" + default: [] + items: + type: object + $id: "#root/results/DK/rent/items" + properties: + display_priority: + type: integer + $id: "#root/results/DK/rent/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/DK/rent/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/DK/rent/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/DK/rent/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Rent + title: Dk + EC: + type: object + $id: "#root/results/EC" + properties: + buy: + type: array + $id: "#root/results/EC/buy" + default: [] + items: + type: object + $id: "#root/results/EC/buy/items" + properties: + display_priority: + type: integer + $id: "#root/results/EC/buy/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/EC/buy/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/EC/buy/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/EC/buy/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Buy + flatrate: + type: array + $id: "#root/results/EC/flatrate" + default: [] + items: + type: object + $id: "#root/results/EC/flatrate/items" + properties: + display_priority: + type: integer + $id: "#root/results/EC/flatrate/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/EC/flatrate/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/EC/flatrate/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/EC/flatrate/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Flatrate + link: + type: string + $id: "#root/results/EC/link" + pattern: ^.*$ + title: Link + rent: + type: array + $id: "#root/results/EC/rent" + default: [] + items: + type: object + $id: "#root/results/EC/rent/items" + properties: + display_priority: + type: integer + $id: "#root/results/EC/rent/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/EC/rent/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/EC/rent/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/EC/rent/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Rent + title: Ec + EE: + type: object + $id: "#root/results/EE" + properties: + buy: + type: array + $id: "#root/results/EE/buy" + default: [] + items: + type: object + $id: "#root/results/EE/buy/items" + properties: + display_priority: + type: integer + $id: "#root/results/EE/buy/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/EE/buy/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/EE/buy/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/EE/buy/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Buy + flatrate: + type: array + $id: "#root/results/EE/flatrate" + default: [] + items: + type: object + $id: "#root/results/EE/flatrate/items" + properties: + display_priority: + type: integer + $id: "#root/results/EE/flatrate/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/EE/flatrate/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/EE/flatrate/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/EE/flatrate/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Flatrate + link: + type: string + $id: "#root/results/EE/link" + pattern: ^.*$ + title: Link + rent: + type: array + $id: "#root/results/EE/rent" + default: [] + items: + type: object + $id: "#root/results/EE/rent/items" + properties: + display_priority: + type: integer + $id: "#root/results/EE/rent/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/EE/rent/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/EE/rent/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/EE/rent/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Rent + title: Ee + ES: + type: object + $id: "#root/results/ES" + properties: + buy: + type: array + $id: "#root/results/ES/buy" + default: [] + items: + type: object + $id: "#root/results/ES/buy/items" + properties: + display_priority: + type: integer + $id: "#root/results/ES/buy/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/ES/buy/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/ES/buy/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/ES/buy/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Buy + flatrate: + type: array + $id: "#root/results/ES/flatrate" + default: [] + items: + type: object + $id: "#root/results/ES/flatrate/items" + properties: + display_priority: + type: integer + $id: "#root/results/ES/flatrate/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/ES/flatrate/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/ES/flatrate/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/ES/flatrate/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Flatrate + link: + type: string + $id: "#root/results/ES/link" + pattern: ^.*$ + title: Link + rent: + type: array + $id: "#root/results/ES/rent" + default: [] + items: + type: object + $id: "#root/results/ES/rent/items" + properties: + display_priority: + type: integer + $id: "#root/results/ES/rent/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/ES/rent/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/ES/rent/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/ES/rent/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Rent + title: Es + FI: + type: object + $id: "#root/results/FI" + properties: + buy: + type: array + $id: "#root/results/FI/buy" + default: [] + items: + type: object + $id: "#root/results/FI/buy/items" + properties: + display_priority: + type: integer + $id: "#root/results/FI/buy/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/FI/buy/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/FI/buy/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/FI/buy/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Buy + flatrate: + type: array + $id: "#root/results/FI/flatrate" + default: [] + items: + type: object + $id: "#root/results/FI/flatrate/items" + properties: + display_priority: + type: integer + $id: "#root/results/FI/flatrate/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/FI/flatrate/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/FI/flatrate/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/FI/flatrate/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Flatrate + link: + type: string + $id: "#root/results/FI/link" + pattern: ^.*$ + title: Link + rent: + type: array + $id: "#root/results/FI/rent" + default: [] + items: + type: object + $id: "#root/results/FI/rent/items" + properties: + display_priority: + type: integer + $id: "#root/results/FI/rent/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/FI/rent/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/FI/rent/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/FI/rent/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Rent + title: Fi + FR: + type: object + $id: "#root/results/FR" + properties: + buy: + type: array + $id: "#root/results/FR/buy" + default: [] + items: + type: object + $id: "#root/results/FR/buy/items" + properties: + display_priority: + type: integer + $id: "#root/results/FR/buy/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/FR/buy/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/FR/buy/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/FR/buy/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Buy + flatrate: + type: array + $id: "#root/results/FR/flatrate" + default: [] + items: + type: object + $id: "#root/results/FR/flatrate/items" + properties: + display_priority: + type: integer + $id: "#root/results/FR/flatrate/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/FR/flatrate/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/FR/flatrate/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/FR/flatrate/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Flatrate + link: + type: string + $id: "#root/results/FR/link" + pattern: ^.*$ + title: Link + rent: + type: array + $id: "#root/results/FR/rent" + default: [] + items: + type: object + $id: "#root/results/FR/rent/items" + properties: + display_priority: + type: integer + $id: "#root/results/FR/rent/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/FR/rent/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/FR/rent/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/FR/rent/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Rent + title: Fr + GB: + type: object + $id: "#root/results/GB" + properties: + buy: + type: array + $id: "#root/results/GB/buy" + default: [] + items: + type: object + $id: "#root/results/GB/buy/items" + properties: + display_priority: + type: integer + $id: "#root/results/GB/buy/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/GB/buy/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/GB/buy/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/GB/buy/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Buy + flatrate: + type: array + $id: "#root/results/GB/flatrate" + default: [] + items: + type: object + $id: "#root/results/GB/flatrate/items" + properties: + display_priority: + type: integer + $id: "#root/results/GB/flatrate/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/GB/flatrate/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/GB/flatrate/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/GB/flatrate/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Flatrate + link: + type: string + $id: "#root/results/GB/link" + pattern: ^.*$ + title: Link + rent: + type: array + $id: "#root/results/GB/rent" + default: [] + items: + type: object + $id: "#root/results/GB/rent/items" + properties: + display_priority: + type: integer + $id: "#root/results/GB/rent/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/GB/rent/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/GB/rent/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/GB/rent/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Rent + title: Gb + GR: + type: object + $id: "#root/results/GR" + properties: + buy: + type: array + $id: "#root/results/GR/buy" + default: [] + items: + type: object + $id: "#root/results/GR/buy/items" + properties: + display_priority: + type: integer + $id: "#root/results/GR/buy/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/GR/buy/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/GR/buy/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/GR/buy/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Buy + flatrate: + type: array + $id: "#root/results/GR/flatrate" + default: [] + items: + type: object + $id: "#root/results/GR/flatrate/items" + properties: + display_priority: + type: integer + $id: "#root/results/GR/flatrate/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/GR/flatrate/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/GR/flatrate/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/GR/flatrate/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Flatrate + link: + type: string + $id: "#root/results/GR/link" + pattern: ^.*$ + title: Link + rent: + type: array + $id: "#root/results/GR/rent" + default: [] + items: + type: object + $id: "#root/results/GR/rent/items" + properties: + display_priority: + type: integer + $id: "#root/results/GR/rent/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/GR/rent/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/GR/rent/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/GR/rent/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Rent + title: Gr + HU: + type: object + $id: "#root/results/HU" + properties: + buy: + type: array + $id: "#root/results/HU/buy" + default: [] + items: + type: object + $id: "#root/results/HU/buy/items" + properties: + display_priority: + type: integer + $id: "#root/results/HU/buy/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/HU/buy/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/HU/buy/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/HU/buy/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Buy + flatrate: + type: array + $id: "#root/results/HU/flatrate" + default: [] + items: + type: object + $id: "#root/results/HU/flatrate/items" + properties: + display_priority: + type: integer + $id: "#root/results/HU/flatrate/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/HU/flatrate/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/HU/flatrate/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/HU/flatrate/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Flatrate + link: + type: string + $id: "#root/results/HU/link" + pattern: ^.*$ + title: Link + rent: + type: array + $id: "#root/results/HU/rent" + default: [] + items: + type: object + $id: "#root/results/HU/rent/items" + properties: + display_priority: + type: integer + $id: "#root/results/HU/rent/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/HU/rent/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/HU/rent/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/HU/rent/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Rent + title: Hu + ID: + type: object + $id: "#root/results/ID" + properties: + buy: + type: array + $id: "#root/results/ID/buy" + default: [] + items: + type: object + $id: "#root/results/ID/buy/items" + properties: + display_priority: + type: integer + $id: "#root/results/ID/buy/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/ID/buy/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/ID/buy/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/ID/buy/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Buy + flatrate: + type: array + $id: "#root/results/ID/flatrate" + default: [] + items: + type: object + $id: "#root/results/ID/flatrate/items" + properties: + display_priority: + type: integer + $id: "#root/results/ID/flatrate/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/ID/flatrate/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/ID/flatrate/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/ID/flatrate/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Flatrate + link: + type: string + $id: "#root/results/ID/link" + pattern: ^.*$ + title: Link + rent: + type: array + $id: "#root/results/ID/rent" + default: [] + items: + type: object + $id: "#root/results/ID/rent/items" + properties: + display_priority: + type: integer + $id: "#root/results/ID/rent/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/ID/rent/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/ID/rent/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/ID/rent/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Rent + title: Id + IE: + type: object + $id: "#root/results/IE" + properties: + buy: + type: array + $id: "#root/results/IE/buy" + default: [] + items: + type: object + $id: "#root/results/IE/buy/items" + properties: + display_priority: + type: integer + $id: "#root/results/IE/buy/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/IE/buy/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/IE/buy/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/IE/buy/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Buy + flatrate: + type: array + $id: "#root/results/IE/flatrate" + default: [] + items: + type: object + $id: "#root/results/IE/flatrate/items" + properties: + display_priority: + type: integer + $id: "#root/results/IE/flatrate/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/IE/flatrate/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/IE/flatrate/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/IE/flatrate/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Flatrate + link: + type: string + $id: "#root/results/IE/link" + pattern: ^.*$ + title: Link + rent: + type: array + $id: "#root/results/IE/rent" + default: [] + items: + type: object + $id: "#root/results/IE/rent/items" + properties: + display_priority: + type: integer + $id: "#root/results/IE/rent/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/IE/rent/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/IE/rent/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/IE/rent/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Rent + title: Ie + IN: + type: object + $id: "#root/results/IN" + properties: + buy: + type: array + $id: "#root/results/IN/buy" + default: [] + items: + type: object + $id: "#root/results/IN/buy/items" + properties: + display_priority: + type: integer + $id: "#root/results/IN/buy/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/IN/buy/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/IN/buy/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/IN/buy/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Buy + flatrate: + type: array + $id: "#root/results/IN/flatrate" + default: [] + items: + type: object + $id: "#root/results/IN/flatrate/items" + properties: + display_priority: + type: integer + $id: "#root/results/IN/flatrate/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/IN/flatrate/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/IN/flatrate/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/IN/flatrate/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Flatrate + link: + type: string + $id: "#root/results/IN/link" + pattern: ^.*$ + title: Link + rent: + type: array + $id: "#root/results/IN/rent" + default: [] + items: + type: object + $id: "#root/results/IN/rent/items" + properties: + display_priority: + type: integer + $id: "#root/results/IN/rent/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/IN/rent/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/IN/rent/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/IN/rent/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Rent + title: In + IT: + type: object + $id: "#root/results/IT" + properties: + buy: + type: array + $id: "#root/results/IT/buy" + default: [] + items: + type: object + $id: "#root/results/IT/buy/items" + properties: + display_priority: + type: integer + $id: "#root/results/IT/buy/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/IT/buy/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/IT/buy/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/IT/buy/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Buy + flatrate: + type: array + $id: "#root/results/IT/flatrate" + default: [] + items: + type: object + $id: "#root/results/IT/flatrate/items" + properties: + display_priority: + type: integer + $id: "#root/results/IT/flatrate/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/IT/flatrate/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/IT/flatrate/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/IT/flatrate/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Flatrate + link: + type: string + $id: "#root/results/IT/link" + pattern: ^.*$ + title: Link + rent: + type: array + $id: "#root/results/IT/rent" + default: [] + items: + type: object + $id: "#root/results/IT/rent/items" + properties: + display_priority: + type: integer + $id: "#root/results/IT/rent/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/IT/rent/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/IT/rent/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/IT/rent/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Rent + title: It + JP: + type: object + $id: "#root/results/JP" + properties: + buy: + type: array + $id: "#root/results/JP/buy" + default: [] + items: + type: object + $id: "#root/results/JP/buy/items" + properties: + display_priority: + type: integer + $id: "#root/results/JP/buy/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/JP/buy/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/JP/buy/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/JP/buy/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Buy + flatrate: + type: array + $id: "#root/results/JP/flatrate" + default: [] + items: + type: object + $id: "#root/results/JP/flatrate/items" + properties: + display_priority: + type: integer + $id: "#root/results/JP/flatrate/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/JP/flatrate/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/JP/flatrate/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/JP/flatrate/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Flatrate + link: + type: string + $id: "#root/results/JP/link" + pattern: ^.*$ + title: Link + rent: + type: array + $id: "#root/results/JP/rent" + default: [] + items: + type: object + $id: "#root/results/JP/rent/items" + properties: + display_priority: + type: integer + $id: "#root/results/JP/rent/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/JP/rent/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/JP/rent/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/JP/rent/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Rent + title: Jp + KR: + type: object + $id: "#root/results/KR" + properties: + buy: + type: array + $id: "#root/results/KR/buy" + default: [] + items: + type: object + $id: "#root/results/KR/buy/items" + properties: + display_priority: + type: integer + $id: "#root/results/KR/buy/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/KR/buy/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/KR/buy/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/KR/buy/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Buy + flatrate: + type: array + $id: "#root/results/KR/flatrate" + default: [] + items: + type: object + $id: "#root/results/KR/flatrate/items" + properties: + display_priority: + type: integer + $id: "#root/results/KR/flatrate/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/KR/flatrate/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/KR/flatrate/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/KR/flatrate/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Flatrate + link: + type: string + $id: "#root/results/KR/link" + pattern: ^.*$ + title: Link + rent: + type: array + $id: "#root/results/KR/rent" + default: [] + items: + type: object + $id: "#root/results/KR/rent/items" + properties: + display_priority: + type: integer + $id: "#root/results/KR/rent/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/KR/rent/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/KR/rent/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/KR/rent/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Rent + title: Kr + LT: + type: object + $id: "#root/results/LT" + properties: + buy: + type: array + $id: "#root/results/LT/buy" + default: [] + items: + type: object + $id: "#root/results/LT/buy/items" + properties: + display_priority: + type: integer + $id: "#root/results/LT/buy/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/LT/buy/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/LT/buy/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/LT/buy/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Buy + flatrate: + type: array + $id: "#root/results/LT/flatrate" + default: [] + items: + type: object + $id: "#root/results/LT/flatrate/items" + properties: + display_priority: + type: integer + $id: "#root/results/LT/flatrate/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/LT/flatrate/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/LT/flatrate/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/LT/flatrate/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Flatrate + link: + type: string + $id: "#root/results/LT/link" + pattern: ^.*$ + title: Link + title: Lt + LV: + type: object + $id: "#root/results/LV" + properties: + buy: + type: array + $id: "#root/results/LV/buy" + default: [] + items: + type: object + $id: "#root/results/LV/buy/items" + properties: + display_priority: + type: integer + $id: "#root/results/LV/buy/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/LV/buy/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/LV/buy/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/LV/buy/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Buy + flatrate: + type: array + $id: "#root/results/LV/flatrate" + default: [] + items: + type: object + $id: "#root/results/LV/flatrate/items" + properties: + display_priority: + type: integer + $id: "#root/results/LV/flatrate/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/LV/flatrate/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/LV/flatrate/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/LV/flatrate/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Flatrate + link: + type: string + $id: "#root/results/LV/link" + pattern: ^.*$ + title: Link + title: Lv + MX: + type: object + $id: "#root/results/MX" + properties: + buy: + type: array + $id: "#root/results/MX/buy" + default: [] + items: + type: object + $id: "#root/results/MX/buy/items" + properties: + display_priority: + type: integer + $id: "#root/results/MX/buy/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/MX/buy/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/MX/buy/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/MX/buy/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Buy + flatrate: + type: array + $id: "#root/results/MX/flatrate" + default: [] + items: + type: object + $id: "#root/results/MX/flatrate/items" + properties: + display_priority: + type: integer + $id: "#root/results/MX/flatrate/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/MX/flatrate/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/MX/flatrate/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/MX/flatrate/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Flatrate + link: + type: string + $id: "#root/results/MX/link" + pattern: ^.*$ + title: Link + rent: + type: array + $id: "#root/results/MX/rent" + default: [] + items: + type: object + $id: "#root/results/MX/rent/items" + properties: + display_priority: + type: integer + $id: "#root/results/MX/rent/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/MX/rent/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/MX/rent/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/MX/rent/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Rent + title: Mx + MY: + type: object + $id: "#root/results/MY" + properties: + buy: + type: array + $id: "#root/results/MY/buy" + default: [] + items: + type: object + $id: "#root/results/MY/buy/items" + properties: + display_priority: + type: integer + $id: "#root/results/MY/buy/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/MY/buy/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/MY/buy/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/MY/buy/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Buy + flatrate: + type: array + $id: "#root/results/MY/flatrate" + default: [] + items: + type: object + $id: "#root/results/MY/flatrate/items" + properties: + display_priority: + type: integer + $id: "#root/results/MY/flatrate/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/MY/flatrate/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/MY/flatrate/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/MY/flatrate/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Flatrate + link: + type: string + $id: "#root/results/MY/link" + pattern: ^.*$ + title: Link + rent: + type: array + $id: "#root/results/MY/rent" + default: [] + items: + type: object + $id: "#root/results/MY/rent/items" + properties: + display_priority: + type: integer + $id: "#root/results/MY/rent/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/MY/rent/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/MY/rent/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/MY/rent/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Rent + title: My + NL: + type: object + $id: "#root/results/NL" + properties: + buy: + type: array + $id: "#root/results/NL/buy" + default: [] + items: + type: object + $id: "#root/results/NL/buy/items" + properties: + display_priority: + type: integer + $id: "#root/results/NL/buy/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/NL/buy/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/NL/buy/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/NL/buy/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Buy + flatrate: + type: array + $id: "#root/results/NL/flatrate" + default: [] + items: + type: object + $id: "#root/results/NL/flatrate/items" + properties: + display_priority: + type: integer + $id: "#root/results/NL/flatrate/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/NL/flatrate/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/NL/flatrate/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/NL/flatrate/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Flatrate + link: + type: string + $id: "#root/results/NL/link" + pattern: ^.*$ + title: Link + rent: + type: array + $id: "#root/results/NL/rent" + default: [] + items: + type: object + $id: "#root/results/NL/rent/items" + properties: + display_priority: + type: integer + $id: "#root/results/NL/rent/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/NL/rent/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/NL/rent/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/NL/rent/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Rent + title: Nl + "NO": + type: object + $id: "#root/results/NO" + properties: + buy: + type: array + $id: "#root/results/NO/buy" + default: [] + items: + type: object + $id: "#root/results/NO/buy/items" + properties: + display_priority: + type: integer + $id: "#root/results/NO/buy/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/NO/buy/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/NO/buy/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/NO/buy/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Buy + flatrate: + type: array + $id: "#root/results/NO/flatrate" + default: [] + items: + type: object + $id: "#root/results/NO/flatrate/items" + properties: + display_priority: + type: integer + $id: "#root/results/NO/flatrate/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/NO/flatrate/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/NO/flatrate/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/NO/flatrate/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Flatrate + link: + type: string + $id: "#root/results/NO/link" + pattern: ^.*$ + title: Link + rent: + type: array + $id: "#root/results/NO/rent" + default: [] + items: + type: object + $id: "#root/results/NO/rent/items" + properties: + display_priority: + type: integer + $id: "#root/results/NO/rent/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/NO/rent/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/NO/rent/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/NO/rent/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Rent + title: "No" + NZ: + type: object + $id: "#root/results/NZ" + properties: + buy: + type: array + $id: "#root/results/NZ/buy" + default: [] + items: + type: object + $id: "#root/results/NZ/buy/items" + properties: + display_priority: + type: integer + $id: "#root/results/NZ/buy/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/NZ/buy/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/NZ/buy/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/NZ/buy/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Buy + flatrate: + type: array + $id: "#root/results/NZ/flatrate" + default: [] + items: + type: object + $id: "#root/results/NZ/flatrate/items" + properties: + display_priority: + type: integer + $id: "#root/results/NZ/flatrate/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/NZ/flatrate/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/NZ/flatrate/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/NZ/flatrate/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Flatrate + link: + type: string + $id: "#root/results/NZ/link" + pattern: ^.*$ + title: Link + rent: + type: array + $id: "#root/results/NZ/rent" + default: [] + items: + type: object + $id: "#root/results/NZ/rent/items" + properties: + display_priority: + type: integer + $id: "#root/results/NZ/rent/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/NZ/rent/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/NZ/rent/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/NZ/rent/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Rent + title: Nz + PE: + type: object + $id: "#root/results/PE" + properties: + buy: + type: array + $id: "#root/results/PE/buy" + default: [] + items: + type: object + $id: "#root/results/PE/buy/items" + properties: + display_priority: + type: integer + $id: "#root/results/PE/buy/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/PE/buy/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/PE/buy/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/PE/buy/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Buy + flatrate: + type: array + $id: "#root/results/PE/flatrate" + default: [] + items: + type: object + $id: "#root/results/PE/flatrate/items" + properties: + display_priority: + type: integer + $id: "#root/results/PE/flatrate/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/PE/flatrate/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/PE/flatrate/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/PE/flatrate/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Flatrate + link: + type: string + $id: "#root/results/PE/link" + pattern: ^.*$ + title: Link + rent: + type: array + $id: "#root/results/PE/rent" + default: [] + items: + type: object + $id: "#root/results/PE/rent/items" + properties: + display_priority: + type: integer + $id: "#root/results/PE/rent/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/PE/rent/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/PE/rent/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/PE/rent/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Rent + title: Pe + PH: + type: object + $id: "#root/results/PH" + properties: + buy: + type: array + $id: "#root/results/PH/buy" + default: [] + items: + type: object + $id: "#root/results/PH/buy/items" + properties: + display_priority: + type: integer + $id: "#root/results/PH/buy/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/PH/buy/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/PH/buy/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/PH/buy/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Buy + flatrate: + type: array + $id: "#root/results/PH/flatrate" + default: [] + items: + type: object + $id: "#root/results/PH/flatrate/items" + properties: + display_priority: + type: integer + $id: "#root/results/PH/flatrate/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/PH/flatrate/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/PH/flatrate/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/PH/flatrate/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Flatrate + link: + type: string + $id: "#root/results/PH/link" + pattern: ^.*$ + title: Link + rent: + type: array + $id: "#root/results/PH/rent" + default: [] + items: + type: object + $id: "#root/results/PH/rent/items" + properties: + display_priority: + type: integer + $id: "#root/results/PH/rent/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/PH/rent/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/PH/rent/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/PH/rent/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Rent + title: Ph + PL: + type: object + $id: "#root/results/PL" + properties: + buy: + type: array + $id: "#root/results/PL/buy" + default: [] + items: + type: object + $id: "#root/results/PL/buy/items" + properties: + display_priority: + type: integer + $id: "#root/results/PL/buy/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/PL/buy/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/PL/buy/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/PL/buy/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Buy + flatrate: + type: array + $id: "#root/results/PL/flatrate" + default: [] + items: + type: object + $id: "#root/results/PL/flatrate/items" + properties: + display_priority: + type: integer + $id: "#root/results/PL/flatrate/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/PL/flatrate/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/PL/flatrate/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/PL/flatrate/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Flatrate + link: + type: string + $id: "#root/results/PL/link" + pattern: ^.*$ + title: Link + rent: + type: array + $id: "#root/results/PL/rent" + default: [] + items: + type: object + $id: "#root/results/PL/rent/items" + properties: + display_priority: + type: integer + $id: "#root/results/PL/rent/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/PL/rent/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/PL/rent/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/PL/rent/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Rent + title: Pl + PT: + type: object + $id: "#root/results/PT" + properties: + buy: + type: array + $id: "#root/results/PT/buy" + default: [] + items: + type: object + $id: "#root/results/PT/buy/items" + properties: + display_priority: + type: integer + $id: "#root/results/PT/buy/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/PT/buy/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/PT/buy/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/PT/buy/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Buy + flatrate: + type: array + $id: "#root/results/PT/flatrate" + default: [] + items: + type: object + $id: "#root/results/PT/flatrate/items" + properties: + display_priority: + type: integer + $id: "#root/results/PT/flatrate/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/PT/flatrate/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/PT/flatrate/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/PT/flatrate/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Flatrate + link: + type: string + $id: "#root/results/PT/link" + pattern: ^.*$ + title: Link + rent: + type: array + $id: "#root/results/PT/rent" + default: [] + items: + type: object + $id: "#root/results/PT/rent/items" + properties: + display_priority: + type: integer + $id: "#root/results/PT/rent/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/PT/rent/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/PT/rent/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/PT/rent/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Rent + title: Pt + RO: + type: object + $id: "#root/results/RO" + properties: + flatrate: + type: array + $id: "#root/results/RO/flatrate" + default: [] + items: + type: object + $id: "#root/results/RO/flatrate/items" + properties: + display_priority: + type: integer + $id: "#root/results/RO/flatrate/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/RO/flatrate/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/RO/flatrate/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/RO/flatrate/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Flatrate + link: + type: string + $id: "#root/results/RO/link" + pattern: ^.*$ + title: Link + title: Ro + RU: + type: object + $id: "#root/results/RU" + properties: + buy: + type: array + $id: "#root/results/RU/buy" + default: [] + items: + type: object + $id: "#root/results/RU/buy/items" + properties: + display_priority: + type: integer + $id: "#root/results/RU/buy/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/RU/buy/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/RU/buy/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/RU/buy/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Buy + flatrate: + type: array + $id: "#root/results/RU/flatrate" + default: [] + items: + type: object + $id: "#root/results/RU/flatrate/items" + properties: + display_priority: + type: integer + $id: "#root/results/RU/flatrate/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/RU/flatrate/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/RU/flatrate/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/RU/flatrate/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Flatrate + link: + type: string + $id: "#root/results/RU/link" + pattern: ^.*$ + title: Link + rent: + type: array + $id: "#root/results/RU/rent" + default: [] + items: + type: object + $id: "#root/results/RU/rent/items" + properties: + display_priority: + type: integer + $id: "#root/results/RU/rent/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/RU/rent/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/RU/rent/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/RU/rent/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Rent + title: Ru + SE: + type: object + $id: "#root/results/SE" + properties: + buy: + type: array + $id: "#root/results/SE/buy" + default: [] + items: + type: object + $id: "#root/results/SE/buy/items" + properties: + display_priority: + type: integer + $id: "#root/results/SE/buy/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/SE/buy/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/SE/buy/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/SE/buy/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Buy + flatrate: + type: array + $id: "#root/results/SE/flatrate" + default: [] + items: + type: object + $id: "#root/results/SE/flatrate/items" + properties: + display_priority: + type: integer + $id: "#root/results/SE/flatrate/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/SE/flatrate/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/SE/flatrate/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/SE/flatrate/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Flatrate + link: + type: string + $id: "#root/results/SE/link" + pattern: ^.*$ + title: Link + rent: + type: array + $id: "#root/results/SE/rent" + default: [] + items: + type: object + $id: "#root/results/SE/rent/items" + properties: + display_priority: + type: integer + $id: "#root/results/SE/rent/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/SE/rent/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/SE/rent/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/SE/rent/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Rent + title: Se + SG: + type: object + $id: "#root/results/SG" + properties: + buy: + type: array + $id: "#root/results/SG/buy" + default: [] + items: + type: object + $id: "#root/results/SG/buy/items" + properties: + display_priority: + type: integer + $id: "#root/results/SG/buy/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/SG/buy/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/SG/buy/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/SG/buy/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Buy + flatrate: + type: array + $id: "#root/results/SG/flatrate" + default: [] + items: + type: object + $id: "#root/results/SG/flatrate/items" + properties: + display_priority: + type: integer + $id: "#root/results/SG/flatrate/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/SG/flatrate/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/SG/flatrate/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/SG/flatrate/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Flatrate + link: + type: string + $id: "#root/results/SG/link" + pattern: ^.*$ + title: Link + rent: + type: array + $id: "#root/results/SG/rent" + default: [] + items: + type: object + $id: "#root/results/SG/rent/items" + properties: + display_priority: + type: integer + $id: "#root/results/SG/rent/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/SG/rent/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/SG/rent/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/SG/rent/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Rent + title: Sg + TH: + type: object + $id: "#root/results/TH" + properties: + buy: + type: array + $id: "#root/results/TH/buy" + default: [] + items: + type: object + $id: "#root/results/TH/buy/items" + properties: + display_priority: + type: integer + $id: "#root/results/TH/buy/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/TH/buy/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/TH/buy/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/TH/buy/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Buy + flatrate: + type: array + $id: "#root/results/TH/flatrate" + default: [] + items: + type: object + $id: "#root/results/TH/flatrate/items" + properties: + display_priority: + type: integer + $id: "#root/results/TH/flatrate/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/TH/flatrate/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/TH/flatrate/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/TH/flatrate/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Flatrate + link: + type: string + $id: "#root/results/TH/link" + pattern: ^.*$ + title: Link + rent: + type: array + $id: "#root/results/TH/rent" + default: [] + items: + type: object + $id: "#root/results/TH/rent/items" + properties: + display_priority: + type: integer + $id: "#root/results/TH/rent/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/TH/rent/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/TH/rent/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/TH/rent/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Rent + title: Th + TR: + type: object + $id: "#root/results/TR" + properties: + buy: + type: array + $id: "#root/results/TR/buy" + default: [] + items: + type: object + $id: "#root/results/TR/buy/items" + properties: + display_priority: + type: integer + $id: "#root/results/TR/buy/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/TR/buy/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/TR/buy/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/TR/buy/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Buy + flatrate: + type: array + $id: "#root/results/TR/flatrate" + default: [] + items: + type: object + $id: "#root/results/TR/flatrate/items" + properties: + display_priority: + type: integer + $id: "#root/results/TR/flatrate/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/TR/flatrate/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/TR/flatrate/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/TR/flatrate/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Flatrate + link: + type: string + $id: "#root/results/TR/link" + pattern: ^.*$ + title: Link + rent: + type: array + $id: "#root/results/TR/rent" + default: [] + items: + type: object + $id: "#root/results/TR/rent/items" + properties: + display_priority: + type: integer + $id: "#root/results/TR/rent/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/TR/rent/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/TR/rent/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/TR/rent/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Rent + title: Tr + US: + type: object + $id: "#root/results/US" + properties: + buy: + type: array + $id: "#root/results/US/buy" + default: [] + items: + type: object + $id: "#root/results/US/buy/items" + properties: + display_priority: + type: integer + $id: "#root/results/US/buy/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/US/buy/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/US/buy/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/US/buy/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Buy + flatrate: + type: array + $id: "#root/results/US/flatrate" + default: [] + items: + type: object + $id: "#root/results/US/flatrate/items" + properties: + display_priority: + type: integer + $id: "#root/results/US/flatrate/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/US/flatrate/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/US/flatrate/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/US/flatrate/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Flatrate + link: + type: string + $id: "#root/results/US/link" + pattern: ^.*$ + title: Link + rent: + type: array + $id: "#root/results/US/rent" + default: [] + items: + type: object + $id: "#root/results/US/rent/items" + properties: + display_priority: + type: integer + $id: "#root/results/US/rent/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/US/rent/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/US/rent/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/US/rent/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Rent + title: Us + VE: + type: object + $id: "#root/results/VE" + properties: + buy: + type: array + $id: "#root/results/VE/buy" + default: [] + items: + type: object + $id: "#root/results/VE/buy/items" + properties: + display_priority: + type: integer + $id: "#root/results/VE/buy/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/VE/buy/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/VE/buy/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/VE/buy/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Buy + flatrate: + type: array + $id: "#root/results/VE/flatrate" + default: [] + items: + type: object + $id: "#root/results/VE/flatrate/items" + properties: + display_priority: + type: integer + $id: "#root/results/VE/flatrate/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/VE/flatrate/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/VE/flatrate/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/VE/flatrate/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Flatrate + link: + type: string + $id: "#root/results/VE/link" + pattern: ^.*$ + title: Link + rent: + type: array + $id: "#root/results/VE/rent" + default: [] + items: + type: object + $id: "#root/results/VE/rent/items" + properties: + display_priority: + type: integer + $id: "#root/results/VE/rent/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/VE/rent/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/VE/rent/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/VE/rent/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Rent + title: Ve + ZA: + type: object + $id: "#root/results/ZA" + properties: + buy: + type: array + $id: "#root/results/ZA/buy" + default: [] + items: + type: object + $id: "#root/results/ZA/buy/items" + properties: + display_priority: + type: integer + $id: "#root/results/ZA/buy/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/ZA/buy/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/ZA/buy/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/ZA/buy/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Buy + flatrate: + type: array + $id: "#root/results/ZA/flatrate" + default: [] + items: + type: object + $id: "#root/results/ZA/flatrate/items" + properties: + display_priority: + type: integer + $id: "#root/results/ZA/flatrate/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/ZA/flatrate/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/ZA/flatrate/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/ZA/flatrate/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Flatrate + link: + type: string + $id: "#root/results/ZA/link" + pattern: ^.*$ + title: Link + rent: + type: array + $id: "#root/results/ZA/rent" + default: [] + items: + type: object + $id: "#root/results/ZA/rent/items" + properties: + display_priority: + type: integer + $id: "#root/results/ZA/rent/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/ZA/rent/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/ZA/rent/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/ZA/rent/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Rent + title: Za + title: Results + title: Root + additionalProperties: true + trending: + type: object + definitions: {} + $id: https://example.com/object1667211672.json + $schema: http://json-schema.org/draft-07/schema# + properties: + page: + type: integer + $id: "#root/page" + default: 0 + title: Page + results: + type: array + $id: "#root/results" + default: [] + items: + type: object + $id: "#root/results/items" + properties: + adult: + type: boolean + $id: "#root/results/items/adult" + default: true + title: Adult + backdrop_path: + type: string + $id: "#root/results/items/backdrop_path" + pattern: ^.*$ + title: Backdrop_path + genre_ids: + type: array + $id: "#root/results/items/genre_ids" + default: [] + items: + type: integer + $id: "#root/results/items/genre_ids/items" + default: 0 + title: Items + title: Genre_ids + id: + type: integer + $id: "#root/results/items/id" + default: 0 + title: Id + original_language: + type: string + $id: "#root/results/items/original_language" + pattern: ^.*$ + title: Original_language + original_title: + type: string + $id: "#root/results/items/original_title" + pattern: ^.*$ + title: Original_title + overview: + type: string + $id: "#root/results/items/overview" + pattern: ^.* + title: Overview + popularity: + type: number + $id: "#root/results/items/popularity" + default: 0 + title: Popularity + poster_path: + type: string + $id: "#root/results/items/poster_path" + pattern: ^.*$ + title: Poster_path + release_date: + type: string + $id: "#root/results/items/release_date" + pattern: ^.*$ + title: Release_date + title: + type: string + $id: "#root/results/items/title" + pattern: ^.*$ + title: Title + video: + type: boolean + $id: "#root/results/items/video" + default: true + title: Video + vote_average: + type: number + $id: "#root/results/items/vote_average" + default: 0 + title: Vote_average + vote_count: + type: integer + $id: "#root/results/items/vote_count" + default: 0 + title: Vote_count + title: Items + title: Results + total_pages: + type: integer + $id: "#root/total_pages" + default: 0 + title: Total_pages + total_results: + type: integer + $id: "#root/total_results" + default: 0 + title: Total_results + title: Root + additionalProperties: true + search_collections: + type: object + definitions: {} + $id: https://example.com/object1667209129.json + $schema: http://json-schema.org/draft-07/schema# + properties: + page: + type: integer + $id: "#root/page" + default: 0 + title: Page + results: + type: array + $id: "#root/results" + default: [] + items: + type: object + $id: "#root/results/items" + properties: + backdrop_path: + type: string + $id: "#root/results/items/backdrop_path" + pattern: ^.*$ + title: Backdrop_path + id: + type: integer + $id: "#root/results/items/id" + default: 0 + title: Id + name: + type: string + $id: "#root/results/items/name" + pattern: ^.*$ + title: Name + poster_path: + type: string + $id: "#root/results/items/poster_path" + pattern: ^.*$ + title: Poster_path + title: Items + title: Results + total_pages: + type: integer + $id: "#root/total_pages" + default: 0 + title: Total_pages + total_results: + type: integer + $id: "#root/total_results" + default: 0 + title: Total_results + title: Root + additionalProperties: true + search_companies: + type: object + definitions: {} + $id: https://example.com/object1667208961.json + $schema: http://json-schema.org/draft-07/schema# + properties: + page: + type: integer + $id: "#root/page" + default: 0 + title: Page + results: + type: array + $id: "#root/results" + default: [] + items: + type: object + $id: "#root/results/items" + properties: + id: + type: integer + $id: "#root/results/items/id" + default: 0 + title: Id + logo_path: + type: + - "null" + - string + $id: "#root/results/items/logo_path" + pattern: ^.*$ + title: Logo_path + name: + type: string + $id: "#root/results/items/name" + pattern: ^.*$ + title: Name + title: Items + title: Results + total_pages: + type: integer + $id: "#root/total_pages" + default: 0 + title: Total_pages + total_results: + type: integer + $id: "#root/total_results" + default: 0 + title: Total_results + title: Root + additionalProperties: true + search_keywords: + type: object + definitions: {} + $id: https://example.com/object1667209167.json + $schema: http://json-schema.org/draft-07/schema# + properties: + page: + type: integer + $id: "#root/page" + default: 0 + title: Page + results: + type: array + $id: "#root/results" + default: [] + items: + type: object + $id: "#root/results/items" + properties: + id: + type: integer + $id: "#root/results/items/id" + default: 0 + title: Id + name: + type: string + $id: "#root/results/items/name" + pattern: ^.*$ + title: Name + title: Items + title: Results + total_pages: + type: integer + $id: "#root/total_pages" + default: 0 + title: Total_pages + total_results: + type: integer + $id: "#root/total_results" + default: 0 + title: Total_results + title: Root + additionalProperties: true + search_movies: + type: object + definitions: {} + $id: https://example.com/object1667209325.json + $schema: http://json-schema.org/draft-07/schema# + properties: + page: + type: integer + $id: "#root/page" + default: 0 + title: Page + results: + type: array + $id: "#root/results" + default: [] + items: + type: object + $id: "#root/results/items" + properties: + adult: + type: boolean + $id: "#root/results/items/adult" + default: true + title: Adult + backdrop_path: + type: + - "null" + - string + $id: "#root/results/items/backdrop_path" + pattern: ^.*$ + title: Backdrop_path + genre_ids: + type: array + $id: "#root/results/items/genre_ids" + default: [] + items: + type: integer + $id: "#root/results/items/genre_ids/items" + default: 0 + title: Items + title: Genre_ids + id: + type: integer + $id: "#root/results/items/id" + default: 0 + title: Id + original_language: + type: string + $id: "#root/results/items/original_language" + pattern: ^.*$ + title: Original_language + original_title: + type: string + $id: "#root/results/items/original_title" + pattern: ^.*$ + title: Original_title + overview: + type: string + $id: "#root/results/items/overview" + pattern: ^.*$ + title: Overview + popularity: + type: number + $id: "#root/results/items/popularity" + default: 0 + title: Popularity + poster_path: + type: + - "null" + - string + $id: "#root/results/items/poster_path" + pattern: ^.*$ + title: Poster_path + release_date: + type: string + $id: "#root/results/items/release_date" + pattern: ^.*$ + title: Release_date + title: + type: string + $id: "#root/results/items/title" + pattern: ^.*$ + title: Title + video: + type: boolean + $id: "#root/results/items/video" + default: true + title: Video + vote_average: + type: number + $id: "#root/results/items/vote_average" + default: 0 + title: Vote_average + vote_count: + type: integer + $id: "#root/results/items/vote_count" + default: 0 + title: Vote_count + title: Items + title: Results + total_pages: + type: integer + $id: "#root/total_pages" + default: 0 + title: Total_pages + total_results: + type: integer + $id: "#root/total_results" + default: 0 + title: Total_results + title: Root + additionalProperties: true + search_multi: + type: object + definitions: {} + $id: https://example.com/object1667210689.json + $schema: http://json-schema.org/draft-07/schema# + properties: + page: + type: integer + $id: "#root/page" + default: 0 + title: Page + results: + type: array + $id: "#root/results" + default: [] + items: + type: object + $id: "#root/results/items" + properties: + backdrop_path: + type: + - string + - "null" + $id: "#root/results/items/backdrop_path" + default: null + title: Backdrop_path + first_air_date: + type: string + $id: "#root/results/items/first_air_date" + pattern: ^.*$ + title: First_air_date + genre_ids: + type: array + $id: "#root/results/items/genre_ids" + default: [] + title: Genre_ids + id: + type: integer + $id: "#root/results/items/id" + default: 0 + title: Id + media_type: + type: string + $id: "#root/results/items/media_type" + pattern: ^.*$ + title: Media_type + name: + type: string + $id: "#root/results/items/name" + pattern: ^.*$ + title: Name + origin_country: + type: array + $id: "#root/results/items/origin_country" + default: [] + items: + type: string + $id: "#root/results/items/origin_country/items" + pattern: ^.*$ + title: Items + title: Origin_country + original_language: + type: string + $id: "#root/results/items/original_language" + pattern: ^.*$ + title: Original_language + original_name: + type: string + $id: "#root/results/items/original_name" + pattern: ^.*$ + title: Original_name + overview: + type: string + $id: "#root/results/items/overview" + pattern: ^.* + title: Overview + popularity: + type: + - number + - integer + $id: "#root/results/items/popularity" + default: 0 + title: Popularity + poster_path: + type: + - string + - "null" + $id: "#root/results/items/poster_path" + default: null + title: Poster_path + vote_average: + type: + - number + - integer + $id: "#root/results/items/vote_average" + default: 0 + title: Vote_average + vote_count: + type: integer + $id: "#root/results/items/vote_count" + default: 0 + title: Vote_count + title: Items + title: Results + total_pages: + type: integer + $id: "#root/total_pages" + default: 0 + title: Total_pages + total_results: + type: integer + $id: "#root/total_results" + default: 0 + title: Total_results + title: Root + additionalProperties: true + search_people: + type: object + definitions: {} + $id: https://example.com/object1667210990.json + $schema: http://json-schema.org/draft-07/schema# + properties: + page: + type: integer + $id: "#root/page" + default: 0 + title: Page + results: + type: array + $id: "#root/results" + default: [] + items: + type: object + $id: "#root/results/items" + properties: + adult: + type: boolean + $id: "#root/results/items/adult" + default: true + title: Adult + id: + type: integer + $id: "#root/results/items/id" + default: 0 + title: Id + known_for: + type: array + $id: "#root/results/items/known_for" + default: [] + items: + type: object + $id: "#root/results/items/known_for/items" + properties: + adult: + type: boolean + $id: "#root/results/items/known_for/items/adult" + default: true + title: Adult + backdrop_path: + type: + - "null" + - string + $id: "#root/results/items/known_for/items/backdrop_path" + pattern: ^.*$ + title: Backdrop_path + genre_ids: + type: array + $id: "#root/results/items/known_for/items/genre_ids" + default: [] + items: + type: integer + $id: "#root/results/items/known_for/items/genre_ids/items" + default: 0 + title: Items + title: Genre_ids + id: + type: integer + $id: "#root/results/items/known_for/items/id" + default: 0 + title: Id + media_type: + type: string + $id: "#root/results/items/known_for/items/media_type" + pattern: ^.*$ + title: Media_type + original_language: + type: string + $id: "#root/results/items/known_for/items/original_language" + pattern: ^.*$ + title: Original_language + original_title: + type: string + $id: "#root/results/items/known_for/items/original_title" + pattern: ^.*$ + title: Original_title + overview: + type: string + $id: "#root/results/items/known_for/items/overview" + pattern: ^.* + title: Overview + popularity: + type: number + $id: "#root/results/items/known_for/items/popularity" + default: 0 + title: Popularity + release_date: + type: string + $id: "#root/results/items/known_for/items/release_date" + pattern: ^.*$ + title: Release_date + title: + type: string + $id: "#root/results/items/known_for/items/title" + pattern: ^.*$ + title: Title + video: + type: boolean + $id: "#root/results/items/known_for/items/video" + default: true + title: Video + vote_average: + type: number + $id: "#root/results/items/known_for/items/vote_average" + default: 0 + title: Vote_average + vote_count: + type: integer + $id: "#root/results/items/known_for/items/vote_count" + default: 0 + title: Vote_count + title: Items + title: Known_for + name: + type: string + $id: "#root/results/items/name" + pattern: ^.*$ + title: Name + popularity: + type: number + $id: "#root/results/items/popularity" + default: 0 + title: Popularity + profile_path: + type: + - "null" + - string + $id: "#root/results/items/profile_path" + pattern: ^.*$ + title: Profile_path + title: Items + title: Results + total_pages: + type: integer + $id: "#root/total_pages" + default: 0 + title: Total_pages + total_results: + type: integer + $id: "#root/total_results" + default: 0 + title: Total_results + title: Root + additionalProperties: true + search_tv_shows: + type: object + definitions: {} + $id: https://example.com/object1667666886.json + $schema: http://json-schema.org/draft-07/schema# + properties: + page: + type: integer + $id: "#root/page" + default: 0 + title: Page + results: + type: array + $id: "#root/results" + default: [] + items: + type: object + $id: "#root/results/items" + properties: + backdrop_path: + type: + - "null" + - string + $id: "#root/results/items/backdrop_path" + pattern: ^.*$ + title: Backdrop_path + first_air_date: + type: + - "null" + - string + $id: "#root/results/items/first_air_date" + pattern: ^.*$ + title: First_air_date + genre_ids: + type: array + $id: "#root/results/items/genre_ids" + default: [] + items: + type: integer + $id: "#root/results/items/genre_ids/items" + default: 0 + title: Items + title: Genre_ids + id: + type: integer + $id: "#root/results/items/id" + default: 0 + title: Id + name: + type: + - "null" + - string + $id: "#root/results/items/name" + pattern: ^.*$ + title: Name + origin_country: + type: array + $id: "#root/results/items/origin_country" + default: [] + items: + type: + - "null" + - string + $id: "#root/results/items/origin_country/items" + pattern: ^.*$ + title: Items + title: Origin_country + original_language: + type: + - "null" + - string + $id: "#root/results/items/original_language" + pattern: ^.*$ + title: Original_language + original_name: + type: + - "null" + - string + $id: "#root/results/items/original_name" + pattern: ^.*$ + title: Original_name + overview: + type: + - "null" + - string + $id: "#root/results/items/overview" + title: Overview + popularity: + type: number + $id: "#root/results/items/popularity" + default: 0 + title: Popularity + poster_path: + type: + - "null" + - string + $id: "#root/results/items/poster_path" + pattern: ^.*$ + title: Poster_path + vote_average: + type: number + $id: "#root/results/items/vote_average" + default: 0 + title: Vote_average + vote_count: + type: integer + $id: "#root/results/items/vote_count" + default: 0 + title: Vote_count + title: Items + title: Results + total_pages: + type: integer + $id: "#root/total_pages" + default: 0 + title: Total_pages + total_results: + type: integer + $id: "#root/total_results" + default: 0 + title: Total_results + title: Root + additionalProperties: true diff --git a/airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/certification_movie.json b/airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/certification_movie.json deleted file mode 100644 index cee425a10460..000000000000 --- a/airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/certification_movie.json +++ /dev/null @@ -1,607 +0,0 @@ -{ - "definitions": {}, - "$schema": "http://json-schema.org/draft-07/schema#", - "$id": "https://example.com/object1667208363.json", - "title": "Root", - "type": "object", - "required": ["certifications"], - "properties": { - "certifications": { - "$id": "#root/certifications", - "title": "Certifications", - "type": "object", - "required": [ - "US", - "CA", - "AU", - "DE", - "FR", - "NZ", - "IN", - "GB", - "NL", - "BR", - "FI", - "BG", - "ES", - "PH", - "PT" - ], - "properties": { - "US": { - "$id": "#root/certifications/US", - "title": "Us", - "type": "array", - "default": [], - "items": { - "$id": "#root/certifications/US/items", - "title": "Items", - "type": "object", - "required": ["certification", "meaning", "order"], - "properties": { - "certification": { - "$id": "#root/certifications/US/items/certification", - "title": "Certification", - "type": "string", - "default": "", - "examples": ["G"], - "pattern": "^.*$" - }, - "meaning": { - "$id": "#root/certifications/US/items/meaning", - "title": "Meaning", - "type": "string", - "default": "", - "examples": [ - "All ages admitted. There is no content that would be objectionable to most parents. This is one of only two ratings dating back to 1968 that still exists today." - ], - "pattern": "^.*$" - }, - "order": { - "$id": "#root/certifications/US/items/order", - "title": "Order", - "type": "integer", - "examples": [1], - "default": 0 - } - } - } - }, - "CA": { - "$id": "#root/certifications/CA", - "title": "Ca", - "type": "array", - "default": [], - "items": { - "$id": "#root/certifications/CA/items", - "title": "Items", - "type": "object", - "required": ["certification", "meaning", "order"], - "properties": { - "certification": { - "$id": "#root/certifications/CA/items/certification", - "title": "Certification", - "type": "string", - "default": "", - "examples": ["18A"], - "pattern": "^.*$" - }, - "meaning": { - "$id": "#root/certifications/CA/items/meaning", - "title": "Meaning", - "type": "string", - "default": "", - "examples": [ - "Persons under 18 years of age must be accompanied by an adult. In the Maritimes & Manitoba, children under the age of 14 are prohibited from viewing the film." - ], - "pattern": "^.*$" - }, - "order": { - "$id": "#root/certifications/CA/items/order", - "title": "Order", - "type": "integer", - "examples": [4], - "default": 0 - } - } - } - }, - "AU": { - "$id": "#root/certifications/AU", - "title": "Au", - "type": "array", - "default": [], - "items": { - "$id": "#root/certifications/AU/items", - "title": "Items", - "type": "object", - "required": ["certification", "meaning", "order"], - "properties": { - "certification": { - "$id": "#root/certifications/AU/items/certification", - "title": "Certification", - "type": "string", - "default": "", - "examples": ["E"], - "pattern": "^.*$" - }, - "meaning": { - "$id": "#root/certifications/AU/items/meaning", - "title": "Meaning", - "type": "string", - "default": "", - "examples": [ - "Exempt from classification. Films that are exempt from classification must not contain contentious material (i.e. material that would ordinarily be rated M or higher)." - ], - "pattern": "^.*$" - }, - "order": { - "$id": "#root/certifications/AU/items/order", - "title": "Order", - "type": "integer", - "examples": [1], - "default": 0 - } - } - } - }, - "DE": { - "$id": "#root/certifications/DE", - "title": "De", - "type": "array", - "default": [], - "items": { - "$id": "#root/certifications/DE/items", - "title": "Items", - "type": "object", - "required": ["certification", "meaning", "order"], - "properties": { - "certification": { - "$id": "#root/certifications/DE/items/certification", - "title": "Certification", - "type": "string", - "default": "", - "examples": ["0"], - "pattern": "^.*$" - }, - "meaning": { - "$id": "#root/certifications/DE/items/meaning", - "title": "Meaning", - "type": "string", - "default": "", - "examples": ["No age restriction."], - "pattern": "^.*$" - }, - "order": { - "$id": "#root/certifications/DE/items/order", - "title": "Order", - "type": "integer", - "examples": [1], - "default": 0 - } - } - } - }, - "FR": { - "$id": "#root/certifications/FR", - "title": "Fr", - "type": "array", - "default": [], - "items": { - "$id": "#root/certifications/FR/items", - "title": "Items", - "type": "object", - "required": ["certification", "meaning", "order"], - "properties": { - "certification": { - "$id": "#root/certifications/FR/items/certification", - "title": "Certification", - "type": "string", - "default": "", - "examples": ["U"], - "pattern": "^.*$" - }, - "meaning": { - "$id": "#root/certifications/FR/items/meaning", - "title": "Meaning", - "type": "string", - "default": "", - "examples": ["(Tous publics) valid for all audiences."], - "pattern": "^.*$" - }, - "order": { - "$id": "#root/certifications/FR/items/order", - "title": "Order", - "type": "integer", - "examples": [1], - "default": 0 - } - } - } - }, - "NZ": { - "$id": "#root/certifications/NZ", - "title": "Nz", - "type": "array", - "default": [], - "items": { - "$id": "#root/certifications/NZ/items", - "title": "Items", - "type": "object", - "required": ["certification", "meaning", "order"], - "properties": { - "certification": { - "$id": "#root/certifications/NZ/items/certification", - "title": "Certification", - "type": "string", - "default": "", - "examples": ["M"], - "pattern": "^.*$" - }, - "meaning": { - "$id": "#root/certifications/NZ/items/meaning", - "title": "Meaning", - "type": "string", - "default": "", - "examples": [ - "Suitable for (but not restricted to) mature audiences 16 years and up." - ], - "pattern": "^.*$" - }, - "order": { - "$id": "#root/certifications/NZ/items/order", - "title": "Order", - "type": "integer", - "examples": [3], - "default": 0 - } - } - } - }, - "IN": { - "$id": "#root/certifications/IN", - "title": "In", - "type": "array", - "default": [], - "items": { - "$id": "#root/certifications/IN/items", - "title": "Items", - "type": "object", - "required": ["certification", "meaning", "order"], - "properties": { - "certification": { - "$id": "#root/certifications/IN/items/certification", - "title": "Certification", - "type": "string", - "default": "", - "examples": ["U"], - "pattern": "^.*$" - }, - "meaning": { - "$id": "#root/certifications/IN/items/meaning", - "title": "Meaning", - "type": "string", - "default": "", - "examples": [ - "Unrestricted Public Exhibition throughout India, suitable for all age groups. Films under this category should not upset children over 4. Such films may contain educational, social or family-oriented themes. Films under this category may also contain fantasy violence and/or mild bad language." - ], - "pattern": "^.*$" - }, - "order": { - "$id": "#root/certifications/IN/items/order", - "title": "Order", - "type": "integer", - "examples": [0], - "default": 0 - } - } - } - }, - "GB": { - "$id": "#root/certifications/GB", - "title": "Gb", - "type": "array", - "default": [], - "items": { - "$id": "#root/certifications/GB/items", - "title": "Items", - "type": "object", - "required": ["certification", "meaning", "order"], - "properties": { - "certification": { - "$id": "#root/certifications/GB/items/certification", - "title": "Certification", - "type": "string", - "default": "", - "examples": ["15"], - "pattern": "^.*$" - }, - "meaning": { - "$id": "#root/certifications/GB/items/meaning", - "title": "Meaning", - "type": "string", - "default": "", - "examples": [ - "Only those over 15 years are admitted. Nobody younger than 15 can rent or buy a 15-rated VHS, DVD, Blu-ray Disc, UMD or game, or watch a film in the cinema with this rating. Films under this category can contain adult themes, hard drugs, frequent strong language and limited use of very strong language, strong violence and strong sex references, and nudity without graphic detail. Sexual activity may be portrayed but without any strong detail. Sexual violence may be shown if discreet and justified by context." - ], - "pattern": "^.*$" - }, - "order": { - "$id": "#root/certifications/GB/items/order", - "title": "Order", - "type": "integer", - "examples": [5], - "default": 0 - } - } - } - }, - "NL": { - "$id": "#root/certifications/NL", - "title": "Nl", - "type": "array", - "default": [], - "items": { - "$id": "#root/certifications/NL/items", - "title": "Items", - "type": "object", - "required": ["certification", "meaning", "order"], - "properties": { - "certification": { - "$id": "#root/certifications/NL/items/certification", - "title": "Certification", - "type": "string", - "default": "", - "examples": ["AL"], - "pattern": "^.*$" - }, - "meaning": { - "$id": "#root/certifications/NL/items/meaning", - "title": "Meaning", - "type": "string", - "default": "", - "examples": ["All ages."], - "pattern": "^.*$" - }, - "order": { - "$id": "#root/certifications/NL/items/order", - "title": "Order", - "type": "integer", - "examples": [1], - "default": 0 - } - } - } - }, - "BR": { - "$id": "#root/certifications/BR", - "title": "Br", - "type": "array", - "default": [], - "items": { - "$id": "#root/certifications/BR/items", - "title": "Items", - "type": "object", - "required": ["certification", "meaning", "order"], - "properties": { - "certification": { - "$id": "#root/certifications/BR/items/certification", - "title": "Certification", - "type": "string", - "default": "", - "examples": ["L"], - "pattern": "^.*$" - }, - "meaning": { - "$id": "#root/certifications/BR/items/meaning", - "title": "Meaning", - "type": "string", - "default": "", - "examples": [ - "General Audiences. Do not expose children to potentially harmful content." - ], - "pattern": "^.*$" - }, - "order": { - "$id": "#root/certifications/BR/items/order", - "title": "Order", - "type": "integer", - "examples": [1], - "default": 0 - } - } - } - }, - "FI": { - "$id": "#root/certifications/FI", - "title": "Fi", - "type": "array", - "default": [], - "items": { - "$id": "#root/certifications/FI/items", - "title": "Items", - "type": "object", - "required": ["certification", "meaning", "order"], - "properties": { - "certification": { - "$id": "#root/certifications/FI/items/certification", - "title": "Certification", - "type": "string", - "default": "", - "examples": ["S"], - "pattern": "^.*$" - }, - "meaning": { - "$id": "#root/certifications/FI/items/meaning", - "title": "Meaning", - "type": "string", - "default": "", - "examples": ["For all ages."], - "pattern": "^.*$" - }, - "order": { - "$id": "#root/certifications/FI/items/order", - "title": "Order", - "type": "integer", - "examples": [1], - "default": 0 - } - } - } - }, - "BG": { - "$id": "#root/certifications/BG", - "title": "Bg", - "type": "array", - "default": [], - "items": { - "$id": "#root/certifications/BG/items", - "title": "Items", - "type": "object", - "required": ["certification", "meaning", "order"], - "properties": { - "certification": { - "$id": "#root/certifications/BG/items/certification", - "title": "Certification", - "type": "string", - "default": "", - "examples": ["A"], - "pattern": "^.*$" - }, - "meaning": { - "$id": "#root/certifications/BG/items/meaning", - "title": "Meaning", - "type": "string", - "default": "", - "examples": ["Recommended for children."], - "pattern": "^.*$" - }, - "order": { - "$id": "#root/certifications/BG/items/order", - "title": "Order", - "type": "integer", - "examples": [1], - "default": 0 - } - } - } - }, - "ES": { - "$id": "#root/certifications/ES", - "title": "Es", - "type": "array", - "default": [], - "items": { - "$id": "#root/certifications/ES/items", - "title": "Items", - "type": "object", - "required": ["certification", "meaning", "order"], - "properties": { - "certification": { - "$id": "#root/certifications/ES/items/certification", - "title": "Certification", - "type": "string", - "default": "", - "examples": ["APTA"], - "pattern": "^.*$" - }, - "meaning": { - "$id": "#root/certifications/ES/items/meaning", - "title": "Meaning", - "type": "string", - "default": "", - "examples": ["General admission."], - "pattern": "^.*$" - }, - "order": { - "$id": "#root/certifications/ES/items/order", - "title": "Order", - "type": "integer", - "examples": [1], - "default": 0 - } - } - } - }, - "PH": { - "$id": "#root/certifications/PH", - "title": "Ph", - "type": "array", - "default": [], - "items": { - "$id": "#root/certifications/PH/items", - "title": "Items", - "type": "object", - "required": ["certification", "meaning", "order"], - "properties": { - "certification": { - "$id": "#root/certifications/PH/items/certification", - "title": "Certification", - "type": "string", - "default": "", - "examples": ["G"], - "pattern": "^.*$" - }, - "meaning": { - "$id": "#root/certifications/PH/items/meaning", - "title": "Meaning", - "type": "string", - "default": "", - "examples": [ - "General Audiences. Viewers of all ages are admitted." - ], - "pattern": "^.*$" - }, - "order": { - "$id": "#root/certifications/PH/items/order", - "title": "Order", - "type": "integer", - "examples": [1], - "default": 0 - } - } - } - }, - "PT": { - "$id": "#root/certifications/PT", - "title": "Pt", - "type": "array", - "default": [], - "items": { - "$id": "#root/certifications/PT/items", - "title": "Items", - "type": "object", - "required": ["certification", "meaning", "order"], - "properties": { - "certification": { - "$id": "#root/certifications/PT/items/certification", - "title": "Certification", - "type": "string", - "default": "", - "examples": ["Públicos"], - "pattern": "^.*$" - }, - "meaning": { - "$id": "#root/certifications/PT/items/meaning", - "title": "Meaning", - "type": "string", - "default": "", - "examples": [ - "For all the public (especially designed for children under 3 years of age)." - ], - "pattern": "^.*$" - }, - "order": { - "$id": "#root/certifications/PT/items/order", - "title": "Order", - "type": "integer", - "examples": [1], - "default": 0 - } - } - } - } - } - } - } -} diff --git a/airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/certification_tv.json b/airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/certification_tv.json deleted file mode 100644 index 747281523ccd..000000000000 --- a/airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/certification_tv.json +++ /dev/null @@ -1,398 +0,0 @@ -{ - "definitions": {}, - "$schema": "http://json-schema.org/draft-07/schema#", - "$id": "https://example.com/object1667208548.json", - "title": "Root", - "type": "object", - "required": ["certifications"], - "properties": { - "certifications": { - "$id": "#root/certifications", - "title": "Certifications", - "type": "object", - "required": ["RU", "US", "CA", "AU", "FR", "DE", "TH", "KR", "GB", "BR"], - "properties": { - "RU": { - "$id": "#root/certifications/RU", - "title": "Ru", - "type": "array", - "default": [], - "items": { - "$id": "#root/certifications/RU/items", - "title": "Items", - "type": "object", - "required": ["certification", "meaning", "order"], - "properties": { - "certification": { - "$id": "#root/certifications/RU/items/certification", - "title": "Certification", - "type": "string", - "default": "", - "examples": ["18+"], - "pattern": "^.*$" - }, - "meaning": { - "$id": "#root/certifications/RU/items/meaning", - "title": "Meaning", - "type": "string", - "default": "", - "examples": ["Restricted to People 18 or Older."], - "pattern": "^.*$" - }, - "order": { - "$id": "#root/certifications/RU/items/order", - "title": "Order", - "type": "integer", - "examples": [5], - "default": 0 - } - } - } - }, - "US": { - "$id": "#root/certifications/US", - "title": "Us", - "type": "array", - "default": [], - "items": { - "$id": "#root/certifications/US/items", - "title": "Items", - "type": "object", - "required": ["certification", "meaning", "order"], - "properties": { - "certification": { - "$id": "#root/certifications/US/items/certification", - "title": "Certification", - "type": "string", - "default": "", - "examples": ["NR"], - "pattern": "^.*$" - }, - "meaning": { - "$id": "#root/certifications/US/items/meaning", - "title": "Meaning", - "type": "string", - "default": "", - "examples": ["No rating information."], - "pattern": "^.*$" - }, - "order": { - "$id": "#root/certifications/US/items/order", - "title": "Order", - "type": "integer", - "examples": [0], - "default": 0 - } - } - } - }, - "CA": { - "$id": "#root/certifications/CA", - "title": "Ca", - "type": "array", - "default": [], - "items": { - "$id": "#root/certifications/CA/items", - "title": "Items", - "type": "object", - "required": ["certification", "meaning", "order"], - "properties": { - "certification": { - "$id": "#root/certifications/CA/items/certification", - "title": "Certification", - "type": "string", - "default": "", - "examples": ["Exempt"], - "pattern": "^.*$" - }, - "meaning": { - "$id": "#root/certifications/CA/items/meaning", - "title": "Meaning", - "type": "string", - "default": "", - "examples": [ - "Shows which are exempt from ratings (such as news and sports programming) will not display an on-screen rating at all." - ], - "pattern": "^.*$" - }, - "order": { - "$id": "#root/certifications/CA/items/order", - "title": "Order", - "type": "integer", - "examples": [0], - "default": 0 - } - } - } - }, - "AU": { - "$id": "#root/certifications/AU", - "title": "Au", - "type": "array", - "default": [], - "items": { - "$id": "#root/certifications/AU/items", - "title": "Items", - "type": "object", - "required": ["certification", "meaning", "order"], - "properties": { - "certification": { - "$id": "#root/certifications/AU/items/certification", - "title": "Certification", - "type": "string", - "default": "", - "examples": ["P"], - "pattern": "^.*$" - }, - "meaning": { - "$id": "#root/certifications/AU/items/meaning", - "title": "Meaning", - "type": "string", - "default": "", - "examples": [ - "Programming is intended for younger children 2–11; commercial stations must show at least 30 minutes of P-rated content each weekday and weekends at all times. No advertisements may be shown during P-rated programs." - ], - "pattern": "^.*$" - }, - "order": { - "$id": "#root/certifications/AU/items/order", - "title": "Order", - "type": "integer", - "examples": [1], - "default": 0 - } - } - } - }, - "FR": { - "$id": "#root/certifications/FR", - "title": "Fr", - "type": "array", - "default": [], - "items": { - "$id": "#root/certifications/FR/items", - "title": "Items", - "type": "object", - "required": ["certification", "meaning", "order"], - "properties": { - "certification": { - "$id": "#root/certifications/FR/items/certification", - "title": "Certification", - "type": "string", - "default": "", - "examples": ["NR"], - "pattern": "^.*$" - }, - "meaning": { - "$id": "#root/certifications/FR/items/meaning", - "title": "Meaning", - "type": "string", - "default": "", - "examples": ["No rating information."], - "pattern": "^.*$" - }, - "order": { - "$id": "#root/certifications/FR/items/order", - "title": "Order", - "type": "integer", - "examples": [0], - "default": 0 - } - } - } - }, - "DE": { - "$id": "#root/certifications/DE", - "title": "De", - "type": "array", - "default": [], - "items": { - "$id": "#root/certifications/DE/items", - "title": "Items", - "type": "object", - "required": ["certification", "meaning", "order"], - "properties": { - "certification": { - "$id": "#root/certifications/DE/items/certification", - "title": "Certification", - "type": "string", - "default": "", - "examples": ["0"], - "pattern": "^.*$" - }, - "meaning": { - "$id": "#root/certifications/DE/items/meaning", - "title": "Meaning", - "type": "string", - "default": "", - "examples": ["Can be aired at any time."], - "pattern": "^.*$" - }, - "order": { - "$id": "#root/certifications/DE/items/order", - "title": "Order", - "type": "integer", - "examples": [0], - "default": 0 - } - } - } - }, - "TH": { - "$id": "#root/certifications/TH", - "title": "Th", - "type": "array", - "default": [], - "items": { - "$id": "#root/certifications/TH/items", - "title": "Items", - "type": "object", - "required": ["certification", "meaning", "order"], - "properties": { - "certification": { - "$id": "#root/certifications/TH/items/certification", - "title": "Certification", - "type": "string", - "default": "", - "examples": ["ส"], - "pattern": "^.*$" - }, - "meaning": { - "$id": "#root/certifications/TH/items/meaning", - "title": "Meaning", - "type": "string", - "default": "", - "examples": [ - "Sor - Educational movies which the public should be encouraged to see." - ], - "pattern": "^.*$" - }, - "order": { - "$id": "#root/certifications/TH/items/order", - "title": "Order", - "type": "integer", - "examples": [0], - "default": 0 - } - } - } - }, - "KR": { - "$id": "#root/certifications/KR", - "title": "Kr", - "type": "array", - "default": [], - "items": { - "$id": "#root/certifications/KR/items", - "title": "Items", - "type": "object", - "required": ["certification", "meaning", "order"], - "properties": { - "certification": { - "$id": "#root/certifications/KR/items/certification", - "title": "Certification", - "type": "string", - "default": "", - "examples": ["Exempt"], - "pattern": "^.*$" - }, - "meaning": { - "$id": "#root/certifications/KR/items/meaning", - "title": "Meaning", - "type": "string", - "default": "", - "examples": [ - "This rating is only for knowledge based game shows; lifestyle shows; documentary shows; news; current topic discussion shows; education/culture shows; sports that excludes MMA or other violent sports; and other programs that Korea Communications Standards Commission recognizes." - ], - "pattern": "^.*$" - }, - "order": { - "$id": "#root/certifications/KR/items/order", - "title": "Order", - "type": "integer", - "examples": [0], - "default": 0 - } - } - } - }, - "GB": { - "$id": "#root/certifications/GB", - "title": "Gb", - "type": "array", - "default": [], - "items": { - "$id": "#root/certifications/GB/items", - "title": "Items", - "type": "object", - "required": ["certification", "meaning", "order"], - "properties": { - "certification": { - "$id": "#root/certifications/GB/items/certification", - "title": "Certification", - "type": "string", - "default": "", - "examples": ["U"], - "pattern": "^.*$" - }, - "meaning": { - "$id": "#root/certifications/GB/items/meaning", - "title": "Meaning", - "type": "string", - "default": "", - "examples": [ - "The U symbol stands for Universal. A U film should be suitable for audiences aged four years and over." - ], - "pattern": "^.*$" - }, - "order": { - "$id": "#root/certifications/GB/items/order", - "title": "Order", - "type": "integer", - "examples": [0], - "default": 0 - } - } - } - }, - "BR": { - "$id": "#root/certifications/BR", - "title": "Br", - "type": "array", - "default": [], - "items": { - "$id": "#root/certifications/BR/items", - "title": "Items", - "type": "object", - "required": ["certification", "meaning", "order"], - "properties": { - "certification": { - "$id": "#root/certifications/BR/items/certification", - "title": "Certification", - "type": "string", - "default": "", - "examples": ["L"], - "pattern": "^.*$" - }, - "meaning": { - "$id": "#root/certifications/BR/items/meaning", - "title": "Meaning", - "type": "string", - "default": "", - "examples": ["Content is suitable for all audiences."], - "pattern": "^.*$" - }, - "order": { - "$id": "#root/certifications/BR/items/order", - "title": "Order", - "type": "integer", - "examples": [0], - "default": 0 - } - } - } - } - } - } - } -} diff --git a/airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/changes_movie.json b/airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/changes_movie.json deleted file mode 100644 index 304c2ef40893..000000000000 --- a/airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/changes_movie.json +++ /dev/null @@ -1,59 +0,0 @@ -{ - "definitions": {}, - "$schema": "http://json-schema.org/draft-07/schema#", - "$id": "https://example.com/object1667208732.json", - "title": "Root", - "type": "object", - "required": ["results", "page", "total_pages", "total_results"], - "properties": { - "results": { - "$id": "#root/results", - "title": "Results", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/items", - "title": "Items", - "type": "object", - "required": ["id", "adult"], - "properties": { - "id": { - "$id": "#root/results/items/id", - "title": "Id", - "type": "integer", - "examples": [412683], - "default": 0 - }, - "adult": { - "$id": "#root/results/items/adult", - "title": "Adult", - "type": ["null", "boolean"], - "examples": [false], - "default": true - } - } - } - }, - "page": { - "$id": "#root/page", - "title": "Page", - "type": "integer", - "examples": [1], - "default": 0 - }, - "total_pages": { - "$id": "#root/total_pages", - "title": "Total_pages", - "type": "integer", - "examples": [10], - "default": 0 - }, - "total_results": { - "$id": "#root/total_results", - "title": "Total_results", - "type": "integer", - "examples": [952], - "default": 0 - } - } -} diff --git a/airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/changes_person.json b/airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/changes_person.json deleted file mode 100644 index 502820ab85e2..000000000000 --- a/airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/changes_person.json +++ /dev/null @@ -1,59 +0,0 @@ -{ - "definitions": {}, - "$schema": "http://json-schema.org/draft-07/schema#", - "$id": "https://example.com/object1667210538.json", - "title": "Root", - "type": "object", - "required": ["results", "page", "total_pages", "total_results"], - "properties": { - "results": { - "$id": "#root/results", - "title": "Results", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/items", - "title": "Items", - "type": "object", - "required": ["id", "adult"], - "properties": { - "id": { - "$id": "#root/results/items/id", - "title": "Id", - "type": "integer", - "examples": [1670120], - "default": 0 - }, - "adult": { - "$id": "#root/results/items/adult", - "title": "Adult", - "type": ["null", "boolean"], - "examples": [false], - "default": true - } - } - } - }, - "page": { - "$id": "#root/page", - "title": "Page", - "type": "integer", - "examples": [1], - "default": 0 - }, - "total_pages": { - "$id": "#root/total_pages", - "title": "Total_pages", - "type": "integer", - "examples": [7], - "default": 0 - }, - "total_results": { - "$id": "#root/total_results", - "title": "Total_results", - "type": "integer", - "examples": [620], - "default": 0 - } - } -} diff --git a/airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/changes_tv.json b/airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/changes_tv.json deleted file mode 100644 index c69374a964af..000000000000 --- a/airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/changes_tv.json +++ /dev/null @@ -1,59 +0,0 @@ -{ - "definitions": {}, - "$schema": "http://json-schema.org/draft-07/schema#", - "$id": "https://example.com/object1667208773.json", - "title": "Root", - "type": "object", - "required": ["results", "page", "total_pages", "total_results"], - "properties": { - "results": { - "$id": "#root/results", - "title": "Results", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/items", - "title": "Items", - "type": "object", - "required": ["id", "adult"], - "properties": { - "id": { - "$id": "#root/results/items/id", - "title": "Id", - "type": "integer", - "examples": [67563], - "default": 0 - }, - "adult": { - "$id": "#root/results/items/adult", - "title": "Adult", - "type": ["null", "boolean"], - "examples": [false], - "default": true - } - } - } - }, - "page": { - "$id": "#root/page", - "title": "Page", - "type": "integer", - "examples": [1], - "default": 0 - }, - "total_pages": { - "$id": "#root/total_pages", - "title": "Total_pages", - "type": "integer", - "examples": [2], - "default": 0 - }, - "total_results": { - "$id": "#root/total_results", - "title": "Total_results", - "type": "integer", - "examples": [122], - "default": 0 - } - } -} diff --git a/airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/movies_alternative_titles.json b/airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/movies_alternative_titles.json deleted file mode 100644 index fd8dcc1f142d..000000000000 --- a/airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/movies_alternative_titles.json +++ /dev/null @@ -1,49 +0,0 @@ -{ - "definitions": {}, - "$schema": "http://json-schema.org/draft-07/schema#", - "$id": "https://example.com/object1666884919.json", - "title": "Root", - "type": "object", - "properties": { - "id": { - "$id": "#root/id", - "title": "Id", - "type": "integer", - "default": 0 - }, - "titles": { - "$id": "#root/titles", - "title": "Titles", - "type": ["array", "null", "object"], - "default": [], - "items": { - "$id": "#root/titles/items", - "title": "Items", - "type": ["array", "null", "object"], - "properties": { - "iso_3166_1": { - "$id": "#root/titles/items/iso_3166_1", - "title": "Iso_3166_1", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "title": { - "$id": "#root/titles/items/title", - "title": "Title", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "type": { - "$id": "#root/titles/items/type", - "title": "Type", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - } - } -} diff --git a/airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/movies_changes.json b/airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/movies_changes.json deleted file mode 100644 index be71c6b7dfa0..000000000000 --- a/airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/movies_changes.json +++ /dev/null @@ -1,85 +0,0 @@ -{ - "definitions": {}, - "$schema": "http://json-schema.org/draft-07/schema#", - "$id": "https://example.com/object1668092844.json", - "title": "Root", - "type": "object", - "properties": { - "key": { - "$id": "#root/changes/items/key", - "title": "Key", - "type": ["null", "string"], - "default": "", - "pattern": "^.*$" - }, - "items": { - "$id": "#root/changes/items/items", - "title": "Items", - "type": "array", - "default": [], - "items": { - "$id": "#root/changes/items/items/items", - "title": "Items", - "type": "object", - "properties": { - "id": { - "$id": "#root/changes/items/items/items/id", - "title": "Id", - "type": ["null", "string"], - "default": "", - "pattern": "^.*$" - }, - "action": { - "$id": "#root/changes/items/items/items/action", - "title": "Action", - "type": ["null", "string"], - "default": "", - "pattern": "^.*$" - }, - "time": { - "$id": "#root/changes/items/items/items/time", - "title": "Time", - "type": ["null", "string"], - "default": "", - "pattern": "^.*$" - }, - "iso_639_1": { - "$id": "#root/changes/items/items/items/iso_639_1", - "title": "Iso_639_1", - "type": ["null", "string"], - "default": "", - "pattern": "^.*$" - }, - "iso_3166_1": { - "$id": "#root/changes/items/items/items/iso_3166_1", - "title": "Iso_3166_1", - "type": ["null", "string"], - "default": "", - "pattern": "^.*$" - }, - "value": { - "$id": "#root/changes/items/items/items/value", - "title": "Value", - "type": "object", - "properties": { - "poster": { - "$id": "#root/changes/items/items/items/value/poster", - "title": "Poster", - "type": "object", - "properties": { - "file_path": { - "$id": "#root/changes/items/items/items/value/poster/file_path", - "title": "File_path", - "type": ["null", "string"], - "default": "", - "pattern": "^.*$" - } - } - } - } - } - } - } - } - } -} diff --git a/airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/movies_credits.json b/airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/movies_credits.json deleted file mode 100644 index 610312ca8df1..000000000000 --- a/airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/movies_credits.json +++ /dev/null @@ -1,192 +0,0 @@ -{ - "definitions": {}, - "$schema": "http://json-schema.org/draft-07/schema#", - "$id": "https://example.com/object1666852792.json", - "title": "Root", - "type": "object", - "properties": { - "id": { - "$id": "#root/id", - "title": "Id", - "type": "integer", - "default": 0 - }, - "cast": { - "$id": "#root/cast", - "title": "Cast", - "type": "array", - "default": [], - "items": { - "$id": "#root/cast/items", - "title": "Items", - "type": "object", - "properties": { - "adult": { - "$id": "#root/cast/items/adult", - "title": "Adult", - "type": "boolean", - "default": true - }, - "gender": { - "$id": "#root/cast/items/gender", - "title": "Gender", - "type": "integer", - "default": 0 - }, - "id": { - "$id": "#root/cast/items/id", - "title": "Id", - "type": "integer", - "default": 0 - }, - "known_for_department": { - "$id": "#root/cast/items/known_for_department", - "title": "Known_for_department", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "name": { - "$id": "#root/cast/items/name", - "title": "Name", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "original_name": { - "$id": "#root/cast/items/original_name", - "title": "Original_name", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "popularity": { - "$id": "#root/cast/items/popularity", - "title": "Popularity", - "type": "number", - "default": 0.0 - }, - "profile_path": { - "$id": "#root/cast/items/profile_path", - "title": "Profile_path", - "type": ["null", "string"], - "default": "", - "pattern": "^.*$" - }, - "cast_id": { - "$id": "#root/cast/items/cast_id", - "title": "Cast_id", - "type": "integer", - "default": 0 - }, - "character": { - "$id": "#root/cast/items/character", - "title": "Character", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "credit_id": { - "$id": "#root/cast/items/credit_id", - "title": "Credit_id", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "order": { - "$id": "#root/cast/items/order", - "title": "Order", - "type": "integer", - "default": 0 - } - } - } - }, - "crew": { - "$id": "#root/crew", - "title": "Crew", - "type": "array", - "default": [], - "items": { - "$id": "#root/crew/items", - "title": "Items", - "type": "object", - "properties": { - "adult": { - "$id": "#root/crew/items/adult", - "title": "Adult", - "type": "boolean", - "default": true - }, - "gender": { - "$id": "#root/crew/items/gender", - "title": "Gender", - "type": "integer", - "default": 0 - }, - "id": { - "$id": "#root/crew/items/id", - "title": "Id", - "type": "integer", - "default": 0 - }, - "known_for_department": { - "$id": "#root/crew/items/known_for_department", - "title": "Known_for_department", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "name": { - "$id": "#root/crew/items/name", - "title": "Name", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "original_name": { - "$id": "#root/crew/items/original_name", - "title": "Original_name", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "popularity": { - "$id": "#root/crew/items/popularity", - "title": "Popularity", - "type": "number", - "default": 0.0 - }, - "profile_path": { - "$id": "#root/crew/items/profile_path", - "title": "Profile_path", - "type": ["null", "string"], - "default": "", - "pattern": "^.*$" - }, - "credit_id": { - "$id": "#root/crew/items/credit_id", - "title": "Credit_id", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "department": { - "$id": "#root/crew/items/department", - "title": "Department", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "job": { - "$id": "#root/crew/items/job", - "title": "Job", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - } - } -} diff --git a/airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/movies_details.json b/airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/movies_details.json deleted file mode 100644 index 952d7122cf75..000000000000 --- a/airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/movies_details.json +++ /dev/null @@ -1,265 +0,0 @@ -{ - "definitions": {}, - "$schema": "http://json-schema.org/draft-07/schema#", - "$id": "https://example.com/object1666852195.json", - "title": "Root", - "type": "object", - "properties": { - "adult": { - "$id": "#root/adult", - "title": "Adult", - "type": "boolean", - "default": true - }, - "backdrop_path": { - "$id": "#root/backdrop_path", - "title": "Backdrop_path", - "type": ["null", "string"], - "default": "", - "pattern": "^.*$" - }, - "belongs_to_collection": { - "$id": "#root/belongs_to_collection", - "title": "Belongs_to_collection", - "type": ["null", "object"], - "default": null - }, - "budget": { - "$id": "#root/budget", - "title": "Budget", - "type": "integer", - "default": 0 - }, - "genres": { - "$id": "#root/genres", - "title": "Genres", - "type": ["null", "array"], - "default": [], - "items": { - "$id": "#root/genres/items", - "title": "Items", - "type": "object", - "properties": { - "id": { - "$id": "#root/genres/items/id", - "title": "Id", - "type": "integer", - "default": 0 - }, - "name": { - "$id": "#root/genres/items/name", - "title": "Name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - }, - "homepage": { - "$id": "#root/homepage", - "title": "Homepage", - "type": ["null", "string"], - "default": "", - "pattern": "^.*$" - }, - "id": { - "$id": "#root/id", - "title": "Id", - "type": "integer", - "default": 0 - }, - "imdb_id": { - "$id": "#root/imdb_id", - "title": "Imdb_id", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "original_language": { - "$id": "#root/original_language", - "title": "Original_language", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "original_title": { - "$id": "#root/original_title", - "title": "Original_title", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "overview": { - "$id": "#root/overview", - "title": "Overview", - "type": ["null", "string"], - "default": "", - "pattern": "^.*$" - }, - "popularity": { - "$id": "#root/popularity", - "title": "Popularity", - "type": "number", - "default": 0.0 - }, - "poster_path": { - "$id": "#root/poster_path", - "title": "Poster_path", - "type": ["string", "null"], - "default": null - }, - "production_companies": { - "$id": "#root/production_companies", - "title": "Production_companies", - "type": ["null", "array"], - "default": [], - "items": { - "$id": "#root/production_companies/items", - "title": "Items", - "type": "object", - "properties": { - "id": { - "$id": "#root/production_companies/items/id", - "title": "Id", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/production_companies/items/logo_path", - "title": "Logo_path", - "type": ["null", "string"], - "default": "", - "pattern": "^.*$" - }, - "name": { - "$id": "#root/production_companies/items/name", - "title": "Name", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "origin_country": { - "$id": "#root/production_companies/items/origin_country", - "title": "Origin_country", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - }, - "production_countries": { - "$id": "#root/production_countries", - "title": "Production_countries", - "type": ["null", "array"], - "default": [], - "items": { - "$id": "#root/production_countries/items", - "title": "Items", - "type": "object", - "properties": { - "iso_3166_1": { - "$id": "#root/production_countries/items/iso_3166_1", - "title": "Iso_3166_1", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "name": { - "$id": "#root/production_countries/items/name", - "title": "Name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - }, - "release_date": { - "$id": "#root/release_date", - "title": "Release_date", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "revenue": { - "$id": "#root/revenue", - "title": "Revenue", - "type": "integer", - "default": 0 - }, - "runtime": { - "$id": "#root/runtime", - "title": "Runtime", - "type": ["null", "integer"], - "default": 0 - }, - "spoken_languages": { - "$id": "#root/spoken_languages", - "title": "Spoken_languages", - "type": ["null", "array"], - "default": [], - "items": { - "$id": "#root/spoken_languages/items", - "title": "Items", - "type": "object", - "properties": { - "iso_639_1": { - "$id": "#root/spoken_languages/items/iso_639_1", - "title": "Iso_639_1", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "name": { - "$id": "#root/spoken_languages/items/name", - "title": "Name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - }, - "status": { - "$id": "#root/status", - "title": "Status", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "tagline": { - "$id": "#root/tagline", - "title": "Tagline", - "type": ["null", "string"], - "default": "", - "pattern": "^.*$" - }, - "title": { - "$id": "#root/title", - "title": "Title", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "video": { - "$id": "#root/video", - "title": "Video", - "type": "boolean", - "default": true - }, - "vote_average": { - "$id": "#root/vote_average", - "title": "Vote_average", - "type": "number", - "default": 0.0 - }, - "vote_count": { - "$id": "#root/vote_count", - "title": "Vote_count", - "type": "integer", - "default": 0 - } - } -} diff --git a/airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/movies_external_ids.json b/airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/movies_external_ids.json deleted file mode 100644 index fd4484d863d4..000000000000 --- a/airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/movies_external_ids.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "definitions": {}, - "$schema": "http://json-schema.org/draft-07/schema#", - "$id": "https://example.com/object1666852857.json", - "title": "Root", - "type": "object", - "properties": { - "imdb_id": { - "$id": "#root/imdb_id", - "title": "Imdb_id", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "facebook_id": { - "$id": "#root/facebook_id", - "title": "Facebook_id", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "instagram_id": { - "$id": "#root/instagram_id", - "title": "Instagram_id", - "type": ["null", "string"], - "default": "", - "pattern": "^.*$" - }, - "twitter_id": { - "$id": "#root/twitter_id", - "title": "Twitter_id", - "type": ["null", "string"], - "default": "", - "pattern": "^.*$" - }, - "id": { - "$id": "#root/id", - "title": "Id", - "type": "integer", - "default": 0 - } - } -} diff --git a/airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/movies_images.json b/airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/movies_images.json deleted file mode 100644 index 326d7af979b3..000000000000 --- a/airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/movies_images.json +++ /dev/null @@ -1,128 +0,0 @@ -{ - "definitions": {}, - "$schema": "http://json-schema.org/draft-07/schema#", - "$id": "https://example.com/object1666852902.json", - "title": "Root", - "type": "object", - "properties": { - "id": { - "$id": "#root/id", - "title": "Id", - "type": "integer", - "default": 0 - }, - "backdrops": { - "$id": "#root/backdrops", - "title": "Backdrops", - "type": "array", - "default": [], - "items": { - "$id": "#root/backdrops/items", - "title": "Items", - "type": "object", - "properties": { - "aspect_ratio": { - "$id": "#root/backdrops/items/aspect_ratio", - "title": "Aspect_ratio", - "type": "number", - "default": 0.0 - }, - "file_path": { - "$id": "#root/backdrops/items/file_path", - "title": "File_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "height": { - "$id": "#root/backdrops/items/height", - "title": "Height", - "type": "integer", - "default": 0 - }, - "iso_639_1": { - "$id": "#root/backdrops/items/iso_639_1", - "title": "Iso_639_1", - "type": ["string", "null"], - "default": null - }, - "vote_average": { - "$id": "#root/backdrops/items/vote_average", - "title": "Vote_average", - "type": ["number", "integer", "string"], - "default": 0 - }, - "vote_count": { - "$id": "#root/backdrops/items/vote_count", - "title": "Vote_count", - "type": "integer", - "default": 0 - }, - "width": { - "$id": "#root/backdrops/items/width", - "title": "Width", - "type": "integer", - "default": 0 - } - } - } - }, - "posters": { - "$id": "#root/posters", - "title": "Posters", - "type": "array", - "default": [], - "items": { - "$id": "#root/posters/items", - "title": "Items", - "type": "object", - "properties": { - "aspect_ratio": { - "$id": "#root/posters/items/aspect_ratio", - "title": "Aspect_ratio", - "type": "number", - "default": 0.0 - }, - "file_path": { - "$id": "#root/posters/items/file_path", - "title": "File_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "height": { - "$id": "#root/posters/items/height", - "title": "Height", - "type": "integer", - "default": 0 - }, - "iso_639_1": { - "$id": "#root/posters/items/iso_639_1", - "title": "Iso_639_1", - "type": ["null", "string"], - "default": "", - "pattern": "^.*$" - }, - "vote_average": { - "$id": "#root/posters/items/vote_average", - "title": "Vote_average", - "type": ["number", "integer", "string"], - "default": 0 - }, - "vote_count": { - "$id": "#root/posters/items/vote_count", - "title": "Vote_count", - "type": "integer", - "default": 0 - }, - "width": { - "$id": "#root/posters/items/width", - "title": "Width", - "type": "integer", - "default": 0 - } - } - } - } - } -} diff --git a/airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/movies_keywords.json b/airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/movies_keywords.json deleted file mode 100644 index 83e8980715d1..000000000000 --- a/airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/movies_keywords.json +++ /dev/null @@ -1,41 +0,0 @@ -{ - "definitions": {}, - "$schema": "http://json-schema.org/draft-07/schema#", - "$id": "https://example.com/object1666852923.json", - "title": "Root", - "type": "object", - "properties": { - "id": { - "$id": "#root/id", - "title": "Id", - "type": "integer", - "default": 0 - }, - "keywords": { - "$id": "#root/keywords", - "title": "Keywords", - "type": "array", - "default": [], - "items": { - "$id": "#root/keywords/items", - "title": "Items", - "type": "object", - "properties": { - "id": { - "$id": "#root/keywords/items/id", - "title": "Id", - "type": "integer", - "default": 0 - }, - "name": { - "$id": "#root/keywords/items/name", - "title": "Name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - } - } -} diff --git a/airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/movies_latest.json b/airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/movies_latest.json deleted file mode 100644 index bf2a00a01644..000000000000 --- a/airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/movies_latest.json +++ /dev/null @@ -1,189 +0,0 @@ -{ - "definitions": {}, - "$schema": "http://json-schema.org/draft-07/schema#", - "$id": "https://example.com/object1666853268.json", - "title": "Root", - "type": "object", - "properties": { - "adult": { - "$id": "#root/adult", - "title": "Adult", - "type": "boolean", - "default": true - }, - "backdrop_path": { - "$id": "#root/backdrop_path", - "title": "Backdrop_path", - "type": ["string", "null"], - "default": null - }, - "belongs_to_collection": { - "$id": "#root/belongs_to_collection", - "title": "Belongs_to_collection", - "type": ["string", "null"], - "default": null - }, - "budget": { - "$id": "#root/budget", - "title": "Budget", - "type": "integer", - "default": 0 - }, - "genres": { - "$id": "#root/genres", - "title": "Genres", - "type": "array", - "default": [], - "items": { - "$id": "#root/genres/items", - "title": "Items", - "type": "object", - "properties": { - "id": { - "$id": "#root/genres/items/id", - "title": "Id", - "type": "integer", - "default": 0 - }, - "name": { - "$id": "#root/genres/items/name", - "title": "Name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - }, - "homepage": { - "$id": "#root/homepage", - "title": "Homepage", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "id": { - "$id": "#root/id", - "title": "Id", - "type": "integer", - "default": 0 - }, - "imdb_id": { - "$id": "#root/imdb_id", - "title": "Imdb_id", - "type": ["null", "string"], - "default": "", - "pattern": "^.*$" - }, - "original_language": { - "$id": "#root/original_language", - "title": "Original_language", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "original_title": { - "$id": "#root/original_title", - "title": "Original_title", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "overview": { - "$id": "#root/overview", - "title": "Overview", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "popularity": { - "$id": "#root/popularity", - "title": "Popularity", - "type": "integer", - "default": 0 - }, - "poster_path": { - "$id": "#root/poster_path", - "title": "Poster_path", - "type": ["null", "string"], - "default": "", - "pattern": "^.*$" - }, - "production_companies": { - "$id": "#root/production_companies", - "title": "Production_companies", - "type": "array", - "default": [] - }, - "production_countries": { - "$id": "#root/production_countries", - "title": "Production_countries", - "type": "array", - "default": [] - }, - "release_date": { - "$id": "#root/release_date", - "title": "Release_date", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "revenue": { - "$id": "#root/revenue", - "title": "Revenue", - "type": "integer", - "default": 0 - }, - "runtime": { - "$id": "#root/runtime", - "title": "Runtime", - "type": "integer", - "default": 0 - }, - "spoken_languages": { - "$id": "#root/spoken_languages", - "title": "Spoken_languages", - "type": "array", - "default": [] - }, - "status": { - "$id": "#root/status", - "title": "Status", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "tagline": { - "$id": "#root/tagline", - "title": "Tagline", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "title": { - "$id": "#root/title", - "title": "Title", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "video": { - "$id": "#root/video", - "title": "Video", - "type": "boolean", - "default": true - }, - "vote_average": { - "$id": "#root/vote_average", - "title": "Vote_average", - "type": "integer", - "default": 0 - }, - "vote_count": { - "$id": "#root/vote_count", - "title": "Vote_count", - "type": "integer", - "default": 0 - } - } -} diff --git a/airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/movies_lists.json b/airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/movies_lists.json deleted file mode 100644 index 89da7dd053f9..000000000000 --- a/airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/movies_lists.json +++ /dev/null @@ -1,208 +0,0 @@ -{ - "id": 550, - "page": 1, - "results": [ - { - "description": "Pick one and then one or two alternates", - "favorite_count": 0, - "id": 7213, - "item_count": 1358, - "iso_639_1": "en", - "list_type": "movie", - "name": "Movie Night", - "poster_path": "/p60VSQL7usdxztIGokJPpHmKWdU.jpg" - }, - { - "description": "Your favorite and classic movies of the 1990s", - "favorite_count": 0, - "id": 6968, - "item_count": 482, - "iso_639_1": "en", - "list_type": "movie", - "name": "1990", - "poster_path": "/5R68Xn4EG0g5qlaQxpE89zGrtes.jpg" - }, - { - "description": "All the movies I own on vhs/dvd/bluray or digital.", - "favorite_count": 0, - "id": 9660, - "item_count": 3299, - "iso_639_1": "en", - "list_type": "movie", - "name": "My Film Collection", - "poster_path": "/3TsnEEkBRfQ1b7Gi2FTsuxHFUZq.jpg" - }, - { - "description": "", - "favorite_count": 0, - "id": 8085, - "item_count": 23, - "iso_639_1": "en", - "list_type": "movie", - "name": "Twists and Shouts", - "poster_path": "/drzZQfdyoAq7pXq4EPI2aZKyGD5.jpg" - }, - { - "description": "", - "favorite_count": 0, - "id": 12031, - "item_count": 475, - "iso_639_1": "fr", - "list_type": "movie", - "name": "Films", - "poster_path": null - }, - { - "description": "List maintained by Movie Collection, the iOS app.", - "favorite_count": 0, - "id": 1718, - "item_count": 610, - "iso_639_1": "en", - "list_type": "movie", - "name": "Movie Collection", - "poster_path": null - }, - { - "description": "", - "favorite_count": 0, - "id": 11052, - "item_count": 478, - "iso_639_1": "en", - "list_type": "movie", - "name": "Movies", - "poster_path": null - }, - { - "description": "Weekly Box Office Nº1 from 1982", - "favorite_count": 0, - "id": 5576, - "item_count": 647, - "iso_639_1": "es", - "list_type": "movie", - "name": "Weekly Box Office Nº1 from 1982", - "poster_path": "/yTpKlgaNw3fEBndyDYPg3hRloR5.jpg" - }, - { - "description": "", - "favorite_count": 0, - "id": 4023, - "item_count": 1072, - "iso_639_1": "it", - "list_type": "movie", - "name": "Dvd collection", - "poster_path": "/sHGO5Ct2Vo0KPVnSEmSf3Zo5MIl.jpg" - }, - { - "description": "Películas para recomendar", - "favorite_count": 0, - "id": 10354, - "item_count": 33, - "iso_639_1": "en", - "list_type": "movie", - "name": "Peliculones", - "poster_path": null - }, - { - "description": "", - "favorite_count": 0, - "id": 10141, - "item_count": 304, - "iso_639_1": "en", - "list_type": "movie", - "name": "R3ST", - "poster_path": null - }, - { - "description": "", - "favorite_count": 0, - "id": 5829, - "item_count": 396, - "iso_639_1": "de", - "list_type": "movie", - "name": "Criss Filme", - "poster_path": "/gnNU653Lm0cCpdYDaOgjTREf6JI.jpg" - }, - { - "description": "movies that I've watched", - "favorite_count": 0, - "id": 6357, - "item_count": 1690, - "iso_639_1": "en", - "list_type": "movie", - "name": "watched", - "poster_path": "/7o7fCNaruJGrTjWpmmK2jj8rE7Q.jpg" - }, - { - "description": "", - "favorite_count": 0, - "id": 9267, - "item_count": 121, - "iso_639_1": "en", - "list_type": "movie", - "name": "Dangerous Hill Classics", - "poster_path": "/f7KYM1uO8f2duhoSY3Bps55mIe.jpg" - }, - { - "description": "List maintained by Movie Collection, the iOS app.", - "favorite_count": 0, - "id": 3136, - "item_count": 185, - "iso_639_1": "en", - "list_type": "movie", - "name": "Movie Collection", - "poster_path": "/koLwUfgmlT2kr0twamPJ8l6eQIp.jpg" - }, - { - "description": "", - "favorite_count": 0, - "id": 4557, - "item_count": 591, - "iso_639_1": "hu", - "list_type": "movie", - "name": "Watched", - "poster_path": "/43pgav2uIG0ZNGdcaZX1v073ITv.jpg" - }, - { - "description": "", - "favorite_count": 0, - "id": 12467, - "item_count": 13, - "iso_639_1": "en", - "list_type": "movie", - "name": "Bradd", - "poster_path": null - }, - { - "description": "", - "favorite_count": 0, - "id": 4280, - "item_count": 390, - "iso_639_1": "it", - "list_type": "movie", - "name": "MY COLLECTION", - "poster_path": "/noLXB6fiDAl9uC6O2W26kCDXIFl.jpg" - }, - { - "description": "Movies that I have watched.", - "favorite_count": 0, - "id": 10482, - "item_count": 567, - "iso_639_1": "en", - "list_type": "movie", - "name": "Watched", - "poster_path": null - }, - { - "description": "DVDs I have", - "favorite_count": 0, - "id": 11773, - "item_count": 1158, - "iso_639_1": "en", - "list_type": "movie", - "name": "DVD Collection", - "poster_path": null - } - ], - "total_pages": 18, - "total_results": 358 -} diff --git a/airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/movies_now_playing.json b/airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/movies_now_playing.json deleted file mode 100644 index 87054cdca26e..000000000000 --- a/airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/movies_now_playing.json +++ /dev/null @@ -1,158 +0,0 @@ -{ - "definitions": {}, - "$schema": "http://json-schema.org/draft-07/schema#", - "$id": "https://example.com/object1666853486.json", - "title": "Root", - "type": "object", - "properties": { - "page": { - "$id": "#root/page", - "title": "Page", - "type": "integer", - "default": 0 - }, - "results": { - "$id": "#root/results", - "title": "Results", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/items", - "title": "Items", - "type": "object", - "properties": { - "poster_path": { - "$id": "#root/results/items/poster_path", - "title": "Poster_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "adult": { - "$id": "#root/results/items/adult", - "title": "Adult", - "type": "boolean", - "default": true - }, - "overview": { - "$id": "#root/results/items/overview", - "title": "Overview", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "release_date": { - "$id": "#root/results/items/release_date", - "title": "Release_date", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "genre_ids": { - "$id": "#root/results/items/genre_ids", - "title": "Genre_ids", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/items/genre_ids/items", - "title": "Items", - "type": "integer", - "default": 0 - } - }, - "id": { - "$id": "#root/results/items/id", - "title": "Id", - "type": "integer", - "default": 0 - }, - "original_title": { - "$id": "#root/results/items/original_title", - "title": "Original_title", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "original_language": { - "$id": "#root/results/items/original_language", - "title": "Original_language", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "title": { - "$id": "#root/results/items/title", - "title": "Title", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "backdrop_path": { - "$id": "#root/results/items/backdrop_path", - "title": "Backdrop_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "popularity": { - "$id": "#root/results/items/popularity", - "title": "Popularity", - "type": "number", - "default": 0.0 - }, - "vote_count": { - "$id": "#root/results/items/vote_count", - "title": "Vote_count", - "type": "integer", - "default": 0 - }, - "video": { - "$id": "#root/results/items/video", - "title": "Video", - "type": "boolean", - "default": true - }, - "vote_average": { - "$id": "#root/results/items/vote_average", - "title": "Vote_average", - "type": "number", - "default": 0.0 - } - } - } - }, - "dates": { - "$id": "#root/dates", - "title": "Dates", - "type": "object", - "properties": { - "maximum": { - "$id": "#root/dates/maximum", - "title": "Maximum", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "minimum": { - "$id": "#root/dates/minimum", - "title": "Minimum", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - }, - "total_pages": { - "$id": "#root/total_pages", - "title": "Total_pages", - "type": "integer", - "default": 0 - }, - "total_results": { - "$id": "#root/total_results", - "title": "Total_results", - "type": "integer", - "default": 0 - } - } -} diff --git a/airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/movies_popular.json b/airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/movies_popular.json deleted file mode 100644 index 67ae3473ae8c..000000000000 --- a/airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/movies_popular.json +++ /dev/null @@ -1,137 +0,0 @@ -{ - "definitions": {}, - "$schema": "http://json-schema.org/draft-07/schema#", - "$id": "https://example.com/object1666853522.json", - "title": "Root", - "type": "object", - "properties": { - "page": { - "$id": "#root/page", - "title": "Page", - "type": "integer", - "default": 0 - }, - "results": { - "$id": "#root/results", - "title": "Results", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/items", - "title": "Items", - "type": "object", - "properties": { - "poster_path": { - "$id": "#root/results/items/poster_path", - "title": "Poster_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "adult": { - "$id": "#root/results/items/adult", - "title": "Adult", - "type": "boolean", - "default": true - }, - "overview": { - "$id": "#root/results/items/overview", - "title": "Overview", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "release_date": { - "$id": "#root/results/items/release_date", - "title": "Release_date", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "genre_ids": { - "$id": "#root/results/items/genre_ids", - "title": "Genre_ids", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/items/genre_ids/items", - "title": "Items", - "type": "integer", - "default": 0 - } - }, - "id": { - "$id": "#root/results/items/id", - "title": "Id", - "type": "integer", - "default": 0 - }, - "original_title": { - "$id": "#root/results/items/original_title", - "title": "Original_title", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "original_language": { - "$id": "#root/results/items/original_language", - "title": "Original_language", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "title": { - "$id": "#root/results/items/title", - "title": "Title", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "backdrop_path": { - "$id": "#root/results/items/backdrop_path", - "title": "Backdrop_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "popularity": { - "$id": "#root/results/items/popularity", - "title": "Popularity", - "type": "number", - "default": 0.0 - }, - "vote_count": { - "$id": "#root/results/items/vote_count", - "title": "Vote_count", - "type": "integer", - "default": 0 - }, - "video": { - "$id": "#root/results/items/video", - "title": "Video", - "type": "boolean", - "default": true - }, - "vote_average": { - "$id": "#root/results/items/vote_average", - "title": "Vote_average", - "type": "number", - "default": 0.0 - } - } - } - }, - "total_results": { - "$id": "#root/total_results", - "title": "Total_results", - "type": "integer", - "default": 0 - }, - "total_pages": { - "$id": "#root/total_pages", - "title": "Total_pages", - "type": "integer", - "default": 0 - } - } -} diff --git a/airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/movies_recommendations.json b/airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/movies_recommendations.json deleted file mode 100644 index ef3808248ed2..000000000000 --- a/airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/movies_recommendations.json +++ /dev/null @@ -1,135 +0,0 @@ -{ - "definitions": {}, - "$schema": "http://json-schema.org/draft-07/schema#", - "$id": "https://example.com/object1666852992.json", - "title": "Root", - "type": "object", - "properties": { - "page": { - "$id": "#root/page", - "title": "Page", - "type": "integer", - "default": 0 - }, - "results": { - "$id": "#root/results", - "title": "Results", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/items", - "title": "Items", - "type": "object", - "properties": { - "adult": { - "$id": "#root/results/items/adult", - "title": "Adult", - "type": "boolean", - "default": true - }, - "backdrop_path": { - "$id": "#root/results/items/backdrop_path", - "title": "Backdrop_path", - "type": ["string", "null"], - "default": null - }, - "genre_ids": { - "$id": "#root/results/items/genre_ids", - "title": "Genre_ids", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/items/genre_ids/items", - "title": "Items", - "type": "integer", - "default": 0 - } - }, - "id": { - "$id": "#root/results/items/id", - "title": "Id", - "type": "integer", - "default": 0 - }, - "original_language": { - "$id": "#root/results/items/original_language", - "title": "Original_language", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "original_title": { - "$id": "#root/results/items/original_title", - "title": "Original_title", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "overview": { - "$id": "#root/results/items/overview", - "title": "Overview", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "release_date": { - "$id": "#root/results/items/release_date", - "title": "Release_date", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "poster_path": { - "$id": "#root/results/items/poster_path", - "title": "Poster_path", - "type": ["string", "null"], - "default": null - }, - "popularity": { - "$id": "#root/results/items/popularity", - "title": "Popularity", - "type": "number", - "default": 0.0 - }, - "title": { - "$id": "#root/results/items/title", - "title": "Title", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "video": { - "$id": "#root/results/items/video", - "title": "Video", - "type": "boolean", - "default": true - }, - "vote_average": { - "$id": "#root/results/items/vote_average", - "title": "Vote_average", - "type": ["number", "integer", "string"], - "default": 0 - }, - "vote_count": { - "$id": "#root/results/items/vote_count", - "title": "Vote_count", - "type": "integer", - "default": 0 - } - } - } - }, - "total_pages": { - "$id": "#root/total_pages", - "title": "Total_pages", - "type": "integer", - "default": 0 - }, - "total_results": { - "$id": "#root/total_results", - "title": "Total_results", - "type": "integer", - "default": 0 - } - } -} diff --git a/airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/movies_releases_dates.json b/airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/movies_releases_dates.json deleted file mode 100644 index 6e24834e3d7f..000000000000 --- a/airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/movies_releases_dates.json +++ /dev/null @@ -1,75 +0,0 @@ -{ - "definitions": {}, - "$schema": "http://json-schema.org/draft-07/schema#", - "$id": "https://example.com/object1666853037.json", - "title": "Root", - "type": "object", - "properties": { - "id": { - "$id": "#root/id", - "title": "Id", - "type": "integer", - "default": 0 - }, - "results": { - "$id": "#root/results", - "title": "Results", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/items", - "title": "Items", - "type": "object", - "properties": { - "iso_3166_1": { - "$id": "#root/results/items/iso_3166_1", - "title": "Iso_3166_1", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "release_dates": { - "$id": "#root/results/items/release_dates", - "title": "Release_dates", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/items/release_dates/items", - "title": "Items", - "type": "object", - "properties": { - "certification": { - "$id": "#root/results/items/release_dates/items/certification", - "title": "Certification", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "iso_639_1": { - "$id": "#root/results/items/release_dates/items/iso_639_1", - "title": "Iso_639_1", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "release_date": { - "$id": "#root/results/items/release_dates/items/release_date", - "title": "Release_date", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "type": { - "$id": "#root/results/items/release_dates/items/type", - "title": "Type", - "type": "integer", - "default": 0 - } - } - } - } - } - } - } - } -} diff --git a/airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/movies_reviews.json b/airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/movies_reviews.json deleted file mode 100644 index d7130ee3d3b7..000000000000 --- a/airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/movies_reviews.json +++ /dev/null @@ -1,122 +0,0 @@ -{ - "definitions": {}, - "$schema": "http://json-schema.org/draft-07/schema#", - "$id": "https://example.com/object1666853293.json", - "title": "Root", - "type": "object", - "properties": { - "id": { - "$id": "#root/id", - "title": "Id", - "type": "integer", - "default": 0 - }, - "page": { - "$id": "#root/page", - "title": "Page", - "type": "integer", - "default": 0 - }, - "results": { - "$id": "#root/results", - "title": "Results", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/items", - "title": "Items", - "type": "object", - "properties": { - "author": { - "$id": "#root/results/items/author", - "title": "Author", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "author_details": { - "$id": "#root/results/items/author_details", - "title": "Author_details", - "type": "object", - "properties": { - "name": { - "$id": "#root/results/items/author_details/name", - "title": "Name", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "username": { - "$id": "#root/results/items/author_details/username", - "title": "Username", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "avatar_path": { - "$id": "#root/results/items/author_details/avatar_path", - "title": "Avatar_path", - "type": ["null", "string"], - "default": "", - "pattern": "^.*$" - }, - "rating": { - "$id": "#root/results/items/author_details/rating", - "title": "Rating", - "type": ["null", "string"], - "default": null - } - } - }, - "content": { - "$id": "#root/results/items/content", - "title": "Content", - "type": "string", - "default": "", - "pattern": "^.*" - }, - "created_at": { - "$id": "#root/results/items/created_at", - "title": "Created_at", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "id": { - "$id": "#root/results/items/id", - "title": "Id", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "updated_at": { - "$id": "#root/results/items/updated_at", - "title": "Updated_at", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "url": { - "$id": "#root/results/items/url", - "title": "Url", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - }, - "total_pages": { - "$id": "#root/total_pages", - "title": "Total_pages", - "type": "integer", - "default": 0 - }, - "total_results": { - "$id": "#root/total_results", - "title": "Total_results", - "type": "integer", - "default": 0 - } - } -} diff --git a/airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/movies_similar_movies.json b/airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/movies_similar_movies.json deleted file mode 100644 index 5af5feb86db2..000000000000 --- a/airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/movies_similar_movies.json +++ /dev/null @@ -1,135 +0,0 @@ -{ - "definitions": {}, - "$schema": "http://json-schema.org/draft-07/schema#", - "$id": "https://example.com/object1666853122.json", - "title": "Root", - "type": "object", - "properties": { - "page": { - "$id": "#root/page", - "title": "Page", - "type": "integer", - "default": 0 - }, - "results": { - "$id": "#root/results", - "title": "Results", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/items", - "title": "Items", - "type": "object", - "properties": { - "adult": { - "$id": "#root/results/items/adult", - "title": "Adult", - "type": "boolean", - "default": true - }, - "backdrop_path": { - "$id": "#root/results/items/backdrop_path", - "title": "Backdrop_path", - "type": ["string", "null"], - "default": null - }, - "genre_ids": { - "$id": "#root/results/items/genre_ids", - "title": "Genre_ids", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/items/genre_ids/items", - "title": "Items", - "type": "integer", - "default": 0 - } - }, - "id": { - "$id": "#root/results/items/id", - "title": "Id", - "type": "integer", - "default": 0 - }, - "original_language": { - "$id": "#root/results/items/original_language", - "title": "Original_language", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "original_title": { - "$id": "#root/results/items/original_title", - "title": "Original_title", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "overview": { - "$id": "#root/results/items/overview", - "title": "Overview", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "release_date": { - "$id": "#root/results/items/release_date", - "title": "Release_date", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "poster_path": { - "$id": "#root/results/items/poster_path", - "title": "Poster_path", - "type": ["string", "null"], - "default": null - }, - "popularity": { - "$id": "#root/results/items/popularity", - "title": "Popularity", - "type": "number", - "default": 0.0 - }, - "title": { - "$id": "#root/results/items/title", - "title": "Title", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "video": { - "$id": "#root/results/items/video", - "title": "Video", - "type": "boolean", - "default": true - }, - "vote_average": { - "$id": "#root/results/items/vote_average", - "title": "Vote_average", - "type": ["number", "integer", "string"], - "default": 0 - }, - "vote_count": { - "$id": "#root/results/items/vote_count", - "title": "Vote_count", - "type": "integer", - "default": 0 - } - } - } - }, - "total_pages": { - "$id": "#root/total_pages", - "title": "Total_pages", - "type": "integer", - "default": 0 - }, - "total_results": { - "$id": "#root/total_results", - "title": "Total_results", - "type": "integer", - "default": 0 - } - } -} diff --git a/airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/movies_top_rated.json b/airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/movies_top_rated.json deleted file mode 100644 index 5c415fc648e1..000000000000 --- a/airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/movies_top_rated.json +++ /dev/null @@ -1,327 +0,0 @@ -{ - "page": 1, - "results": [ - { - "poster_path": "/9O7gLzmreU0nGkIB6K3BsJbzvNv.jpg", - "adult": false, - "overview": "Framed in the 1940s for the double murder of his wife and her lover, upstanding banker Andy Dufresne begins a new life at the Shawshank prison, where he puts his accounting skills to work for an amoral warden. During his long stretch in prison, Dufresne comes to be admired by the other inmates -- including an older prisoner named Red -- for his integrity and unquenchable sense of hope.", - "release_date": "1994-09-10", - "genre_ids": [18, 80], - "id": 278, - "original_title": "The Shawshank Redemption", - "original_language": "en", - "title": "The Shawshank Redemption", - "backdrop_path": "/xBKGJQsAIeweesB79KC89FpBrVr.jpg", - "popularity": 6.741296, - "vote_count": 5238, - "video": false, - "vote_average": 8.32 - }, - { - "poster_path": "/lIv1QinFqz4dlp5U4lQ6HaiskOZ.jpg", - "adult": false, - "overview": "Under the direction of a ruthless instructor, a talented young drummer begins to pursue perfection at any cost, even his humanity.", - "release_date": "2014-10-10", - "genre_ids": [18, 10402], - "id": 244786, - "original_title": "Whiplash", - "original_language": "en", - "title": "Whiplash", - "backdrop_path": "/6bbZ6XyvgfjhQwbplnUh1LSj1ky.jpg", - "popularity": 10.776056, - "vote_count": 2059, - "video": false, - "vote_average": 8.29 - }, - { - "poster_path": "/d4KNaTrltq6bpkFS01pYtyXa09m.jpg", - "adult": false, - "overview": "The story spans the years from 1945 to 1955 and chronicles the fictional Italian-American Corleone crime family. When organized crime family patriarch Vito Corleone barely survives an attempt on his life, his youngest son, Michael, steps in to take care of the would-be killers, launching a campaign of bloody revenge.", - "release_date": "1972-03-15", - "genre_ids": [18, 80], - "id": 238, - "original_title": "The Godfather", - "original_language": "en", - "title": "The Godfather", - "backdrop_path": "/6xKCYgH16UuwEGAyroLU6p8HLIn.jpg", - "popularity": 4.554654, - "vote_count": 3570, - "video": false, - "vote_average": 8.26 - }, - { - "poster_path": "/ynXoOxmDHNQ4UAy0oU6avW71HVW.jpg", - "adult": false, - "overview": "Spirited Away is an Oscar winning Japanese animated film about a ten year old girl who wanders away from her parents along a path that leads to a world ruled by strange and unusual monster-like animals. Her parents have been changed into pigs along with others inside a bathhouse full of these creatures. Will she ever see the world how it once was?", - "release_date": "2001-07-20", - "genre_ids": [14, 12, 16, 10751], - "id": 129, - "original_title": "千と千尋の神隠し", - "original_language": "ja", - "title": "Spirited Away", - "backdrop_path": "/djgM2d3e42p9GFQObg6lwK2SVw2.jpg", - "popularity": 6.886678, - "vote_count": 2000, - "video": false, - "vote_average": 8.15 - }, - { - "poster_path": "/nBNZadXqJSdt05SHLqgT0HuC5Gm.jpg", - "adult": false, - "overview": "Interstellar chronicles the adventures of a group of explorers who make use of a newly discovered wormhole to surpass the limitations on human space travel and conquer the vast distances involved in an interstellar voyage.", - "release_date": "2014-11-05", - "genre_ids": [12, 18, 878], - "id": 157336, - "original_title": "Interstellar", - "original_language": "en", - "title": "Interstellar", - "backdrop_path": "/xu9zaAevzQ5nnrsXN6JcahLnG4i.jpg", - "popularity": 12.481061, - "vote_count": 5600, - "video": false, - "vote_average": 8.12 - }, - { - "poster_path": "/tHbMIIF51rguMNSastqoQwR0sBs.jpg", - "adult": false, - "overview": "The continuing saga of the Corleone crime family tells the story of a young Vito Corleone growing up in Sicily and in 1910s New York; and follows Michael Corleone in the 1950s as he attempts to expand the family business into Las Vegas, Hollywood and Cuba", - "release_date": "1974-12-20", - "genre_ids": [18, 80], - "id": 240, - "original_title": "The Godfather: Part II", - "original_language": "en", - "title": "The Godfather: Part II", - "backdrop_path": "/gLbBRyS7MBrmVUNce91Hmx9vzqI.jpg", - "popularity": 4.003715, - "vote_count": 1894, - "video": false, - "vote_average": 8.1 - }, - { - "poster_path": "/4mFsNQwbD0F237Tx7gAPotd0nbJ.jpg", - "adult": false, - "overview": "A true story of two men who should never have met - a quadriplegic aristocrat who was injured in a paragliding accident and a young man from the projects.", - "release_date": "2011-11-02", - "genre_ids": [18, 35], - "id": 77338, - "original_title": "Intouchables", - "original_language": "fr", - "title": "The Intouchables", - "backdrop_path": "/ihWaJZCUIon2dXcosjQG2JHJAPN.jpg", - "popularity": 3.698279, - "vote_count": 2740, - "video": false, - "vote_average": 8.1 - }, - { - "poster_path": "/bwVhmPpydv8P7mWfrmL3XVw0MV5.jpg", - "adult": false, - "overview": "In the latter part of World War II, a boy and his sister, orphaned when their mother is killed in the firebombing of Tokyo, are left to survive on their own in what remains of civilian life in Japan. The plot follows this boy and his sister as they do their best to survive in the Japanese countryside, battling hunger, prejudice, and pride in their own quiet, personal battle.", - "release_date": "1988-04-16", - "genre_ids": [16, 18, 10751, 10752], - "id": 12477, - "original_title": "火垂るの墓", - "original_language": "ja", - "title": "Grave of the Fireflies", - "backdrop_path": "/fCUIuG7y4YKC3hofZ8wsj7zhCpR.jpg", - "popularity": 1.001401, - "vote_count": 430, - "video": false, - "vote_average": 8.07 - }, - { - "poster_path": "/yPisjyLweCl1tbgwgtzBCNCBle.jpg", - "adult": false, - "overview": "Told from the perspective of businessman Oskar Schindler who saved over a thousand Jewish lives from the Nazis while they worked as slaves in his factory. Schindler’s List is based on a true story, illustrated in black and white and controversially filmed in many original locations.", - "release_date": "1993-11-29", - "genre_ids": [18, 36, 10752], - "id": 424, - "original_title": "Schindler's List", - "original_language": "en", - "title": "Schindler's List", - "backdrop_path": "/rIpSszng8P0DL0TimSzZbpfnvh1.jpg", - "popularity": 5.372319, - "vote_count": 2308, - "video": false, - "vote_average": 8.07 - }, - { - "poster_path": "/eqFckcHuFCT1FrzLOAvXBb4jHwq.jpg", - "adult": false, - "overview": "Jack is a young boy of 5 years old who has lived all his life in one room. He believes everything within it are the only real things in the world. But what will happen when his Ma suddenly tells him that there are other things outside of Room?", - "release_date": "2015-10-16", - "genre_ids": [18, 53], - "id": 264644, - "original_title": "Room", - "original_language": "en", - "title": "Room", - "backdrop_path": "/tBhp8MGaiL3BXpPCSl5xY397sGH.jpg", - "popularity": 5.593128, - "vote_count": 1179, - "video": false, - "vote_average": 8.06 - }, - { - "poster_path": "/f7DImXDebOs148U4uPjI61iDvaK.jpg", - "adult": false, - "overview": "A touching story of an Italian book seller of Jewish ancestry who lives in his own little fairy tale. His creative and happy life would come to an abrupt halt when his entire family is deported to a concentration camp during World War II. While locked up he tries to convince his son that the whole thing is just a game.", - "release_date": "1997-12-20", - "genre_ids": [35, 18], - "id": 637, - "original_title": "La vita è bella", - "original_language": "it", - "title": "Life Is Beautiful", - "backdrop_path": "/bORe0eI72D874TMawOOFvqWS6Xe.jpg", - "popularity": 5.385594, - "vote_count": 1593, - "video": false, - "vote_average": 8.06 - }, - { - "poster_path": "/s0C78plmx3dFcO3WMnoXCz56FiN.jpg", - "adult": false, - "overview": "A boy growing up in Dublin during the 1980s escapes his strained family life by starting a band to impress the mysterious girl he likes.", - "release_date": "2016-04-15", - "genre_ids": [10749, 18, 10402], - "id": 369557, - "original_title": "Sing Street", - "original_language": "en", - "title": "Sing Street", - "backdrop_path": "/9j4UaRypr19wz0BOofwvkPRm1Se.jpg", - "popularity": 3.343073, - "vote_count": 61, - "video": false, - "vote_average": 8.06 - }, - { - "poster_path": "/1hRoyzDtpgMU7Dz4JF22RANzQO7.jpg", - "adult": false, - "overview": "Batman raises the stakes in his war on crime. With the help of Lt. Jim Gordon and District Attorney Harvey Dent, Batman sets out to dismantle the remaining criminal organizations that plague the streets. The partnership proves to be effective, but they soon find themselves prey to a reign of chaos unleashed by a rising criminal mastermind known to the terrified citizens of Gotham as the Joker.", - "release_date": "2008-07-16", - "genre_ids": [18, 28, 80, 53], - "id": 155, - "original_title": "The Dark Knight", - "original_language": "en", - "title": "The Dark Knight", - "backdrop_path": "/nnMC0BM6XbjIIrT4miYmMtPGcQV.jpg", - "popularity": 8.090715, - "vote_count": 7744, - "video": false, - "vote_average": 8.06 - }, - { - "poster_path": "/811DjJTon9gD6hZ8nCjSitaIXFQ.jpg", - "adult": false, - "overview": "A ticking-time-bomb insomniac and a slippery soap salesman channel primal male aggression into a shocking new form of therapy. Their concept catches on, with underground \"fight clubs\" forming in every town, until an eccentric gets in the way and ignites an out-of-control spiral toward oblivion.", - "release_date": "1999-10-14", - "genre_ids": [18], - "id": 550, - "original_title": "Fight Club", - "original_language": "en", - "title": "Fight Club", - "backdrop_path": "/8uO0gUM8aNqYLs1OsTBQiXu0fEv.jpg", - "popularity": 6.590102, - "vote_count": 5221, - "video": false, - "vote_average": 8.05 - }, - { - "poster_path": "/dM2w364MScsjFf8pfMbaWUcWrR.jpg", - "adult": false, - "overview": "A burger-loving hit man, his philosophical partner, a drug-addled gangster's moll and a washed-up boxer converge in this sprawling, comedic crime caper. Their adventures unfurl in three stories that ingeniously trip back and forth in time.", - "release_date": "1994-10-14", - "genre_ids": [53, 80], - "id": 680, - "original_title": "Pulp Fiction", - "original_language": "en", - "title": "Pulp Fiction", - "backdrop_path": "/mte63qJaVnoxkkXbHkdFujBnBgd.jpg", - "popularity": 7.760216, - "vote_count": 4722, - "video": false, - "vote_average": 8.04 - }, - { - "poster_path": "/gzlJkVfWV5VEG5xK25cvFGJgkDz.jpg", - "adult": false, - "overview": "Ashitaka, a prince of the disappearing Ainu tribe, is cursed by a demonized boar god and must journey to the west to find a cure. Along the way, he encounters San, a young human woman fighting to protect the forest, and Lady Eboshi, who is trying to destroy it. Ashitaka must find a way to bring balance to this conflict.", - "release_date": "1997-07-12", - "genre_ids": [12, 14, 16], - "id": 128, - "original_title": "もののけ姫", - "original_language": "ja", - "title": "Princess Mononoke", - "backdrop_path": "/dB2rATwfCbsPGfRLIoluBnKdVHb.jpg", - "popularity": 4.672361, - "vote_count": 954, - "video": false, - "vote_average": 8.04 - }, - { - "poster_path": "/3TpMBcAYH4cxCw5WoRacWodMTCG.jpg", - "adult": false, - "overview": "An urban office worker finds that paper airplanes are instrumental in meeting a girl in ways he never expected.", - "release_date": "2012-11-02", - "genre_ids": [16, 10751, 10749], - "id": 140420, - "original_title": "Paperman", - "original_language": "en", - "title": "Paperman", - "backdrop_path": "/cqn1ynw78Wan37jzs1Ckm7va97G.jpg", - "popularity": 2.907096, - "vote_count": 452, - "video": false, - "vote_average": 8.03 - }, - { - "poster_path": "/pwpGfTImTGifEGgLb3s6LRPd4I6.jpg", - "adult": false, - "overview": "Henry Hill is a small time gangster, who takes part in a robbery with Jimmy Conway and Tommy De Vito, two other gangsters who have set their sights a bit higher. His two partners kill off everyone else involved in the robbery, and slowly start to climb up through the hierarchy of the Mob. Henry, however, is badly affected by his partners success, but will he stoop low enough to bring about the downfall of Jimmy and Tommy?", - "release_date": "1990-09-12", - "genre_ids": [18, 80], - "id": 769, - "original_title": "Goodfellas", - "original_language": "en", - "title": "Goodfellas", - "backdrop_path": "/xDEOxA01480uLTWuvQCw61VmDBt.jpg", - "popularity": 3.783589, - "vote_count": 1528, - "video": false, - "vote_average": 8.02 - }, - { - "poster_path": "/z4ROnCrL77ZMzT0MsNXY5j25wS2.jpg", - "adult": false, - "overview": "A man with a low IQ has accomplished great things in his life and been present during significant historic events - in each case, far exceeding what anyone imagined he could do. Yet, despite all the things he has attained, his one true love eludes him. 'Forrest Gump' is the story of a man who rose above his challenges, and who proved that determination, courage, and love are more important than ability.", - "release_date": "1994-07-06", - "genre_ids": [35, 18, 10749], - "id": 13, - "original_title": "Forrest Gump", - "original_language": "en", - "title": "Forrest Gump", - "backdrop_path": "/ctOEhQiFIHWkiaYp7b0ibSTe5IL.jpg", - "popularity": 6.224491, - "vote_count": 4279, - "video": false, - "vote_average": 8.02 - }, - { - "poster_path": "/5hqbJSmtAimbaP3XcYshCixuUtk.jpg", - "adult": false, - "overview": "A veteran samurai, who has fallen on hard times, answers a village's request for protection from bandits. He gathers 6 other samurai to help him, and they teach the townspeople how to defend themselves, and they supply the samurai with three small meals a day. The film culminates in a giant battle when 40 bandits attack the village.", - "release_date": "1954-04-26", - "genre_ids": [28, 18], - "id": 346, - "original_title": "七人の侍", - "original_language": "ja", - "title": "Seven Samurai", - "backdrop_path": "/61vLiK96sbXeHpQiMxI4CuqBA3z.jpg", - "popularity": 2.93856, - "vote_count": 436, - "video": false, - "vote_average": 8.02 - } - ], - "total_results": 5206, - "total_pages": 261 -} diff --git a/airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/movies_translations.json b/airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/movies_translations.json deleted file mode 100644 index c8247fcccc48..000000000000 --- a/airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/movies_translations.json +++ /dev/null @@ -1,456 +0,0 @@ -{ - "id": 550, - "translations": [ - { - "iso_3166_1": "UA", - "iso_639_1": "uk", - "name": "Український", - "english_name": "Ukrainian", - "data": { - "title": "Бійцівський клуб", - "overview": "Джек, страждає хронічним безсонням і відчайдушно намагається вирватися з нудного життя. Саме тоді він зустрічає Тайлера Дердена, торговця із збоченою філософією. Тайлер впевнений, що самовдосконалення - доля слабких, а саморуйнування - єдине, заради чого варто жити. І ось вже Джек і Тайлер луплять один одному пики на стоянці перед баром, що приносить їм неабияке задоволення. Залучаючи інших чоловіків до простих радощів фізичної жорстокості, Джек і Тайлер засновують таємний Бійцівський Клуб, який має величезний успіх. Але Джека чекає шокуюче відкриття, здатне змінити все...", - "homepage": "" - } - }, - { - "iso_3166_1": "DE", - "iso_639_1": "de", - "name": "Deutsch", - "english_name": "German", - "data": { - "title": "", - "overview": "Ein Yuppie findet beim charismatischen Tyler Durden Unterschlupf, nachdem seine Wohnung in die Luft gejagt wird. Ein Gerangel zwischen den beiden entwickelt sich zu einer Schlägerei, die mit der Erkenntnis endet, dass man sich nach einer ordentlichen Portion Prügel einfach besser fühlt. Der \"Fight Club\" ist geboren. Immer mehr Männer versammeln sich, um sich zu schlagen - und gestärkt in den Alltag zu gehen. Wie ein Virus greift das Konzept um sich, doch für Tyler ist der Kampfverein nur die erste Stufe, um die USA in die Knie zu zwingen.", - "homepage": "" - } - }, - { - "iso_3166_1": "PT", - "iso_639_1": "pt", - "name": "Português", - "english_name": "Portuguese", - "data": { - "title": "Clube de Combate", - "overview": "Jack (Edward Norton) é um executivo que trabalha como investigador de seguros, tem uma boa vida financeira, mas sofre com problemas de insônia. Para tentar se curar, ele começa a freqüentar terapias em grupo, mas sua vida vira de cabeça para baixo quando ele conhece Tyler (Brad Pitt). Com ele, forma um clube da luta, onde pessoas são amigas, mas se esmurram violentamente em algumas noites. Tudo ganha propósitos maiores quando as coisas começam a ficar loucas e surreais.", - "homepage": "https://www.welcometofc.com/" - } - }, - { - "iso_3166_1": "NL", - "iso_639_1": "nl", - "name": "Nederlands", - "english_name": "Dutch", - "data": { - "title": "", - "overview": "Een verzekeringsinspecteur die aan chronische slapeloosheid lijdt probeert wanhopig uit zijn oersaaie bestaan te ontsnappen. Bij toeval ontmoet hij Tyler Durden, een charismatische zeepverkoper met een bizarre levensfilosofie. Tyler gelooft namelijk dat \"zelfverbetering\" enkel voor de zwakken is, het is \"zelfvernieling\" die het leven meer waarde geeft. Samen met Tyler organiseert hij de ultieme vorm van ontspanning: zogeheten \"Fight Clubs\", waar gewone jonge mannen het beest in zichzelf loslaten in blotevuistgevechten. Het bevrijdende effect op de deelnemende mannen doet een vreemd soort kameraadschap ontstaan, dat al snel gevaarlijke vormen aanneemt.", - "homepage": "" - } - }, - { - "iso_3166_1": "RU", - "iso_639_1": "ru", - "name": "Pусский", - "english_name": "Russian", - "data": { - "title": "Бойцовский клуб", - "overview": "Терзаемый хронической бессоницей и отчаянно пытающийся вырваться из мучительно скучной жизни клерк встречает некоего Тайлера Дардена, харизматического торговца мылом с извращенной философией. Тайлер уверен, что самосовершенствование — удел слабых, а саморазрушение — единственное, ради чего стоит жить.", - "homepage": "" - } - }, - { - "iso_3166_1": "IT", - "iso_639_1": "it", - "name": "Italiano", - "english_name": "Italian", - "data": { - "title": "Fight Club", - "overview": "Un uomo di trent'anni è insofferente su tutto e la notte non riesce più a dormire. In cerca di qualche luogo dove scaricare la propria ansia si mette a frequentare quei corsi dove gruppi di malati gravi si riuniscono e confessano agli altri le rispettive situazioni. Mentre si lascia andare alla commozione e al pianto di fronte a quello che vede, l'uomo fa la conoscenza prima di Marla Singer poi di Tyler Durden. Lei è una ragazza a sua volta alla deriva, incapace di scelte o decisioni; lui è un tipo deciso e vigoroso con un'idea precisa in testa. Tyler fa saltare per aria l'appartamento dell'uomo e i due vanno a vivere insieme in una casa fatiscente. Deciso a coinvolgerlo nel suo progetto, Tyler lo fa entrare in un 'Fight Club', uno stanzone sotterraneo dove ci si riunisce per picchiarsi e in questo modo sentirsi di nuovo vivi...", - "homepage": "" - } - }, - { - "iso_3166_1": "TR", - "iso_639_1": "tr", - "name": "Türkçe", - "english_name": "Turkish", - "data": { - "title": "Dövüş Kulübü", - "overview": "Dövüş kulübünün ilk kuralı, dövüş kulübü hakkında konuşmamaktır. Dövüş kulübünün ikinci kuralı da, kulüp hakkında konuşmamaktır... Filmin baş kişisi, sıradan hayatının girdaplarında bunalımlar geçiren bir sigorta müfettişi olan Jack, Kanserli olmadığı halde, uykusuzluğunu yenmek ve hayatına anlam katmak adına, kanserlilere moral destek sağlayan terapi gruplarına katılır. Orada, Marla Singer adlı bir kızla garip bir yakınlık kurar. Bir iş gezisi dönüşü ise, Tyler Durden adlı egzantrik karakterle tanışır. Durden, Jack'in olmak isteyip de olamadığı adam gibidir. Tyler'ın girişimleriyle bir yeraltı faaliyeti olarak başlayan dövüş kulübü, Jack'e hayatında yepyeni kapılar açacaktır... Ve tabii, bu kapılardan ister istemez Marla geçecektir... Fakat... Tyler Durden gerçekte kimdir?", - "homepage": "" - } - }, - { - "iso_3166_1": "SE", - "iso_639_1": "sv", - "name": "svenska", - "english_name": "Swedish", - "data": { - "title": "Fight Club", - "overview": "Brad Pitt och Edward Norton gör två knockoutbra roller i denna häpnadsväckande och originella thriller med ironisk underton av David Fincher, regissören till Seven. Norton spelar Jack, en kroniskt sömnlös man som desperat försöker fly sitt olidligt tråkiga liv. Men så möter han Tyler Durden (Pitt) en karismatisk tvålförsäljare med en snedvriden filosofi. Tyler menar att självförbättring är för de svaga - det är självdestruktion som verkligen gör livet värt att leva. Inom kort är Jack och Tyler i full gång med att mörbulta varandra på en parkeringsplats. Ett renande slagsmål med en endorfinkick utan dess like. För att introducera andra män i denna enkla lycka av fysiskt våld bildar Jack och Tyler en hemlig \"Fight Club\" som snabbt blir omåttligt populär. Men en hemsk överraskning väntar Jack, en sanning som kommer att förändra allt... Filmen innehåller också kommentarer av David Fincher, Brad Pitt, Edward Norton och Helena Bonham Carter.", - "homepage": "" - } - }, - { - "iso_3166_1": "PL", - "iso_639_1": "pl", - "name": "Polski", - "english_name": "Polish", - "data": { - "title": "Podziemny krąg", - "overview": "Co ty możesz o sobie wiedzieć, jeśli nigdy nie walczyłeś? W tym niezwykłym, pełnym niespodziewanych zwrotów akcji i nie pozbawionym swoistego humoru filmie w reżyserii Davida Finchera (\"Siedem\") oryginalne i dynamiczne kreacje stworzyli Brad Pitt (\"Siedem\") i Edward Norton (\"Lęk pierwotny\"). Jack (Norton) cierpi na chroniczną bezsenność i jest całkowicie znudzony swym dotychczasowym życiem. Do czasu, gdy spotyka charyzmatycznego Tylera Durdena (Pitt) - sprzedawcę mydła o dość pokrętnej filozofii życia... Uważa on bowiem, że samo-doskonalenie jest dla słabeuszy, a to co rzeczywiście sprawia, że warto żyć to samo-destrukcja.", - "homepage": "" - } - }, - { - "iso_3166_1": "CZ", - "iso_639_1": "cs", - "name": "Český", - "english_name": "Czech", - "data": { - "title": "Klub rváčů", - "overview": "Když nemůžete půl roku usnout, celý okolní svět vám začne připadat jako nekonečný sen. Všechno kolem vás je nedokonalou xeroxovou kopií sebe sama. Chodíte do práce, díváte se na televizi a jste vděčni za to, když občas ztratíte vědomí a nevíte o světě. Lidí s podobnými problémy moc není, ale mladý úspěšný úředník, který si říká Jack, je jedním z nich. Má slušnou práci, vydělává slušné peníze, ale trpí nejtěžší formou nespavosti. Na služební cestě se Jack seznámí s Tylerem Durdenem, který mu nabídne příbytek pod podmínkou, že mu vrazí pořádnou ránu. Tato \"výměna názorů\" se oběma zalíbí a brzy vznikne první Klub rváčů. Místo, kde můžou mladí muži, znechucení světem, odložit své starosti a stát se na pár minut zvířaty.", - "homepage": "" - } - }, - { - "iso_3166_1": "IL", - "iso_639_1": "he", - "name": "עִבְרִית", - "english_name": "Hebrew", - "data": { - "title": "מועדון קרב", - "overview": "יאפי הסובל מנדודי שינה ועייפות כרונית מתחיל לבקר בסדנאות שיקום של חולי סרטן, אלכוהוליסטים אנונימיים וארגונים אחרים כדי להגיע להתרגשות בחייו. שם הוא פוגש צעירה משועממת ומתחזה כמוהו, איתה הוא מפתח קשר של אהבה/שנאה. במקביל הוא מתחבר אל צעיר ניהיליסט, המתפרנס מייצור סבון משומן אדם ובז לכל מה שקשור לממסד וחוק. השניים מקימים מועדון אגרוף בלתי חוקי לאנשים המחפשים פורקן מחוץ למסגרת הבורגנית. הקרבות מזרימים אדרנלין לדם, אך גם מובילים להקמתה של כת אנרכיסטית, מיליטנטית ומסוכנת.", - "homepage": "" - } - }, - { - "iso_3166_1": "RS", - "iso_639_1": "sr", - "name": "Srpski", - "english_name": "Serbian", - "data": { - "title": "Борилачки клуб", - "overview": "Усамљени безимени тридесетогодишњак (Едвард Нортон), запослен као кординатор за опозив у ауто-компанији, има проблема са несаницом коју покушава да реши на разне начине. У авиону упознаје Тајлера Дардена (Бред Пит), произвођача и продавца сапуна, са којим ће се спријатељити и основати удружење „Борилачки клуб“ које ће од простог малог друштва где људи после напорног дана долазе да се испразне постати тајни и добро организован анархистички покрет.", - "homepage": "" - } - }, - { - "iso_3166_1": "JP", - "iso_639_1": "ja", - "name": "日本語", - "english_name": "Japanese", - "data": { - "title": "ファイト・クラブ", - "overview": "空虚な生活を送るヤング・エグゼクティブのジャックは、謎の男テイラーに導かれるまま、謎の秘密組織「ファイト・クラブ」のメンバーになる。そこは鍛え抜かれた男達が己の拳のみを武器に闘いを繰り広げる、壮絶で危険な空間だった。", - "homepage": "" - } - }, - { - "iso_3166_1": "GR", - "iso_639_1": "el", - "name": "ελληνικά", - "english_name": "Greek", - "data": { - "title": "", - "overview": "Ένα στέλεχος που πάσχει από αϋπνίες βρίσκει τον αληθινό εαυτό του στα \"Fight Club\", όπου συμμετέχει σε αγώνες πυγμαχίας με γυμνά χέρια. Ο ιδρυτής των \"Fight Club\", ωστόσο, αποδεικνύεται μια επικίνδυνη προσωπικότητα, που επιδίδεται σε πράξεις τρομοκρατίας ενάντια στην καθεστηκυία τάξη.", - "homepage": "" - } - }, - { - "iso_3166_1": "BG", - "iso_639_1": "bg", - "name": "български език", - "english_name": "Bulgarian", - "data": { - "title": "Боен клуб", - "overview": "Разказвачът (Едуард Нортън) е самотник, чийто живот е безцелен низ от незначителни случки. Промяната започва едва след запознанството му с агресивния нихилист Джак (Брад Пит). Той го въвежда в подземния свят на тъмни сделки и машинации. Разказвача се включва като участник в кървави боксови двубои, които не му носят очакваното удовлетворение. Постепенно той осъзнава, че губи контрол над себе си, откривайки, че мачовете са част от зловещ план?", - "homepage": "" - } - }, - { - "iso_3166_1": "KR", - "iso_639_1": "ko", - "name": "한국어/조선말", - "english_name": "Korean", - "data": { - "title": "파이트 클럽", - "overview": "자동차 회사의 리콜 심사관으로 일하는 주인공(에드워드 노튼)은 일상의 무료함과 공허함 속에서 늘 새로운 탈출을 꿈꾼다. 그는 비행기에서 자신을 비누 제조업자라고 소개하는 타일러 더든(브래드 피트)을 만난다. 집에 돌아온 주인공은 아파트가 누군가에 의해 폭파되었음을 발견하고, 타일러에게 도움을 청해 함께 생활하게 된다. 어느 날 밤 타일러는 주인공에게 자신을 때려달라고 부탁한다. 사람은 싸워봐야 진정한 자신을 알 수 있다는 것이다. 결국 이들은 매주 토요일 밤 술집 지하에서 맨주먹으로 격투를 벌이는 파이트 클럽을 결성하기에 이르는데...", - "homepage": "" - } - }, - { - "iso_3166_1": "SK", - "iso_639_1": "sk", - "name": "Slovenčina", - "english_name": "Slovak", - "data": { - "title": "Klub bitkárov", - "overview": "Keď nemôžete pol roka zaspať, celý okolitý svet vám začne pripadať ako nekonečný sen. Všetko okolo vás je nedokonalou xeroxovou kópiou seba samého. Chodíte do práce, pozeráte sa na televíziu a ste vďační za to, keď občas stratíte vedomie a neviete o svete. Ľudí s podobnými problémami moc nie je, ale mladý úspešný úradník, ktorý si hovorí Jack, je jedným z nich. Má slušnú prácu, zarába slušné peniaze, ale trpí najťažšou formou nespavosti. Na služobnej ceste sa Jack zoznámi s Tylerom Durdenom, ktorý mu ponúkne príbytok pod podmienkou, že mu vrazí poriadnu ranu. Táto \"výmena názorov\" sa obom zapáči a čoskoro vznikne prvý Klub bitkárov. Miesto, kde môžu mladí muži, znechutení svetom, odložiť svoje starosti a stať sa na pár minút zvieratami.", - "homepage": "" - } - }, - { - "iso_3166_1": "SA", - "iso_639_1": "ar", - "name": "العربية", - "english_name": "Arabic", - "data": { - "title": "", - "overview": "", - "homepage": "" - } - }, - { - "iso_3166_1": "LV", - "iso_639_1": "lv", - "name": "Latviešu", - "english_name": "Latvian", - "data": { - "title": "Cīņas klubs", - "overview": "", - "homepage": "" - } - }, - { - "iso_3166_1": "BR", - "iso_639_1": "pt", - "name": "Português", - "english_name": "Portuguese", - "data": { - "title": "Clube da Luta", - "overview": "Jack (Edward Norton) é um executivo jovem, trabalha como investigador de seguros, mora confortavelmente, mas ele está ficando cada vez mais insatisfeito com sua vida medíocre. Para piorar ele está enfrentando uma terrível crise de insônia, até que encontra uma cura inusitada para o sua falta de sono ao frequentar grupos de auto-ajuda. Nesses encontros ele passa a conviver com pessoas problemáticas como a viciada Marla Singer (Helena Bonham Carter) e a conhecer estranhos como Tyler Durden (Brad Pitt). Misterioso e cheio de ideias, Tyler apresenta para Jack um grupo secreto que se encontra para extravasar suas angústias e tensões através de violentos combates corporais.", - "homepage": "" - } - }, - { - "iso_3166_1": "AZ", - "iso_639_1": "az", - "name": "Azərbaycan", - "english_name": "Azerbaijani", - "data": { - "title": "Döyüshçü Klubu", - "overview": "", - "homepage": "" - } - }, - { - "iso_3166_1": "ET", - "iso_639_1": "et", - "name": "Eesti", - "english_name": "Estonian", - "data": { - "title": "Kaklusklubi", - "overview": "", - "homepage": "" - } - }, - { - "iso_3166_1": "LT", - "iso_639_1": "lt", - "name": "Lietuviškai", - "english_name": "Lithuanian", - "data": { - "title": "Kovos klubas", - "overview": "Nemigos kamuojamas Džekas lankosi įvairiuose nelaimėlių susitikimuose, klausosi jų išpažinčių ir drauge verkia. Jis skraido lėktuvais, kiekvienąkart tikėdamasis katastrofos. Tačiau kartą skrisdamas jis sutinka spalvingą asmenybę. Tailerio gyvenimas nepaprastas - nerūpestingas ir linksmas. Jis kartais linksmai ir nerūpestingai paprašo trenkti jam į galvą... Džekas neatsisako. Todėl tarp draugų užverda rimtos muštynės, ir netrukus jiedu įkuria klubą, kur vaikinai gali muštis iki sąmonės netekimo...", - "homepage": "" - } - }, - { - "iso_3166_1": "MK", - "iso_639_1": "mk", - "name": "", - "english_name": "Macedonian", - "data": { - "title": "Borechki Klub", - "overview": "", - "homepage": "" - } - }, - { - "iso_3166_1": "HR", - "iso_639_1": "hr", - "name": "Hrvatski", - "english_name": "Croatian", - "data": { - "title": "Klub boraca", - "overview": "", - "homepage": "" - } - }, - { - "iso_3166_1": "TW", - "iso_639_1": "tw", - "name": "", - "english_name": "Twi", - "data": { - "title": "鬥陣俱樂部", - "overview": "", - "homepage": "" - } - }, - { - "iso_3166_1": "RO", - "iso_639_1": "ro", - "name": "Română", - "english_name": "Romanian", - "data": { - "title": "Clubul de lupte", - "overview": "Un insomniac gata să cedeze și un vânzător de săpun fără scrupule își canalizează agresiunea masculină într-o formă de terapie nouă și șocantă. Ideea lor se prinde și „cluburi de luptă” se formează în fiecare oraș, până când apare un excentric și pornește o spirală ieșită de sub control către uitare.", - "homepage": "" - } - }, - { - "iso_3166_1": "TW", - "iso_639_1": "zh", - "name": "普通话", - "english_name": "Mandarin", - "data": { - "title": "鬥陣俱樂部", - "overview": "傑克(愛德華諾頓飾演)是一個充滿中年危機意識的人,他非常憎恨自己的生活及一切,再加上他患有嚴重的失眠症,所以他常常參加各種團體諮詢會,只為了能接觸人群。在某一個團體諮詢會上,傑克遇上了一個跟他同樣理由來參加的女煙槍,瑪拉(海倫娜寶漢卡特飾演)。 在一個商務旅行中,傑克在飛機上遇到賣肥皂的商人-泰勒(布萊德彼特飾演),兩人因緣際會地成了好友,並開始創建了「鬥陣俱樂部」:一個讓彼此不戴護具而互毆的聚會,宗旨在發洩情緒。 某夜,泰勒在傑克的公寓中把瑪拉給「上」了,這讓傑克非常忌妒。同時「鬥陣俱樂部」也成了全國性的地下大組織,所有成員都將泰勒視為教父。為了辨識起見,成員還都剃了光頭。 傑克對於「鬥陣俱樂部」的現況及泰勒的瘋狂模樣越來越無法忍受,所以他決定疏遠泰勒。但是,此時的「鬥陣俱樂部」成員卻發起全國性的暴動,他們炸毀了不少建築物......,一切的局勢都是傑克始料未及的,他該如何解決這混亂的現狀?「鬥陣俱樂部」又會瘋狂成什麼樣子? 傑克與泰勒之間的恩恩怨怨會如何了結?", - "homepage": "" - } - }, - { - "iso_3166_1": "MX", - "iso_639_1": "es", - "name": "Español", - "english_name": "Spanish", - "data": { - "title": "El club de la pelea", - "overview": "Un joven hastiado de su gris y monótona vida lucha contra el insomnio. En un viaje en avión conoce a un carismático vendedor de jabón que sostiene una teoría muy particular: el perfeccionismo es cosa de gentes débiles; sólo la autodestrucción hace que la vida merezca la pena. Ambos deciden entonces fundar un club secreto de lucha, donde poder descargar sus frustaciones y su ira, que tendrá un éxito arrollador.", - "homepage": "" - } - }, - { - "iso_3166_1": "SI", - "iso_639_1": "sl", - "name": "Slovenščina", - "english_name": "Slovenian", - "data": { - "title": "Klub golih pesti", - "overview": "Fight Club ni le prispodoba o (samo)destruktivnem begu posameznika iz ujetosti potrošniškega nesmisla, temveč (tudi) parabola upora zoper nezmožnost poistovetenja s prvobitnim moškim/očetovskim principom — odraža se v sprevrženi percepciji psihosocialnih norm in nevrotični konfrontaciji ter boju (dobesedno \"z golimi pestmi\") s samim seboj. Dodajmo še patološke predstave o ljubezenski zvezi in vlogi ženske, metaforični upor maskuliniziranega segmenta potlačene moške dominantnosti, ki v ničemer ne najde prave identifikacije in opore, zato njegov dezorientirani razcepljeni um primanjkljaj kompenzira tako, da ustvarja namišljene alegorične osebnosti — ter izvrstno igralsko zasedbo (Edward Norton, Brad Pitt, Helena Bontham Carter) — pa dobimo enega najbolj izvirnih (in vplivnih) produktov ameriške literature in kinematografije zadnjih desetletij.", - "homepage": "" - } - }, - { - "iso_3166_1": "TH", - "iso_639_1": "th", - "name": "ภาษาไทย", - "english_name": "Thai", - "data": { - "title": "ดิบดวลดิบ", - "overview": "ไทเลอร์ (แบรด พิทท์) กล่าวว่า ทุกสิ่งทุกอย่างที่คุณครอบครองอยู่นั้น ท้ายที่สุดแล้วพวกมันก็จะครอบงำคุณเสีย แต่ถ้าหากคุณสูญสิ้นทุกสิ่งเมื่อใด คุณก็จะกล้าทำอะไรต่อมิอะไรได้อย่างไร้กังวลตลอดไป ซึ่ง Fight Club เปรียบได้กับอิสรภาพแบบนั้น \"", - "homepage": "" - } - }, - { - "iso_3166_1": "US", - "iso_639_1": "en", - "name": "English", - "english_name": "English", - "data": { - "title": "", - "overview": "A ticking-time-bomb insomniac and a slippery soap salesman channel primal male aggression into a shocking new form of therapy. Their concept catches on, with underground \"fight clubs\" forming in every town, until an eccentric gets in the way and ignites an out-of-control spiral toward oblivion.", - "homepage": "https://www.foxmovies.com/movies/fight-club" - } - }, - { - "iso_3166_1": "ES", - "iso_639_1": "es", - "name": "Español", - "english_name": "Spanish", - "data": { - "title": "El club de la lucha", - "overview": "Un joven sin ilusiones lucha contra su insomnio, consecuencia quizás de su hastío por su gris y rutinaria vida. En un viaje en avión conoce a Tyler Durden, un carismático vendedor de jabón que sostiene una filosofía muy particular: el perfeccionismo es cosa de gentes débiles; en cambio, la autodestrucción es lo único que hace que realmente la vida merezca la pena. Ambos deciden entonces formar un club secreto de lucha donde descargar sus frustaciones y su ira que tendrá un éxito arrollador.", - "homepage": "" - } - }, - { - "iso_3166_1": "FR", - "iso_639_1": "fr", - "name": "Français", - "english_name": "French", - "data": { - "title": "Fight Club", - "overview": "Le narrateur, sans identité précise, vit seul, travaille seul, dort seul, mange seul ses plateaux-repas pour une personne comme beaucoup d'autres personnes seules qui connaissent la misère humaine, morale et sexuelle. Mais un jour il fait la rencontre de Tyler Durden, une sorte d'anarchiste entre gourou et philosophe qui prêche l'amour de son prochain. Ensemble ils vont créer le Fight club, un lieu clandestin ou l'on peut retrouver sa virilité, l'échange et la communication.", - "homepage": "" - } - }, - { - "iso_3166_1": "HU", - "iso_639_1": "hu", - "name": "Magyar", - "english_name": "Hungarian", - "data": { - "title": "Harcosok klubja", - "overview": "Amerika nagyvárosainak pincéiben egy titkos szervezet működik: ha egy éjjel az utca összes nyilvános telefonja összetörik, ők jártak ott; ha egy köztéri szobor óriás fémgömbje legurul talapzatáról, és szétrombol egy gyorsétkezdét, az az ő művük; ha egy elegáns bank parkolójának összes autóját rettentően összerondítják a galambok - az sem véletlen. Vigyáznak a leveleinkre, átveszik telefonüzeneteinket, kísérnek az utcán: és még csak készülnek a végső dobásra: a nagy bummra... Pedig az egészet csak két túlzottan unatkozó jóbarát találta ki: azzal kezdték, hogy rájöttek, nincs jobb stresszoldó, mint ha alaposan megverik egymást. Pofonokat adni jó. Pofonokat kapni jó. Számukra ez a boldog élet szabálya.", - "homepage": "" - } - }, - { - "iso_3166_1": "CN", - "iso_639_1": "zh", - "name": "普通话", - "english_name": "Mandarin", - "data": { - "title": "搏击俱乐部", - "overview": "杰克( 爱德华·诺顿 Edward Norton 饰)是一个充满中年危机意识的人,他非常憎恨自己的生活及一切,再加上他患有严重的失眠症,所以他常常参加各种团体谘询会,只为了能接触人群。在某一个团体谘询会上,杰克遇上了一个跟他同样理由来参加的女烟枪,玛拉(海伦娜·邦汉·卡特 Helena Bonham Carter 饰),在莫名激素的影响下,杰克和玛拉一起逃离了谘询会,两人的情愫因而滋生… 一个偶然的机会,杰克遇到了卖肥皂的商人泰勒(布拉德·皮特 Brad Pitt 饰),一个浑身充满叛逆、残酷和暴烈的痞子英雄,并因为自己公寓失火而住进了泰勒破旧不堪的家中。两人因缘际会地成为了好朋友,并创立了“搏击俱乐部”:一个让人们不戴护具而徒手搏击,宗旨在于发泄情绪的地下组织。", - "homepage": "" - } - }, - { - "iso_3166_1": "DK", - "iso_639_1": "da", - "name": "Dansk", - "english_name": "Danish", - "data": { - "title": "Fight Club", - "overview": "Nortons evner som stjerneskuespiller viser sig i rollen som Jack, en kronisk søvnløs der er desperat efter at slippe ud af sit ulideligt kedelige liv. Da møder han Tyler Durden (Pitt), en karismatisk sæbesælger med en usædvanlig livsfilosofi. Tyler synes at udvikling af én selv er for de svage - det er selvdestruktionen der gør livet værd at leve. Inden længe er Jack og Tyler ved at slå hinanden til plukfisk på en parkeringsplads, en slåskamp der giver det ultimative kick. For at introducere andre mænd for de simple glæder ved fysisk vold, danner Jack og Tyler den hemmelige Fight Club der bliver voldsomt populær. Men en chokerende overraskelse der vender op og ned på alt, venter Jack...", - "homepage": "" - } - }, - { - "iso_3166_1": "FI", - "iso_639_1": "fi", - "name": "suomi", - "english_name": "Finnish", - "data": { - "title": "Fight Club", - "overview": "Jack (Norton) kärsii kroonisesta unettomuudesta ja yrittää epätoivoisesti paeta sietämättömän tylsää elämäänsä. Työmatkalla hän tapaa karismaattisen saippuakauppiaan, Tyler Durdenin (Pitt), jolla on vähintäänkin kieroutunut elämänkatsomus. Tyler uskoo itsetuhon olevan elämän suola. Ennen pitkää Jack ja Tyler purkavat patoutumiaan hakkaamalla toisiaan tohjoksi paikallisbaarin parkkipaikalla, ja huomaavat ankaran nyrkkitappelun tuottavan heille äärimmäisen hyvänolontunteen. Jotta muutkin miehet pääsisivät jyvälle tästä fyysisen väkivallan tuottamasta ilosta, Jack ja Tyler perustavat salaisen tappelukerhon, Fight Clubin, jonka suosio on valtava. Mutta Jackia odottaa järkyttävä yllätys, joka muuttaa kaiken.", - "homepage": "" - } - }, - { - "iso_3166_1": "NO", - "iso_639_1": "no", - "name": "Norsk", - "english_name": "Norwegian", - "data": { - "title": "", - "overview": "Jack kjeder seg til han møter Tyler, som mener selvdestruksjon gjør livet verdt å leve. For å introdusere andre menn for de simple gleder ved fysisk vold, danner de den hemmelige Fight Club som blir voldsomt populær. Med Brad Pitt og Edward Norton.", - "homepage": "" - } - }, - { - "iso_3166_1": "IN", - "iso_639_1": "ml", - "name": "", - "english_name": "Malayalam", - "data": { - "title": "ഫൈറ്റ് ക്ലബ്ബ്", - "overview": "", - "homepage": "" - } - }, - { - "iso_3166_1": "IR", - "iso_639_1": "fa", - "name": "فارسی", - "english_name": "Persian", - "data": { - "title": "باشگاه مشت زنی", - "overview": "«راوی» (نورتن)، جوانی پریشان حال پی می برد که به کمک مشت بازی با دست های برهنه، بیش از هر زمان دیگری احساس زنده بودن می کند. او و «تایلر دردن» (پیت) که به دوستانی صمیمی تبدیل شده اند، هفته ای یک بار با هم ملاقات می کنند تا با هم مشت بازی کنند. در حالی که افراد دیگری هم به باشگاه شان می پیوندند، محفل شان به رغم آن که رازی است بین شرکت کننده هایش، شهرت و محبوبیت یک باشگاه زیرزمینی را پیدا می کند.", - "homepage": "" - } - } - ] -} diff --git a/airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/movies_upcoming.json b/airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/movies_upcoming.json deleted file mode 100644 index b279372a6f2b..000000000000 --- a/airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/movies_upcoming.json +++ /dev/null @@ -1,158 +0,0 @@ -{ - "definitions": {}, - "$schema": "http://json-schema.org/draft-07/schema#", - "$id": "https://example.com/object1666853600.json", - "title": "Root", - "type": "object", - "properties": { - "page": { - "$id": "#root/page", - "title": "Page", - "type": "integer", - "default": 0 - }, - "results": { - "$id": "#root/results", - "title": "Results", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/items", - "title": "Items", - "type": "object", - "properties": { - "poster_path": { - "$id": "#root/results/items/poster_path", - "title": "Poster_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "adult": { - "$id": "#root/results/items/adult", - "title": "Adult", - "type": "boolean", - "default": true - }, - "overview": { - "$id": "#root/results/items/overview", - "title": "Overview", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "release_date": { - "$id": "#root/results/items/release_date", - "title": "Release_date", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "genre_ids": { - "$id": "#root/results/items/genre_ids", - "title": "Genre_ids", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/items/genre_ids/items", - "title": "Items", - "type": "integer", - "default": 0 - } - }, - "id": { - "$id": "#root/results/items/id", - "title": "Id", - "type": "integer", - "default": 0 - }, - "original_title": { - "$id": "#root/results/items/original_title", - "title": "Original_title", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "original_language": { - "$id": "#root/results/items/original_language", - "title": "Original_language", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "title": { - "$id": "#root/results/items/title", - "title": "Title", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "backdrop_path": { - "$id": "#root/results/items/backdrop_path", - "title": "Backdrop_path", - "type": ["null", "string"], - "default": "", - "pattern": "^.*$" - }, - "popularity": { - "$id": "#root/results/items/popularity", - "title": "Popularity", - "type": "number", - "default": 0.0 - }, - "vote_count": { - "$id": "#root/results/items/vote_count", - "title": "Vote_count", - "type": "integer", - "default": 0 - }, - "video": { - "$id": "#root/results/items/video", - "title": "Video", - "type": "boolean", - "default": true - }, - "vote_average": { - "$id": "#root/results/items/vote_average", - "title": "Vote_average", - "type": "number", - "default": 0.0 - } - } - } - }, - "dates": { - "$id": "#root/dates", - "title": "Dates", - "type": "object", - "properties": { - "maximum": { - "$id": "#root/dates/maximum", - "title": "Maximum", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "minimum": { - "$id": "#root/dates/minimum", - "title": "Minimum", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - }, - "total_pages": { - "$id": "#root/total_pages", - "title": "Total_pages", - "type": "integer", - "default": 0 - }, - "total_results": { - "$id": "#root/total_results", - "title": "Total_results", - "type": "integer", - "default": 0 - } - } -} diff --git a/airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/movies_videos.json b/airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/movies_videos.json deleted file mode 100644 index e86a8df6c4ec..000000000000 --- a/airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/movies_videos.json +++ /dev/null @@ -1,135 +0,0 @@ -{ - "definitions": {}, - "$schema": "http://json-schema.org/draft-07/schema#", - "$id": "https://example.com/object1666853122.json", - "title": "Root", - "type": "object", - "properties": { - "page": { - "$id": "#root/page", - "title": "Page", - "type": "integer", - "default": 0 - }, - "results": { - "$id": "#root/results", - "title": "Results", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/items", - "title": "Items", - "type": "object", - "properties": { - "adult": { - "$id": "#root/results/items/adult", - "title": "Adult", - "type": "boolean", - "default": true - }, - "backdrop_path": { - "$id": "#root/results/items/backdrop_path", - "title": "Backdrop_path", - "type": "null", - "default": null - }, - "genre_ids": { - "$id": "#root/results/items/genre_ids", - "title": "Genre_ids", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/items/genre_ids/items", - "title": "Items", - "type": "integer", - "default": 0 - } - }, - "id": { - "$id": "#root/results/items/id", - "title": "Id", - "type": "string", - "default": 0 - }, - "original_language": { - "$id": "#root/results/items/original_language", - "title": "Original_language", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "original_title": { - "$id": "#root/results/items/original_title", - "title": "Original_title", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "overview": { - "$id": "#root/results/items/overview", - "title": "Overview", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "release_date": { - "$id": "#root/results/items/release_date", - "title": "Release_date", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "poster_path": { - "$id": "#root/results/items/poster_path", - "title": "Poster_path", - "type": "null", - "default": null - }, - "popularity": { - "$id": "#root/results/items/popularity", - "title": "Popularity", - "type": "number", - "default": 0.0 - }, - "title": { - "$id": "#root/results/items/title", - "title": "Title", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "video": { - "$id": "#root/results/items/video", - "title": "Video", - "type": "boolean", - "default": true - }, - "vote_average": { - "$id": "#root/results/items/vote_average", - "title": "Vote_average", - "type": "integer", - "default": 0 - }, - "vote_count": { - "$id": "#root/results/items/vote_count", - "title": "Vote_count", - "type": "integer", - "default": 0 - } - } - } - }, - "total_pages": { - "$id": "#root/total_pages", - "title": "Total_pages", - "type": "integer", - "default": 0 - }, - "total_results": { - "$id": "#root/total_results", - "title": "Total_results", - "type": "integer", - "default": 0 - } - } -} diff --git a/airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/movies_watch_providers.json b/airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/movies_watch_providers.json deleted file mode 100644 index 6b0e0112bd30..000000000000 --- a/airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/movies_watch_providers.json +++ /dev/null @@ -1,5814 +0,0 @@ -{ - "definitions": {}, - "$schema": "http://json-schema.org/draft-07/schema#", - "$id": "https://example.com/object1666860173.json", - "title": "Root", - "type": "object", - "properties": { - "id": { - "$id": "#root/id", - "title": "Id", - "type": "integer", - "default": 0 - }, - "results": { - "$id": "#root/results", - "title": "Results", - "type": "object", - "properties": { - "AR": { - "$id": "#root/results/AR", - "title": "Ar", - "type": "object", - "properties": { - "link": { - "$id": "#root/results/AR/link", - "title": "Link", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "flatrate": { - "$id": "#root/results/AR/flatrate", - "title": "Flatrate", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/AR/flatrate/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/AR/flatrate/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/AR/flatrate/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/AR/flatrate/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/AR/flatrate/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - }, - "rent": { - "$id": "#root/results/AR/rent", - "title": "Rent", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/AR/rent/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/AR/rent/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/AR/rent/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/AR/rent/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/AR/rent/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - }, - "buy": { - "$id": "#root/results/AR/buy", - "title": "Buy", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/AR/buy/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/AR/buy/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/AR/buy/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/AR/buy/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/AR/buy/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - } - } - }, - "AT": { - "$id": "#root/results/AT", - "title": "At", - "type": "object", - "properties": { - "link": { - "$id": "#root/results/AT/link", - "title": "Link", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "rent": { - "$id": "#root/results/AT/rent", - "title": "Rent", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/AT/rent/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/AT/rent/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/AT/rent/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/AT/rent/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/AT/rent/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - }, - "buy": { - "$id": "#root/results/AT/buy", - "title": "Buy", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/AT/buy/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/AT/buy/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/AT/buy/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/AT/buy/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/AT/buy/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - } - } - }, - "AU": { - "$id": "#root/results/AU", - "title": "Au", - "type": "object", - "properties": { - "link": { - "$id": "#root/results/AU/link", - "title": "Link", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "rent": { - "$id": "#root/results/AU/rent", - "title": "Rent", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/AU/rent/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/AU/rent/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/AU/rent/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/AU/rent/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/AU/rent/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - }, - "buy": { - "$id": "#root/results/AU/buy", - "title": "Buy", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/AU/buy/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/AU/buy/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/AU/buy/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/AU/buy/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/AU/buy/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - }, - "flatrate": { - "$id": "#root/results/AU/flatrate", - "title": "Flatrate", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/AU/flatrate/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/AU/flatrate/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/AU/flatrate/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/AU/flatrate/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/AU/flatrate/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - } - } - }, - "BE": { - "$id": "#root/results/BE", - "title": "Be", - "type": "object", - "properties": { - "link": { - "$id": "#root/results/BE/link", - "title": "Link", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "buy": { - "$id": "#root/results/BE/buy", - "title": "Buy", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/BE/buy/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/BE/buy/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/BE/buy/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/BE/buy/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/BE/buy/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - }, - "flatrate": { - "$id": "#root/results/BE/flatrate", - "title": "Flatrate", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/BE/flatrate/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/BE/flatrate/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/BE/flatrate/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/BE/flatrate/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/BE/flatrate/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - }, - "rent": { - "$id": "#root/results/BE/rent", - "title": "Rent", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/BE/rent/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/BE/rent/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/BE/rent/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/BE/rent/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/BE/rent/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - } - } - }, - "BR": { - "$id": "#root/results/BR", - "title": "Br", - "type": "object", - "properties": { - "link": { - "$id": "#root/results/BR/link", - "title": "Link", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "rent": { - "$id": "#root/results/BR/rent", - "title": "Rent", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/BR/rent/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/BR/rent/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/BR/rent/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/BR/rent/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/BR/rent/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - }, - "buy": { - "$id": "#root/results/BR/buy", - "title": "Buy", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/BR/buy/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/BR/buy/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/BR/buy/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/BR/buy/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/BR/buy/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - }, - "flatrate": { - "$id": "#root/results/BR/flatrate", - "title": "Flatrate", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/BR/flatrate/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/BR/flatrate/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/BR/flatrate/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/BR/flatrate/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/BR/flatrate/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - } - } - }, - "CA": { - "$id": "#root/results/CA", - "title": "Ca", - "type": "object", - "properties": { - "link": { - "$id": "#root/results/CA/link", - "title": "Link", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "rent": { - "$id": "#root/results/CA/rent", - "title": "Rent", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/CA/rent/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/CA/rent/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/CA/rent/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/CA/rent/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/CA/rent/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - }, - "flatrate": { - "$id": "#root/results/CA/flatrate", - "title": "Flatrate", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/CA/flatrate/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/CA/flatrate/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/CA/flatrate/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/CA/flatrate/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/CA/flatrate/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - }, - "buy": { - "$id": "#root/results/CA/buy", - "title": "Buy", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/CA/buy/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/CA/buy/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/CA/buy/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/CA/buy/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/CA/buy/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - } - } - }, - "CH": { - "$id": "#root/results/CH", - "title": "Ch", - "type": "object", - "properties": { - "link": { - "$id": "#root/results/CH/link", - "title": "Link", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "rent": { - "$id": "#root/results/CH/rent", - "title": "Rent", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/CH/rent/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/CH/rent/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/CH/rent/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/CH/rent/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/CH/rent/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - }, - "buy": { - "$id": "#root/results/CH/buy", - "title": "Buy", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/CH/buy/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/CH/buy/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/CH/buy/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/CH/buy/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/CH/buy/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - }, - "flatrate": { - "$id": "#root/results/CH/flatrate", - "title": "Flatrate", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/CH/flatrate/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/CH/flatrate/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/CH/flatrate/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/CH/flatrate/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/CH/flatrate/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - } - } - }, - "CL": { - "$id": "#root/results/CL", - "title": "Cl", - "type": "object", - "properties": { - "link": { - "$id": "#root/results/CL/link", - "title": "Link", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "flatrate": { - "$id": "#root/results/CL/flatrate", - "title": "Flatrate", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/CL/flatrate/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/CL/flatrate/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/CL/flatrate/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/CL/flatrate/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/CL/flatrate/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - }, - "buy": { - "$id": "#root/results/CL/buy", - "title": "Buy", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/CL/buy/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/CL/buy/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/CL/buy/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/CL/buy/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/CL/buy/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - }, - "rent": { - "$id": "#root/results/CL/rent", - "title": "Rent", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/CL/rent/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/CL/rent/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/CL/rent/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/CL/rent/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/CL/rent/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - } - } - }, - "CO": { - "$id": "#root/results/CO", - "title": "Co", - "type": "object", - "properties": { - "link": { - "$id": "#root/results/CO/link", - "title": "Link", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "flatrate": { - "$id": "#root/results/CO/flatrate", - "title": "Flatrate", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/CO/flatrate/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/CO/flatrate/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/CO/flatrate/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/CO/flatrate/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/CO/flatrate/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - }, - "rent": { - "$id": "#root/results/CO/rent", - "title": "Rent", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/CO/rent/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/CO/rent/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/CO/rent/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/CO/rent/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/CO/rent/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - }, - "buy": { - "$id": "#root/results/CO/buy", - "title": "Buy", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/CO/buy/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/CO/buy/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/CO/buy/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/CO/buy/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/CO/buy/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - } - } - }, - "CZ": { - "$id": "#root/results/CZ", - "title": "Cz", - "type": "object", - "properties": { - "link": { - "$id": "#root/results/CZ/link", - "title": "Link", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "buy": { - "$id": "#root/results/CZ/buy", - "title": "Buy", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/CZ/buy/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/CZ/buy/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/CZ/buy/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/CZ/buy/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/CZ/buy/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - }, - "flatrate": { - "$id": "#root/results/CZ/flatrate", - "title": "Flatrate", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/CZ/flatrate/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/CZ/flatrate/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/CZ/flatrate/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/CZ/flatrate/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/CZ/flatrate/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - }, - "rent": { - "$id": "#root/results/CZ/rent", - "title": "Rent", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/CZ/rent/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/CZ/rent/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/CZ/rent/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/CZ/rent/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/CZ/rent/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - } - } - }, - "DE": { - "$id": "#root/results/DE", - "title": "De", - "type": "object", - "properties": { - "link": { - "$id": "#root/results/DE/link", - "title": "Link", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "rent": { - "$id": "#root/results/DE/rent", - "title": "Rent", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/DE/rent/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/DE/rent/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/DE/rent/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/DE/rent/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/DE/rent/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - }, - "buy": { - "$id": "#root/results/DE/buy", - "title": "Buy", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/DE/buy/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/DE/buy/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/DE/buy/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/DE/buy/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/DE/buy/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - } - } - }, - "DK": { - "$id": "#root/results/DK", - "title": "Dk", - "type": "object", - "properties": { - "link": { - "$id": "#root/results/DK/link", - "title": "Link", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "rent": { - "$id": "#root/results/DK/rent", - "title": "Rent", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/DK/rent/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/DK/rent/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/DK/rent/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/DK/rent/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/DK/rent/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - }, - "buy": { - "$id": "#root/results/DK/buy", - "title": "Buy", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/DK/buy/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/DK/buy/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/DK/buy/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/DK/buy/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/DK/buy/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - }, - "flatrate": { - "$id": "#root/results/DK/flatrate", - "title": "Flatrate", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/DK/flatrate/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/DK/flatrate/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/DK/flatrate/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/DK/flatrate/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/DK/flatrate/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - } - } - }, - "EC": { - "$id": "#root/results/EC", - "title": "Ec", - "type": "object", - "properties": { - "link": { - "$id": "#root/results/EC/link", - "title": "Link", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "flatrate": { - "$id": "#root/results/EC/flatrate", - "title": "Flatrate", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/EC/flatrate/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/EC/flatrate/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/EC/flatrate/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/EC/flatrate/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/EC/flatrate/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - }, - "buy": { - "$id": "#root/results/EC/buy", - "title": "Buy", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/EC/buy/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/EC/buy/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/EC/buy/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/EC/buy/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/EC/buy/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - }, - "rent": { - "$id": "#root/results/EC/rent", - "title": "Rent", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/EC/rent/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/EC/rent/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/EC/rent/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/EC/rent/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/EC/rent/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - } - } - }, - "EE": { - "$id": "#root/results/EE", - "title": "Ee", - "type": "object", - "properties": { - "link": { - "$id": "#root/results/EE/link", - "title": "Link", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "flatrate": { - "$id": "#root/results/EE/flatrate", - "title": "Flatrate", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/EE/flatrate/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/EE/flatrate/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/EE/flatrate/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/EE/flatrate/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/EE/flatrate/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - }, - "buy": { - "$id": "#root/results/EE/buy", - "title": "Buy", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/EE/buy/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/EE/buy/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/EE/buy/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/EE/buy/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/EE/buy/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - }, - "rent": { - "$id": "#root/results/EE/rent", - "title": "Rent", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/EE/rent/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/EE/rent/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/EE/rent/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/EE/rent/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/EE/rent/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - } - } - }, - "ES": { - "$id": "#root/results/ES", - "title": "Es", - "type": "object", - "properties": { - "link": { - "$id": "#root/results/ES/link", - "title": "Link", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "rent": { - "$id": "#root/results/ES/rent", - "title": "Rent", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/ES/rent/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/ES/rent/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/ES/rent/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/ES/rent/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/ES/rent/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - }, - "flatrate": { - "$id": "#root/results/ES/flatrate", - "title": "Flatrate", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/ES/flatrate/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/ES/flatrate/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/ES/flatrate/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/ES/flatrate/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/ES/flatrate/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - }, - "buy": { - "$id": "#root/results/ES/buy", - "title": "Buy", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/ES/buy/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/ES/buy/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/ES/buy/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/ES/buy/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/ES/buy/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - } - } - }, - "FI": { - "$id": "#root/results/FI", - "title": "Fi", - "type": "object", - "properties": { - "link": { - "$id": "#root/results/FI/link", - "title": "Link", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "buy": { - "$id": "#root/results/FI/buy", - "title": "Buy", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/FI/buy/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/FI/buy/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/FI/buy/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/FI/buy/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/FI/buy/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - }, - "flatrate": { - "$id": "#root/results/FI/flatrate", - "title": "Flatrate", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/FI/flatrate/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/FI/flatrate/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/FI/flatrate/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/FI/flatrate/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/FI/flatrate/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - }, - "rent": { - "$id": "#root/results/FI/rent", - "title": "Rent", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/FI/rent/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/FI/rent/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/FI/rent/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/FI/rent/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/FI/rent/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - } - } - }, - "FR": { - "$id": "#root/results/FR", - "title": "Fr", - "type": "object", - "properties": { - "link": { - "$id": "#root/results/FR/link", - "title": "Link", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "flatrate": { - "$id": "#root/results/FR/flatrate", - "title": "Flatrate", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/FR/flatrate/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/FR/flatrate/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/FR/flatrate/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/FR/flatrate/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/FR/flatrate/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - }, - "buy": { - "$id": "#root/results/FR/buy", - "title": "Buy", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/FR/buy/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/FR/buy/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/FR/buy/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/FR/buy/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/FR/buy/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - }, - "rent": { - "$id": "#root/results/FR/rent", - "title": "Rent", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/FR/rent/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/FR/rent/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/FR/rent/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/FR/rent/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/FR/rent/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - } - } - }, - "GB": { - "$id": "#root/results/GB", - "title": "Gb", - "type": "object", - "properties": { - "link": { - "$id": "#root/results/GB/link", - "title": "Link", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "rent": { - "$id": "#root/results/GB/rent", - "title": "Rent", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/GB/rent/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/GB/rent/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/GB/rent/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/GB/rent/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/GB/rent/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - }, - "flatrate": { - "$id": "#root/results/GB/flatrate", - "title": "Flatrate", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/GB/flatrate/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/GB/flatrate/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/GB/flatrate/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/GB/flatrate/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/GB/flatrate/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - }, - "buy": { - "$id": "#root/results/GB/buy", - "title": "Buy", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/GB/buy/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/GB/buy/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/GB/buy/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/GB/buy/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/GB/buy/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - } - } - }, - "GR": { - "$id": "#root/results/GR", - "title": "Gr", - "type": "object", - "properties": { - "link": { - "$id": "#root/results/GR/link", - "title": "Link", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "flatrate": { - "$id": "#root/results/GR/flatrate", - "title": "Flatrate", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/GR/flatrate/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/GR/flatrate/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/GR/flatrate/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/GR/flatrate/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/GR/flatrate/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - }, - "rent": { - "$id": "#root/results/GR/rent", - "title": "Rent", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/GR/rent/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/GR/rent/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/GR/rent/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/GR/rent/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/GR/rent/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - }, - "buy": { - "$id": "#root/results/GR/buy", - "title": "Buy", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/GR/buy/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/GR/buy/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/GR/buy/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/GR/buy/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/GR/buy/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - } - } - }, - "HU": { - "$id": "#root/results/HU", - "title": "Hu", - "type": "object", - "properties": { - "link": { - "$id": "#root/results/HU/link", - "title": "Link", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "rent": { - "$id": "#root/results/HU/rent", - "title": "Rent", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/HU/rent/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/HU/rent/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/HU/rent/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/HU/rent/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/HU/rent/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - }, - "buy": { - "$id": "#root/results/HU/buy", - "title": "Buy", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/HU/buy/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/HU/buy/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/HU/buy/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/HU/buy/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/HU/buy/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - }, - "flatrate": { - "$id": "#root/results/HU/flatrate", - "title": "Flatrate", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/HU/flatrate/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/HU/flatrate/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/HU/flatrate/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/HU/flatrate/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/HU/flatrate/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - } - } - }, - "ID": { - "$id": "#root/results/ID", - "title": "Id", - "type": "object", - "properties": { - "link": { - "$id": "#root/results/ID/link", - "title": "Link", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "flatrate": { - "$id": "#root/results/ID/flatrate", - "title": "Flatrate", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/ID/flatrate/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/ID/flatrate/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/ID/flatrate/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/ID/flatrate/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/ID/flatrate/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - }, - "rent": { - "$id": "#root/results/ID/rent", - "title": "Rent", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/ID/rent/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/ID/rent/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/ID/rent/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/ID/rent/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/ID/rent/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - }, - "buy": { - "$id": "#root/results/ID/buy", - "title": "Buy", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/ID/buy/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/ID/buy/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/ID/buy/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/ID/buy/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/ID/buy/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - } - } - }, - "IE": { - "$id": "#root/results/IE", - "title": "Ie", - "type": "object", - "properties": { - "link": { - "$id": "#root/results/IE/link", - "title": "Link", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "rent": { - "$id": "#root/results/IE/rent", - "title": "Rent", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/IE/rent/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/IE/rent/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/IE/rent/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/IE/rent/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/IE/rent/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - }, - "flatrate": { - "$id": "#root/results/IE/flatrate", - "title": "Flatrate", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/IE/flatrate/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/IE/flatrate/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/IE/flatrate/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/IE/flatrate/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/IE/flatrate/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - }, - "buy": { - "$id": "#root/results/IE/buy", - "title": "Buy", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/IE/buy/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/IE/buy/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/IE/buy/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/IE/buy/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/IE/buy/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - } - } - }, - "IN": { - "$id": "#root/results/IN", - "title": "In", - "type": "object", - "properties": { - "link": { - "$id": "#root/results/IN/link", - "title": "Link", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "buy": { - "$id": "#root/results/IN/buy", - "title": "Buy", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/IN/buy/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/IN/buy/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/IN/buy/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/IN/buy/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/IN/buy/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - }, - "flatrate": { - "$id": "#root/results/IN/flatrate", - "title": "Flatrate", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/IN/flatrate/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/IN/flatrate/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/IN/flatrate/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/IN/flatrate/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/IN/flatrate/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - }, - "rent": { - "$id": "#root/results/IN/rent", - "title": "Rent", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/IN/rent/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/IN/rent/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/IN/rent/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/IN/rent/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/IN/rent/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - } - } - }, - "IT": { - "$id": "#root/results/IT", - "title": "It", - "type": "object", - "properties": { - "link": { - "$id": "#root/results/IT/link", - "title": "Link", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "buy": { - "$id": "#root/results/IT/buy", - "title": "Buy", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/IT/buy/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/IT/buy/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/IT/buy/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/IT/buy/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/IT/buy/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - }, - "flatrate": { - "$id": "#root/results/IT/flatrate", - "title": "Flatrate", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/IT/flatrate/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/IT/flatrate/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/IT/flatrate/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/IT/flatrate/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/IT/flatrate/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - }, - "rent": { - "$id": "#root/results/IT/rent", - "title": "Rent", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/IT/rent/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/IT/rent/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/IT/rent/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/IT/rent/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/IT/rent/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - } - } - }, - "JP": { - "$id": "#root/results/JP", - "title": "Jp", - "type": "object", - "properties": { - "link": { - "$id": "#root/results/JP/link", - "title": "Link", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "rent": { - "$id": "#root/results/JP/rent", - "title": "Rent", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/JP/rent/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/JP/rent/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/JP/rent/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/JP/rent/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/JP/rent/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - }, - "flatrate": { - "$id": "#root/results/JP/flatrate", - "title": "Flatrate", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/JP/flatrate/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/JP/flatrate/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/JP/flatrate/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/JP/flatrate/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/JP/flatrate/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - }, - "buy": { - "$id": "#root/results/JP/buy", - "title": "Buy", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/JP/buy/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/JP/buy/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/JP/buy/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/JP/buy/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/JP/buy/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - } - } - }, - "KR": { - "$id": "#root/results/KR", - "title": "Kr", - "type": "object", - "properties": { - "link": { - "$id": "#root/results/KR/link", - "title": "Link", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "buy": { - "$id": "#root/results/KR/buy", - "title": "Buy", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/KR/buy/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/KR/buy/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/KR/buy/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/KR/buy/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/KR/buy/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - }, - "rent": { - "$id": "#root/results/KR/rent", - "title": "Rent", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/KR/rent/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/KR/rent/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/KR/rent/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/KR/rent/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/KR/rent/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - }, - "flatrate": { - "$id": "#root/results/KR/flatrate", - "title": "Flatrate", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/KR/flatrate/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/KR/flatrate/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/KR/flatrate/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/KR/flatrate/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/KR/flatrate/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - } - } - }, - "LT": { - "$id": "#root/results/LT", - "title": "Lt", - "type": "object", - "properties": { - "link": { - "$id": "#root/results/LT/link", - "title": "Link", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "buy": { - "$id": "#root/results/LT/buy", - "title": "Buy", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/LT/buy/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/LT/buy/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/LT/buy/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/LT/buy/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/LT/buy/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - }, - "flatrate": { - "$id": "#root/results/LT/flatrate", - "title": "Flatrate", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/LT/flatrate/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/LT/flatrate/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/LT/flatrate/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/LT/flatrate/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/LT/flatrate/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - } - } - }, - "LV": { - "$id": "#root/results/LV", - "title": "Lv", - "type": "object", - "properties": { - "link": { - "$id": "#root/results/LV/link", - "title": "Link", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "buy": { - "$id": "#root/results/LV/buy", - "title": "Buy", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/LV/buy/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/LV/buy/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/LV/buy/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/LV/buy/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/LV/buy/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - }, - "flatrate": { - "$id": "#root/results/LV/flatrate", - "title": "Flatrate", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/LV/flatrate/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/LV/flatrate/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/LV/flatrate/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/LV/flatrate/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/LV/flatrate/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - } - } - }, - "MX": { - "$id": "#root/results/MX", - "title": "Mx", - "type": "object", - "properties": { - "link": { - "$id": "#root/results/MX/link", - "title": "Link", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "flatrate": { - "$id": "#root/results/MX/flatrate", - "title": "Flatrate", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/MX/flatrate/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/MX/flatrate/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/MX/flatrate/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/MX/flatrate/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/MX/flatrate/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - }, - "rent": { - "$id": "#root/results/MX/rent", - "title": "Rent", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/MX/rent/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/MX/rent/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/MX/rent/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/MX/rent/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/MX/rent/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - }, - "buy": { - "$id": "#root/results/MX/buy", - "title": "Buy", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/MX/buy/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/MX/buy/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/MX/buy/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/MX/buy/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/MX/buy/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - } - } - }, - "MY": { - "$id": "#root/results/MY", - "title": "My", - "type": "object", - "properties": { - "link": { - "$id": "#root/results/MY/link", - "title": "Link", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "rent": { - "$id": "#root/results/MY/rent", - "title": "Rent", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/MY/rent/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/MY/rent/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/MY/rent/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/MY/rent/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/MY/rent/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - }, - "flatrate": { - "$id": "#root/results/MY/flatrate", - "title": "Flatrate", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/MY/flatrate/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/MY/flatrate/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/MY/flatrate/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/MY/flatrate/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/MY/flatrate/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - }, - "buy": { - "$id": "#root/results/MY/buy", - "title": "Buy", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/MY/buy/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/MY/buy/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/MY/buy/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/MY/buy/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/MY/buy/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - } - } - }, - "NL": { - "$id": "#root/results/NL", - "title": "Nl", - "type": "object", - "properties": { - "link": { - "$id": "#root/results/NL/link", - "title": "Link", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "flatrate": { - "$id": "#root/results/NL/flatrate", - "title": "Flatrate", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/NL/flatrate/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/NL/flatrate/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/NL/flatrate/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/NL/flatrate/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/NL/flatrate/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - }, - "buy": { - "$id": "#root/results/NL/buy", - "title": "Buy", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/NL/buy/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/NL/buy/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/NL/buy/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/NL/buy/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/NL/buy/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - }, - "rent": { - "$id": "#root/results/NL/rent", - "title": "Rent", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/NL/rent/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/NL/rent/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/NL/rent/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/NL/rent/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/NL/rent/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - } - } - }, - "NO": { - "$id": "#root/results/NO", - "title": "No", - "type": "object", - "properties": { - "link": { - "$id": "#root/results/NO/link", - "title": "Link", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "buy": { - "$id": "#root/results/NO/buy", - "title": "Buy", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/NO/buy/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/NO/buy/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/NO/buy/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/NO/buy/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/NO/buy/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - }, - "rent": { - "$id": "#root/results/NO/rent", - "title": "Rent", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/NO/rent/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/NO/rent/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/NO/rent/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/NO/rent/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/NO/rent/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - }, - "flatrate": { - "$id": "#root/results/NO/flatrate", - "title": "Flatrate", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/NO/flatrate/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/NO/flatrate/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/NO/flatrate/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/NO/flatrate/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/NO/flatrate/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - } - } - }, - "NZ": { - "$id": "#root/results/NZ", - "title": "Nz", - "type": "object", - "properties": { - "link": { - "$id": "#root/results/NZ/link", - "title": "Link", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "buy": { - "$id": "#root/results/NZ/buy", - "title": "Buy", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/NZ/buy/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/NZ/buy/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/NZ/buy/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/NZ/buy/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/NZ/buy/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - }, - "rent": { - "$id": "#root/results/NZ/rent", - "title": "Rent", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/NZ/rent/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/NZ/rent/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/NZ/rent/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/NZ/rent/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/NZ/rent/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - }, - "flatrate": { - "$id": "#root/results/NZ/flatrate", - "title": "Flatrate", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/NZ/flatrate/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/NZ/flatrate/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/NZ/flatrate/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/NZ/flatrate/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/NZ/flatrate/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - } - } - }, - "PE": { - "$id": "#root/results/PE", - "title": "Pe", - "type": "object", - "properties": { - "link": { - "$id": "#root/results/PE/link", - "title": "Link", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "flatrate": { - "$id": "#root/results/PE/flatrate", - "title": "Flatrate", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/PE/flatrate/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/PE/flatrate/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/PE/flatrate/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/PE/flatrate/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/PE/flatrate/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - }, - "rent": { - "$id": "#root/results/PE/rent", - "title": "Rent", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/PE/rent/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/PE/rent/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/PE/rent/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/PE/rent/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/PE/rent/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - }, - "buy": { - "$id": "#root/results/PE/buy", - "title": "Buy", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/PE/buy/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/PE/buy/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/PE/buy/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/PE/buy/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/PE/buy/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - } - } - }, - "PH": { - "$id": "#root/results/PH", - "title": "Ph", - "type": "object", - "properties": { - "link": { - "$id": "#root/results/PH/link", - "title": "Link", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "rent": { - "$id": "#root/results/PH/rent", - "title": "Rent", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/PH/rent/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/PH/rent/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/PH/rent/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/PH/rent/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/PH/rent/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - }, - "buy": { - "$id": "#root/results/PH/buy", - "title": "Buy", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/PH/buy/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/PH/buy/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/PH/buy/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/PH/buy/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/PH/buy/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - }, - "flatrate": { - "$id": "#root/results/PH/flatrate", - "title": "Flatrate", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/PH/flatrate/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/PH/flatrate/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/PH/flatrate/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/PH/flatrate/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/PH/flatrate/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - } - } - }, - "PL": { - "$id": "#root/results/PL", - "title": "Pl", - "type": "object", - "properties": { - "link": { - "$id": "#root/results/PL/link", - "title": "Link", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "rent": { - "$id": "#root/results/PL/rent", - "title": "Rent", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/PL/rent/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/PL/rent/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/PL/rent/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/PL/rent/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/PL/rent/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - }, - "flatrate": { - "$id": "#root/results/PL/flatrate", - "title": "Flatrate", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/PL/flatrate/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/PL/flatrate/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/PL/flatrate/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/PL/flatrate/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/PL/flatrate/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - }, - "buy": { - "$id": "#root/results/PL/buy", - "title": "Buy", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/PL/buy/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/PL/buy/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/PL/buy/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/PL/buy/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/PL/buy/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - } - } - }, - "PT": { - "$id": "#root/results/PT", - "title": "Pt", - "type": "object", - "properties": { - "link": { - "$id": "#root/results/PT/link", - "title": "Link", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "rent": { - "$id": "#root/results/PT/rent", - "title": "Rent", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/PT/rent/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/PT/rent/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/PT/rent/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/PT/rent/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/PT/rent/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - }, - "flatrate": { - "$id": "#root/results/PT/flatrate", - "title": "Flatrate", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/PT/flatrate/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/PT/flatrate/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/PT/flatrate/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/PT/flatrate/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/PT/flatrate/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - }, - "buy": { - "$id": "#root/results/PT/buy", - "title": "Buy", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/PT/buy/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/PT/buy/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/PT/buy/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/PT/buy/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/PT/buy/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - } - } - }, - "RO": { - "$id": "#root/results/RO", - "title": "Ro", - "type": "object", - "properties": { - "link": { - "$id": "#root/results/RO/link", - "title": "Link", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "flatrate": { - "$id": "#root/results/RO/flatrate", - "title": "Flatrate", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/RO/flatrate/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/RO/flatrate/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/RO/flatrate/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/RO/flatrate/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/RO/flatrate/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - } - } - }, - "RU": { - "$id": "#root/results/RU", - "title": "Ru", - "type": "object", - "properties": { - "link": { - "$id": "#root/results/RU/link", - "title": "Link", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "rent": { - "$id": "#root/results/RU/rent", - "title": "Rent", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/RU/rent/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/RU/rent/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/RU/rent/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/RU/rent/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/RU/rent/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - }, - "flatrate": { - "$id": "#root/results/RU/flatrate", - "title": "Flatrate", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/RU/flatrate/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/RU/flatrate/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/RU/flatrate/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/RU/flatrate/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/RU/flatrate/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - }, - "buy": { - "$id": "#root/results/RU/buy", - "title": "Buy", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/RU/buy/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/RU/buy/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/RU/buy/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/RU/buy/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/RU/buy/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - } - } - }, - "SE": { - "$id": "#root/results/SE", - "title": "Se", - "type": "object", - "properties": { - "link": { - "$id": "#root/results/SE/link", - "title": "Link", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "rent": { - "$id": "#root/results/SE/rent", - "title": "Rent", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/SE/rent/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/SE/rent/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/SE/rent/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/SE/rent/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/SE/rent/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - }, - "flatrate": { - "$id": "#root/results/SE/flatrate", - "title": "Flatrate", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/SE/flatrate/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/SE/flatrate/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/SE/flatrate/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/SE/flatrate/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/SE/flatrate/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - }, - "buy": { - "$id": "#root/results/SE/buy", - "title": "Buy", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/SE/buy/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/SE/buy/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/SE/buy/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/SE/buy/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/SE/buy/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - } - } - }, - "SG": { - "$id": "#root/results/SG", - "title": "Sg", - "type": "object", - "properties": { - "link": { - "$id": "#root/results/SG/link", - "title": "Link", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "flatrate": { - "$id": "#root/results/SG/flatrate", - "title": "Flatrate", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/SG/flatrate/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/SG/flatrate/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/SG/flatrate/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/SG/flatrate/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/SG/flatrate/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - }, - "buy": { - "$id": "#root/results/SG/buy", - "title": "Buy", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/SG/buy/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/SG/buy/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/SG/buy/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/SG/buy/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/SG/buy/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - }, - "rent": { - "$id": "#root/results/SG/rent", - "title": "Rent", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/SG/rent/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/SG/rent/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/SG/rent/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/SG/rent/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/SG/rent/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - } - } - }, - "TH": { - "$id": "#root/results/TH", - "title": "Th", - "type": "object", - "properties": { - "link": { - "$id": "#root/results/TH/link", - "title": "Link", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "flatrate": { - "$id": "#root/results/TH/flatrate", - "title": "Flatrate", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/TH/flatrate/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/TH/flatrate/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/TH/flatrate/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/TH/flatrate/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/TH/flatrate/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - }, - "rent": { - "$id": "#root/results/TH/rent", - "title": "Rent", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/TH/rent/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/TH/rent/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/TH/rent/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/TH/rent/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/TH/rent/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - }, - "buy": { - "$id": "#root/results/TH/buy", - "title": "Buy", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/TH/buy/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/TH/buy/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/TH/buy/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/TH/buy/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/TH/buy/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - } - } - }, - "TR": { - "$id": "#root/results/TR", - "title": "Tr", - "type": "object", - "properties": { - "link": { - "$id": "#root/results/TR/link", - "title": "Link", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "buy": { - "$id": "#root/results/TR/buy", - "title": "Buy", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/TR/buy/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/TR/buy/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/TR/buy/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/TR/buy/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/TR/buy/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - }, - "rent": { - "$id": "#root/results/TR/rent", - "title": "Rent", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/TR/rent/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/TR/rent/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/TR/rent/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/TR/rent/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/TR/rent/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - }, - "flatrate": { - "$id": "#root/results/TR/flatrate", - "title": "Flatrate", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/TR/flatrate/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/TR/flatrate/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/TR/flatrate/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/TR/flatrate/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/TR/flatrate/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - } - } - }, - "US": { - "$id": "#root/results/US", - "title": "Us", - "type": "object", - "properties": { - "link": { - "$id": "#root/results/US/link", - "title": "Link", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "rent": { - "$id": "#root/results/US/rent", - "title": "Rent", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/US/rent/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/US/rent/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/US/rent/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/US/rent/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/US/rent/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - }, - "buy": { - "$id": "#root/results/US/buy", - "title": "Buy", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/US/buy/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/US/buy/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/US/buy/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/US/buy/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/US/buy/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - }, - "flatrate": { - "$id": "#root/results/US/flatrate", - "title": "Flatrate", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/US/flatrate/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/US/flatrate/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/US/flatrate/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/US/flatrate/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/US/flatrate/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - } - } - }, - "VE": { - "$id": "#root/results/VE", - "title": "Ve", - "type": "object", - "properties": { - "link": { - "$id": "#root/results/VE/link", - "title": "Link", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "flatrate": { - "$id": "#root/results/VE/flatrate", - "title": "Flatrate", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/VE/flatrate/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/VE/flatrate/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/VE/flatrate/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/VE/flatrate/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/VE/flatrate/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - }, - "rent": { - "$id": "#root/results/VE/rent", - "title": "Rent", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/VE/rent/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/VE/rent/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/VE/rent/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/VE/rent/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/VE/rent/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - }, - "buy": { - "$id": "#root/results/VE/buy", - "title": "Buy", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/VE/buy/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/VE/buy/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/VE/buy/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/VE/buy/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/VE/buy/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - } - } - }, - "ZA": { - "$id": "#root/results/ZA", - "title": "Za", - "type": "object", - "properties": { - "link": { - "$id": "#root/results/ZA/link", - "title": "Link", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "rent": { - "$id": "#root/results/ZA/rent", - "title": "Rent", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/ZA/rent/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/ZA/rent/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/ZA/rent/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/ZA/rent/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/ZA/rent/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - }, - "buy": { - "$id": "#root/results/ZA/buy", - "title": "Buy", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/ZA/buy/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/ZA/buy/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/ZA/buy/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/ZA/buy/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/ZA/buy/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - }, - "flatrate": { - "$id": "#root/results/ZA/flatrate", - "title": "Flatrate", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/ZA/flatrate/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/ZA/flatrate/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/ZA/flatrate/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/ZA/flatrate/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/ZA/flatrate/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - } - } - } - } - } - } -} diff --git a/airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/search_collections.json b/airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/search_collections.json deleted file mode 100644 index c3178425cbc8..000000000000 --- a/airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/search_collections.json +++ /dev/null @@ -1,67 +0,0 @@ -{ - "definitions": {}, - "$schema": "http://json-schema.org/draft-07/schema#", - "$id": "https://example.com/object1667209129.json", - "title": "Root", - "type": "object", - "properties": { - "page": { - "$id": "#root/page", - "title": "Page", - "type": "integer", - "default": 0 - }, - "results": { - "$id": "#root/results", - "title": "Results", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/items", - "title": "Items", - "type": "object", - "properties": { - "id": { - "$id": "#root/results/items/id", - "title": "Id", - "type": "integer", - "default": 0 - }, - "backdrop_path": { - "$id": "#root/results/items/backdrop_path", - "title": "Backdrop_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "name": { - "$id": "#root/results/items/name", - "title": "Name", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "poster_path": { - "$id": "#root/results/items/poster_path", - "title": "Poster_path", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - }, - "total_pages": { - "$id": "#root/total_pages", - "title": "Total_pages", - "type": "integer", - "default": 0 - }, - "total_results": { - "$id": "#root/total_results", - "title": "Total_results", - "type": "integer", - "default": 0 - } - } -} diff --git a/airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/search_companies.json b/airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/search_companies.json deleted file mode 100644 index bdf989a693cd..000000000000 --- a/airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/search_companies.json +++ /dev/null @@ -1,60 +0,0 @@ -{ - "definitions": {}, - "$schema": "http://json-schema.org/draft-07/schema#", - "$id": "https://example.com/object1667208961.json", - "title": "Root", - "type": "object", - "properties": { - "page": { - "$id": "#root/page", - "title": "Page", - "type": "integer", - "default": 0 - }, - "results": { - "$id": "#root/results", - "title": "Results", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/items", - "title": "Items", - "type": "object", - "properties": { - "id": { - "$id": "#root/results/items/id", - "title": "Id", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/items/logo_path", - "title": "Logo_path", - "type": ["null", "string"], - "default": "", - "pattern": "^.*$" - }, - "name": { - "$id": "#root/results/items/name", - "title": "Name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - }, - "total_pages": { - "$id": "#root/total_pages", - "title": "Total_pages", - "type": "integer", - "default": 0 - }, - "total_results": { - "$id": "#root/total_results", - "title": "Total_results", - "type": "integer", - "default": 0 - } - } -} diff --git a/airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/search_keywords.json b/airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/search_keywords.json deleted file mode 100644 index ce82950a74bc..000000000000 --- a/airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/search_keywords.json +++ /dev/null @@ -1,53 +0,0 @@ -{ - "definitions": {}, - "$schema": "http://json-schema.org/draft-07/schema#", - "$id": "https://example.com/object1667209167.json", - "title": "Root", - "type": "object", - "properties": { - "page": { - "$id": "#root/page", - "title": "Page", - "type": "integer", - "default": 0 - }, - "results": { - "$id": "#root/results", - "title": "Results", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/items", - "title": "Items", - "type": "object", - "properties": { - "id": { - "$id": "#root/results/items/id", - "title": "Id", - "type": "integer", - "default": 0 - }, - "name": { - "$id": "#root/results/items/name", - "title": "Name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - }, - "total_pages": { - "$id": "#root/total_pages", - "title": "Total_pages", - "type": "integer", - "default": 0 - }, - "total_results": { - "$id": "#root/total_results", - "title": "Total_results", - "type": "integer", - "default": 0 - } - } -} diff --git a/airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/search_movies.json b/airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/search_movies.json deleted file mode 100644 index bba41033bc8d..000000000000 --- a/airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/search_movies.json +++ /dev/null @@ -1,137 +0,0 @@ -{ - "definitions": {}, - "$schema": "http://json-schema.org/draft-07/schema#", - "$id": "https://example.com/object1667209325.json", - "title": "Root", - "type": "object", - "properties": { - "page": { - "$id": "#root/page", - "title": "Page", - "type": "integer", - "default": 0 - }, - "results": { - "$id": "#root/results", - "title": "Results", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/items", - "title": "Items", - "type": "object", - "properties": { - "poster_path": { - "$id": "#root/results/items/poster_path", - "title": "Poster_path", - "type": ["null", "string"], - "default": "", - "pattern": "^.*$" - }, - "adult": { - "$id": "#root/results/items/adult", - "title": "Adult", - "type": "boolean", - "default": true - }, - "overview": { - "$id": "#root/results/items/overview", - "title": "Overview", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "release_date": { - "$id": "#root/results/items/release_date", - "title": "Release_date", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "genre_ids": { - "$id": "#root/results/items/genre_ids", - "title": "Genre_ids", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/items/genre_ids/items", - "title": "Items", - "type": "integer", - "default": 0 - } - }, - "id": { - "$id": "#root/results/items/id", - "title": "Id", - "type": "integer", - "default": 0 - }, - "original_title": { - "$id": "#root/results/items/original_title", - "title": "Original_title", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "original_language": { - "$id": "#root/results/items/original_language", - "title": "Original_language", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "title": { - "$id": "#root/results/items/title", - "title": "Title", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "backdrop_path": { - "$id": "#root/results/items/backdrop_path", - "title": "Backdrop_path", - "type": ["null", "string"], - "default": "", - "pattern": "^.*$" - }, - "popularity": { - "$id": "#root/results/items/popularity", - "title": "Popularity", - "type": "number", - "default": 0.0 - }, - "vote_count": { - "$id": "#root/results/items/vote_count", - "title": "Vote_count", - "type": "integer", - "default": 0 - }, - "video": { - "$id": "#root/results/items/video", - "title": "Video", - "type": "boolean", - "default": true - }, - "vote_average": { - "$id": "#root/results/items/vote_average", - "title": "Vote_average", - "type": "number", - "default": 0.0 - } - } - } - }, - "total_results": { - "$id": "#root/total_results", - "title": "Total_results", - "type": "integer", - "default": 0 - }, - "total_pages": { - "$id": "#root/total_pages", - "title": "Total_pages", - "type": "integer", - "default": 0 - } - } -} diff --git a/airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/search_multi.json b/airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/search_multi.json deleted file mode 100644 index 2bfcc5128f16..000000000000 --- a/airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/search_multi.json +++ /dev/null @@ -1,137 +0,0 @@ -{ - "definitions": {}, - "$schema": "http://json-schema.org/draft-07/schema#", - "$id": "https://example.com/object1667210689.json", - "title": "Root", - "type": "object", - "properties": { - "page": { - "$id": "#root/page", - "title": "Page", - "type": "integer", - "default": 0 - }, - "results": { - "$id": "#root/results", - "title": "Results", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/items", - "title": "Items", - "type": "object", - "properties": { - "poster_path": { - "$id": "#root/results/items/poster_path", - "title": "Poster_path", - "type": ["string", "null"], - "default": null - }, - "popularity": { - "$id": "#root/results/items/popularity", - "title": "Popularity", - "type": ["number", "integer"], - "default": 0 - }, - "id": { - "$id": "#root/results/items/id", - "title": "Id", - "type": "integer", - "default": 0 - }, - "overview": { - "$id": "#root/results/items/overview", - "title": "Overview", - "type": "string", - "default": "", - "pattern": "^.*" - }, - "backdrop_path": { - "$id": "#root/results/items/backdrop_path", - "title": "Backdrop_path", - "type": ["string", "null"], - "default": null - }, - "vote_average": { - "$id": "#root/results/items/vote_average", - "title": "Vote_average", - "type": ["number", "integer"], - "default": 0 - }, - "media_type": { - "$id": "#root/results/items/media_type", - "title": "Media_type", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "first_air_date": { - "$id": "#root/results/items/first_air_date", - "title": "First_air_date", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "origin_country": { - "$id": "#root/results/items/origin_country", - "title": "Origin_country", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/items/origin_country/items", - "title": "Items", - "type": "string", - "default": "", - "pattern": "^.*$" - } - }, - "genre_ids": { - "$id": "#root/results/items/genre_ids", - "title": "Genre_ids", - "type": "array", - "default": [] - }, - "original_language": { - "$id": "#root/results/items/original_language", - "title": "Original_language", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "vote_count": { - "$id": "#root/results/items/vote_count", - "title": "Vote_count", - "type": "integer", - "default": 0 - }, - "name": { - "$id": "#root/results/items/name", - "title": "Name", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "original_name": { - "$id": "#root/results/items/original_name", - "title": "Original_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - }, - "total_results": { - "$id": "#root/total_results", - "title": "Total_results", - "type": "integer", - "default": 0 - }, - "total_pages": { - "$id": "#root/total_pages", - "title": "Total_pages", - "type": "integer", - "default": 0 - } - } -} diff --git a/airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/search_people.json b/airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/search_people.json deleted file mode 100644 index 62f31d32864d..000000000000 --- a/airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/search_people.json +++ /dev/null @@ -1,189 +0,0 @@ -{ - "definitions": {}, - "$schema": "http://json-schema.org/draft-07/schema#", - "$id": "https://example.com/object1667210990.json", - "title": "Root", - "type": "object", - "properties": { - "page": { - "$id": "#root/page", - "title": "Page", - "type": "integer", - "default": 0 - }, - "results": { - "$id": "#root/results", - "title": "Results", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/items", - "title": "Items", - "type": "object", - "properties": { - "profile_path": { - "$id": "#root/results/items/profile_path", - "title": "Profile_path", - "type": ["null", "string"], - "default": "", - "pattern": "^.*$" - }, - "adult": { - "$id": "#root/results/items/adult", - "title": "Adult", - "type": "boolean", - "default": true - }, - "id": { - "$id": "#root/results/items/id", - "title": "Id", - "type": "integer", - "default": 0 - }, - "known_for": { - "$id": "#root/results/items/known_for", - "title": "Known_for", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/items/known_for/items", - "title": "Items", - "type": "object", - "properties": { - "poster_path": { - "$id": "#root/results/items/known_for/items/poster_path", - "title": "Poster_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "adult": { - "$id": "#root/results/items/known_for/items/adult", - "title": "Adult", - "type": "boolean", - "default": true - }, - "overview": { - "$id": "#root/results/items/known_for/items/overview", - "title": "Overview", - "type": "string", - "default": "", - "pattern": "^.*" - }, - "release_date": { - "$id": "#root/results/items/known_for/items/release_date", - "title": "Release_date", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "original_title": { - "$id": "#root/results/items/known_for/items/original_title", - "title": "Original_title", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "genre_ids": { - "$id": "#root/results/items/known_for/items/genre_ids", - "title": "Genre_ids", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/items/known_for/items/genre_ids/items", - "title": "Items", - "type": "integer", - "default": 0 - } - }, - "id": { - "$id": "#root/results/items/known_for/items/id", - "title": "Id", - "type": "integer", - "default": 0 - }, - "media_type": { - "$id": "#root/results/items/known_for/items/media_type", - "title": "Media_type", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "original_language": { - "$id": "#root/results/items/known_for/items/original_language", - "title": "Original_language", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "title": { - "$id": "#root/results/items/known_for/items/title", - "title": "Title", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "backdrop_path": { - "$id": "#root/results/items/known_for/items/backdrop_path", - "title": "Backdrop_path", - "type": ["null", "string"], - "default": "", - "pattern": "^.*$" - }, - "popularity": { - "$id": "#root/results/items/known_for/items/popularity", - "title": "Popularity", - "type": "number", - "default": 0.0 - }, - "vote_count": { - "$id": "#root/results/items/known_for/items/vote_count", - "title": "Vote_count", - "type": "integer", - "default": 0 - }, - "video": { - "$id": "#root/results/items/known_for/items/video", - "title": "Video", - "type": "boolean", - "default": true - }, - "vote_average": { - "$id": "#root/results/items/known_for/items/vote_average", - "title": "Vote_average", - "type": "number", - "default": 0.0 - } - } - } - }, - "name": { - "$id": "#root/results/items/name", - "title": "Name", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "popularity": { - "$id": "#root/results/items/popularity", - "title": "Popularity", - "type": "number", - "default": 0.0 - } - } - } - }, - "total_results": { - "$id": "#root/total_results", - "title": "Total_results", - "type": "integer", - "default": 0 - }, - "total_pages": { - "$id": "#root/total_pages", - "title": "Total_pages", - "type": "integer", - "default": 0 - } - } -} diff --git a/airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/search_tv_shows.json b/airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/search_tv_shows.json deleted file mode 100644 index a45e1ff8588d..000000000000 --- a/airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/search_tv_shows.json +++ /dev/null @@ -1,138 +0,0 @@ -{ - "definitions": {}, - "$schema": "http://json-schema.org/draft-07/schema#", - "$id": "https://example.com/object1667666886.json", - "title": "Root", - "type": "object", - "properties": { - "page": { - "$id": "#root/page", - "title": "Page", - "type": "integer", - "default": 0 - }, - "results": { - "$id": "#root/results", - "title": "Results", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/items", - "title": "Items", - "type": "object", - "properties": { - "poster_path": { - "$id": "#root/results/items/poster_path", - "title": "Poster_path", - "type": ["null", "string"], - "default": "", - "pattern": "^.*$" - }, - "popularity": { - "$id": "#root/results/items/popularity", - "title": "Popularity", - "type": "number", - "default": 0.0 - }, - "id": { - "$id": "#root/results/items/id", - "title": "Id", - "type": "integer", - "default": 0 - }, - "backdrop_path": { - "$id": "#root/results/items/backdrop_path", - "title": "Backdrop_path", - "type": ["null", "string"], - "default": "", - "pattern": "^.*$" - }, - "vote_average": { - "$id": "#root/results/items/vote_average", - "title": "Vote_average", - "type": "number", - "default": 0.0 - }, - "overview": { - "$id": "#root/results/items/overview", - "title": "Overview", - "type": ["null", "string"], - "default": "", - "pattern": "^.*$" - }, - "first_air_date": { - "$id": "#root/results/items/first_air_date", - "title": "First_air_date", - "type": ["null", "string"], - "default": "", - "pattern": "^.*$" - }, - "origin_country": { - "$id": "#root/results/items/origin_country", - "title": "Origin_country", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/items/origin_country/items", - "title": "Items", - "type": ["null", "string"], - "default": "", - "pattern": "^.*$" - } - }, - "genre_ids": { - "$id": "#root/results/items/genre_ids", - "title": "Genre_ids", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/items/genre_ids/items", - "title": "Items", - "type": "integer", - "default": 0 - } - }, - "original_language": { - "$id": "#root/results/items/original_language", - "title": "Original_language", - "type": ["null", "string"], - "default": "", - "pattern": "^.*$" - }, - "vote_count": { - "$id": "#root/results/items/vote_count", - "title": "Vote_count", - "type": "integer", - "default": 0 - }, - "name": { - "$id": "#root/results/items/name", - "title": "Name", - "type": ["null", "string"], - "default": "", - "pattern": "^.*$" - }, - "original_name": { - "$id": "#root/results/items/original_name", - "title": "Original_name", - "type": ["null", "string"], - "default": "", - "pattern": "^.*$" - } - } - } - }, - "total_results": { - "$id": "#root/total_results", - "title": "Total_results", - "type": "integer", - "default": 0 - }, - "total_pages": { - "$id": "#root/total_pages", - "title": "Total_pages", - "type": "integer", - "default": 0 - } - } -} diff --git a/airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/trending.json b/airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/trending.json deleted file mode 100644 index e895925782c7..000000000000 --- a/airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/trending.json +++ /dev/null @@ -1,137 +0,0 @@ -{ - "definitions": {}, - "$schema": "http://json-schema.org/draft-07/schema#", - "$id": "https://example.com/object1667211672.json", - "title": "Root", - "type": "object", - "properties": { - "page": { - "$id": "#root/page", - "title": "Page", - "type": "integer", - "default": 0 - }, - "results": { - "$id": "#root/results", - "title": "Results", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/items", - "title": "Items", - "type": "object", - "properties": { - "adult": { - "$id": "#root/results/items/adult", - "title": "Adult", - "type": "boolean", - "default": true - }, - "backdrop_path": { - "$id": "#root/results/items/backdrop_path", - "title": "Backdrop_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "genre_ids": { - "$id": "#root/results/items/genre_ids", - "title": "Genre_ids", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/items/genre_ids/items", - "title": "Items", - "type": "integer", - "default": 0 - } - }, - "id": { - "$id": "#root/results/items/id", - "title": "Id", - "type": "integer", - "default": 0 - }, - "original_language": { - "$id": "#root/results/items/original_language", - "title": "Original_language", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "original_title": { - "$id": "#root/results/items/original_title", - "title": "Original_title", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "overview": { - "$id": "#root/results/items/overview", - "title": "Overview", - "type": "string", - "default": "", - "pattern": "^.*" - }, - "poster_path": { - "$id": "#root/results/items/poster_path", - "title": "Poster_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "release_date": { - "$id": "#root/results/items/release_date", - "title": "Release_date", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "title": { - "$id": "#root/results/items/title", - "title": "Title", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "video": { - "$id": "#root/results/items/video", - "title": "Video", - "type": "boolean", - "default": true - }, - "vote_average": { - "$id": "#root/results/items/vote_average", - "title": "Vote_average", - "type": "number", - "default": 0.0 - }, - "vote_count": { - "$id": "#root/results/items/vote_count", - "title": "Vote_count", - "type": "integer", - "default": 0 - }, - "popularity": { - "$id": "#root/results/items/popularity", - "title": "Popularity", - "type": "number", - "default": 0.0 - } - } - } - }, - "total_pages": { - "$id": "#root/total_pages", - "title": "Total_pages", - "type": "integer", - "default": 0 - }, - "total_results": { - "$id": "#root/total_results", - "title": "Total_results", - "type": "integer", - "default": 0 - } - } -} diff --git a/airbyte-integrations/connectors/source-tmdb/source_tmdb/spec.yaml b/airbyte-integrations/connectors/source-tmdb/source_tmdb/spec.yaml deleted file mode 100644 index 0b99b10e10cb..000000000000 --- a/airbyte-integrations/connectors/source-tmdb/source_tmdb/spec.yaml +++ /dev/null @@ -1,38 +0,0 @@ -documentationUrl: https://docs.airbyte.com/integrations/sources/tmdb -connectionSpecification: - $schema: http://json-schema.org/draft-07/schema# - title: Tmdb Spec - type: object - required: - - api_key - - movie_id - - query - - language - additionalProperties: true - properties: - api_key: - title: Unique key for establishing connection - type: string - description: API Key from tmdb account - airbyte_secret: true - movie_id: - title: Movie ID for targeting movies - type: string - description: Target movie ID, Mandate for movie streams (Example is 550) - examples: - - 550 - - 560 - query: - title: Query for search streams - type: string - description: Target movie ID, Mandate for search streams - examples: - - Marvel - - DC - language: - title: Language for filtering - type: string - description: Language expressed in ISO 639-1 scheme, Mandate for required streams (Example en-US) - examples: - - en-US - - en-UK diff --git a/docs/integrations/sources/tmdb-migrations.md b/docs/integrations/sources/tmdb-migrations.md new file mode 100644 index 000000000000..4a1fa5ed05d8 --- /dev/null +++ b/docs/integrations/sources/tmdb-migrations.md @@ -0,0 +1,8 @@ +# TMDb Migration Guide + +## Upgrading to 1.0.0 + +Version 1.0.0 has a schema change. + +The search_people schema has been changed it's 'type' in schema['properties']['results']['items']['properties']['known_for']['items']['properties']['poster_path'] to be optionally empty +The search_tv_shows schema has been changed it's pattern in schema['properties']['results']['items']['properties']['overview'] to contain both strings and spaces. \ No newline at end of file diff --git a/docs/integrations/sources/tmdb.md b/docs/integrations/sources/tmdb.md index 91b5498b7a4c..324d9f73fde1 100644 --- a/docs/integrations/sources/tmdb.md +++ b/docs/integrations/sources/tmdb.md @@ -94,15 +94,16 @@ TMDb's [API reference](https://developers.themoviedb.org/3/getting-started/intro
Expand to review -| Version | Date | Pull Request | Subject | -| :------ | :--------- | :------------------------------------------------------ | :------------- | +| Version | Date | Pull Request | Subject | +| :------ | :--------- | :------------------------------------------------------- | :------------- | +| 1.0.0 | 2024-07-15 | [39109](https://github.com/airbytehq/airbyte/pull/39109) | Make compatible with builder, fix schema | | 0.1.7 | 2024-07-13 | [41511](https://github.com/airbytehq/airbyte/pull/41511) | Update dependencies | | 0.1.6 | 2024-07-09 | [41181](https://github.com/airbytehq/airbyte/pull/41181) | Update dependencies | | 0.1.5 | 2024-07-06 | [40959](https://github.com/airbytehq/airbyte/pull/40959) | Update dependencies | | 0.1.4 | 2024-06-26 | [40273](https://github.com/airbytehq/airbyte/pull/40273) | Update dependencies | | 0.1.3 | 2024-06-22 | [40095](https://github.com/airbytehq/airbyte/pull/40095) | Update dependencies | -| 0.1.2 | 2024-06-06 | [39305](https://github.com/airbytehq/airbyte/pull/39305) | [autopull] Upgrade base image to v1.2.2 | -| 0.1.1 | 2024-05-21 | [38496](https://github.com/airbytehq/airbyte/pull/38496) | [autopull] base image + poetry + up_to_date | -| 0.1.0 | 2022-10-27 | [Init](https://github.com/airbytehq/airbyte/pull/18561) | Initial commit | +| 0.1.2 | 2024-06-06 | [39305](https://github.com/airbytehq/airbyte/pull/39305) | [autopull] Upgrade base image to v1.2.2 | +| 0.1.1 | 2024-05-21 | [38496](https://github.com/airbytehq/airbyte/pull/38496) | [autopull] base image + poetry + up_to_date | +| 0.1.0 | 2022-10-27 | [Init](https://github.com/airbytehq/airbyte/pull/18561) | Initial commit |