Skip to content
This repository was archived by the owner on Mar 16, 2025. It is now read-only.

Commit ec60e23

Browse files
authored
Update dependencies (#91)
1 parent e8a26ba commit ec60e23

File tree

3 files changed

+15
-5
lines changed

3 files changed

+15
-5
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
## Unreleased
44

5+
- Update dependencies
6+
57
## v1.5.0 (2021-01-12)
68

79
- Update dependencies

project/Dependencies.scala

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,15 @@ import sbt._
33
object Dependencies {
44

55
object Versions {
6-
val akka = "2.6.10"
7-
val akkaHttp = "10.2.2"
6+
val akka = "2.6.12"
7+
val akkaHttp = "10.2.3"
88
val datadog = "2.11.0"
99
val dropwizard = "4.1.17"
1010
val dropwizardV5 = "5.0.0"
1111
val enumeratum = "1.6.1"
1212
val logback = "1.2.3"
13-
val prometheus = "0.9.0"
14-
val scalaCollectionCompat = "2.3.2"
13+
val prometheus = "0.10.0"
14+
val scalaCollectionCompat = "2.4.1"
1515
val scalaLogging = "3.9.2"
1616
val scalaMock = "5.1.0"
1717
val scalaTest = "3.2.3"

prometheus/src/test/scala/fr/davit/akka/http/metrics/prometheus/marshalling/PrometheusMarshallersSpec.scala

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,20 +73,28 @@ class PrometheusMarshallersSpec extends AnyFlatSpec with Matchers with Scalatest
7373
metrics should contain theSameElementsAs Seq(
7474
"akka_http_requests_total",
7575
"akka_http_requests_active",
76+
"akka_http_requests_created",
7677
"akka_http_requests_size_bytes_bucket",
7778
"akka_http_requests_size_bytes_count",
7879
"akka_http_requests_size_bytes_sum",
80+
"akka_http_requests_size_bytes_created",
7981
"akka_http_responses_total",
82+
"akka_http_responses_created",
8083
"akka_http_responses_errors_total",
84+
"akka_http_responses_errors_created",
8185
"akka_http_responses_duration_seconds_bucket",
8286
"akka_http_responses_duration_seconds_count",
8387
"akka_http_responses_duration_seconds_sum",
88+
"akka_http_responses_duration_seconds_created",
8489
"akka_http_responses_size_bytes_bucket",
8590
"akka_http_responses_size_bytes_count",
8691
"akka_http_responses_size_bytes_sum",
92+
"akka_http_responses_size_bytes_created",
8793
"akka_http_connections_total",
8894
"akka_http_connections_active",
89-
"other_metric"
95+
"akka_http_connections_created",
96+
"other_metric_total",
97+
"other_metric_created"
9098
)
9199
}
92100
}

0 commit comments

Comments
 (0)