Skip to content

Commit 50f59f7

Browse files
committed
Merge branch 'master' into business-attributes
# Conflicts: # datahub-graphql-core/src/main/java/com/linkedin/datahub/graphql/GmsGraphQLEngine.java # datahub-graphql-core/src/main/java/com/linkedin/datahub/graphql/GmsGraphQLEngineArgs.java # datahub-web-react/src/app/entity/Entity.tsx # datahub-web-react/src/app/entity/glossaryTerm/GlossaryTermEntity.tsx # datahub-web-react/src/graphql/fragments.graphql # metadata-io/src/main/java/com/linkedin/metadata/search/elasticsearch/query/ESBrowseDAO.java # metadata-io/src/main/java/com/linkedin/metadata/search/elasticsearch/query/ESSearchDAO.java # metadata-service/factories/src/main/java/com/linkedin/gms/factory/graphql/GraphQLEngineFactory.java # smoke-test/tests/cypress/data.json
2 parents 07b9494 + e4bc915 commit 50f59f7

File tree

455 files changed

+16693
-5424
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

455 files changed

+16693
-5424
lines changed

build.gradle

+11-10
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ buildscript {
3030

3131
ext.junitJupiterVersion = '5.6.1'
3232
// Releases: https://github.com/linkedin/rest.li/blob/master/CHANGELOG.md
33-
ext.pegasusVersion = '29.48.4'
33+
ext.pegasusVersion = '29.51.0'
3434
ext.mavenVersion = '3.6.3'
3535
ext.springVersion = '6.1.2'
3636
ext.springBootVersion = '3.2.1'
@@ -128,8 +128,8 @@ project.ext.externalDependency = [
128128
'elasticSearchRest': 'org.opensearch.client:opensearch-rest-high-level-client:' + elasticsearchVersion,
129129
'elasticSearchJava': 'org.opensearch.client:opensearch-java:2.6.0',
130130
'findbugsAnnotations': 'com.google.code.findbugs:annotations:3.0.1',
131-
'graphqlJava': 'com.graphql-java:graphql-java:19.5',
132-
'graphqlJavaScalars': 'com.graphql-java:graphql-java-extended-scalars:19.1',
131+
'graphqlJava': 'com.graphql-java:graphql-java:21.3',
132+
'graphqlJavaScalars': 'com.graphql-java:graphql-java-extended-scalars:21.0',
133133
'gson': 'com.google.code.gson:gson:2.8.9',
134134
'guice': 'com.google.inject:guice:7.0.0',
135135
'guice4': 'com.google.inject:guice:4.2.3', // Used for frontend while still on old Play version
@@ -221,7 +221,7 @@ project.ext.externalDependency = [
221221
'resilience4j': 'io.github.resilience4j:resilience4j-retry:1.7.1',
222222
'rythmEngine': 'org.rythmengine:rythm-engine:1.3.0',
223223
'servletApi': 'jakarta.servlet:jakarta.servlet-api:6.0.0',
224-
'shiroCore': 'org.apache.shiro:shiro-core:1.11.0',
224+
'shiroCore': 'org.apache.shiro:shiro-core:1.13.0',
225225
'snakeYaml': 'org.yaml:snakeyaml:2.0',
226226
'sparkSql' : 'org.apache.spark:spark-sql_2.12:3.0.3',
227227
'sparkHive' : 'org.apache.spark:spark-hive_2.12:3.0.3',
@@ -269,13 +269,14 @@ allprojects {
269269
apply plugin: 'eclipse'
270270
// apply plugin: 'org.gradlex.java-ecosystem-capabilities'
271271

272-
tasks.withType(Test).configureEach {
273-
// https://docs.gradle.org/current/userguide/performance.html
274-
maxParallelForks = Runtime.runtime.availableProcessors().intdiv(2) ?: 1
272+
tasks.withType(Test).configureEach { task -> if (task.project.name != "metadata-io") {
273+
// https://docs.gradle.org/current/userguide/performance.html
274+
maxParallelForks = Runtime.runtime.availableProcessors().intdiv(2) ?: 1
275275

276-
if (project.configurations.getByName("testImplementation").getDependencies()
277-
.any{ it.getName().contains("testng") }) {
278-
useTestNG()
276+
if (project.configurations.getByName("testImplementation").getDependencies()
277+
.any { it.getName().contains("testng") }) {
278+
useTestNG()
279+
}
279280
}
280281
}
281282

buildSrc/build.gradle

-3
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,4 @@ dependencies {
2525

2626
compileOnly 'org.projectlombok:lombok:1.18.30'
2727
annotationProcessor 'org.projectlombok:lombok:1.18.30'
28-
29-
// pegasus dependency, overrides for tasks
30-
implementation 'com.linkedin.pegasus:gradle-plugins:29.48.4'
3128
}

0 commit comments

Comments
 (0)