From ae6841078cba2e5fe727bbabf06f26808356ad85 Mon Sep 17 00:00:00 2001 From: Yue Li Date: Mon, 22 Jul 2024 13:18:53 -0700 Subject: [PATCH 1/5] hide initial load timeout field by default for postgres and mssql as we do for other advanced options. --- airbyte-integrations/connectors/source-mssql/metadata.yaml | 2 +- .../connectors/source-mssql/src/main/resources/spec.json | 3 +-- .../src/test-integration/resources/expected_spec.json | 3 +-- airbyte-integrations/connectors/source-postgres/metadata.yaml | 2 +- .../connectors/source-postgres/src/main/resources/spec.json | 3 +-- .../resources/expected_cloud_deployment_spec.json | 3 +-- 6 files changed, 6 insertions(+), 10 deletions(-) diff --git a/airbyte-integrations/connectors/source-mssql/metadata.yaml b/airbyte-integrations/connectors/source-mssql/metadata.yaml index da75aa6925f0f..f998c33b18d47 100644 --- a/airbyte-integrations/connectors/source-mssql/metadata.yaml +++ b/airbyte-integrations/connectors/source-mssql/metadata.yaml @@ -9,7 +9,7 @@ data: connectorSubtype: database connectorType: source definitionId: b5ea17b1-f170-46dc-bc31-cc744ca984c1 - dockerImageTag: 4.1.1 + dockerImageTag: 4.1.2 dockerRepository: airbyte/source-mssql documentationUrl: https://docs.airbyte.com/integrations/sources/mssql githubIssueLabel: source-mssql diff --git a/airbyte-integrations/connectors/source-mssql/src/main/resources/spec.json b/airbyte-integrations/connectors/source-mssql/src/main/resources/spec.json index 30c95a11aae31..d2c2b2b0f4234 100644 --- a/airbyte-integrations/connectors/source-mssql/src/main/resources/spec.json +++ b/airbyte-integrations/connectors/source-mssql/src/main/resources/spec.json @@ -165,8 +165,7 @@ "default": 8, "min": 4, "max": 24, - "order": 6, - "always_show": true + "order": 6 } } }, diff --git a/airbyte-integrations/connectors/source-mssql/src/test-integration/resources/expected_spec.json b/airbyte-integrations/connectors/source-mssql/src/test-integration/resources/expected_spec.json index aefddcce54953..e76ec614b9594 100644 --- a/airbyte-integrations/connectors/source-mssql/src/test-integration/resources/expected_spec.json +++ b/airbyte-integrations/connectors/source-mssql/src/test-integration/resources/expected_spec.json @@ -165,8 +165,7 @@ "default": 8, "min": 4, "max": 24, - "order": 6, - "always_show": true + "order": 6 } } }, diff --git a/airbyte-integrations/connectors/source-postgres/metadata.yaml b/airbyte-integrations/connectors/source-postgres/metadata.yaml index 9441b8774eb94..d806d3de1a7a9 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.6.4 + dockerImageTag: 3.6.5 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/resources/spec.json b/airbyte-integrations/connectors/source-postgres/src/main/resources/spec.json index e3e65baf4a602..e58f4c3cb72b9 100644 --- a/airbyte-integrations/connectors/source-postgres/src/main/resources/spec.json +++ b/airbyte-integrations/connectors/source-postgres/src/main/resources/spec.json @@ -312,8 +312,7 @@ "default": 8, "min": 4, "max": 24, - "order": 10, - "always_show": true + "order": 10 } } }, diff --git a/airbyte-integrations/connectors/source-postgres/src/test-integration/resources/expected_cloud_deployment_spec.json b/airbyte-integrations/connectors/source-postgres/src/test-integration/resources/expected_cloud_deployment_spec.json index b00df053077d8..118504a2c5c54 100644 --- a/airbyte-integrations/connectors/source-postgres/src/test-integration/resources/expected_cloud_deployment_spec.json +++ b/airbyte-integrations/connectors/source-postgres/src/test-integration/resources/expected_cloud_deployment_spec.json @@ -313,8 +313,7 @@ "default": 8, "min": 4, "max": 24, - "order": 10, - "always_show": true + "order": 10 } } }, From 0c10464c1093a16af58f22aa400cdbdcd1d8de5e Mon Sep 17 00:00:00 2001 From: Yue Li Date: Mon, 22 Jul 2024 13:25:28 -0700 Subject: [PATCH 2/5] update README --- docs/integrations/sources/mssql.md | 1 + docs/integrations/sources/postgres.md | 1 + 2 files changed, 2 insertions(+) diff --git a/docs/integrations/sources/mssql.md b/docs/integrations/sources/mssql.md index fa40f7fb09159..345c15bc40b22 100644 --- a/docs/integrations/sources/mssql.md +++ b/docs/integrations/sources/mssql.md @@ -422,6 +422,7 @@ WHERE actor_definition_id ='b5ea17b1-f170-46dc-bc31-cc744ca984c1' AND (configura | Version | Date | Pull Request | Subject | |:--------|:-----------|:------------------------------------------------------------------------------------------------------------------|:------------------------------------------------------------------------------------------------------------------------------------------------| +| 4.1.2 | |2024-07-22 | [42411](https://github.com/airbytehq/airbyte/pull/42411) | Hide the "initial load timeout in hours" field by default in UI | | 4.1.1 | 2024-07-19 | [42122](https://github.com/airbytehq/airbyte/pull/42122) | Improve wass error message + logging. | | 4.1.0 | 2024-07-17 | [42078](https://github.com/airbytehq/airbyte/pull/42078) | WASS analytics + bug fixes. | | 4.0.36 | 2024-07-17 | [41648](https://github.com/airbytehq/airbyte/pull/41648) | Implement WASS. | diff --git a/docs/integrations/sources/postgres.md b/docs/integrations/sources/postgres.md index 2f449ff05fbde..a7b2abc86947f 100644 --- a/docs/integrations/sources/postgres.md +++ b/docs/integrations/sources/postgres.md @@ -311,6 +311,7 @@ According to Postgres [documentation](https://www.postgresql.org/docs/14/datatyp | Version | Date | Pull Request | Subject | |---------|------------|----------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------| +| 3.6.5 | |2024-07-22 | [42411](https://github.com/airbytehq/airbyte/pull/42411) | Hide the "initial load timeout in hours" field by default in UI | | 3.6.4 | 2024-07-17 | [42087](https://github.com/airbytehq/airbyte/pull/42087) | Translate more errors for Postgres source. | | 3.6.3 | 2024-07-19 | [42122](https://github.com/airbytehq/airbyte/pull/42122) | Improve wass error message + logging. | | 3.6.2 | 2024-07-18 | [42108](https://github.com/airbytehq/airbyte/pull/42108) | Disable incremental sync for view streams in xmin replication mode | From daa0ec9b7d8e5cac501a5f488abe08b8852de356 Mon Sep 17 00:00:00 2001 From: Yue Li Date: Mon, 22 Jul 2024 13:28:26 -0700 Subject: [PATCH 3/5] bump up versions --- airbyte-integrations/connectors/source-mssql/metadata.yaml | 2 +- airbyte-integrations/connectors/source-postgres/metadata.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-mssql/metadata.yaml b/airbyte-integrations/connectors/source-mssql/metadata.yaml index f998c33b18d47..81adfe9b314b6 100644 --- a/airbyte-integrations/connectors/source-mssql/metadata.yaml +++ b/airbyte-integrations/connectors/source-mssql/metadata.yaml @@ -9,7 +9,7 @@ data: connectorSubtype: database connectorType: source definitionId: b5ea17b1-f170-46dc-bc31-cc744ca984c1 - dockerImageTag: 4.1.2 + dockerImageTag: 4.1.3 dockerRepository: airbyte/source-mssql documentationUrl: https://docs.airbyte.com/integrations/sources/mssql githubIssueLabel: source-mssql diff --git a/airbyte-integrations/connectors/source-postgres/metadata.yaml b/airbyte-integrations/connectors/source-postgres/metadata.yaml index d806d3de1a7a9..1ad2425bd9a88 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.6.5 + dockerImageTag: 3.6.6 dockerRepository: airbyte/source-postgres documentationUrl: https://docs.airbyte.com/integrations/sources/postgres githubIssueLabel: source-postgres From d589fc3c2ffb2fc33e94e873338244c3b6c87d21 Mon Sep 17 00:00:00 2001 From: Yue Li Date: Mon, 22 Jul 2024 13:59:38 -0700 Subject: [PATCH 4/5] update expected spec used in CAT test. --- .../src/test-integration/resources/expected_spec.json | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-postgres/src/test-integration/resources/expected_spec.json b/airbyte-integrations/connectors/source-postgres/src/test-integration/resources/expected_spec.json index 074474f0f0b66..0324d934428f7 100644 --- a/airbyte-integrations/connectors/source-postgres/src/test-integration/resources/expected_spec.json +++ b/airbyte-integrations/connectors/source-postgres/src/test-integration/resources/expected_spec.json @@ -312,8 +312,7 @@ "default": 8, "min": 4, "max": 24, - "order": 10, - "always_show": true + "order": 10 } } }, From 9d3edabeaa0dfbd0a804f08c97363f098122ae0d Mon Sep 17 00:00:00 2001 From: Yue Li Date: Tue, 23 Jul 2024 01:16:04 -0700 Subject: [PATCH 5/5] bump up version --- airbyte-integrations/connectors/source-postgres/metadata.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/airbyte-integrations/connectors/source-postgres/metadata.yaml b/airbyte-integrations/connectors/source-postgres/metadata.yaml index 1ad2425bd9a88..2007cc580572f 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.6.6 + dockerImageTag: 3.6.7 dockerRepository: airbyte/source-postgres documentationUrl: https://docs.airbyte.com/integrations/sources/postgres githubIssueLabel: source-postgres