Skip to content

Commit 6e9d9aa

Browse files
chore: add gql deps (#13)
* chore: add ht gql deps * ci: adjust suppressions
1 parent 33ce321 commit 6e9d9aa

File tree

4 files changed

+24
-3
lines changed

4 files changed

+24
-3
lines changed

gradle/libs.versions.toml

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ hypertrace-kafka = "0.3.9"
77
hypertrace-bom = "+"
88
hypertrace-attributeservice = "0.14.35"
99
hypertrace-gatewayservice = "0.3.9"
10+
hypertrace-entityservice = "0.8.86"
11+
hypertrace-configservice = "0.1.56"
1012

1113
junit = "5.10.0"
1214
mockito = "5.5.0"
@@ -51,13 +53,18 @@ hypertrace-framework-http = { module = "org.hypertrace.core.serviceframework:pla
5153
hypertrace-framework-spi = { module = "org.hypertrace.core.serviceframework:service-framework-spi", version.ref = "hypertrace-framework" }
5254
hypertrace-integrationtest-framework = { module = "org.hypertrace.core.serviceframework:integrationtest-service-framework", version.ref = "hypertrace-framework" }
5355
hypertrace-framework-documentstore-metrics = { module = "org.hypertrace.core.serviceframework:docstore-metrics", version.ref = "hypertrace-framework" }
54-
hypertrace-documentstore = { module = "org.hypertrace.core.documentstore:document-store", version = "0.7.44" }
56+
hypertrace-documentstore = { module = "org.hypertrace.core.documentstore:document-store", version = "0.7.49" }
5557
hypertrace-eventstore = { module = "org.hypertrace.core.eventstore:event-store", version = "0.1.3" }
5658
hypertrace-kafka-bom = { module = "org.hypertrace.core.kafkastreams.framework:kafka-bom", version.ref = "hypertrace-kafka" }
5759
hypertrace-kafka-framework = { module = "org.hypertrace.core.kafkastreams.framework:kafka-streams-framework", version.ref = "hypertrace-kafka" }
5860
hypertrace-attributeservice-api = { module = "org.hypertrace.core.attribute.service:attribute-service-api", version.ref = "hypertrace-attributeservice" }
5961
hypertrace-attributeservice-cachingclient = { module = "org.hypertrace.core.attribute.service:caching-attribute-service-client", version.ref = "hypertrace-attributeservice" }
6062
hypertrace-gatewayservice-api = { module = "org.hypertrace.gateway.service:gateway-service-api", version.ref = "hypertrace-gatewayservice" }
63+
hypertrace-entityservice-types-rxclient = { module = "org.hypertrace.entity.service:entity-type-service-rx-client", version.ref = "hypertrace-entityservice" }
64+
hypertrace-configservice-spaces-api = { module = "org.hypertrace.config.service:spaces-config-service-api", version.ref = "hypertrace-configservice" }
65+
hypertrace-configservice-labels-api = { module = "org.hypertrace.config.service:labels-config-service-api", version.ref = "hypertrace-configservice" }
66+
hypertrace-configservice-labelapplication-api = { module = "org.hypertrace.config.service:label-application-rule-config-service-api", version.ref = "hypertrace-configservice" }
67+
hypertrace-configservice-spanprocessing-api = { module = "org.hypertrace.config.service:span-processing-config-service-api", version.ref = "hypertrace-configservice" }
6168
hypertrace-bom = { module = "org.hypertrace.bom:hypertrace-bom", version.ref = "hypertrace-bom" }
6269

6370
junit-jupiter = { module = "org.junit.jupiter:junit-jupiter", version.ref = "junit" }
@@ -77,4 +84,5 @@ owasp-dependencycheck = { id = "org.owasp.dependencycheck", version = "8.4.0" }
7784
google-protobuf = { id = "com.google.protobuf", version = "0.9.4" }
7885

7986
[bundles]
80-
grpc-api = ["grpc-stub", "grpc-protobuf", "javax-annotation", "protobuf-java"]
87+
grpc-api = ["grpc-stub", "grpc-protobuf", "javax-annotation", "protobuf-java"]
88+

hypertrace-bom/build.gradle.kts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,11 @@ dependencies {
2626
api(libs.hypertrace.attributeservice.api)
2727
api(libs.hypertrace.attributeservice.cachingclient)
2828
api(libs.hypertrace.gatewayservice.api)
29+
api(libs.hypertrace.entityservice.types.rxclient)
30+
api(libs.hypertrace.configservice.spaces.api)
31+
api(libs.hypertrace.configservice.labels.api)
32+
api(libs.hypertrace.configservice.labelapplication.api)
33+
api(libs.hypertrace.configservice.spanprocessing.api)
2934

3035
api(libs.guava)
3136
api(libs.google.re2j)

owasp-suppressions.xml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,16 @@
77
<packageUrl regex="true">^pkg:maven/org\.hypertrace\..*@.*$</packageUrl>
88
<cpe>cpe:/a:grpc:grpc</cpe>
99
<cpe>cpe:/a:utils_project:utils</cpe>
10+
<cpe>cpe:/a:service_project:service</cpe>
11+
<cpe>cpe:/a:processing:processing</cpe>
1012
</suppress>
1113
<suppress until="2023-11-30Z">
1214
<notes><![CDATA[
1315
Doesn't appear to be a real vulnerability, jackson maintainers discuss at https://github.com/FasterXML/jackson-databind/issues/3973
1416
Revisit when suppression expires
1517
]]></notes>
16-
<packageUrl regex="true">^pkg:maven/com\.fasterxml\.jackson\.core/jackson\-databind@.*$</packageUrl>
18+
<packageUrl regex="true">^pkg:maven/com\.fasterxml\.jackson\.core/jackson\-databind@.*$
19+
</packageUrl>
1720
<cve>CVE-2023-35116</cve>
1821
</suppress>
1922
<suppress>

test-consumer/build.gradle.kts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,11 @@ dependencies {
1818
api(libs.hypertrace.eventstore)
1919
api(libs.hypertrace.attributeservice.api)
2020
api(libs.hypertrace.attributeservice.cachingclient)
21+
api(libs.hypertrace.entityservice.types.rxclient)
22+
api(libs.hypertrace.configservice.spaces.api)
23+
api(libs.hypertrace.configservice.labels.api)
24+
api(libs.hypertrace.configservice.labelapplication.api)
25+
api(libs.hypertrace.configservice.spanprocessing.api)
2126
api(libs.hypertrace.gatewayservice.api)
2227

2328
api(libs.guava)

0 commit comments

Comments
 (0)