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

Update dependencies and plugins #14309

Merged
merged 1 commit into from
Dec 8, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
2 changes: 1 addition & 1 deletion openmetadata-clients/openmetadata-java-client/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<feign-version>13.1</feign-version>
<jackson-databind-nullable-version>0.2.6</jackson-databind-nullable-version>
<scribejava-apis-version>8.3.3</scribejava-apis-version>
<swagger-parser-version>2.1.18</swagger-parser-version>
<swagger-parser-version>2.1.19</swagger-parser-version>
<jakarta-annotation-version>1.3.5</jakarta-annotation-version>
</properties>
<dependencies>
Expand Down
6 changes: 3 additions & 3 deletions openmetadata-service/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@
<sonar.junit.reportPaths>${project.basedir}/target/surefire-reports</sonar.junit.reportPaths>
<sonar.coverage.jacoco.xmlReportPaths>${project.basedir}/target/site/jacoco-aggregate/jacoco.xml</sonar.coverage.jacoco.xmlReportPaths>
<sonar.tests>${project.basedir}/src/test/java</sonar.tests>
<org.testcontainers.version>1.19.2</org.testcontainers.version>
<awssdk.version>2.21.26</awssdk.version>
<org.testcontainers.version>1.19.3</org.testcontainers.version>
<awssdk.version>2.21.40</awssdk.version>
<expiring.map.version>0.5.11</expiring.map.version>
<java.saml>2.9.0</java.saml>
<xmlsec.version>2.2.6</xmlsec.version>
Expand Down Expand Up @@ -296,7 +296,7 @@
<dependency>
<groupId>org.opensearch</groupId>
<artifactId>opensearch-testcontainers</artifactId>
<version>2.0.0</version>
<version>2.0.1</version>
<scope>test</scope>
</dependency>
<dependency>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
package org.openmetadata.service.jdbi3;

import static org.openmetadata.common.utils.CommonUtil.listOf;
import static org.openmetadata.service.Entity.DATA_INSIGHT_CHART;

import java.util.Arrays;
Expand Down Expand Up @@ -62,7 +63,7 @@ public class DataInsightChartRepository extends EntityRepository<DataInsightChar
"MostViewedEntities");

public static final List<String> SUPPORTS_NULL_DATE_RANGE =
Arrays.asList(DataInsightChartResult.DataInsightChartType.UNUSED_ASSETS.toString());
listOf(DataInsightChartResult.DataInsightChartType.UNUSED_ASSETS.toString());

public DataInsightChartRepository() {
super(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ void put_searchIndexAttributes_200_ok(TestInfo test) throws IOException {
new SearchIndexField().withName("name").withDataType(SearchIndexDataType.TEXT),
new SearchIndexField().withName("displayName").withDataType(SearchIndexDataType.KEYWORD)));
List<SearchIndexField> searchIndexFields =
Arrays.asList(
List.of(
new SearchIndexField()
.withName("tableSearchIndex")
.withDataType(SearchIndexDataType.NESTED)
Expand Down
2 changes: 1 addition & 1 deletion openmetadata-ui/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@
<plugin>
<groupId>com.github.eirslett</groupId>
<artifactId>frontend-maven-plugin</artifactId>
<version>1.11.3</version>
<version>1.12.1</version>

<!-- optional -->
<configuration>
Expand Down
11 changes: 4 additions & 7 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<mockito.version>5.7.0</mockito.version>
<mockito.version>5.8.0</mockito.version>
<!-- Upgrading slf4j causes dropwizard issues -->
<slf4j.version>1.7.36</slf4j.version>
<jackson.version>2.16.0</jackson.version>
Expand All @@ -96,19 +96,16 @@
<jacoco-plugin.version>0.8.10</jacoco-plugin.version>
<jdbi3.version>3.37.1</jdbi3.version>
<commons-cli.version>1.6.0</commons-cli.version>
<commons-io.version>2.15.0</commons-io.version>
<commons-io.version>2.15.1</commons-io.version>
<flyway.version>9.22.3</flyway.version>
<redshift-jdbc.version>2.1.0.22</redshift-jdbc.version>
<redshift-jdbc.version>2.1.0.23</redshift-jdbc.version>
<gson.version>2.10.1</gson.version>
<mysql.connector.version>8.0.33</mysql.connector.version>
<postgres.connector.version>42.6.0</postgres.connector.version>
<jsonschema2pojo.version>1.2.1</jsonschema2pojo.version>
<commons-lang.version>2.6</commons-lang.version>
<lombok.version>1.18.30</lombok.version>
<tomcat-jdbc.version>10.1.10</tomcat-jdbc.version>
<!-- We need ElasticSearch client to be compatible with both ElasticSearch and AWS OpenSearch
This compatibility broken in 7.14, so lets keep this version pinned to 7.13.x
-->
<elasticsearch.version>7.17.14</elasticsearch.version>
<opensearch.version>2.5.0</opensearch.version>
<httpasyncclient.version>4.1.5</httpasyncclient.version>
Expand Down Expand Up @@ -144,7 +141,7 @@
<freemarker.version>2.3.32</freemarker.version>
<passay.version>1.6.4</passay.version>
<bcrypt.version>0.10.2</bcrypt.version>
<simplejavamail.version>8.3.1</simplejavamail.version>
<simplejavamail.version>8.3.3</simplejavamail.version>
<dropwizardkafka.version>1.8.0</dropwizardkafka.version>
<maven-release-plugin.version>3.0.1</maven-release-plugin.version>
<unboundsdk.version>6.0.10</unboundsdk.version>
Expand Down