diff --git a/CHANGELOG.md b/CHANGELOG.md index f750c100..41ff3c89 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,10 @@ The main API is stable, but expect some amount of breaking changes around major - Add strict `Accept` header checking for `RouteSpec`s based on `producing()` settings. Option for non-strictness. - Add integrated self-hosted Swagger UI/ReDoc UI module +## 15.0.0 +- Upgrade to various dependencies, including Finagle to version `19.5.0`. This has resulted in +various API changes due to Finagle dropping the dependency on Netty v3 (now v4). + ## 14.22.0 - Upgrade Finagle to version `18.8.0`. H/T @fuCtor diff --git a/spray/src/test/scala/io/fintrospect/formats/SprayJsonTest.scala b/spray/src/test/scala/io/fintrospect/formats/SprayJsonTest.scala index b2945d5b..e77712db 100644 --- a/spray/src/test/scala/io/fintrospect/formats/SprayJsonTest.scala +++ b/spray/src/test/scala/io/fintrospect/formats/SprayJsonTest.scala @@ -3,5 +3,5 @@ package io.fintrospect.formats class SprayJsonResponseBuilderTest extends JsonResponseBuilderSpec(Spray) class SprayJsonFormatTest extends JsonFormatSpec(Spray) { - override val expectedJson = """{"string":"hello","null":null,"bigInt":12344,"object":{"field1":"aString"},"decimal":1.2,"double":1.2,"array":["world",true],"long":2,"bool":true,"int":10}""" + override val expectedJson = """{"array":["world",true],"bigInt":12344,"bool":true,"decimal":1.2,"double":1.2,"int":10,"long":2,"null":null,"object":{"field1":"aString"},"string":"hello"}""" } \ No newline at end of file