Thanks to visit codestin.com
Credit goes to github.com

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

Commit ca3a0e0

Browse files
committed
Release v1.4.0
1 parent 6776143 commit ca3a0e0

File tree

4 files changed

+15
-7
lines changed

4 files changed

+15
-7
lines changed

CHANGELOG.md

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

33
## Unreleased
44

5+
## 1.4.0 (2020-12-12)
6+
7+
- Split HttpMetricsHandler API with separated callbacks
8+
- Add requests failures counter for unserved requests
9+
- Compute sizes and durations metrics on end of entity stream
10+
- Remove deprecated API
11+
512
## 1.3.0 (2020-11-09)
613

714
- Fix Metrics BidiFlow closing

README.md

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

1818
| Version | Release date | Akka Http version | Scala versions |
1919
| ------- | ------------ | ----------------- | ------------------- |
20+
| `1.4.0` | 2020-12-12 | `10.2.2` | `2.13.4`, `2.12.12` |
2021
| `1.3.0` | 2020-11-09 | `10.2.1` | `2.13.3`, `2.12.12` |
2122
| `1.2.0` | 2020-08-29 | `10.2.0` | `2.13.3`, `2.12.12` |
2223
| `1.1.1` | 2020-06-10 | `10.1.12` | `2.13.2`, `2.12.11` |

build.sbt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ lazy val filterScalacOptions = { options: Seq[String] =>
1010
}
1111

1212
// for sbt-github-actions
13-
ThisBuild / crossScalaVersions := Seq("2.13.3", "2.12.12")
13+
ThisBuild / crossScalaVersions := Seq("2.13.4", "2.12.12")
1414
ThisBuild / githubWorkflowBuild := Seq(
1515
WorkflowStep.Sbt(name = Some("Check project"), commands = List("scalafmtCheckAll", "headerCheckAll")),
1616
WorkflowStep.Sbt( name = Some("Build project"), commands = List("test", "it:test"))
@@ -23,7 +23,7 @@ lazy val commonSettings = Defaults.itSettings ++
2323
Seq(
2424
organization := "fr.davit",
2525
organizationName := "Michel Davit",
26-
version := "1.4.0-SNAPSHOT",
26+
version := "1.4.0",
2727
crossScalaVersions := (ThisBuild / crossScalaVersions).value,
2828
scalaVersion := crossScalaVersions.value.head,
2929
scalacOptions ~= filterScalacOptions,

project/Dependencies.scala

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,15 @@ object Dependencies {
44

55
object Versions {
66
val akka = "2.6.10"
7-
val akkaHttp = "10.2.1"
8-
val datadog = "2.10.3"
7+
val akkaHttp = "10.2.2"
8+
val datadog = "2.10.5"
99
val dropwizard = "5.0.0"
1010
val enumeratum = "1.6.1"
1111
val logback = "1.2.3"
1212
val prometheus = "0.9.0"
13-
val scalaCollectionCompat = "2.2.0"
14-
val scalaMock = "5.0.0"
15-
val scalaTest = "3.2.2"
13+
val scalaCollectionCompat = "2.3.1"
14+
val scalaMock = "5.1.0"
15+
val scalaTest = "3.2.3"
1616
}
1717

1818
val akkaHttp = "com.typesafe.akka" %% "akka-http" % Versions.akkaHttp

0 commit comments

Comments
 (0)