Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

🎉 Source Snowflake : Update JDBC driver for Snowflake to 3.13.22 #16766

Merged
merged 30 commits into from
Sep 21, 2022
Merged
Show file tree
Hide file tree
Changes from 5 commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
1c1727f
Update JDBC driver for Snowflake
akashkulk Sep 15, 2022
398bd5b
Merge branch 'master' into akashkulk/snowflake-jdbc-driver
akashkulk Sep 15, 2022
0570b89
Update JDBC driver for Snowflake
akashkulk Sep 15, 2022
1054bba
Merge remote-tracking branch 'origin/akashkulk/snowflake-jdbc-driver'…
akashkulk Sep 15, 2022
824f921
Merge branch 'master' into akashkulk/snowflake-jdbc-driver
akashkulk Sep 15, 2022
ee3f408
Merge remote-tracking branch 'origin/akashkulk/snowflake-jdbc-driver'…
akashkulk Sep 15, 2022
e133840
Merge remote-tracking branch 'origin/akashkulk/snowflake-jdbc-driver'…
akashkulk Sep 15, 2022
17eb0b0
Merge remote-tracking branch 'origin/akashkulk/snowflake-jdbc-driver'…
akashkulk Sep 15, 2022
06c1660
Merge remote-tracking branch 'origin/akashkulk/snowflake-jdbc-driver'…
akashkulk Sep 16, 2022
e06ce18
Merge remote-tracking branch 'origin/akashkulk/snowflake-jdbc-driver'…
akashkulk Sep 16, 2022
cce2f6a
Merge remote-tracking branch 'origin/akashkulk/snowflake-jdbc-driver'…
akashkulk Sep 16, 2022
e2a97f4
Merge remote-tracking branch 'origin/akashkulk/snowflake-jdbc-driver'…
akashkulk Sep 16, 2022
4b5013b
Merge remote-tracking branch 'origin/akashkulk/snowflake-jdbc-driver'…
akashkulk Sep 16, 2022
7194144
Merge remote-tracking branch 'origin/akashkulk/snowflake-jdbc-driver'…
akashkulk Sep 16, 2022
513dc19
Merge branch 'master' into akashkulk/snowflake-jdbc-driver
akashkulk Sep 16, 2022
43b7a3e
Merge remote-tracking branch 'origin/akashkulk/snowflake-jdbc-driver'…
akashkulk Sep 16, 2022
6823e70
Merge remote-tracking branch 'origin/akashkulk/snowflake-jdbc-driver'…
akashkulk Sep 16, 2022
1b2ab44
Merge remote-tracking branch 'origin/akashkulk/snowflake-jdbc-driver'…
akashkulk Sep 16, 2022
4614d09
Merge remote-tracking branch 'origin/akashkulk/snowflake-jdbc-driver'…
akashkulk Sep 16, 2022
88bba1e
Handle timestamp with timezone with putTimestamp method
tuliren Sep 16, 2022
66c78c7
Merge remote-tracking branch 'origin/akashkulk/snowflake-jdbc-driver'…
akashkulk Sep 16, 2022
104ed51
Merge remote-tracking branch 'origin/akashkulk/snowflake-jdbc-driver'…
akashkulk Sep 16, 2022
9f29b7f
Merge remote-tracking branch 'origin/akashkulk/snowflake-jdbc-driver'…
akashkulk Sep 16, 2022
ed26fec
Merge branch 'master' into akashkulk/snowflake-jdbc-driver
akashkulk Sep 19, 2022
c614fbe
Merge branch 'master' into akashkulk/snowflake-jdbc-driver
akashkulk Sep 21, 2022
96af8b3
Update snowflake.md
akashkulk Sep 21, 2022
eff4945
Update snowflake.md
akashkulk Sep 21, 2022
d004100
Merge branch 'master' into akashkulk/snowflake-jdbc-driver
akashkulk Sep 21, 2022
22b8e6f
auto-bump connector version [ci skip]
octavia-squidington-iii Sep 21, 2022
8374a84
Merge branch 'master' into akashkulk/snowflake-jdbc-driver
akashkulk Sep 21, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,5 @@ RUN tar xf ${APPLICATION}.tar --strip-components=1

ENV ENABLE_SENTRY true

LABEL io.airbyte.version=0.4.36
LABEL io.airbyte.version=0.4.37
LABEL io.airbyte.name=airbyte/destination-snowflake
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ application {
dependencies {
implementation 'com.google.cloud:google-cloud-storage:1.113.16'
implementation 'com.google.auth:google-auth-library-oauth2-http:0.25.5'
implementation 'net.snowflake:snowflake-jdbc:3.13.9'
implementation 'net.snowflake:snowflake-jdbc:3.13.22'
implementation 'org.apache.commons:commons-csv:1.4'
implementation 'com.github.alexmojaki:s3-stream-upload:2.2.2'
implementation "io.aesy:datasize:1.0.0"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@ ENV APPLICATION source-snowflake

COPY --from=build /airbyte /airbyte

LABEL io.airbyte.version=0.1.21
LABEL io.airbyte.version=0.1.22
LABEL io.airbyte.name=airbyte/source-snowflake
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ dependencies {
implementation project(':airbyte-integrations:connectors:source-relational-db')
implementation project(':airbyte-protocol:protocol-models')
implementation files(project(':airbyte-integrations:bases:base-java').airbyteDocker.outputs)
implementation group: 'net.snowflake', name: 'snowflake-jdbc', version: '3.13.9'
implementation group: 'net.snowflake', name: 'snowflake-jdbc', version: '3.13.22'
implementation 'com.zaxxer:HikariCP:5.0.1'

testImplementation testFixtures(project(':airbyte-integrations:connectors:source-jdbc'))
Expand Down