Skip to content

Commit cc72df4

Browse files
authored
Timezone overview in Readme (#91)
1 parent 34ef273 commit cc72df4

File tree

5 files changed

+18
-5
lines changed

5 files changed

+18
-5
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 2.5.6 (November 04, 2022)
2+
* Added limitations in readme about custom timezone behavior
3+
* Update Sailor version to 3.5.0
4+
15
## 2.5.5 (May 20, 2022)
26
* Set default `connectionTimeZone` parameter for MYSQL to `SERVER`
37

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -330,6 +330,7 @@ Please use [**Select action**](#select-action) instead.
330330
- ``Oracle``: 61000
331331
- ``MSSQL``: 40001
332332
- ``PostgreSQL``: 40P01
333+
7. If your database server configured to custom timezone (differ from UTC) JDBC driver may convert time appropriate - for example if you want to use `Insert action` with `MySQL` which is configured to `+2:00` time zone and provide `2022-01-01 15:00:00` as value to some datetime field in database it will be saved as `2022-01-01 17:00:00`.
333334

334335
## License
335336
Apache-2.0 © [elastic.io GmbH](https://www.elastic.io "elastic.io GmbH")

build.gradle

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -71,12 +71,12 @@ dependencies {
7171
// The following 3 dependencies are to workaround this: https://github.com/elasticio/sailor-jvm/issues/59
7272
compile 'com.fasterxml.jackson.core:jackson-core:2.10.1'
7373
compile 'com.fasterxml.jackson.core:jackson-annotations:2.10.1'
74-
compile 'com.fasterxml.jackson.core:jackson-databind:2.13.2.2'
75-
compile 'com.google.code.gson:gson:2.9.0'
74+
compile 'com.fasterxml.jackson.core:jackson-databind:2.13.4.2'
75+
compile 'com.google.code.gson:gson:2.10'
7676
compile 'com.microsoft.sqlserver:mssql-jdbc:6.4.0.jre8'
77-
compile 'io.elastic:sailor-jvm:3.3.9'
77+
compile 'io.elastic:sailor-jvm:3.5.0'
7878
compile 'mysql:mysql-connector-java:8.0.29'
79-
compile 'org.postgresql:postgresql:42.2.25'
79+
compile 'org.postgresql:postgresql:42.5.0'
8080

8181
testCompile 'io.github.cdimascio:java-dotenv:5.1.0'
8282
testCompile 'org.hsqldb:hsqldb:2.0.0'

component.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"title": "Database",
33
"description": "Database JDBC connector",
4-
"version": "2.5.5",
4+
"version": "2.5.6",
55
"credentials": {
66
"verifier": "io.elastic.jdbc.JdbcCredentialsVerifier",
77
"fields": {

dependencyCheck-suppression.xml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,14 @@
99
<cve>CVE-2017-5929</cve>
1010
<cve>CVE-2021-42550</cve>
1111
</suppress>
12+
<suppress>
13+
<notes><![CDATA[
14+
file name: protobuf-java-3.19.4.jar
15+
]]>
16+
</notes>
17+
<packageUrl regex="true">^pkg:maven/com\.google\.protobuf/protobuf\-java@.*$</packageUrl>
18+
<cve>CVE-2022-3171</cve>
19+
</suppress>
1220
<suppress>
1321
<notes><![CDATA[
1422
file name: logback-json-classic-0.1.5.jar

0 commit comments

Comments
 (0)