Skip to content

Commit 27df06f

Browse files
ENG-57596 Add get label application rule api (#277)
* Add get label application rule api * use common method * resolve comment * add filter to getAllLabelApplicationRules * use identified object store with filter * remove not required changes
1 parent 8352a60 commit 27df06f

File tree

31 files changed

+56
-33
lines changed

31 files changed

+56
-33
lines changed

.github/workflows/pr-test.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -61,4 +61,6 @@ jobs:
6161
runs-on: ubuntu-22.04
6262
steps:
6363
- name: Dependency Check
64-
uses: hypertrace/github-actions/dependency-check@main
64+
uses: hypertrace/github-actions/dependency-check@main
65+
with:
66+
nvd-api-key: ${{ secrets.NVD_API_KEY }}

alerting-config-service-api/gradle.lockfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,6 @@ io.netty:netty-bom:4.1.118.Final=compileClasspath,runtimeClasspath,testCompileCl
1919
javax.annotation:javax.annotation-api:1.3.2=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
2020
org.checkerframework:checker-qual:3.42.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
2121
org.eclipse.jetty:jetty-bom:11.0.24=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
22-
org.hypertrace.bom:hypertrace-bom:0.3.45=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
22+
org.hypertrace.bom:hypertrace-bom:0.3.46=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
2323
org.hypertrace.core.kafkastreams.framework:kafka-bom:0.5.4=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
2424
empty=annotationProcessor

alerting-config-service-impl/gradle.lockfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ org.apiguardian:apiguardian-api:1.1.2=testCompileClasspath
4343
org.checkerframework:checker-qual:3.42.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
4444
org.codehaus.mojo:animal-sniffer-annotations:1.24=runtimeClasspath,testRuntimeClasspath
4545
org.eclipse.jetty:jetty-bom:11.0.24=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
46-
org.hypertrace.bom:hypertrace-bom:0.3.45=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
46+
org.hypertrace.bom:hypertrace-bom:0.3.46=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
4747
org.hypertrace.core.eventstore:event-store:0.1.4=runtimeClasspath,testRuntimeClasspath
4848
org.hypertrace.core.grpcutils:grpc-client-rx-utils:0.13.10=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
4949
org.hypertrace.core.grpcutils:grpc-client-utils:0.13.10=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath

config-object-store/gradle.lockfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ org.apiguardian:apiguardian-api:1.1.2=testCompileClasspath
4040
org.checkerframework:checker-qual:3.42.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
4141
org.codehaus.mojo:animal-sniffer-annotations:1.24=runtimeClasspath,testRuntimeClasspath
4242
org.eclipse.jetty:jetty-bom:11.0.24=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
43-
org.hypertrace.bom:hypertrace-bom:0.3.45=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
43+
org.hypertrace.bom:hypertrace-bom:0.3.46=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
4444
org.hypertrace.core.eventstore:event-store:0.1.4=runtimeClasspath,testRuntimeClasspath
4545
org.hypertrace.core.grpcutils:grpc-context-utils:0.13.10=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
4646
org.hypertrace.core.kafkastreams.framework:kafka-bom:0.5.4=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath

config-proto-converter/gradle.lockfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,6 @@ io.netty:netty-bom:4.1.118.Final=compileClasspath,runtimeClasspath,testCompileCl
2323
org.checkerframework:checker-qual:3.33.0=compileClasspath,testCompileClasspath
2424
org.checkerframework:checker-qual:3.42.0=runtimeClasspath,testRuntimeClasspath
2525
org.eclipse.jetty:jetty-bom:11.0.24=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
26-
org.hypertrace.bom:hypertrace-bom:0.3.45=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
26+
org.hypertrace.bom:hypertrace-bom:0.3.46=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
2727
org.hypertrace.core.kafkastreams.framework:kafka-bom:0.5.4=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
2828
empty=annotationProcessor

config-service-api/gradle.lockfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ net.bytebuddy:byte-buddy:1.14.10=testRuntimeClasspath
3333
org.checkerframework:checker-qual:3.42.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
3434
org.codehaus.mojo:animal-sniffer-annotations:1.24=testRuntimeClasspath
3535
org.eclipse.jetty:jetty-bom:11.0.24=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
36-
org.hypertrace.bom:hypertrace-bom:0.3.45=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
36+
org.hypertrace.bom:hypertrace-bom:0.3.46=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
3737
org.hypertrace.core.grpcutils:grpc-context-utils:0.13.10=testRuntimeClasspath
3838
org.hypertrace.core.kafkastreams.framework:kafka-bom:0.5.4=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
3939
org.mockito:mockito-core:5.8.0=testRuntimeClasspath

config-service-change-event-api/gradle.lockfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ io.grpc:grpc-bom:1.68.3=compileClasspath,runtimeClasspath,testCompileClasspath,t
88
io.netty:netty-bom:4.1.118.Final=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
99
org.apache.kafka:kafka-clients:7.7.0-ccs=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
1010
org.eclipse.jetty:jetty-bom:11.0.24=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
11-
org.hypertrace.bom:hypertrace-bom:0.3.45=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
11+
org.hypertrace.bom:hypertrace-bom:0.3.46=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
1212
org.hypertrace.core.kafkastreams.framework:kafka-bom:0.5.4=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
1313
org.lz4:lz4-java:1.8.0=runtimeClasspath,testRuntimeClasspath
1414
org.slf4j:slf4j-api:2.0.7=runtimeClasspath,testRuntimeClasspath

config-service-change-event-generator/gradle.lockfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ org.checkerframework:checker-qual:3.33.0=compileClasspath,testCompileClasspath
4343
org.checkerframework:checker-qual:3.42.0=runtimeClasspath,testRuntimeClasspath
4444
org.codehaus.mojo:animal-sniffer-annotations:1.24=runtimeClasspath,testRuntimeClasspath
4545
org.eclipse.jetty:jetty-bom:11.0.24=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
46-
org.hypertrace.bom:hypertrace-bom:0.3.45=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
46+
org.hypertrace.bom:hypertrace-bom:0.3.46=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
4747
org.hypertrace.core.eventstore:event-store:0.1.4=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
4848
org.hypertrace.core.grpcutils:grpc-context-utils:0.13.10=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
4949
org.hypertrace.core.kafkastreams.framework:kafka-bom:0.5.4=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath

config-service-factory/gradle.lockfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ org.eclipse.jetty:jetty-server:11.0.24=runtimeClasspath,testRuntimeClasspath
9898
org.eclipse.jetty:jetty-servlet:11.0.24=runtimeClasspath,testRuntimeClasspath
9999
org.eclipse.jetty:jetty-util:11.0.24=runtimeClasspath,testRuntimeClasspath
100100
org.hdrhistogram:HdrHistogram:2.1.12=runtimeClasspath,testRuntimeClasspath
101-
org.hypertrace.bom:hypertrace-bom:0.3.45=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
101+
org.hypertrace.bom:hypertrace-bom:0.3.46=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
102102
org.hypertrace.core.documentstore:document-store:0.8.6=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
103103
org.hypertrace.core.eventstore:event-store:0.1.4=runtimeClasspath,testRuntimeClasspath
104104
org.hypertrace.core.grpcutils:grpc-client-rx-utils:0.13.10=runtimeClasspath,testRuntimeClasspath

config-service-impl/gradle.lockfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ org.eclipse.jetty:jetty-server:11.0.24=runtimeClasspath,testRuntimeClasspath
7373
org.eclipse.jetty:jetty-servlet:11.0.24=runtimeClasspath,testRuntimeClasspath
7474
org.eclipse.jetty:jetty-util:11.0.24=runtimeClasspath,testRuntimeClasspath
7575
org.hdrhistogram:HdrHistogram:2.1.12=runtimeClasspath,testRuntimeClasspath
76-
org.hypertrace.bom:hypertrace-bom:0.3.45=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
76+
org.hypertrace.bom:hypertrace-bom:0.3.46=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
7777
org.hypertrace.core.documentstore:document-store:0.8.6=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
7878
org.hypertrace.core.eventstore:event-store:0.1.4=runtimeClasspath,testRuntimeClasspath
7979
org.hypertrace.core.grpcutils:grpc-client-utils:0.13.10=testCompileClasspath,testRuntimeClasspath

config-service/gradle.lockfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ org.eclipse.jetty:jetty-server:11.0.24=runtimeClasspath,testRuntimeClasspath
101101
org.eclipse.jetty:jetty-servlet:11.0.24=runtimeClasspath,testRuntimeClasspath
102102
org.eclipse.jetty:jetty-util:11.0.24=runtimeClasspath,testRuntimeClasspath
103103
org.hdrhistogram:HdrHistogram:2.1.12=runtimeClasspath,testRuntimeClasspath
104-
org.hypertrace.bom:hypertrace-bom:0.3.45=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
104+
org.hypertrace.bom:hypertrace-bom:0.3.46=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
105105
org.hypertrace.core.documentstore:document-store:0.8.6=runtimeClasspath,testRuntimeClasspath
106106
org.hypertrace.core.eventstore:event-store:0.1.4=runtimeClasspath,testRuntimeClasspath
107107
org.hypertrace.core.grpcutils:grpc-client-rx-utils:0.13.10=runtimeClasspath,testRuntimeClasspath

config-validation-utils/gradle.lockfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ org.checkerframework:checker-qual:3.33.0=compileClasspath,testCompileClasspath
3333
org.checkerframework:checker-qual:3.42.0=runtimeClasspath,testRuntimeClasspath
3434
org.codehaus.mojo:animal-sniffer-annotations:1.24=runtimeClasspath,testRuntimeClasspath
3535
org.eclipse.jetty:jetty-bom:11.0.24=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
36-
org.hypertrace.bom:hypertrace-bom:0.3.45=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
36+
org.hypertrace.bom:hypertrace-bom:0.3.46=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
3737
org.hypertrace.core.grpcutils:grpc-context-utils:0.13.10=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
3838
org.hypertrace.core.kafkastreams.framework:kafka-bom:0.5.4=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
3939
org.slf4j:slf4j-api:2.0.7=runtimeClasspath,testRuntimeClasspath

label-application-rule-config-service-api/gradle.lockfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,6 @@ io.netty:netty-bom:4.1.118.Final=compileClasspath,runtimeClasspath,testCompileCl
1919
javax.annotation:javax.annotation-api:1.3.2=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
2020
org.checkerframework:checker-qual:3.42.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
2121
org.eclipse.jetty:jetty-bom:11.0.24=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
22-
org.hypertrace.bom:hypertrace-bom:0.3.45=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
22+
org.hypertrace.bom:hypertrace-bom:0.3.46=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
2323
org.hypertrace.core.kafkastreams.framework:kafka-bom:0.5.4=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
2424
empty=annotationProcessor

label-application-rule-config-service-api/src/main/proto/org/hypertrace/label/application/rule/config/service/v1/label_application_rule_config_service.proto

+7-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,13 @@ message GetLabelApplicationRuleResponse {
3636
LabelApplicationRule label_application_rule = 1;
3737
}
3838

39-
message GetLabelApplicationRulesRequest {}
39+
message GetLabelApplicationRulesRequest {
40+
GetLabelApplicationRuleFilter filter = 1;
41+
}
42+
43+
message GetLabelApplicationRuleFilter {
44+
repeated string ids = 1;
45+
}
4046

4147
message GetLabelApplicationRulesResponse {
4248
repeated LabelApplicationRule label_application_rules = 1;

label-application-rule-config-service-impl/gradle.lockfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ org.apiguardian:apiguardian-api:1.1.2=testCompileClasspath
4343
org.checkerframework:checker-qual:3.42.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
4444
org.codehaus.mojo:animal-sniffer-annotations:1.24=runtimeClasspath,testRuntimeClasspath
4545
org.eclipse.jetty:jetty-bom:11.0.24=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
46-
org.hypertrace.bom:hypertrace-bom:0.3.45=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
46+
org.hypertrace.bom:hypertrace-bom:0.3.46=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
4747
org.hypertrace.core.eventstore:event-store:0.1.4=runtimeClasspath,testRuntimeClasspath
4848
org.hypertrace.core.grpcutils:grpc-client-utils:0.13.10=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
4949
org.hypertrace.core.grpcutils:grpc-context-utils:0.13.10=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath

label-application-rule-config-service-impl/src/main/java/org/hypertrace/label/application/rule/config/service/LabelApplicationRuleConfigServiceImpl.java

+5-2
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
import java.util.stream.Collectors;
1111
import org.hypertrace.config.objectstore.ConfigObject;
1212
import org.hypertrace.config.objectstore.IdentifiedObjectStore;
13+
import org.hypertrace.config.objectstore.IdentifiedObjectStoreWithFilter;
1314
import org.hypertrace.config.service.change.event.api.ConfigChangeEventGenerator;
1415
import org.hypertrace.config.service.v1.ConfigServiceGrpc;
1516
import org.hypertrace.config.service.v1.ConfigServiceGrpc.ConfigServiceBlockingStub;
@@ -20,6 +21,7 @@
2021
import org.hypertrace.label.application.rule.config.service.v1.CreateLabelApplicationRuleResponse;
2122
import org.hypertrace.label.application.rule.config.service.v1.DeleteLabelApplicationRuleRequest;
2223
import org.hypertrace.label.application.rule.config.service.v1.DeleteLabelApplicationRuleResponse;
24+
import org.hypertrace.label.application.rule.config.service.v1.GetLabelApplicationRuleFilter;
2325
import org.hypertrace.label.application.rule.config.service.v1.GetLabelApplicationRulesRequest;
2426
import org.hypertrace.label.application.rule.config.service.v1.GetLabelApplicationRulesResponse;
2527
import org.hypertrace.label.application.rule.config.service.v1.LabelApplicationRule;
@@ -29,7 +31,8 @@
2931

3032
public class LabelApplicationRuleConfigServiceImpl
3133
extends LabelApplicationRuleConfigServiceGrpc.LabelApplicationRuleConfigServiceImplBase {
32-
private final IdentifiedObjectStore<LabelApplicationRule> labelApplicationRuleStore;
34+
private final IdentifiedObjectStoreWithFilter<LabelApplicationRule, GetLabelApplicationRuleFilter>
35+
labelApplicationRuleStore;
3336
private final IdentifiedObjectStore<DeletedSystemLabelApplicationRule>
3437
deletedSystemLabelApplicationRuleStore;
3538
private final LabelApplicationRuleValidator requestValidator;
@@ -88,7 +91,7 @@ public void getLabelApplicationRules(
8891
RequestContext requestContext = RequestContext.CURRENT.get();
8992
this.requestValidator.validateOrThrow(requestContext, request);
9093
List<LabelApplicationRule> labelApplicationRules =
91-
this.labelApplicationRuleStore.getAllObjects(requestContext).stream()
94+
this.labelApplicationRuleStore.getAllObjects(requestContext, request.getFilter()).stream()
9295
.map(ConfigObject::getData)
9396
.collect(Collectors.toUnmodifiableList());
9497
Set<String> labelApplicationRuleIds =

label-application-rule-config-service-impl/src/main/java/org/hypertrace/label/application/rule/config/service/LabelApplicationRuleStore.java

+14-2
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,15 @@
33
import com.google.protobuf.Value;
44
import java.util.Optional;
55
import lombok.SneakyThrows;
6-
import org.hypertrace.config.objectstore.IdentifiedObjectStore;
6+
import org.hypertrace.config.objectstore.IdentifiedObjectStoreWithFilter;
77
import org.hypertrace.config.proto.converter.ConfigProtoConverter;
88
import org.hypertrace.config.service.change.event.api.ConfigChangeEventGenerator;
99
import org.hypertrace.config.service.v1.ConfigServiceGrpc;
10+
import org.hypertrace.label.application.rule.config.service.v1.GetLabelApplicationRuleFilter;
1011
import org.hypertrace.label.application.rule.config.service.v1.LabelApplicationRule;
1112

12-
class LabelApplicationRuleStore extends IdentifiedObjectStore<LabelApplicationRule> {
13+
class LabelApplicationRuleStore
14+
extends IdentifiedObjectStoreWithFilter<LabelApplicationRule, GetLabelApplicationRuleFilter> {
1315
private static final String LABEL_APPLICATION_RULE_CONFIG_RESOURCE_NAME =
1416
"label-application-rule-config";
1517
private static final String LABEL_APPLICATION_RULE_CONFIG_RESOURCE_NAMESPACE = "labels";
@@ -24,6 +26,16 @@ class LabelApplicationRuleStore extends IdentifiedObjectStore<LabelApplicationRu
2426
configChangeEventGenerator);
2527
}
2628

29+
@Override
30+
protected Optional<LabelApplicationRule> filterConfigData(
31+
LabelApplicationRule data, GetLabelApplicationRuleFilter filter) {
32+
return Optional.of(data)
33+
.filter(
34+
rule ->
35+
filter.getIdsList().isEmpty()
36+
|| filter.getIdsList().stream().anyMatch(id -> id.equals(rule.getId())));
37+
}
38+
2739
@Override
2840
protected Optional<LabelApplicationRule> buildDataFromValue(Value value) {
2941
try {

labels-config-service-api/gradle.lockfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,6 @@ io.netty:netty-bom:4.1.118.Final=compileClasspath,runtimeClasspath,testCompileCl
1919
javax.annotation:javax.annotation-api:1.3.2=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
2020
org.checkerframework:checker-qual:3.42.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
2121
org.eclipse.jetty:jetty-bom:11.0.24=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
22-
org.hypertrace.bom:hypertrace-bom:0.3.45=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
22+
org.hypertrace.bom:hypertrace-bom:0.3.46=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
2323
org.hypertrace.core.kafkastreams.framework:kafka-bom:0.5.4=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
2424
empty=annotationProcessor

labels-config-service-impl/gradle.lockfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ org.apiguardian:apiguardian-api:1.1.2=testCompileClasspath
4343
org.checkerframework:checker-qual:3.42.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
4444
org.codehaus.mojo:animal-sniffer-annotations:1.24=runtimeClasspath,testRuntimeClasspath
4545
org.eclipse.jetty:jetty-bom:11.0.24=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
46-
org.hypertrace.bom:hypertrace-bom:0.3.45=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
46+
org.hypertrace.bom:hypertrace-bom:0.3.46=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
4747
org.hypertrace.core.eventstore:event-store:0.1.4=runtimeClasspath,testRuntimeClasspath
4848
org.hypertrace.core.grpcutils:grpc-client-rx-utils:0.13.10=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
4949
org.hypertrace.core.grpcutils:grpc-client-utils:0.13.10=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath

notification-channel-config-service-api/gradle.lockfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,6 @@ io.netty:netty-bom:4.1.118.Final=compileClasspath,runtimeClasspath,testCompileCl
1919
javax.annotation:javax.annotation-api:1.3.2=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
2020
org.checkerframework:checker-qual:3.42.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
2121
org.eclipse.jetty:jetty-bom:11.0.24=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
22-
org.hypertrace.bom:hypertrace-bom:0.3.45=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
22+
org.hypertrace.bom:hypertrace-bom:0.3.46=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
2323
org.hypertrace.core.kafkastreams.framework:kafka-bom:0.5.4=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
2424
empty=annotationProcessor

notification-channel-config-service-impl/gradle.lockfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ org.apiguardian:apiguardian-api:1.1.2=testCompileClasspath
4343
org.checkerframework:checker-qual:3.42.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
4444
org.codehaus.mojo:animal-sniffer-annotations:1.24=runtimeClasspath,testRuntimeClasspath
4545
org.eclipse.jetty:jetty-bom:11.0.24=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
46-
org.hypertrace.bom:hypertrace-bom:0.3.45=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
46+
org.hypertrace.bom:hypertrace-bom:0.3.46=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
4747
org.hypertrace.core.eventstore:event-store:0.1.4=runtimeClasspath,testRuntimeClasspath
4848
org.hypertrace.core.grpcutils:grpc-client-utils:0.13.10=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
4949
org.hypertrace.core.grpcutils:grpc-context-utils:0.13.10=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath

0 commit comments

Comments
 (0)