1
0
mirror of synced 2025-12-25 11:06:55 -05:00

[source-mssql, cdk]: cherry-pick PR #55701 (#55709)

Co-authored-by: Baptiste Bergmann <baptiste.bergmann@maxa.ai>
Co-authored-by: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com>
Co-authored-by: yue.li@airbyte.io <yue.li@airbyte.io>
This commit is contained in:
devin-ai-integration[bot]
2025-03-14 16:03:18 -07:00
committed by GitHub
parent 8ea64c15f1
commit 03b7b9bc73
5 changed files with 5 additions and 2 deletions

View File

@@ -174,6 +174,7 @@ corresponds to that version.
| Version | Date | Pull Request | Subject |
|:-----------|:-----------|:------------------------------------------------------------|:---------------------------------------------------------------------------------------------------------------------------------------------------------------|
| 0.48.8 | 2025-03-11 | [\#55709](https://github.com/airbytehq/airbyte/pull/55709) | Filter unwanted tables in discover to prevent null table issues |
| 0.48.7 | 2025-01-26 | [\#51596](https://github.com/airbytehq/airbyte/pull/51596) | Make efficient table discovery during read |
| 0.48.6 | 2025-01-26 | [\#51596](https://github.com/airbytehq/airbyte/pull/51596) | Fix flaky source mssql tests |
| 0.48.5 | 2025-01-16 | [\#51583](https://github.com/airbytehq/airbyte/pull/51583) | Also save SSL key to /tmp in destination-postgres |

View File

@@ -1 +1 @@
version=0.48.7
version=0.48.8

View File

@@ -576,6 +576,7 @@ abstract class AbstractJdbcSource<Datatype>(
}
.values
.map { fields: List<JsonNode> -> jsonFieldListToTableInfo(fields) }
.filter { ti: TableInfo<CommonField<Datatype>> -> ti.name == tableName }
.firstOrNull()
}

View File

@@ -5,7 +5,7 @@ plugins {
airbyteJavaConnector {
cdkVersionRequired = '0.48.7'
features = ['db-sources']
useLocalCdk = false
useLocalCdk = true
}
java {

View File

@@ -445,6 +445,7 @@ WHERE actor_definition_id ='b5ea17b1-f170-46dc-bc31-cc744ca984c1' AND (configura
| Version | Date | Pull Request | Subject |
|:--------|:-----------|:------------------------------------------------------------------------------------------------------------------|:------------------------------------------------------------------------------------------------------------------------------------------------|
| 4.1.24 | 2025-03-11 | [55709](https://github.com/airbytehq/airbyte/pull/55709) | Filter unwanted tables in discover to prevent null table issues |
| 4.1.23 | 2025-03-06 | [55234](https://github.com/airbytehq/airbyte/pull/55234) | Update base image version for certified DB source connectors |
| 4.1.22 | 2025-02-10 | [53217](https://github.com/airbytehq/airbyte/pull/53217) | Default to PK when the clustered index is composite. |
| 4.1.21 | 2025-02-21 | [54189](https://github.com/airbytehq/airbyte/pull/54189) | Print state data only in the debugging log. |