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

Commit 92a063a

Browse files
committed
Release v1.5.0
1 parent 1152ffe commit 92a063a

File tree

4 files changed

+9
-21
lines changed

4 files changed

+9
-21
lines changed

CHANGELOG.md

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

33
## Unreleased
44

5+
## v1.5.0 (2021-01-12)
6+
7+
- Update dependencies
58
- Split dropwizard v4 and v5. v4 being the default.
69
- Fix bug when HttpEntity.Default is used with HTTP/1.0 protocol
710

README.md

Lines changed: 1 addition & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,11 @@ The following implementations are supported:
1717

1818
| Version | Release date | Akka Http version | Scala versions |
1919
| ------- | ------------ | ----------------- | ------------------- |
20+
| `1.5.0` | 2021-01-12 | `10.2.2` | `2.13.4`, `2.12.12` |
2021
| `1.4.1` | 2020-12-14 | `10.2.2` | `2.13.4`, `2.12.12` |
2122
| `1.4.0` | 2020-12-12 | `10.2.2` | `2.13.4`, `2.12.12` |
2223
| `1.3.0` | 2020-11-09 | `10.2.1` | `2.13.3`, `2.12.12` |
2324
| `1.2.0` | 2020-08-29 | `10.2.0` | `2.13.3`, `2.12.12` |
24-
| `1.1.1` | 2020-06-10 | `10.1.12` | `2.13.2`, `2.12.11` |
25-
| `1.1.0` | 2020-04-18 | `10.1.11` | `2.13.1`, `2.12.10` |
26-
| `1.0.0` | 2020-03-14 | `10.1.11` | `2.13.1`, `2.12.10` |
2725

2826

2927
The complete list can be found in the [CHANGELOG](CHANGELOG.md) file.
@@ -36,20 +34,6 @@ Libraries are published to Maven Central. Add to your `build.sbt`:
3634
libraryDependencies += "fr.davit" %% "akka-http-metrics-<backend>" % <version>
3735
```
3836

39-
**Important**: Since akka-http 10.1.0, akka-stream transitive dependency is marked as provided. You should now explicitly
40-
include it in your build.
41-
42-
> [...] we changed the policy not to depend on akka-stream explicitly anymore but mark it as a provided dependency in our build.
43-
That means that you will always have to add a manual dependency to akka-stream. Please make sure you have chosen and
44-
added a dependency to akka-stream when updating to the new version
45-
46-
```scala
47-
libraryDependencies += "com.typesafe.akka" %% "akka-stream" % <version> // Only Akka 2.5 supported
48-
```
49-
50-
For more details, see the akka-http 10.1.x [release notes](https://doc.akka.io/docs/akka-http/current/release-notes/10.1.x.html)
51-
52-
5337
### Server metrics
5438

5539
The library enables you to easily record the following metrics from an akka-http server into a registry. The

build.sbt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ lazy val commonSettings = Defaults.itSettings ++
2323
Seq(
2424
organization := "fr.davit",
2525
organizationName := "Michel Davit",
26-
version := "1.5.0-SNAPSHOT",
26+
version := "1.5.0",
2727
crossScalaVersions := (ThisBuild / crossScalaVersions).value,
2828
scalaVersion := crossScalaVersions.value.head,
2929
scalacOptions ~= filterScalacOptions,
@@ -54,6 +54,7 @@ lazy val `akka-http-metrics` = (project in file("."))
5454
`akka-http-metrics-datadog`,
5555
`akka-http-metrics-graphite`,
5656
`akka-http-metrics-dropwizard`,
57+
`akka-http-metrics-dropwizard-v5`,
5758
`akka-http-metrics-prometheus`
5859
)
5960
.settings(commonSettings: _*)

project/Dependencies.scala

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@ object Dependencies {
55
object Versions {
66
val akka = "2.6.10"
77
val akkaHttp = "10.2.2"
8-
val datadog = "2.10.5"
9-
val dropwizard = "4.1.2"
8+
val datadog = "2.11.0"
9+
val dropwizard = "4.1.17"
1010
val dropwizardV5 = "5.0.0"
1111
val enumeratum = "1.6.1"
1212
val logback = "1.2.3"
1313
val prometheus = "0.9.0"
14-
val scalaCollectionCompat = "2.3.1"
14+
val scalaCollectionCompat = "2.3.2"
1515
val scalaLogging = "3.9.2"
1616
val scalaMock = "5.1.0"
1717
val scalaTest = "3.2.3"

0 commit comments

Comments
 (0)