Skip to content

Commit

Permalink
Update commons-compress to 1.24.0
Browse files Browse the repository at this point in the history
This fixes a dependency convergence errors with testcontainers which
for some reason only occurs on `v0.6` and prevents backporting the
latest testcontainers update:

```sh
[WARNING] Rule 0: org.apache.maven.plugins.enforcer.RequireUpperBoundDeps failed with message:
Failed while enforcing RequireUpperBoundDeps. The error(s) are [
Require upper bound dependencies error for org.apache.commons:commons-compress:1.23.0 paths to dependency are:
+-org.janusgraph:janusgraph-driver:0.6.4-SNAPSHOT
  +-org.testcontainers:testcontainers:1.19.1
    +-org.apache.commons:commons-compress:1.23.0 (managed) <-- org.apache.commons:commons-compress:1.24.0
]
```

Signed-off-by: Florian Hockmann <[email protected]>
  • Loading branch information
FlorianHockmann authored and li-boxuan committed Oct 5, 2023
1 parent 2129d59 commit f23abbe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -1052,7 +1052,7 @@
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-compress</artifactId>
<version>1.23.0</version>
<version>1.24.0</version>
</dependency>
<dependency>
<groupId>com.google.protobuf</groupId>
Expand Down

1 comment on commit f23abbe

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Benchmark

Benchmark suite Current: f23abbe Previous: 68f49a1 Ratio
org.janusgraph.JanusGraphSpeedBenchmark.basicAddAndDelete 21546.912266953503 ms/op 14750.912757292574 ms/op 1.46
org.janusgraph.GraphCentricQueryBenchmark.getVertices 1780.3722113793701 ms/op 1346.1948471823591 ms/op 1.32
org.janusgraph.MgmtOlapJobBenchmark.runClearIndex 224.9120808956522 ms/op 221.0470166869565 ms/op 1.02
org.janusgraph.MgmtOlapJobBenchmark.runReindex 585.0169764015873 ms/op 463.2053476121212 ms/op 1.26
org.janusgraph.JanusGraphSpeedBenchmark.basicCount 418.23186041801864 ms/op 473.90261975756744 ms/op 0.88
org.janusgraph.CQLMultiQueryMultiSlicesBenchmark.getValuesAllPropertiesWithAllMultiQuerySlicesUnderMaxRequestsPerConnection 14499.590128794745 ms/op 8776.908210320456 ms/op 1.65
org.janusgraph.CQLMultiQueryBenchmark.getElementsWithUsingEmitRepeatSteps 46376.55266239 ms/op 29926.15626700794 ms/op 1.55
org.janusgraph.CQLMultiQueryMultiSlicesBenchmark.getValuesMultiplePropertiesWithSmallBatch 50791.28669089667 ms/op 32526.844515654997 ms/op 1.56
org.janusgraph.CQLMultiQueryMultiSlicesBenchmark.vertexCentricPropertiesFetching 101061.25326289999 ms/op 59550.41166966667 ms/op 1.70
org.janusgraph.CQLMultiQueryBenchmark.getAllElementsTraversedFromOuterVertex 22921.599223373076 ms/op 15006.601503888596 ms/op 1.53
org.janusgraph.CQLMultiQueryBenchmark.getVerticesWithDoubleUnion 851.966501246474 ms/op 610.4456304918209 ms/op 1.40
org.janusgraph.CQLMultiQueryMultiSlicesBenchmark.getValuesAllPropertiesWithUnlimitedBatch 12733.123677465432 ms/op 8351.21971247489 ms/op 1.52
org.janusgraph.CQLMultiQueryBenchmark.getNames 22635.51651940119 ms/op 14737.422644903432 ms/op 1.54
org.janusgraph.CQLMultiQueryMultiSlicesBenchmark.getValuesThreePropertiesWithAllMultiQuerySlicesUnderMaxRequestsPerConnection 16997.92848730474 ms/op 10903.708326936881 ms/op 1.56
org.janusgraph.CQLMultiQueryBenchmark.getLabels 19673.401538993076 ms/op 13305.68422999396 ms/op 1.48
org.janusgraph.CQLMultiQueryBenchmark.getVerticesFilteredByAndStep 871.453048461729 ms/op 672.9530191288869 ms/op 1.29
org.janusgraph.CQLMultiQueryBenchmark.getVerticesFromMultiNestedRepeatStepStartingFromSingleVertex 30909.54951610571 ms/op 21151.69997790227 ms/op 1.46
org.janusgraph.CQLMultiQueryBenchmark.getVerticesWithCoalesceUsage 802.0924562224156 ms/op 566.2220666199714 ms/op 1.42
org.janusgraph.CQLMultiQueryMultiSlicesBenchmark.getValuesMultiplePropertiesWithAllMultiQuerySlicesUnderMaxRequestsPerConnection 45014.85506446381 ms/op 25822.55861829052 ms/op 1.74
org.janusgraph.CQLMultiQueryBenchmark.getIdToOutVerticesProjection 520.6689981460977 ms/op 411.4887692411499 ms/op 1.27
org.janusgraph.CQLMultiQueryMultiSlicesBenchmark.getValuesMultiplePropertiesWithUnlimitedBatch 47633.085084526065 ms/op 29794.881563733332 ms/op 1.60
org.janusgraph.CQLMultiQueryBenchmark.getNeighborNames 22184.27544832833 ms/op 14451.119747276667 ms/op 1.54
org.janusgraph.CQLMultiQueryBenchmark.getElementsWithUsingRepeatUntilSteps 23987.138560542222 ms/op 16086.213028835715 ms/op 1.49
org.janusgraph.CQLMultiQueryBenchmark.getAdjacentVerticesLocalCounts 23280.713220976195 ms/op 14981.480702516508 ms/op 1.55

This comment was automatically generated by workflow using github-action-benchmark.

Please sign in to comment.