Skip to content

Commit 48fee40

Browse files
Marius Postaedgao
authored andcommitted
Fix log4j-slf4j-impl version conflicts (airbytehq#34669)
Co-authored-by: Edward Gao <[email protected]>
1 parent d649ecb commit 48fee40

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -166,6 +166,7 @@ MavenLocal debugging steps:
166166

167167
| Version | Date | Pull Request | Subject |
168168
|:--------|:-----------|:-----------------------------------------------------------|:---------------------------------------------------------------------------------------------------------------------------------------------------------------|
169+
| 0.16.3 | 2024-01-30 | [\#34669](https://github.com/airbytehq/airbyte/pull/34669) | Fix org.apache.logging.log4j:log4j-slf4j-impl version conflicts. |
169170
| 0.16.2 | 2024-01-29 | [\#34630](https://github.com/airbytehq/airbyte/pull/34630) | expose NamingTransformer to sub-classes in destinations JdbcSqlGenerator. |
170171
| 0.16.1 | 2024-01-29 | [\#34533](https://github.com/airbytehq/airbyte/pull/34533) | Add a safe method to execute DatabaseMetadata's Resultset returning queries. |
171172
| 0.16.0 | 2024-01-26 | [\#34573](https://github.com/airbytehq/airbyte/pull/34573) | Untangle Debezium harness dependencies. |
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
version=0.16.2
1+
version=0.16.3

deps.toml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,8 @@ kotlinx-cli-jvm = { module = "org.jetbrains.kotlinx:kotlinx-cli-jvm", version =
8181
launchdarkly = { module = "com.launchdarkly:launchdarkly-java-server-sdk", version = "6.0.1" }
8282
log4j-api = { module = "org.apache.logging.log4j:log4j-api", version.ref = "log4j" }
8383
log4j-core = { module = "org.apache.logging.log4j:log4j-core", version.ref = "log4j" }
84-
log4j-impl = { module = "org.apache.logging.log4j:log4j-slf4j2-impl", version.ref = "log4j" }
84+
log4j-slf4j2-impl = { module = "org.apache.logging.log4j:log4j-slf4j2-impl", version.ref = "log4j" }
85+
log4j-slf4j-impl = { module = "org.apache.logging.log4j:log4j-slf4j-impl", version.ref = "log4j" }
8586
log4j-over-slf4j = { module = "org.slf4j:log4j-over-slf4j", version.ref = "slf4j" }
8687
log4j-web = { module = "org.apache.logging.log4j:log4j-web", version.ref = "log4j" }
8788
lombok = { module = "org.projectlombok:lombok", version.ref = "lombok" }
@@ -117,7 +118,7 @@ apache = ["apache-commons", "apache-commons-lang"]
117118
datadog = ["datadog-trace-api", "datadog-trace-ot"]
118119
jackson = ["jackson-databind", "jackson-annotations", "jackson-dataformat", "jackson-datatype"]
119120
junit = ["junit-jupiter-api", "junit-jupiter-params", "mockito-junit-jupiter"]
120-
log4j = ["log4j-api", "log4j-core", "log4j-impl", "log4j-web"]
121+
log4j = ["log4j-api", "log4j-core", "log4j-slf4j-impl", "log4j-slf4j2-impl", "log4j-web"]
121122
slf4j = ["jul-to-slf4j", "jcl-over-slf4j", "log4j-over-slf4j"]
122123
temporal = ["temporal-sdk", "temporal-serviceclient"]
123124

0 commit comments

Comments
 (0)