Skip to content

Commit b88a41d

Browse files
evantahlertheyueli
andauthored
postgres source/destination - bump postgres driver version (#39460)
Co-authored-by: Yue Li <[email protected]>
1 parent 46b2188 commit b88a41d

File tree

7 files changed

+28
-26
lines changed

7 files changed

+28
-26
lines changed

airbyte-cdk/java/airbyte-cdk/README.md

Lines changed: 18 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -2,22 +2,22 @@
22

33
This page will walk through the process of developing with the Java CDK.
44

5-
* [Developing with the Java CDK](#developing-with-the-java-cdk)
6-
* [Intro to the Java CDK](#intro-to-the-java-cdk)
7-
* [What is included in the Java CDK?](#what-is-included-in-the-java-cdk)
8-
* [How is the CDK published?](#how-is-the-cdk-published)
9-
* [Using the Java CDK](#using-the-java-cdk)
10-
* [Building the CDK](#building-the-cdk)
11-
* [Bumping the CDK version](#bumping-the-cdk-version)
12-
* [Publishing the CDK](#publishing-the-cdk)
13-
* [Developing Connectors with the Java CDK](#developing-connectors-with-the-java-cdk)
14-
* [Referencing the CDK from Java connectors](#referencing-the-cdk-from-java-connectors)
15-
* [Developing a connector alongside the CDK](#developing-a-connector-alongside-the-cdk)
16-
* [Publishing the CDK and switching to a pinned CDK reference](#publishing-the-cdk-and-switching-to-a-pinned-cdk-reference)
17-
* [Troubleshooting CDK Dependency Caches](#troubleshooting-cdk-dependency-caches)
18-
* [Developing a connector against a pinned CDK version](#developing-a-connector-against-a-pinned-cdk-version)
19-
* [Changelog](#changelog)
20-
* [Java CDK](#java-cdk)
5+
- [Developing with the Java CDK](#developing-with-the-java-cdk)
6+
- [Intro to the Java CDK](#intro-to-the-java-cdk)
7+
- [What is included in the Java CDK?](#what-is-included-in-the-java-cdk)
8+
- [How is the CDK published?](#how-is-the-cdk-published)
9+
- [Using the Java CDK](#using-the-java-cdk)
10+
- [Building the CDK](#building-the-cdk)
11+
- [Bumping the CDK version](#bumping-the-cdk-version)
12+
- [Publishing the CDK](#publishing-the-cdk)
13+
- [Developing Connectors with the Java CDK](#developing-connectors-with-the-java-cdk)
14+
- [Referencing the CDK from Java connectors](#referencing-the-cdk-from-java-connectors)
15+
- [Developing a connector alongside the CDK](#developing-a-connector-alongside-the-cdk)
16+
- [Publishing the CDK and switching to a pinned CDK reference](#publishing-the-cdk-and-switching-to-a-pinned-cdk-reference)
17+
- [Troubleshooting CDK Dependency Caches](#troubleshooting-cdk-dependency-caches)
18+
- [Developing a connector against a pinned CDK version](#developing-a-connector-against-a-pinned-cdk-version)
19+
- [Changelog](#changelog)
20+
- [Java CDK](#java-cdk)
2121

2222
## Intro to the Java CDK
2323

@@ -173,7 +173,8 @@ corresponds to that version.
173173
### Java CDK
174174

175175
| Version | Date | Pull Request | Subject |
176-
|:--------|:-----------|:-----------------------------------------------------------|:---------------------------------------------------------------------------------------------------------------------------------------------------------------|
176+
| :------ | :--------- | :--------------------------------------------------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------- |
177+
| 0.38.2 | 2024-06-14 | [\#39460](https://github.com/airbytehq/airbyte/pull/39460) | Bump postgres JDBC driver version |
177178
| 0.38.1 | 2024-06-13 | [\#39445](https://github.com/airbytehq/airbyte/pull/39445) | Sources: More CDK changes to handle big initial snapshots. |
178179
| 0.38.0 | 2024-06-11 | [\#39405](https://github.com/airbytehq/airbyte/pull/39405) | Sources: Debezium properties manager interface changed to accept a list of streams to scope to |
179180
| 0.37.1 | 2024-06-10 | [\#38075](https://github.com/airbytehq/airbyte/pull/38075) | Destinations: Track stream statuses in async framework |
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
version=0.38.1
1+
version=0.38.2

airbyte-cdk/java/airbyte-cdk/datastore-postgres/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ dependencies {
22
implementation project(':airbyte-cdk:java:airbyte-cdk:airbyte-cdk-dependencies')
33
implementation project(':airbyte-cdk:java:airbyte-cdk:airbyte-cdk-core')
44

5-
api 'org.postgresql:postgresql:42.6.0'
5+
api 'org.postgresql:postgresql:42.6.2'
66

77
testFixturesApi testFixtures(project(':airbyte-cdk:java:airbyte-cdk:airbyte-cdk-core'))
88

airbyte-integrations/connectors/source-postgres/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ java {
1212
}
1313

1414
airbyteJavaConnector {
15-
cdkVersionRequired = '0.38.1'
15+
cdkVersionRequired = '0.38.2'
1616
features = ['db-sources', 'datastore-postgres']
1717
useLocalCdk = false
1818
}

airbyte-integrations/connectors/source-postgres/metadata.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ data:
99
connectorSubtype: database
1010
connectorType: source
1111
definitionId: decd338e-5647-4c0b-adf4-da0e75f5a750
12-
dockerImageTag: 3.4.16
12+
dockerImageTag: 3.4.17
1313
dockerRepository: airbyte/source-postgres
1414
documentationUrl: https://docs.airbyte.com/integrations/sources/postgres
1515
githubIssueLabel: source-postgres

deps.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ junit-bom = "5.10.1"
1313
kotlin = "1.9.23"
1414
log4j = "2.21.1"
1515
lombok = "1.18.30"
16-
postgresql = "42.6.0"
16+
postgresql = "42.6.2"
1717
reactor = "3.5.2"
1818
segment = "2.1.1"
1919
slf4j = "2.0.9"

docs/integrations/sources/postgres.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -310,13 +310,14 @@ According to Postgres [documentation](https://www.postgresql.org/docs/14/datatyp
310310
<summary>Expand to review</summary>
311311

312312
| Version | Date | Pull Request | Subject |
313-
|---------|------------|----------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
313+
| ------- | ---------- | -------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
314+
| 3.4.17 | 2024-06-13 | [39460](https://github.com/airbytehq/airbyte/pull/39460) | Bump postgres JDBC driver version |
314315
| 3.4.16 | 2024-05-29 | [39474](https://github.com/airbytehq/airbyte/pull/39474) | Adopt latest CDK. |
315316
| 3.4.15 | 2024-05-29 | [38773](https://github.com/airbytehq/airbyte/pull/38773) | Connect with adaptiveFetch=true. |
316317
| 3.4.14 | 2024-06-08 | [39353](https://github.com/airbytehq/airbyte/pull/39353) | Upgrade Debezium to 2.6.2 |
317318
| 3.4.13 | 2024-06-04 | [38875](https://github.com/airbytehq/airbyte/pull/38875) | read() throws config exception upon detecting transaction ID wraparound. |
318319
| 3.4.12 | 2024-06-04 | [38836](https://github.com/airbytehq/airbyte/pull/38836) | check() throws config error upon detecting transaction ID wraparound. |
319-
| 3.4.11 | 2024-06-04 | [38848](https://github.com/airbytehq/airbyte/pull/38848) | Improve UI message and doc on xmin |
320+
| 3.4.11 | 2024-06-04 | [38848](https://github.com/airbytehq/airbyte/pull/38848) | Improve UI message and doc on xmin |
320321
| 3.4.10 | 2024-05-29 | [38584](https://github.com/airbytehq/airbyte/pull/38584) | Set is_resumable flag in discover. |
321322
| 3.4.9 | 2024-05-29 | [38775](https://github.com/airbytehq/airbyte/pull/38775) | Publish CDK |
322323
| 3.4.9 | 2024-05-28 | [38716](https://github.com/airbytehq/airbyte/pull/38716) | Publish CDK |
@@ -490,13 +491,13 @@ According to Postgres [documentation](https://www.postgresql.org/docs/14/datatyp
490491
| 0.4.43 | 2022-08-03 | [15226](https://github.com/airbytehq/airbyte/pull/15226) | Make connectionTimeoutMs configurable through JDBC url parameters |
491492
| 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 |
492493
| 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 |
493-
| | 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 |
494+
| | 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 |
494495
| 0.4.40 | 2022-08-03 | [15187](https://github.com/airbytehq/airbyte/pull/15187) | Add support for BCE dates/timestamps |
495496
| | 2022-08-03 | [14534](https://github.com/airbytehq/airbyte/pull/14534) | Align regular and CDC integration tests and data mappers |
496497
| 0.4.39 | 2022-08-02 | [14801](https://github.com/airbytehq/airbyte/pull/14801) | Fix multiple log bindings |
497498
| 0.4.38 | 2022-07-26 | [14362](https://github.com/airbytehq/airbyte/pull/14362) | Integral columns are now discovered as int64 fields. |
498499
| 0.4.37 | 2022-07-22 | [14714](https://github.com/airbytehq/airbyte/pull/14714) | Clarified error message when invalid cursor column selected |
499-
| 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) |
500+
| 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) |
500501
| 0.4.35 | 2022-07-14 | [14574](https://github.com/airbytehq/airbyte/pull/14574) | Removed additionalProperties:false from JDBC source connectors |
501502
| 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. |
502503
| 0.4.33 | 2022-07-14 | [14586](https://github.com/airbytehq/airbyte/pull/14586) | Validate source JDBC url parameters |

0 commit comments

Comments
 (0)