mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2025-12-27 23:48:19 +00:00
Update dependencies and plugins (#14309)
This commit is contained in:
parent
a4d10be24d
commit
3950cdb58a
@ -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>
|
||||
|
||||
@ -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>
|
||||
@ -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>
|
||||
|
||||
@ -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;
|
||||
@ -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(
|
||||
|
||||
@ -125,7 +125,7 @@ public class SearchIndexResourceTest extends EntityResourceTest<SearchIndex, Cre
|
||||
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)
|
||||
|
||||
@ -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>
|
||||
|
||||
11
pom.xml
11
pom.xml
@ -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>
|
||||
@ -96,9 +96,9 @@
|
||||
<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>
|
||||
@ -106,9 +106,6 @@
|
||||
<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>
|
||||
@ -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>
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user